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

66
Cargo.lock generated
View File

@@ -92,9 +92,9 @@ dependencies = [
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.94" version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
[[package]] [[package]]
name = "argfile" name = "argfile"
@@ -117,7 +117,7 @@ name = "ast-generator"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"either", "either",
"itertools 0.12.1", "itertools 0.14.0",
"proc-macro2", "proc-macro2",
"quote", "quote",
"ra_ap_stdx", "ra_ap_stdx",
@@ -228,9 +228,9 @@ dependencies = [
[[package]] [[package]]
name = "cc" name = "cc"
version = "1.2.5" version = "1.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e" checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7"
dependencies = [ dependencies = [
"shlex", "shlex",
] ]
@@ -315,9 +315,9 @@ dependencies = [
[[package]] [[package]]
name = "clap" name = "clap"
version = "4.5.23" version = "4.5.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" checksum = "9560b07a799281c7e0958b9296854d6fafd4c5f31444a7e5bb1ad6dde5ccf1bd"
dependencies = [ dependencies = [
"clap_builder", "clap_builder",
"clap_derive", "clap_derive",
@@ -325,9 +325,9 @@ dependencies = [
[[package]] [[package]]
name = "clap_builder" name = "clap_builder"
version = "4.5.23" version = "4.5.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" checksum = "874e0dd3eb68bf99058751ac9712f622e61e6f393a94f7128fa26e3f02f5c7cd"
dependencies = [ dependencies = [
"anstream", "anstream",
"anstyle", "anstyle",
@@ -337,9 +337,9 @@ dependencies = [
[[package]] [[package]]
name = "clap_derive" name = "clap_derive"
version = "4.5.18" version = "4.5.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
dependencies = [ dependencies = [
"heck 0.5.0", "heck 0.5.0",
"proc-macro2", "proc-macro2",
@@ -411,7 +411,7 @@ dependencies = [
"dunce", "dunce",
"figment", "figment",
"glob", "glob",
"itertools 0.13.0", "itertools 0.14.0",
"log", "log",
"num-traits", "num-traits",
"ra_ap_base_db", "ra_ap_base_db",
@@ -743,9 +743,9 @@ dependencies = [
[[package]] [[package]]
name = "glob" name = "glob"
version = "0.3.1" version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
[[package]] [[package]]
name = "globset" name = "globset"
@@ -922,9 +922,9 @@ dependencies = [
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.13.0" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [ dependencies = [
"either", "either",
] ]
@@ -1250,9 +1250,9 @@ dependencies = [
[[package]] [[package]]
name = "pin-project-lite" name = "pin-project-lite"
version = "0.2.15" version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
[[package]] [[package]]
name = "powerfmt" name = "powerfmt"
@@ -1293,9 +1293,9 @@ dependencies = [
[[package]] [[package]]
name = "quote" name = "quote"
version = "1.0.37" version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
] ]
@@ -2036,18 +2036,18 @@ dependencies = [
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.216" version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.216" version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -2056,9 +2056,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.133" version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
dependencies = [ dependencies = [
"itoa", "itoa",
"memchr", "memchr",
@@ -2068,9 +2068,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_with" name = "serde_with"
version = "3.11.0" version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
dependencies = [ dependencies = [
"base64", "base64",
"chrono", "chrono",
@@ -2086,9 +2086,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_with_macros" name = "serde_with_macros"
version = "3.11.0" version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d" checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
dependencies = [ dependencies = [
"darling", "darling",
"proc-macro2", "proc-macro2",
@@ -2179,9 +2179,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]] [[package]]
name = "syn" name = "syn"
version = "2.0.90" version = "2.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -2560,7 +2560,7 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [ dependencies = [
"windows-sys 0.59.0", "windows-sys 0.48.0",
] ]
[[package]] [[package]]

View File

@@ -70,7 +70,7 @@ use_repo(py_deps, "vendor__anyhow-1.0.44", "vendor__cc-1.0.70", "vendor__clap-2.
# deps for ruby+rust # deps for ruby+rust
# keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh` # keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh`
tree_sitter_extractors_deps = use_extension("//misc/bazel/3rdparty:tree_sitter_extractors_extension.bzl", "r") tree_sitter_extractors_deps = use_extension("//misc/bazel/3rdparty:tree_sitter_extractors_extension.bzl", "r")
use_repo(tree_sitter_extractors_deps, "vendor__anyhow-1.0.94", "vendor__argfile-0.2.1", "vendor__chrono-0.4.39", "vendor__clap-4.5.23", "vendor__dunce-1.0.5", "vendor__either-1.13.0", "vendor__encoding-0.2.33", "vendor__figment-0.10.19", "vendor__flate2-1.0.35", "vendor__glob-0.3.1", "vendor__globset-0.4.15", "vendor__itertools-0.12.1", "vendor__itertools-0.13.0", "vendor__lazy_static-1.5.0", "vendor__log-0.4.22", "vendor__num-traits-0.2.19", "vendor__num_cpus-1.16.0", "vendor__proc-macro2-1.0.92", "vendor__quote-1.0.37", "vendor__ra_ap_base_db-0.0.248", "vendor__ra_ap_cfg-0.0.248", "vendor__ra_ap_hir-0.0.248", "vendor__ra_ap_hir_def-0.0.248", "vendor__ra_ap_hir_expand-0.0.248", "vendor__ra_ap_ide_db-0.0.248", "vendor__ra_ap_intern-0.0.248", "vendor__ra_ap_load-cargo-0.0.248", "vendor__ra_ap_parser-0.0.248", "vendor__ra_ap_paths-0.0.248", "vendor__ra_ap_project_model-0.0.248", "vendor__ra_ap_span-0.0.248", "vendor__ra_ap_stdx-0.0.248", "vendor__ra_ap_syntax-0.0.248", "vendor__ra_ap_vfs-0.0.248", "vendor__rand-0.8.5", "vendor__rayon-1.10.0", "vendor__regex-1.11.1", "vendor__serde-1.0.216", "vendor__serde_json-1.0.133", "vendor__serde_with-3.11.0", "vendor__stderrlog-0.6.0", "vendor__syn-2.0.90", "vendor__tracing-0.1.41", "vendor__tracing-subscriber-0.3.19", "vendor__tree-sitter-0.24.5", "vendor__tree-sitter-embedded-template-0.23.2", "vendor__tree-sitter-json-0.24.8", "vendor__tree-sitter-ql-0.23.1", "vendor__tree-sitter-ruby-0.23.1", "vendor__triomphe-0.1.14", "vendor__ungrammar-1.16.1") use_repo(tree_sitter_extractors_deps, "vendor__anyhow-1.0.95", "vendor__argfile-0.2.1", "vendor__chrono-0.4.39", "vendor__clap-4.5.24", "vendor__dunce-1.0.5", "vendor__either-1.13.0", "vendor__encoding-0.2.33", "vendor__figment-0.10.19", "vendor__flate2-1.0.35", "vendor__glob-0.3.2", "vendor__globset-0.4.15", "vendor__itertools-0.14.0", "vendor__lazy_static-1.5.0", "vendor__log-0.4.22", "vendor__num-traits-0.2.19", "vendor__num_cpus-1.16.0", "vendor__proc-macro2-1.0.92", "vendor__quote-1.0.38", "vendor__ra_ap_base_db-0.0.248", "vendor__ra_ap_cfg-0.0.248", "vendor__ra_ap_hir-0.0.248", "vendor__ra_ap_hir_def-0.0.248", "vendor__ra_ap_hir_expand-0.0.248", "vendor__ra_ap_ide_db-0.0.248", "vendor__ra_ap_intern-0.0.248", "vendor__ra_ap_load-cargo-0.0.248", "vendor__ra_ap_parser-0.0.248", "vendor__ra_ap_paths-0.0.248", "vendor__ra_ap_project_model-0.0.248", "vendor__ra_ap_span-0.0.248", "vendor__ra_ap_stdx-0.0.248", "vendor__ra_ap_syntax-0.0.248", "vendor__ra_ap_vfs-0.0.248", "vendor__rand-0.8.5", "vendor__rayon-1.10.0", "vendor__regex-1.11.1", "vendor__serde-1.0.217", "vendor__serde_json-1.0.135", "vendor__serde_with-3.12.0", "vendor__stderrlog-0.6.0", "vendor__syn-2.0.95", "vendor__tracing-0.1.41", "vendor__tracing-subscriber-0.3.19", "vendor__tree-sitter-0.24.5", "vendor__tree-sitter-embedded-template-0.23.2", "vendor__tree-sitter-json-0.24.8", "vendor__tree-sitter-ql-0.23.1", "vendor__tree-sitter-ruby-0.23.1", "vendor__triomphe-0.1.14", "vendor__ungrammar-1.16.1")
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

View File

@@ -82,9 +82,9 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.0.94", version = "1.0.95",
deps = [ deps = [
"@vendor__anyhow-1.0.94//:build_script_build", "@vendor__anyhow-1.0.95//:build_script_build",
], ],
) )
@@ -137,7 +137,7 @@ cargo_build_script(
"noclippy", "noclippy",
"norustfmt", "norustfmt",
], ],
version = "1.0.94", version = "1.0.95",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )

View File

@@ -33,7 +33,7 @@ filegroup(
# Workspace Member Dependencies # Workspace Member Dependencies
alias( alias(
name = "anyhow", name = "anyhow",
actual = "@vendor__anyhow-1.0.94//:anyhow", actual = "@vendor__anyhow-1.0.95//:anyhow",
tags = ["manual"], tags = ["manual"],
) )
@@ -51,7 +51,7 @@ alias(
alias( alias(
name = "clap", name = "clap",
actual = "@vendor__clap-4.5.23//:clap", actual = "@vendor__clap-4.5.24//:clap",
tags = ["manual"], tags = ["manual"],
) )
@@ -87,7 +87,7 @@ alias(
alias( alias(
name = "glob", name = "glob",
actual = "@vendor__glob-0.3.1//:glob", actual = "@vendor__glob-0.3.2//:glob",
tags = ["manual"], tags = ["manual"],
) )
@@ -98,14 +98,8 @@ alias(
) )
alias( alias(
name = "itertools-0.12.1", name = "itertools",
actual = "@vendor__itertools-0.12.1//:itertools", actual = "@vendor__itertools-0.14.0//:itertools",
tags = ["manual"],
)
alias(
name = "itertools-0.13.0",
actual = "@vendor__itertools-0.13.0//:itertools",
tags = ["manual"], tags = ["manual"],
) )
@@ -141,7 +135,7 @@ alias(
alias( alias(
name = "quote", name = "quote",
actual = "@vendor__quote-1.0.37//:quote", actual = "@vendor__quote-1.0.38//:quote",
tags = ["manual"], tags = ["manual"],
) )
@@ -255,19 +249,19 @@ alias(
alias( alias(
name = "serde", name = "serde",
actual = "@vendor__serde-1.0.216//:serde", actual = "@vendor__serde-1.0.217//:serde",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "serde_json", name = "serde_json",
actual = "@vendor__serde_json-1.0.133//:serde_json", actual = "@vendor__serde_json-1.0.135//:serde_json",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "serde_with", name = "serde_with",
actual = "@vendor__serde_with-3.11.0//:serde_with", actual = "@vendor__serde_with-3.12.0//:serde_with",
tags = ["manual"], tags = ["manual"],
) )
@@ -279,7 +273,7 @@ alias(
alias( alias(
name = "syn", name = "syn",
actual = "@vendor__syn-2.0.90//:syn", actual = "@vendor__syn-2.0.95//:syn",
tags = ["manual"], tags = ["manual"],
) )

View File

@@ -85,7 +85,7 @@ rust_library(
version = "1.1.9", version = "1.1.9",
deps = [ deps = [
"@vendor__camino-1.1.9//:build_script_build", "@vendor__camino-1.1.9//:build_script_build",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
], ],
) )

View File

@@ -79,6 +79,6 @@ rust_library(
}), }),
version = "0.1.9", version = "0.1.9",
deps = [ deps = [
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
], ],
) )

View File

@@ -85,8 +85,8 @@ rust_library(
"@vendor__camino-1.1.9//:camino", "@vendor__camino-1.1.9//:camino",
"@vendor__cargo-platform-0.1.9//:cargo_platform", "@vendor__cargo-platform-0.1.9//:cargo_platform",
"@vendor__semver-1.0.24//:semver", "@vendor__semver-1.0.24//:semver",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__serde_json-1.0.133//:serde_json", "@vendor__serde_json-1.0.135//:serde_json",
"@vendor__thiserror-1.0.69//:thiserror", "@vendor__thiserror-1.0.69//:thiserror",
], ],
) )

View File

@@ -77,7 +77,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.2.5", version = "1.2.7",
deps = [ deps = [
"@vendor__shlex-1.3.0//:shlex", "@vendor__shlex-1.3.0//:shlex",
], ],

View File

@@ -80,8 +80,8 @@ rust_proc_macro(
version = "0.98.0", version = "0.98.0",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
"@vendor__synstructure-0.13.1//:synstructure", "@vendor__synstructure-0.13.1//:synstructure",
], ],
) )

View File

@@ -96,7 +96,7 @@ rust_library(
version = "0.4.39", version = "0.4.39",
deps = [ deps = [
"@vendor__num-traits-0.2.19//:num_traits", "@vendor__num-traits-0.2.19//:num_traits",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
] + select({ ] + select({
"@rules_rust//rust/platform:aarch64-apple-darwin": [ "@rules_rust//rust/platform:aarch64-apple-darwin": [
"@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-darwin "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-darwin

View File

@@ -41,7 +41,7 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
proc_macro_deps = [ proc_macro_deps = [
"@vendor__clap_derive-4.5.18//:clap_derive", "@vendor__clap_derive-4.5.24//:clap_derive",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@@ -90,8 +90,8 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "4.5.23", version = "4.5.24",
deps = [ deps = [
"@vendor__clap_builder-4.5.23//:clap_builder", "@vendor__clap_builder-4.5.24//:clap_builder",
], ],
) )

View File

@@ -85,7 +85,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "4.5.23", version = "4.5.24",
deps = [ deps = [
"@vendor__anstream-0.6.18//:anstream", "@vendor__anstream-0.6.18//:anstream",
"@vendor__anstyle-1.0.10//:anstyle", "@vendor__anstyle-1.0.10//:anstyle",

View File

@@ -80,11 +80,11 @@ rust_proc_macro(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "4.5.18", version = "4.5.24",
deps = [ deps = [
"@vendor__heck-0.5.0//:heck", "@vendor__heck-0.5.0//:heck",
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -86,8 +86,8 @@ rust_library(
"@vendor__fnv-1.0.7//:fnv", "@vendor__fnv-1.0.7//:fnv",
"@vendor__ident_case-1.0.1//:ident_case", "@vendor__ident_case-1.0.1//:ident_case",
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__strsim-0.11.1//:strsim", "@vendor__strsim-0.11.1//:strsim",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -80,7 +80,7 @@ rust_proc_macro(
version = "0.20.10", version = "0.20.10",
deps = [ deps = [
"@vendor__darling_core-0.20.10//:darling_core", "@vendor__darling_core-0.20.10//:darling_core",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -89,7 +89,7 @@ rust_library(
deps = [ deps = [
"@vendor__figment-0.10.19//:build_script_build", "@vendor__figment-0.10.19//:build_script_build",
"@vendor__pear-0.2.9//:pear", "@vendor__pear-0.2.9//:pear",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__serde_yaml-0.9.34-deprecated//:serde_yaml", "@vendor__serde_yaml-0.9.34-deprecated//:serde_yaml",
"@vendor__uncased-0.9.10//:uncased", "@vendor__uncased-0.9.10//:uncased",
] + select({ ] + select({

View File

@@ -77,5 +77,5 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.3.1", version = "0.3.2",
) )

View File

@@ -132,7 +132,7 @@ cargo_build_script(
version = "0.1.2", version = "0.1.2",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@vendor__cc-1.2.5//:cc", "@vendor__cc-1.2.7//:cc",
], ],
) )

View File

@@ -82,7 +82,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.13.0", version = "0.14.0",
deps = [ deps = [
"@vendor__either-1.13.0//:either", "@vendor__either-1.13.0//:either",
], ],

View File

@@ -81,7 +81,7 @@ rust_proc_macro(
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__proc-macro2-diagnostics-0.10.1//:proc_macro2_diagnostics", "@vendor__proc-macro2-diagnostics-0.10.1//:proc_macro2_diagnostics",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -77,5 +77,5 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.2.15", version = "0.2.16",
) )

View File

@@ -87,8 +87,8 @@ rust_library(
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__proc-macro2-diagnostics-0.10.1//:build_script_build", "@vendor__proc-macro2-diagnostics-0.10.1//:build_script_build",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
"@vendor__yansi-1.0.1//:yansi", "@vendor__yansi-1.0.1//:yansi",
], ],
) )

View File

@@ -81,7 +81,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.0.37", version = "1.0.38",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
], ],

View File

@@ -80,7 +80,7 @@ rust_proc_macro(
version = "0.80.0", version = "0.80.0",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -91,7 +91,7 @@ rust_library(
}), }),
version = "0.0.248", version = "0.0.248",
deps = [ deps = [
"@vendor__anyhow-1.0.94//:anyhow", "@vendor__anyhow-1.0.95//:anyhow",
"@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel",
"@vendor__itertools-0.12.1//:itertools", "@vendor__itertools-0.12.1//:itertools",
"@vendor__ra_ap_hir_expand-0.0.248//:ra_ap_hir_expand", "@vendor__ra_ap_hir_expand-0.0.248//:ra_ap_hir_expand",

View File

@@ -83,6 +83,6 @@ rust_library(
version = "0.0.248", version = "0.0.248",
deps = [ deps = [
"@vendor__camino-1.1.9//:camino", "@vendor__camino-1.1.9//:camino",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
], ],
) )

View File

@@ -95,8 +95,8 @@ rust_library(
"@vendor__ra_ap_stdx-0.0.248//:ra_ap_stdx", "@vendor__ra_ap_stdx-0.0.248//:ra_ap_stdx",
"@vendor__ra_ap_tt-0.0.248//:ra_ap_tt", "@vendor__ra_ap_tt-0.0.248//:ra_ap_tt",
"@vendor__rustc-hash-2.1.0//:rustc_hash", "@vendor__rustc-hash-2.1.0//:rustc_hash",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__serde_json-1.0.133//:serde_json", "@vendor__serde_json-1.0.135//:serde_json",
"@vendor__tracing-0.1.41//:tracing", "@vendor__tracing-0.1.41//:tracing",
], ],
) )

View File

@@ -88,7 +88,7 @@ rust_library(
}), }),
version = "0.0.248", version = "0.0.248",
deps = [ deps = [
"@vendor__anyhow-1.0.94//:anyhow", "@vendor__anyhow-1.0.95//:anyhow",
"@vendor__cargo_metadata-0.18.1//:cargo_metadata", "@vendor__cargo_metadata-0.18.1//:cargo_metadata",
"@vendor__itertools-0.12.1//:itertools", "@vendor__itertools-0.12.1//:itertools",
"@vendor__la-arena-0.3.1//:la_arena", "@vendor__la-arena-0.3.1//:la_arena",
@@ -101,8 +101,8 @@ rust_library(
"@vendor__ra_ap_toolchain-0.0.248//:ra_ap_toolchain", "@vendor__ra_ap_toolchain-0.0.248//:ra_ap_toolchain",
"@vendor__rustc-hash-2.1.0//:rustc_hash", "@vendor__rustc-hash-2.1.0//:rustc_hash",
"@vendor__semver-1.0.24//:semver", "@vendor__semver-1.0.24//:semver",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__serde_json-1.0.133//:serde_json", "@vendor__serde_json-1.0.135//:serde_json",
"@vendor__tracing-0.1.41//:tracing", "@vendor__tracing-0.1.41//:tracing",
"@vendor__triomphe-0.1.14//:triomphe", "@vendor__triomphe-0.1.14//:triomphe",
], ],

View File

@@ -81,7 +81,7 @@ rust_proc_macro(
deps = [ deps = [
"@vendor__heck-0.4.1//:heck", "@vendor__heck-0.4.1//:heck",
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -86,7 +86,7 @@ rust_library(
version = "1.0.24", version = "1.0.24",
deps = [ deps = [
"@vendor__semver-1.0.24//:build_script_build", "@vendor__semver-1.0.24//:build_script_build",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
], ],
) )

View File

@@ -39,7 +39,7 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@vendor__serde_derive-1.0.216//:serde_derive", "@vendor__serde_derive-1.0.217//:serde_derive",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@@ -88,9 +88,9 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.0.216", version = "1.0.217",
deps = [ deps = [
"@vendor__serde-1.0.216//:build_script_build", "@vendor__serde-1.0.217//:build_script_build",
], ],
) )
@@ -146,7 +146,7 @@ cargo_build_script(
"noclippy", "noclippy",
"norustfmt", "norustfmt",
], ],
version = "1.0.216", version = "1.0.217",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )

View File

@@ -80,10 +80,10 @@ rust_proc_macro(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.0.216", version = "1.0.217",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -83,13 +83,13 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.0.133", version = "1.0.135",
deps = [ deps = [
"@vendor__itoa-1.0.14//:itoa", "@vendor__itoa-1.0.14//:itoa",
"@vendor__memchr-2.7.4//:memchr", "@vendor__memchr-2.7.4//:memchr",
"@vendor__ryu-1.0.18//:ryu", "@vendor__ryu-1.0.18//:ryu",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__serde_json-1.0.133//:build_script_build", "@vendor__serde_json-1.0.135//:build_script_build",
], ],
) )
@@ -143,7 +143,7 @@ cargo_build_script(
"noclippy", "noclippy",
"norustfmt", "norustfmt",
], ],
version = "1.0.133", version = "1.0.135",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )

View File

@@ -37,8 +37,8 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
proc_macro_deps = [ proc_macro_deps = [
"@vendor__serde_derive-1.0.216//:serde_derive", "@vendor__serde_derive-1.0.217//:serde_derive",
"@vendor__serde_with_macros-3.11.0//:serde_with_macros", "@vendor__serde_with_macros-3.12.0//:serde_with_macros",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@@ -87,8 +87,8 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "3.11.0", version = "3.12.0",
deps = [ deps = [
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
], ],
) )

View File

@@ -77,11 +77,11 @@ rust_proc_macro(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "3.11.0", version = "3.12.0",
deps = [ deps = [
"@vendor__darling-0.20.10//:darling", "@vendor__darling-0.20.10//:darling",
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -82,7 +82,7 @@ rust_library(
"@vendor__indexmap-2.7.0//:indexmap", "@vendor__indexmap-2.7.0//:indexmap",
"@vendor__itoa-1.0.14//:itoa", "@vendor__itoa-1.0.14//:itoa",
"@vendor__ryu-1.0.18//:ryu", "@vendor__ryu-1.0.18//:ryu",
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__unsafe-libyaml-0.2.11//:unsafe_libyaml", "@vendor__unsafe-libyaml-0.2.11//:unsafe_libyaml",
], ],
) )

View File

@@ -89,10 +89,10 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-none": [], "@rules_rust//rust/platform:x86_64-unknown-none": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "2.0.90", version = "2.0.95",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__unicode-ident-1.0.14//:unicode_ident", "@vendor__unicode-ident-1.0.14//:unicode_ident",
], ],
) )

