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

@@ -5,8 +5,8 @@ edition = "2021"
# When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.16", features = ["derive"] }
anyhow = "1.0.95"
clap = { version = "4.5.24", features = ["derive"] }
figment = { version = "0.10.19", features = ["env", "yaml"] }
log = "0.4.22"
num-traits = "0.2.19"
@@ -24,15 +24,15 @@ ra_ap_parser = "0.0.248"
ra_ap_span = "0.0.248"
ra_ap_cfg = "0.0.248"
ra_ap_intern = "0.0.248"
serde = "1.0.209"
serde_with = "3.9.0"
serde = "1.0.217"
serde_with = "3.12.0"
stderrlog = "0.6.0"
triomphe = "0.1.13"
triomphe = "0.1.14"
argfile = "0.2.1"
codeql-extractor = { path = "../../shared/tree-sitter-extractor" }
rust-extractor-macros = { path = "macros" }
itertools = "0.13.0"
glob = "0.3.1"
chrono = { version = "0.4.38", features = ["serde"] }
serde_json = "1.0.133"
itertools = "0.14.0"
glob = "0.3.2"
chrono = { version = "0.4.39", features = ["serde"] }
serde_json = "1.0.135"
dunce = "1.0.5"