mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Rust/Ruby: upgrade all cargo dependencies excluding rust-analyzer
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 ```
This commit is contained in:
@@ -10,12 +10,12 @@ edition = "2021"
|
||||
tree-sitter = ">= 0.23.0"
|
||||
tree-sitter-embedded-template = "0.23.2"
|
||||
tree-sitter-ruby = "0.23.1"
|
||||
clap = { version = "4.2", features = ["derive"] }
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
|
||||
rayon = "1.5.0"
|
||||
regex = "1.7.1"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||||
rayon = "1.10.0"
|
||||
regex = "1.11.1"
|
||||
encoding = "0.2"
|
||||
lazy_static = "1.4.0"
|
||||
lazy_static = "1.5.0"
|
||||
|
||||
codeql-extractor = { path = "../../shared/tree-sitter-extractor" }
|
||||
|
||||
Reference in New Issue
Block a user