Cargo: run upgrade

This commit is contained in:
Paolo Tranquilli
2025-06-20 17:34:23 +02:00
parent 2c14f273ed
commit ce29d8a59a
5 changed files with 677 additions and 302 deletions

923
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,11 +7,11 @@ license = "MIT"
# When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies]
ungrammar = "1.16.1"
proc-macro2 = "1.0.94"
proc-macro2 = "1.0.95"
quote = "1.0.40"
either = "1.15.0"
stdx = {package = "ra_ap_stdx", version = "0.0.273"}
stdx = {package = "ra_ap_stdx", version = "0.0.288"}
itertools = "0.14.0"
mustache = "0.9.0"
serde = { version = "1.0.219", features = ["derive"] }
anyhow = "1.0.97"
anyhow = "1.0.98"

View File

@@ -6,39 +6,39 @@ license = "MIT"
# When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies]
anyhow = "1.0.97"
clap = { version = "4.5.35", features = ["derive"] }
anyhow = "1.0.98"
clap = { version = "4.5.40", features = ["derive"] }
figment = { version = "0.10.19", features = ["env", "yaml"] }
num-traits = "0.2.19"
ra_ap_base_db = "0.0.273"
ra_ap_hir = "0.0.273"
ra_ap_hir_def = "0.0.273"
ra_ap_ide_db = "0.0.273"
ra_ap_hir_ty = "0.0.273"
ra_ap_hir_expand = "0.0.273"
ra_ap_load-cargo = "0.0.273"
ra_ap_paths = "0.0.273"
ra_ap_project_model = "0.0.273"
ra_ap_syntax = "0.0.273"
ra_ap_vfs = "0.0.273"
ra_ap_parser = "0.0.273"
ra_ap_span = "0.0.273"
ra_ap_cfg = "0.0.273"
ra_ap_intern = "0.0.273"
ra_ap_base_db = "0.0.288"
ra_ap_hir = "0.0.288"
ra_ap_hir_def = "0.0.288"
ra_ap_ide_db = "0.0.288"
ra_ap_hir_ty = "0.0.288"
ra_ap_hir_expand = "0.0.288"
ra_ap_load-cargo = "0.0.288"
ra_ap_paths = "0.0.288"
ra_ap_project_model = "0.0.288"
ra_ap_syntax = "0.0.288"
ra_ap_vfs = "0.0.288"
ra_ap_parser = "0.0.288"
ra_ap_span = "0.0.288"
ra_ap_cfg = "0.0.288"
ra_ap_intern = "0.0.288"
serde = "1.0.219"
serde_with = "3.12.0"
serde_with = "3.13.0"
triomphe = "0.1.14"
argfile = "0.2.1"
codeql-extractor = { path = "../../shared/tree-sitter-extractor" }
rust-extractor-macros = { path = "macros" }
itertools = "0.14.0"
glob = "0.3.2"
chrono = { version = "0.4.40", features = ["serde"] }
chrono = { version = "0.4.41", features = ["serde"] }
serde_json = "1.0.140"
dunce = "1.0.5"
toml = "0.8.20"
toml = "0.8.23"
tracing = "0.1.41"
tracing-flame = "0.2.0"
tracing-subscriber = "0.3.19"
chalk-ir = "0.100.0"
chalk-ir = "0.103.0"
mustache = "0.9.0"

View File

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

View File

@@ -17,11 +17,11 @@ encoding = "0.2"
lazy_static = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.40", features = ["serde"] }
num_cpus = "1.16.0"
chrono = { version = "0.4.41", features = ["serde"] }
num_cpus = "1.17.0"
zstd = "0.13.3"
[dev-dependencies]
tree-sitter-ql = "0.23.1"
tree-sitter-json = "0.24.8"
rand = "0.9.0"
rand = "0.9.1"