Rust/Ruby: run cargo upgrade --incompatible --pinned

This commit is contained in:
Paolo Tranquilli
2025-02-25 13:23:49 +01:00
parent d2105a7528
commit 83e442a266
5 changed files with 269 additions and 220 deletions

437
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,9 +9,9 @@ license = "MIT"
ungrammar = "1.16.1"
proc-macro2 = "1.0.93"
quote = "1.0.38"
either = "1.13.0"
stdx = {package = "ra_ap_stdx", version = "0.0.258"}
either = "1.14.0"
stdx = {package = "ra_ap_stdx", version = "0.0.266"}
itertools = "0.14.0"
mustache = "0.9.0"
serde = { version = "1.0.217", features = ["derive"] }
anyhow = "1.0.95"
serde = { version = "1.0.218", features = ["derive"] }
anyhow = "1.0.96"

View File

@@ -6,25 +6,25 @@ license = "MIT"
# When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.26", features = ["derive"] }
anyhow = "1.0.96"
clap = { version = "4.5.31", features = ["derive"] }
figment = { version = "0.10.19", features = ["env", "yaml"] }
num-traits = "0.2.19"
ra_ap_base_db = "0.0.258"
ra_ap_hir = "0.0.258"
ra_ap_hir_def = "0.0.258"
ra_ap_ide_db = "0.0.258"
ra_ap_hir_expand = "0.0.258"
ra_ap_load-cargo = "0.0.258"
ra_ap_paths = "0.0.258"
ra_ap_project_model = "0.0.258"
ra_ap_syntax = "0.0.258"
ra_ap_vfs = "0.0.258"
ra_ap_parser = "0.0.258"
ra_ap_span = "0.0.258"
ra_ap_cfg = "0.0.258"
ra_ap_intern = "0.0.258"
serde = "1.0.217"
ra_ap_base_db = "0.0.266"
ra_ap_hir = "0.0.266"
ra_ap_hir_def = "0.0.266"
ra_ap_ide_db = "0.0.266"
ra_ap_hir_expand = "0.0.266"
ra_ap_load-cargo = "0.0.266"
ra_ap_paths = "0.0.266"
ra_ap_project_model = "0.0.266"
ra_ap_syntax = "0.0.266"
ra_ap_vfs = "0.0.266"
ra_ap_parser = "0.0.266"
ra_ap_span = "0.0.266"
ra_ap_cfg = "0.0.266"
ra_ap_intern = "0.0.266"
serde = "1.0.218"
serde_with = "3.12.0"
triomphe = "0.1.14"
argfile = "0.2.1"
@@ -33,9 +33,9 @@ rust-extractor-macros = { path = "macros" }
itertools = "0.14.0"
glob = "0.3.2"
chrono = { version = "0.4.39", features = ["serde"] }
serde_json = "1.0.135"
serde_json = "1.0.139"
dunce = "1.0.5"
toml = "0.8.19"
toml = "0.8.20"
tracing = "0.1.41"
tracing-flame = "0.2.0"
tracing-subscriber = "0.3.19"

View File

@@ -10,4 +10,4 @@ proc-macro = true
# When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies]
quote = "1.0.38"
syn = { version = "2.0.96", features = ["full"] }
syn = { version = "2.0.98", features = ["full"] }

View File

@@ -6,7 +6,7 @@ authors = ["GitHub"]
# When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh`
[dependencies]
flate2 = "1.0"
flate2 = "1.1"
globset = "0.4"
tree-sitter = ">= 0.23.0"
tracing = "0.1"
@@ -23,4 +23,4 @@ num_cpus = "1.16.0"
[dev-dependencies]
tree-sitter-ql = "0.23.1"
tree-sitter-json = "0.24.8"
rand = "0.8.5"
rand = "0.9.0"