View File

@@ -84,7 +84,7 @@ rust_library(
version = "0.13.1", version = "0.13.1",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -80,7 +80,7 @@ rust_proc_macro(
version = "1.0.69", version = "1.0.69",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -88,7 +88,7 @@ rust_library(
}), }),
version = "0.1.41", version = "0.1.41",
deps = [ deps = [
"@vendor__pin-project-lite-0.2.15//:pin_project_lite", "@vendor__pin-project-lite-0.2.16//:pin_project_lite",
"@vendor__tracing-core-0.1.33//:tracing_core", "@vendor__tracing-core-0.1.33//:tracing_core",
], ],
) )

View File

@@ -80,7 +80,7 @@ rust_proc_macro(
version = "0.1.28", version = "0.1.28",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -145,7 +145,7 @@ cargo_build_script(
version = "0.24.5", version = "0.24.5",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@vendor__cc-1.2.5//:cc", "@vendor__cc-1.2.7//:cc",
], ],
) )

View File

@@ -133,7 +133,7 @@ cargo_build_script(
version = "0.23.2", version = "0.23.2",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@vendor__cc-1.2.5//:cc", "@vendor__cc-1.2.7//:cc",
], ],
) )

View File

@@ -133,7 +133,7 @@ cargo_build_script(
version = "0.24.8", version = "0.24.8",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@vendor__cc-1.2.5//:cc", "@vendor__cc-1.2.7//:cc",
], ],
) )

