mirror of
https://github.com/github/codeql.git
synced 2026-03-01 21:34:50 +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 ```
27 lines
641 B
TOML
27 lines
641 B
TOML
[package]
|
|
name = "codeql-extractor"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["GitHub"]
|
|
|
|
# When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh`
|
|
[dependencies]
|
|
flate2 = "1.0"
|
|
globset = "0.4"
|
|
tree-sitter = ">= 0.23.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
rayon = "1.10.0"
|
|
regex = "1.11.1"
|
|
encoding = "0.2"
|
|
lazy_static = "1.5.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
|
num_cpus = "1.16.0"
|
|
|
|
[dev-dependencies]
|
|
tree-sitter-ql = "0.23.1"
|
|
tree-sitter-json = "0.24.8"
|
|
rand = "0.8.5"
|