mirror of
https://github.com/github/codeql.git
synced 2026-02-23 02:13:41 +01:00
* The ungram file is now taken from the rust-analyzer dependencies pulled in by bazel * the grammar parsing code is not published, so it must be taken directly from rust-analyzer code. That part should be less prone to be updated than the ungram file, so it does not necessarily need to be in sync with the rust-analyzer version is used elsewhere. * both need some patches. The former is patched during build, the latter during loading in `MODULE.bazel`.
14 lines
304 B
TOML
14 lines
304 B
TOML
[package]
|
|
name = "ast-generator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# When updating these dependencies, run `rust/update_cargo_deps.sh`
|
|
[dependencies]
|
|
ungrammar = "1.16.1"
|
|
proc-macro2 = "1.0.47"
|
|
quote = "1.0.20"
|
|
either = "1.9.0"
|
|
stdx = {package = "ra_ap_stdx", version = "0.0.248"}
|
|
itertools = "0.12.0"
|