mirror of
https://github.com/github/codeql.git
synced 2026-04-18 05:24:01 +02:00
The rust-analyzer update will need more work as it seems to break rust analysis on windows. This was carried out using `cargo upgrade` from `cargo-edit`: * getting exclusions options for rust-analyzer with ```bash cargo upgrade -i --dry-run | grep -o 'ra_ap_\S\+' | sort -u | sed 's/^/--exclude=/' > /tmp/exclude ``` * running ```bash cargo upgrade -i $(cat /tmp/exclude) misc/bazel/3rdparty/update_cargo_deps.sh ```
14 lines
305 B
TOML
14 lines
305 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.92"
|
|
quote = "1.0.38"
|
|
either = "1.13.0"
|
|
stdx = {package = "ra_ap_stdx", version = "0.0.248"}
|
|
itertools = "0.14.0"
|