View File

@@ -133,7 +133,7 @@ cargo_build_script(
version = "0.23.1", version = "0.23.1",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@vendor__cc-1.2.5//:cc", "@vendor__cc-1.2.7//:cc",
], ],
) )

View File

@@ -133,7 +133,7 @@ cargo_build_script(
version = "0.23.1", version = "0.23.1",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@vendor__cc-1.2.5//:cc", "@vendor__cc-1.2.7//:cc",
], ],
) )

View File

@@ -85,7 +85,7 @@ rust_library(
}), }),
version = "0.1.14", version = "0.1.14",
deps = [ deps = [
"@vendor__serde-1.0.216//:serde", "@vendor__serde-1.0.217//:serde",
"@vendor__stable_deref_trait-1.2.0//:stable_deref_trait", "@vendor__stable_deref_trait-1.2.0//:stable_deref_trait",
], ],
) )

View File

@@ -86,8 +86,8 @@ rust_library(
"@vendor__bumpalo-3.16.0//:bumpalo", "@vendor__bumpalo-3.16.0//:bumpalo",
"@vendor__log-0.4.22//:log", "@vendor__log-0.4.22//:log",
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
"@vendor__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared", "@vendor__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared",
], ],
) )

View File

@@ -83,7 +83,7 @@ rust_proc_macro(
}), }),
version = "0.2.99", version = "0.2.99",
deps = [ deps = [
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__wasm-bindgen-macro-support-0.2.99//:wasm_bindgen_macro_support", "@vendor__wasm-bindgen-macro-support-0.2.99//:wasm_bindgen_macro_support",
], ],
) )

