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:
Paolo Tranquilli
2025-01-08 09:54:06 +01:00
parent 96bf81ad6c
commit d2c7decd02
60 changed files with 258 additions and 264 deletions

View File

@@ -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" }