mirror of
https://github.com/github/codeql.git
synced 2026-03-04 06:36:46 +01: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 ```
13 lines
252 B
TOML
13 lines
252 B
TOML
[package]
|
|
name = "rust-extractor-macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
# When updating these dependencies, run `rust/update_cargo_deps.sh`
|
|
[dependencies]
|
|
quote = "1.0.38"
|
|
syn = { version = "2.0.95", features = ["full"] }
|