View File

@@ -84,8 +84,8 @@ rust_library(
version = "0.2.99", version = "0.2.99",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
"@vendor__wasm-bindgen-backend-0.2.99//:wasm_bindgen_backend", "@vendor__wasm-bindgen-backend-0.2.99//:wasm_bindgen_backend",
"@vendor__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared", "@vendor__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared",
], ],

View File

@@ -80,13 +80,13 @@ rust_library(
version = "0.1.9", version = "0.1.9",
deps = select({ deps = select({
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
"@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows)
], ],
"@rules_rust//rust/platform:i686-pc-windows-msvc": [ "@rules_rust//rust/platform:i686-pc-windows-msvc": [
"@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows)
], ],
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
"@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows)
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@@ -37,8 +37,10 @@ rust_library(
"Win32_Storage", "Win32_Storage",
"Win32_Storage_FileSystem", "Win32_Storage_FileSystem",
"Win32_System", "Win32_System",
"Win32_System_Console",
"Win32_System_IO", "Win32_System_IO",
"Win32_System_Pipes", "Win32_System_Pipes",
"Win32_System_SystemInformation",
"Win32_System_Threading", "Win32_System_Threading",
"Win32_System_WindowsProgramming", "Win32_System_WindowsProgramming",
"default", "default",

View File

@@ -36,7 +36,6 @@ rust_library(
"Win32_System", "Win32_System",
"Win32_System_Com", "Win32_System_Com",
"Win32_System_Console", "Win32_System_Console",
"Win32_System_SystemInformation",
"Win32_UI", "Win32_UI",
"Win32_UI_Shell", "Win32_UI_Shell",
"default", "default",

View File

@@ -80,7 +80,7 @@ rust_proc_macro(
version = "0.7.35", version = "0.7.35",
deps = [ deps = [
"@vendor__proc-macro2-1.0.92//:proc_macro2", "@vendor__proc-macro2-1.0.92//:proc_macro2",
"@vendor__quote-1.0.37//:quote", "@vendor__quote-1.0.38//:quote",
"@vendor__syn-2.0.90//:syn", "@vendor__syn-2.0.95//:syn",
], ],
) )

View File

@@ -296,7 +296,7 @@ def aliases(
_NORMAL_DEPENDENCIES = { _NORMAL_DEPENDENCIES = {
"ruby/extractor": { "ruby/extractor": {
_COMMON_CONDITION: { _COMMON_CONDITION: {
"clap": Label("@vendor__clap-4.5.23//:clap"), "clap": Label("@vendor__clap-4.5.24//:clap"),
"encoding": Label("@vendor__encoding-0.2.33//:encoding"), "encoding": Label("@vendor__encoding-0.2.33//:encoding"),
"lazy_static": Label("@vendor__lazy_static-1.5.0//:lazy_static"), "lazy_static": Label("@vendor__lazy_static-1.5.0//:lazy_static"),
"rayon": Label("@vendor__rayon-1.10.0//:rayon"), "rayon": Label("@vendor__rayon-1.10.0//:rayon"),
@@ -311,9 +311,9 @@ _NORMAL_DEPENDENCIES = {
"rust/ast-generator": { "rust/ast-generator": {
_COMMON_CONDITION: { _COMMON_CONDITION: {
"either": Label("@vendor__either-1.13.0//:either"), "either": Label("@vendor__either-1.13.0//:either"),
"itertools": Label("@vendor__itertools-0.12.1//:itertools"), "itertools": Label("@vendor__itertools-0.14.0//:itertools"),
"proc-macro2": Label("@vendor__proc-macro2-1.0.92//:proc_macro2"), "proc-macro2": Label("@vendor__proc-macro2-1.0.92//:proc_macro2"),
"quote": Label("@vendor__quote-1.0.37//:quote"), "quote": Label("@vendor__quote-1.0.38//:quote"),
"stdx": Label("@vendor__ra_ap_stdx-0.0.248//:ra_ap_stdx"), "stdx": Label("@vendor__ra_ap_stdx-0.0.248//:ra_ap_stdx"),
"ungrammar": Label("@vendor__ungrammar-1.16.1//:ungrammar"), "ungrammar": Label("@vendor__ungrammar-1.16.1//:ungrammar"),
}, },
@@ -322,14 +322,14 @@ _NORMAL_DEPENDENCIES = {
}, },
"rust/extractor": { "rust/extractor": {
_COMMON_CONDITION: { _COMMON_CONDITION: {
"anyhow": Label("@vendor__anyhow-1.0.94//:anyhow"), "anyhow": Label("@vendor__anyhow-1.0.95//:anyhow"),
"argfile": Label("@vendor__argfile-0.2.1//:argfile"), "argfile": Label("@vendor__argfile-0.2.1//:argfile"),
"chrono": Label("@vendor__chrono-0.4.39//:chrono"), "chrono": Label("@vendor__chrono-0.4.39//:chrono"),
"clap": Label("@vendor__clap-4.5.23//:clap"), "clap": Label("@vendor__clap-4.5.24//:clap"),
"dunce": Label("@vendor__dunce-1.0.5//:dunce"), "dunce": Label("@vendor__dunce-1.0.5//:dunce"),
"figment": Label("@vendor__figment-0.10.19//:figment"), "figment": Label("@vendor__figment-0.10.19//:figment"),
"glob": Label("@vendor__glob-0.3.1//:glob"), "glob": Label("@vendor__glob-0.3.2//:glob"),
"itertools": Label("@vendor__itertools-0.13.0//:itertools"), "itertools": Label("@vendor__itertools-0.14.0//:itertools"),
"log": Label("@vendor__log-0.4.22//:log"), "log": Label("@vendor__log-0.4.22//:log"),
"num-traits": Label("@vendor__num-traits-0.2.19//:num_traits"), "num-traits": Label("@vendor__num-traits-0.2.19//:num_traits"),
"ra_ap_base_db": Label("@vendor__ra_ap_base_db-0.0.248//:ra_ap_base_db"), "ra_ap_base_db": Label("@vendor__ra_ap_base_db-0.0.248//:ra_ap_base_db"),
@@ -346,17 +346,17 @@ _NORMAL_DEPENDENCIES = {
"ra_ap_span": Label("@vendor__ra_ap_span-0.0.248//:ra_ap_span"), "ra_ap_span": Label("@vendor__ra_ap_span-0.0.248//:ra_ap_span"),
"ra_ap_syntax": Label("@vendor__ra_ap_syntax-0.0.248//:ra_ap_syntax"), "ra_ap_syntax": Label("@vendor__ra_ap_syntax-0.0.248//:ra_ap_syntax"),
"ra_ap_vfs": Label("@vendor__ra_ap_vfs-0.0.248//:ra_ap_vfs"), "ra_ap_vfs": Label("@vendor__ra_ap_vfs-0.0.248//:ra_ap_vfs"),
"serde": Label("@vendor__serde-1.0.216//:serde"), "serde": Label("@vendor__serde-1.0.217//:serde"),
"serde_json": Label("@vendor__serde_json-1.0.133//:serde_json"), "serde_json": Label("@vendor__serde_json-1.0.135//:serde_json"),
"serde_with": Label("@vendor__serde_with-3.11.0//:serde_with"), "serde_with": Label("@vendor__serde_with-3.12.0//:serde_with"),
"stderrlog": Label("@vendor__stderrlog-0.6.0//:stderrlog"), "stderrlog": Label("@vendor__stderrlog-0.6.0//:stderrlog"),
"triomphe": Label("@vendor__triomphe-0.1.14//:triomphe"), "triomphe": Label("@vendor__triomphe-0.1.14//:triomphe"),
}, },
}, },
"rust/extractor/macros": { "rust/extractor/macros": {
_COMMON_CONDITION: { _COMMON_CONDITION: {
"quote": Label("@vendor__quote-1.0.37//:quote"), "quote": Label("@vendor__quote-1.0.38//:quote"),
"syn": Label("@vendor__syn-2.0.90//:syn"), "syn": Label("@vendor__syn-2.0.95//:syn"),
}, },
}, },
"shared/tree-sitter-extractor": { "shared/tree-sitter-extractor": {
@@ -369,8 +369,8 @@ _NORMAL_DEPENDENCIES = {
"num_cpus": Label("@vendor__num_cpus-1.16.0//:num_cpus"), "num_cpus": Label("@vendor__num_cpus-1.16.0//:num_cpus"),
"rayon": Label("@vendor__rayon-1.10.0//:rayon"), "rayon": Label("@vendor__rayon-1.10.0//:rayon"),
"regex": Label("@vendor__regex-1.11.1//:regex"), "regex": Label("@vendor__regex-1.11.1//:regex"),
"serde": Label("@vendor__serde-1.0.216//:serde"), "serde": Label("@vendor__serde-1.0.217//:serde"),
"serde_json": Label("@vendor__serde_json-1.0.133//:serde_json"), "serde_json": Label("@vendor__serde_json-1.0.135//:serde_json"),
"tracing": Label("@vendor__tracing-0.1.41//:tracing"), "tracing": Label("@vendor__tracing-0.1.41//:tracing"),
"tracing-subscriber": Label("@vendor__tracing-subscriber-0.3.19//:tracing_subscriber"), "tracing-subscriber": Label("@vendor__tracing-subscriber-0.3.19//:tracing_subscriber"),
"tree-sitter": Label("@vendor__tree-sitter-0.24.5//:tree_sitter"), "tree-sitter": Label("@vendor__tree-sitter-0.24.5//:tree_sitter"),
@@ -739,12 +739,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__anyhow-1.0.94", name = "vendor__anyhow-1.0.95",
sha256 = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7", sha256 = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/anyhow/1.0.94/download"], urls = ["https://static.crates.io/crates/anyhow/1.0.95/download"],
strip_prefix = "anyhow-1.0.94", strip_prefix = "anyhow-1.0.95",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.anyhow-1.0.94.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.anyhow-1.0.95.bazel"),
) )
maybe( maybe(
@@ -899,12 +899,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__cc-1.2.5", name = "vendor__cc-1.2.7",
sha256 = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e", sha256 = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/cc/1.2.5/download"], urls = ["https://static.crates.io/crates/cc/1.2.7/download"],
strip_prefix = "cc-1.2.5", strip_prefix = "cc-1.2.7",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.cc-1.2.5.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.cc-1.2.7.bazel"),
) )
maybe( maybe(
@@ -979,32 +979,32 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__clap-4.5.23", name = "vendor__clap-4.5.24",
sha256 = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84", sha256 = "9560b07a799281c7e0958b9296854d6fafd4c5f31444a7e5bb1ad6dde5ccf1bd",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/clap/4.5.23/download"], urls = ["https://static.crates.io/crates/clap/4.5.24/download"],
strip_prefix = "clap-4.5.23", strip_prefix = "clap-4.5.24",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap-4.5.23.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap-4.5.24.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "vendor__clap_builder-4.5.23", name = "vendor__clap_builder-4.5.24",
sha256 = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838", sha256 = "874e0dd3eb68bf99058751ac9712f622e61e6f393a94f7128fa26e3f02f5c7cd",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/clap_builder/4.5.23/download"], urls = ["https://static.crates.io/crates/clap_builder/4.5.24/download"],
strip_prefix = "clap_builder-4.5.23", strip_prefix = "clap_builder-4.5.24",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_builder-4.5.23.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_builder-4.5.24.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "vendor__clap_derive-4.5.18", name = "vendor__clap_derive-4.5.24",
sha256 = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab", sha256 = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/clap_derive/4.5.18/download"], urls = ["https://static.crates.io/crates/clap_derive/4.5.24/download"],
strip_prefix = "clap_derive-4.5.18", strip_prefix = "clap_derive-4.5.24",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_derive-4.5.18.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_derive-4.5.24.bazel"),
) )
maybe( maybe(
@@ -1369,12 +1369,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__glob-0.3.1", name = "vendor__glob-0.3.2",
sha256 = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b", sha256 = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/glob/0.3.1/download"], urls = ["https://static.crates.io/crates/glob/0.3.2/download"],
strip_prefix = "glob-0.3.1", strip_prefix = "glob-0.3.2",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.glob-0.3.1.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.glob-0.3.2.bazel"),
) )
maybe( maybe(
@@ -1589,12 +1589,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__itertools-0.13.0", name = "vendor__itertools-0.14.0",
sha256 = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186", sha256 = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/itertools/0.13.0/download"], urls = ["https://static.crates.io/crates/itertools/0.14.0/download"],
strip_prefix = "itertools-0.13.0", strip_prefix = "itertools-0.14.0",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.itertools-0.13.0.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.itertools-0.14.0.bazel"),
) )
maybe( maybe(
@@ -1959,12 +1959,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__pin-project-lite-0.2.15", name = "vendor__pin-project-lite-0.2.16",
sha256 = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff", sha256 = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/pin-project-lite/0.2.15/download"], urls = ["https://static.crates.io/crates/pin-project-lite/0.2.16/download"],
strip_prefix = "pin-project-lite-0.2.15", strip_prefix = "pin-project-lite-0.2.16",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.pin-project-lite-0.2.15.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.pin-project-lite-0.2.16.bazel"),
) )
maybe( maybe(
@@ -2009,12 +2009,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__quote-1.0.37", name = "vendor__quote-1.0.38",
sha256 = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af", sha256 = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/quote/1.0.37/download"], urls = ["https://static.crates.io/crates/quote/1.0.38/download"],
strip_prefix = "quote-1.0.37", strip_prefix = "quote-1.0.38",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.quote-1.0.37.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.quote-1.0.38.bazel"),
) )
maybe( maybe(
@@ -2538,52 +2538,52 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__serde-1.0.216", name = "vendor__serde-1.0.217",
sha256 = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e", sha256 = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/serde/1.0.216/download"], urls = ["https://static.crates.io/crates/serde/1.0.217/download"],
strip_prefix = "serde-1.0.216", strip_prefix = "serde-1.0.217",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde-1.0.216.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde-1.0.217.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "vendor__serde_derive-1.0.216", name = "vendor__serde_derive-1.0.217",
sha256 = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e", sha256 = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/serde_derive/1.0.216/download"], urls = ["https://static.crates.io/crates/serde_derive/1.0.217/download"],
strip_prefix = "serde_derive-1.0.216", strip_prefix = "serde_derive-1.0.217",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_derive-1.0.216.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_derive-1.0.217.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "vendor__serde_json-1.0.133", name = "vendor__serde_json-1.0.135",
sha256 = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377", sha256 = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/serde_json/1.0.133/download"], urls = ["https://static.crates.io/crates/serde_json/1.0.135/download"],
strip_prefix = "serde_json-1.0.133", strip_prefix = "serde_json-1.0.135",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_json-1.0.133.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_json-1.0.135.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "vendor__serde_with-3.11.0", name = "vendor__serde_with-3.12.0",
sha256 = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817", sha256 = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/serde_with/3.11.0/download"], urls = ["https://static.crates.io/crates/serde_with/3.12.0/download"],
strip_prefix = "serde_with-3.11.0", strip_prefix = "serde_with-3.12.0",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_with-3.11.0.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_with-3.12.0.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "vendor__serde_with_macros-3.11.0", name = "vendor__serde_with_macros-3.12.0",
sha256 = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d", sha256 = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/serde_with_macros/3.11.0/download"], urls = ["https://static.crates.io/crates/serde_with_macros/3.12.0/download"],
strip_prefix = "serde_with_macros-3.11.0", strip_prefix = "serde_with_macros-3.12.0",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_with_macros-3.11.0.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_with_macros-3.12.0.bazel"),
) )
maybe( maybe(
@@ -2688,12 +2688,12 @@ def crate_repositories():
maybe( maybe(
http_archive, http_archive,
name = "vendor__syn-2.0.90", name = "vendor__syn-2.0.95",
sha256 = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31", sha256 = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a",
type = "tar.gz", type = "tar.gz",
urls = ["https://static.crates.io/crates/syn/2.0.90/download"], urls = ["https://static.crates.io/crates/syn/2.0.95/download"],
strip_prefix = "syn-2.0.90", strip_prefix = "syn-2.0.95",
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.syn-2.0.90.bazel"), build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.syn-2.0.95.bazel"),
) )
maybe( maybe(
@@ -3357,25 +3357,24 @@ def crate_repositories():
) )
return [ return [
struct(repo = "vendor__anyhow-1.0.94", is_dev_dep = False), struct(repo = "vendor__anyhow-1.0.95", is_dev_dep = False),
struct(repo = "vendor__argfile-0.2.1", is_dev_dep = False), struct(repo = "vendor__argfile-0.2.1", is_dev_dep = False),
struct(repo = "vendor__chrono-0.4.39", is_dev_dep = False), struct(repo = "vendor__chrono-0.4.39", is_dev_dep = False),
struct(repo = "vendor__clap-4.5.23", is_dev_dep = False), struct(repo = "vendor__clap-4.5.24", is_dev_dep = False),
struct(repo = "vendor__dunce-1.0.5", is_dev_dep = False), struct(repo = "vendor__dunce-1.0.5", is_dev_dep = False),
struct(repo = "vendor__either-1.13.0", is_dev_dep = False), struct(repo = "vendor__either-1.13.0", is_dev_dep = False),
struct(repo = "vendor__encoding-0.2.33", is_dev_dep = False), struct(repo = "vendor__encoding-0.2.33", is_dev_dep = False),
struct(repo = "vendor__figment-0.10.19", is_dev_dep = False), struct(repo = "vendor__figment-0.10.19", is_dev_dep = False),
struct(repo = "vendor__flate2-1.0.35", is_dev_dep = False), struct(repo = "vendor__flate2-1.0.35", is_dev_dep = False),
struct(repo = "vendor__glob-0.3.1", is_dev_dep = False), struct(repo = "vendor__glob-0.3.2", is_dev_dep = False),
struct(repo = "vendor__globset-0.4.15", is_dev_dep = False), struct(repo = "vendor__globset-0.4.15", is_dev_dep = False),
struct(repo = "vendor__itertools-0.12.1", is_dev_dep = False), struct(repo = "vendor__itertools-0.14.0", is_dev_dep = False),
struct(repo = "vendor__itertools-0.13.0", is_dev_dep = False),
struct(repo = "vendor__lazy_static-1.5.0", is_dev_dep = False), struct(repo = "vendor__lazy_static-1.5.0", is_dev_dep = False),
struct(repo = "vendor__log-0.4.22", is_dev_dep = False), struct(repo = "vendor__log-0.4.22", is_dev_dep = False),
struct(repo = "vendor__num-traits-0.2.19", is_dev_dep = False), struct(repo = "vendor__num-traits-0.2.19", is_dev_dep = False),
struct(repo = "vendor__num_cpus-1.16.0", is_dev_dep = False), struct(repo = "vendor__num_cpus-1.16.0", is_dev_dep = False),
struct(repo = "vendor__proc-macro2-1.0.92", is_dev_dep = False), struct(repo = "vendor__proc-macro2-1.0.92", is_dev_dep = False),
struct(repo = "vendor__quote-1.0.37", is_dev_dep = False), struct(repo = "vendor__quote-1.0.38", is_dev_dep = False),
struct(repo = "vendor__ra_ap_base_db-0.0.248", is_dev_dep = False), struct(repo = "vendor__ra_ap_base_db-0.0.248", is_dev_dep = False),
struct(repo = "vendor__ra_ap_cfg-0.0.248", is_dev_dep = False), struct(repo = "vendor__ra_ap_cfg-0.0.248", is_dev_dep = False),
struct(repo = "vendor__ra_ap_hir-0.0.248", is_dev_dep = False), struct(repo = "vendor__ra_ap_hir-0.0.248", is_dev_dep = False),
@@ -3393,11 +3392,11 @@ def crate_repositories():
struct(repo = "vendor__ra_ap_vfs-0.0.248", is_dev_dep = False), struct(repo = "vendor__ra_ap_vfs-0.0.248", is_dev_dep = False),
struct(repo = "vendor__rayon-1.10.0", is_dev_dep = False), struct(repo = "vendor__rayon-1.10.0", is_dev_dep = False),
struct(repo = "vendor__regex-1.11.1", is_dev_dep = False), struct(repo = "vendor__regex-1.11.1", is_dev_dep = False),
struct(repo = "vendor__serde-1.0.216", is_dev_dep = False), struct(repo = "vendor__serde-1.0.217", is_dev_dep = False),
struct(repo = "vendor__serde_json-1.0.133", is_dev_dep = False), struct(repo = "vendor__serde_json-1.0.135", is_dev_dep = False),
struct(repo = "vendor__serde_with-3.11.0", is_dev_dep = False), struct(repo = "vendor__serde_with-3.12.0", is_dev_dep = False),
struct(repo = "vendor__stderrlog-0.6.0", is_dev_dep = False), struct(repo = "vendor__stderrlog-0.6.0", is_dev_dep = False),
struct(repo = "vendor__syn-2.0.90", is_dev_dep = False), struct(repo = "vendor__syn-2.0.95", is_dev_dep = False),
struct(repo = "vendor__tracing-0.1.41", is_dev_dep = False), struct(repo = "vendor__tracing-0.1.41", is_dev_dep = False),
struct(repo = "vendor__tracing-subscriber-0.3.19", is_dev_dep = False), struct(repo = "vendor__tracing-subscriber-0.3.19", is_dev_dep = False),
struct(repo = "vendor__tree-sitter-0.24.5", is_dev_dep = False), struct(repo = "vendor__tree-sitter-0.24.5", is_dev_dep = False),

View File

@@ -10,12 +10,12 @@ edition = "2021"
tree-sitter = ">= 0.23.0" tree-sitter = ">= 0.23.0"
tree-sitter-embedded-template = "0.23.2" tree-sitter-embedded-template = "0.23.2"
tree-sitter-ruby = "0.23.1" tree-sitter-ruby = "0.23.1"
clap = { version = "4.2", features = ["derive"] } clap = { version = "4.5", features = ["derive"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
rayon = "1.5.0" rayon = "1.10.0"
regex = "1.7.1" regex = "1.11.1"
encoding = "0.2" encoding = "0.2"
lazy_static = "1.4.0" lazy_static = "1.5.0"
codeql-extractor = { path = "../../shared/tree-sitter-extractor" } codeql-extractor = { path = "../../shared/tree-sitter-extractor" }

View File

@@ -6,8 +6,8 @@ edition = "2021"
# When updating these dependencies, run `rust/update_cargo_deps.sh` # When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies] [dependencies]
ungrammar = "1.16.1" ungrammar = "1.16.1"
proc-macro2 = "1.0.47" proc-macro2 = "1.0.92"
quote = "1.0.20" quote = "1.0.38"
either = "1.9.0" either = "1.13.0"
stdx = {package = "ra_ap_stdx", version = "0.0.248"} stdx = {package = "ra_ap_stdx", version = "0.0.248"}
itertools = "0.12.0" itertools = "0.14.0"

View File

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

View File

@@ -8,5 +8,5 @@ proc-macro = true
# When updating these dependencies, run `rust/update_cargo_deps.sh` # When updating these dependencies, run `rust/update_cargo_deps.sh`
[dependencies] [dependencies]
quote = "1.0.37" quote = "1.0.38"
syn = { version = "2.0.77", features = ["full"] } syn = { version = "2.0.95", features = ["full"] }

View File

@@ -10,15 +10,15 @@ flate2 = "1.0"
globset = "0.4" globset = "0.4"
tree-sitter = ">= 0.23.0" tree-sitter = ">= 0.23.0"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
rayon = "1.5.0" rayon = "1.10.0"
regex = "1.7.1" regex = "1.11.1"
encoding = "0.2" encoding = "0.2"
lazy_static = "1.4.0" lazy_static = "1.5.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
chrono = { version = "0.4.19", features = ["serde"] } chrono = { version = "0.4.39", features = ["serde"] }
num_cpus = "1.14.0" num_cpus = "1.16.0"
[dev-dependencies] [dev-dependencies]
tree-sitter-ql = "0.23.1" tree-sitter-ql = "0.23.1"