From eff87d24fa3dfa9a57752c1ec34f816fbb8349c9 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:15:19 +0100 Subject: [PATCH 01/14] Rust/Ruby/Python: update rustc and edition --- MODULE.bazel | 4 ++-- python/extractor/tsg-python/Cargo.toml | 2 +- python/extractor/tsg-python/rust-toolchain.toml | 7 ------- python/extractor/tsg-python/tsp/Cargo.toml | 2 +- ruby/extractor/Cargo.toml | 2 +- ruby/extractor/rust-toolchain.toml | 7 ------- rust-toolchain.toml | 8 ++++++++ rust/ast-generator/Cargo.toml | 2 +- rust/autobuild/Cargo.toml | 2 +- rust/extractor/Cargo.toml | 2 +- rust/extractor/macros/Cargo.toml | 2 +- shared/tree-sitter-extractor/Cargo.toml | 2 +- shared/tree-sitter-extractor/rust-toolchain.toml | 7 ------- 13 files changed, 18 insertions(+), 31 deletions(-) delete mode 100644 python/extractor/tsg-python/rust-toolchain.toml delete mode 100644 ruby/extractor/rust-toolchain.toml create mode 100644 rust-toolchain.toml delete mode 100644 shared/tree-sitter-extractor/rust-toolchain.toml diff --git a/MODULE.bazel b/MODULE.bazel index 427f450e7fcf..c4a2526479a5 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -35,9 +35,9 @@ bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True # Keep edition and version approximately in sync with internal repo. # the versions there are canonical, the versions here are used for CI in github/codeql, as well as for the vendoring of dependencies. -RUST_EDITION = "2021" +RUST_EDITION = "2024" -RUST_VERSION = "1.82.0" +RUST_VERSION = "1.85.0" rust = use_extension("@rules_rust//rust:extensions.bzl", "rust") rust.toolchain( diff --git a/python/extractor/tsg-python/Cargo.toml b/python/extractor/tsg-python/Cargo.toml index 259d2a7d353d..7ad2c1c949e6 100644 --- a/python/extractor/tsg-python/Cargo.toml +++ b/python/extractor/tsg-python/Cargo.toml @@ -4,7 +4,7 @@ name = "tsg-python" version = "0.1.0" authors = ["Taus Brock-Nannestad "] -edition = "2021" +edition = "2024" # When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh` [dependencies] diff --git a/python/extractor/tsg-python/rust-toolchain.toml b/python/extractor/tsg-python/rust-toolchain.toml deleted file mode 100644 index 5e0bcd3a4763..000000000000 --- a/python/extractor/tsg-python/rust-toolchain.toml +++ /dev/null @@ -1,7 +0,0 @@ -# This file specifies the Rust version used to develop and test the Python -# extractor. It is set to the lowest version of Rust we want to support. - -[toolchain] -channel = "1.74" -profile = "minimal" -components = [ "rustfmt" ] diff --git a/python/extractor/tsg-python/tsp/Cargo.toml b/python/extractor/tsg-python/tsp/Cargo.toml index 29fec37f442e..e36144566627 100644 --- a/python/extractor/tsg-python/tsp/Cargo.toml +++ b/python/extractor/tsg-python/tsp/Cargo.toml @@ -11,7 +11,7 @@ readme = "bindings/rust/README.md" keywords = ["incremental", "parsing", "python"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-python" -edition = "2018" +edition = "2024" build = "bindings/rust/build.rs" include = [ diff --git a/ruby/extractor/Cargo.toml b/ruby/extractor/Cargo.toml index 89daac1d27e4..8d3a94113fa2 100644 --- a/ruby/extractor/Cargo.toml +++ b/ruby/extractor/Cargo.toml @@ -3,7 +3,7 @@ name = "codeql-extractor-ruby" description = "CodeQL Ruby extractor" version = "0.1.0" authors = ["GitHub"] -edition = "2021" +edition = "2024" # When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh` [dependencies] diff --git a/ruby/extractor/rust-toolchain.toml b/ruby/extractor/rust-toolchain.toml deleted file mode 100644 index aa02ff3d0bda..000000000000 --- a/ruby/extractor/rust-toolchain.toml +++ /dev/null @@ -1,7 +0,0 @@ -# This file specifies the Rust version used to develop and test the Ruby -# extractor. It is set to the lowest version of Rust we want to support. - -[toolchain] -channel = "1.74" -profile = "minimal" -components = [ "rustfmt" ] diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 000000000000..60e431ae8835 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,8 @@ +# This file specifies the Rust version used to develop and test the +# extractors written in rust. It is set to the lowest version of Rust +# we want to support. + +[toolchain] +channel = "1.85" +profile = "minimal" +components = [ "clippy", "rustfmt" ] diff --git a/rust/ast-generator/Cargo.toml b/rust/ast-generator/Cargo.toml index 6a2db2b0da82..d239ed3de089 100644 --- a/rust/ast-generator/Cargo.toml +++ b/rust/ast-generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ast-generator" version = "0.1.0" -edition = "2021" +edition = "2024" license = "MIT" # When updating these dependencies, run `rust/update_cargo_deps.sh` diff --git a/rust/autobuild/Cargo.toml b/rust/autobuild/Cargo.toml index 758ce92df295..240c1a89d482 100644 --- a/rust/autobuild/Cargo.toml +++ b/rust/autobuild/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "codeql-autobuilder-rust" version = "0.1.0" -edition = "2021" +edition = "2024" [dependencies] codeql-extractor = { path = "../../shared/tree-sitter-extractor" } diff --git a/rust/extractor/Cargo.toml b/rust/extractor/Cargo.toml index dc58faa1ce25..3edcbc744db7 100644 --- a/rust/extractor/Cargo.toml +++ b/rust/extractor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "codeql-rust" version = "0.1.0" -edition = "2021" +edition = "2024" license = "MIT" # When updating these dependencies, run `rust/update_cargo_deps.sh` diff --git a/rust/extractor/macros/Cargo.toml b/rust/extractor/macros/Cargo.toml index 24c5ff5171f1..1f1c44b7d15d 100644 --- a/rust/extractor/macros/Cargo.toml +++ b/rust/extractor/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rust-extractor-macros" version = "0.1.0" -edition = "2021" +edition = "2024" license = "MIT" [lib] diff --git a/shared/tree-sitter-extractor/Cargo.toml b/shared/tree-sitter-extractor/Cargo.toml index fba911e590fa..a24523e7afbc 100644 --- a/shared/tree-sitter-extractor/Cargo.toml +++ b/shared/tree-sitter-extractor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "codeql-extractor" version = "0.2.0" -edition = "2021" +edition = "2024" authors = ["GitHub"] # When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh` diff --git a/shared/tree-sitter-extractor/rust-toolchain.toml b/shared/tree-sitter-extractor/rust-toolchain.toml deleted file mode 100644 index fc7eb0871cd5..000000000000 --- a/shared/tree-sitter-extractor/rust-toolchain.toml +++ /dev/null @@ -1,7 +0,0 @@ -# This file specifies the Rust version used to develop and test the shared -# extractor. It is set to the lowest version of Rust we want to support. - -[toolchain] -channel = "1.74" -profile = "minimal" -components = [ "clippy", "rustfmt" ] \ No newline at end of file From e8799e346ddc2ccd9c6f6db0c228f6ad6955b52f Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:16:58 +0100 Subject: [PATCH 02/14] Rust/Python: fix edition-related errors --- python/extractor/tsg-python/tsp/bindings/rust/lib.rs | 2 +- rust/extractor/macros/src/lib.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/extractor/tsg-python/tsp/bindings/rust/lib.rs b/python/extractor/tsg-python/tsp/bindings/rust/lib.rs index 7a58509e89cf..0d524b28d273 100644 --- a/python/extractor/tsg-python/tsp/bindings/rust/lib.rs +++ b/python/extractor/tsg-python/tsp/bindings/rust/lib.rs @@ -31,7 +31,7 @@ use tree_sitter::Language; -extern "C" { +unsafe extern "C" { fn tree_sitter_python() -> Language; } diff --git a/rust/extractor/macros/src/lib.rs b/rust/extractor/macros/src/lib.rs index b79f0cc29391..5ba496d4661d 100644 --- a/rust/extractor/macros/src/lib.rs +++ b/rust/extractor/macros/src/lib.rs @@ -96,7 +96,7 @@ pub fn extractor_cli_config(_attr: TokenStream, item: TokenStream) -> TokenStrea }) .collect::>(); - let gen = quote! { + let ret = quote! { #[serde_with::apply(_ => #[serde(default)])] #[derive(Deserialize, Default)] pub struct #name { @@ -118,5 +118,5 @@ pub fn extractor_cli_config(_attr: TokenStream, item: TokenStream) -> TokenStrea #(#cli_fields),* } }; - gen.into() + ret.into() } From 6089a7526288bd0c6c6d41c203c2f2f26eb1323e Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:19:03 +0100 Subject: [PATCH 03/14] Rust/Ruby/Python: format code --- python/extractor/tsg-python/src/main.rs | 12 ++++++------ rust/extractor/src/config.rs | 2 +- rust/extractor/src/config/deserialize.rs | 2 +- rust/extractor/src/diagnostics.rs | 2 +- rust/extractor/src/main.rs | 4 ++-- rust/extractor/src/rust_analyzer.rs | 2 +- rust/extractor/src/translate/base.rs | 10 +++++----- rust/extractor/src/translate/mappings.rs | 2 +- shared/tree-sitter-extractor/src/extractor/mod.rs | 12 ++++-------- .../tree-sitter-extractor/tests/integration_test.rs | 2 +- .../tests/multiple_languages.rs | 2 +- 11 files changed, 24 insertions(+), 28 deletions(-) diff --git a/python/extractor/tsg-python/src/main.rs b/python/extractor/tsg-python/src/main.rs index 942d36088538..c111ef194ead 100644 --- a/python/extractor/tsg-python/src/main.rs +++ b/python/extractor/tsg-python/src/main.rs @@ -7,17 +7,17 @@ use std::path::Path; -use anyhow::anyhow; use anyhow::Context as _; use anyhow::Result; -use clap::{Command, Arg, ArgAction}; +use anyhow::anyhow; +use clap::{Arg, ArgAction, Command}; use tree_sitter::Parser; -use tree_sitter_graph::ast::File; -use tree_sitter_graph::functions::Functions; use tree_sitter_graph::ExecutionConfig; use tree_sitter_graph::Identifier; use tree_sitter_graph::NoCancellation; use tree_sitter_graph::Variables; +use tree_sitter_graph::ast::File; +use tree_sitter_graph::functions::Functions; const BUILD_VERSION: &'static str = env!("CARGO_PKG_VERSION"); @@ -332,7 +332,7 @@ pub mod extra_functions { return Err(ExecutionError::FunctionFailed( "unnamed-child-index".into(), format!("Cannot call child-index on the root node"), - )) + )); } }; let mut tree_cursor = parent.walk(); @@ -490,7 +490,7 @@ fn main() -> Result<()> { .short('t') .long("tsg") .action(ArgAction::Set) - .required(false) + .required(false), ) .arg(Arg::new("source").index(1).required(true)) .get_matches(); diff --git a/rust/extractor/src/config.rs b/rust/extractor/src/config.rs index c87af7e77280..24fef22cff08 100644 --- a/rust/extractor/src/config.rs +++ b/rust/extractor/src/config.rs @@ -4,9 +4,9 @@ use anyhow::Context; use clap::Parser; use codeql_extractor::trap; use figment::{ + Figment, providers::{Env, Format, Serialized, Yaml}, value::Value, - Figment, }; use itertools::Itertools; use ra_ap_cfg::{CfgAtom, CfgDiff}; diff --git a/rust/extractor/src/config/deserialize.rs b/rust/extractor/src/config/deserialize.rs index 5953acd86057..4f3d96897909 100644 --- a/rust/extractor/src/config/deserialize.rs +++ b/rust/extractor/src/config/deserialize.rs @@ -1,5 +1,5 @@ -use serde::de::{Error, Unexpected, Visitor}; use serde::Deserializer; +use serde::de::{Error, Unexpected, Visitor}; use std::collections::HashMap; use std::fmt::Formatter; use std::hash::BuildHasher; diff --git a/rust/extractor/src/diagnostics.rs b/rust/extractor/src/diagnostics.rs index d111975db7d5..a39706a0cf28 100644 --- a/rust/extractor/src/diagnostics.rs +++ b/rust/extractor/src/diagnostics.rs @@ -2,8 +2,8 @@ use crate::config::Config; use anyhow::Context; use chrono::{DateTime, Utc}; use ra_ap_project_model::ProjectManifest; -use serde::ser::SerializeMap; use serde::Serialize; +use serde::ser::SerializeMap; use std::collections::HashMap; use std::fmt::Display; use std::fs::File; diff --git a/rust/extractor/src/main.rs b/rust/extractor/src/main.rs index 48445a935c30..17bf43b91c6f 100644 --- a/rust/extractor/src/main.rs +++ b/rust/extractor/src/main.rs @@ -1,11 +1,11 @@ -use crate::diagnostics::{emit_extraction_diagnostics, ExtractionStep}; +use crate::diagnostics::{ExtractionStep, emit_extraction_diagnostics}; use crate::rust_analyzer::path_to_file_id; use crate::trap::TrapId; use anyhow::Context; use archive::Archiver; use ra_ap_hir::Semantics; -use ra_ap_ide_db::line_index::{LineCol, LineIndex}; use ra_ap_ide_db::RootDatabase; +use ra_ap_ide_db::line_index::{LineCol, LineIndex}; use ra_ap_load_cargo::LoadCargoConfig; use ra_ap_paths::{AbsPathBuf, Utf8PathBuf}; use ra_ap_project_model::{CargoConfig, ProjectManifest}; diff --git a/rust/extractor/src/rust_analyzer.rs b/rust/extractor/src/rust_analyzer.rs index 2ebbcac6b590..f0ca9a223207 100644 --- a/rust/extractor/src/rust_analyzer.rs +++ b/rust/extractor/src/rust_analyzer.rs @@ -2,7 +2,7 @@ use itertools::Itertools; use ra_ap_base_db::SourceDatabase; use ra_ap_hir::Semantics; use ra_ap_ide_db::RootDatabase; -use ra_ap_load_cargo::{load_workspace_at, LoadCargoConfig}; +use ra_ap_load_cargo::{LoadCargoConfig, load_workspace_at}; use ra_ap_paths::{AbsPath, Utf8PathBuf}; use ra_ap_project_model::ProjectManifest; use ra_ap_project_model::{CargoConfig, ManifestPath}; diff --git a/rust/extractor/src/translate/base.rs b/rust/extractor/src/translate/base.rs index 9c8e919e5aa0..6618feae4c20 100644 --- a/rust/extractor/src/translate/base.rs +++ b/rust/extractor/src/translate/base.rs @@ -4,23 +4,23 @@ use crate::rust_analyzer::FileSemanticInformation; use crate::trap::{DiagnosticSeverity, TrapFile, TrapId}; use crate::trap::{Label, TrapClass}; use itertools::Either; -use ra_ap_base_db::ra_salsa::InternKey; use ra_ap_base_db::CrateOrigin; +use ra_ap_base_db::ra_salsa::InternKey; use ra_ap_hir::db::ExpandDatabase; use ra_ap_hir::{ Adt, Crate, ItemContainer, Module, ModuleDef, PathResolution, Semantics, Type, Variant, }; -use ra_ap_hir_def::type_ref::Mutability; use ra_ap_hir_def::ModuleId; +use ra_ap_hir_def::type_ref::Mutability; use ra_ap_hir_expand::ExpandTo; -use ra_ap_ide_db::line_index::{LineCol, LineIndex}; use ra_ap_ide_db::RootDatabase; +use ra_ap_ide_db::line_index::{LineCol, LineIndex}; use ra_ap_parser::SyntaxKind; use ra_ap_span::{EditionedFileId, TextSize}; use ra_ap_syntax::ast::HasName; use ra_ap_syntax::{ - ast, AstNode, NodeOrToken, SyntaxElementChildren, SyntaxError, SyntaxNode, SyntaxToken, - TextRange, + AstNode, NodeOrToken, SyntaxElementChildren, SyntaxError, SyntaxNode, SyntaxToken, TextRange, + ast, }; #[macro_export] diff --git a/rust/extractor/src/translate/mappings.rs b/rust/extractor/src/translate/mappings.rs index 6ad8a7d1df6f..3068e5cea52e 100644 --- a/rust/extractor/src/translate/mappings.rs +++ b/rust/extractor/src/translate/mappings.rs @@ -1,6 +1,6 @@ use ra_ap_hir::{Enum, Function, HasContainer, Module, Semantics, Struct, Trait, Union}; use ra_ap_ide_db::RootDatabase; -use ra_ap_syntax::{ast, ast::RangeItem, AstNode}; +use ra_ap_syntax::{AstNode, ast, ast::RangeItem}; pub(crate) trait TextValue { fn try_get_text(&self) -> Option; diff --git a/shared/tree-sitter-extractor/src/extractor/mod.rs b/shared/tree-sitter-extractor/src/extractor/mod.rs index fcefe87106cb..18a0cfc94520 100644 --- a/shared/tree-sitter-extractor/src/extractor/mod.rs +++ b/shared/tree-sitter-extractor/src/extractor/mod.rs @@ -7,13 +7,13 @@ use std::collections::BTreeSet as Set; use std::env; use std::path::Path; +use tracing_subscriber::EnvFilter; +use tracing_subscriber::Layer; use tracing_subscriber::filter::Filtered; use tracing_subscriber::fmt::format::DefaultFields; use tracing_subscriber::fmt::format::Format; use tracing_subscriber::layer::SubscriberExt; use tracing_subscriber::util::SubscriberInitExt; -use tracing_subscriber::EnvFilter; -use tracing_subscriber::Layer; use tree_sitter::{Language, Node, Parser, Range, Tree}; pub mod simple; @@ -591,11 +591,7 @@ impl<'a> Visitor<'a> { } } } - if is_valid { - Some(args) - } else { - None - } + if is_valid { Some(args) } else { None } } fn type_matches(&self, tp: &TypeName, type_info: &node_types::FieldTypeInfo) -> bool { @@ -615,7 +611,7 @@ impl<'a> Visitor<'a> { } node_types::FieldTypeInfo::ReservedWordInt(int_mapping) => { - return !tp.named && int_mapping.contains_key(&tp.kind) + return !tp.named && int_mapping.contains_key(&tp.kind); } } false diff --git a/shared/tree-sitter-extractor/tests/integration_test.rs b/shared/tree-sitter-extractor/tests/integration_test.rs index cc453eeef741..34d475df5d01 100644 --- a/shared/tree-sitter-extractor/tests/integration_test.rs +++ b/shared/tree-sitter-extractor/tests/integration_test.rs @@ -4,7 +4,7 @@ use codeql_extractor::trap; use tree_sitter_ql; mod common; -use common::{create_source_dir, expect_trap_file, SourceArchive}; +use common::{SourceArchive, create_source_dir, expect_trap_file}; /// A very simple happy-path test. /// We run the extractor using the tree-sitter-ql grammar and a single source file, diff --git a/shared/tree-sitter-extractor/tests/multiple_languages.rs b/shared/tree-sitter-extractor/tests/multiple_languages.rs index f14100f6e0c7..766de2bc7820 100644 --- a/shared/tree-sitter-extractor/tests/multiple_languages.rs +++ b/shared/tree-sitter-extractor/tests/multiple_languages.rs @@ -3,7 +3,7 @@ use codeql_extractor::trap; use tree_sitter_ql; mod common; -use common::{create_source_dir, expect_trap_file, SourceArchive}; +use common::{SourceArchive, create_source_dir, expect_trap_file}; /// Like the `simple_extractor` test but with multiple languages. /// This is in a separate crate because the simple extractor API sets up a From 1bcc6ddb3209c179e347e6368679f918faa2407b Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:21:28 +0100 Subject: [PATCH 04/14] Rust/Ruby/Python: apply clippy lints --- python/extractor/tsg-python/src/main.rs | 8 ++--- .../tsg-python/tsp/bindings/rust/build.rs | 4 +-- .../tsg-python/tsp/bindings/rust/lib.rs | 8 ++--- ruby/extractor/src/extractor.rs | 30 +++++++++---------- .../tree-sitter-extractor/src/diagnostics.rs | 2 +- .../src/generator/dbscheme.rs | 6 ++-- .../tree-sitter-extractor/src/generator/ql.rs | 16 +++++----- shared/tree-sitter-extractor/src/trap.rs | 12 ++++++-- .../tree-sitter-extractor/tests/common/mod.rs | 4 +-- .../tests/integration_test.rs | 1 - .../tests/multiple_languages.rs | 1 - 11 files changed, 48 insertions(+), 44 deletions(-) diff --git a/python/extractor/tsg-python/src/main.rs b/python/extractor/tsg-python/src/main.rs index c111ef194ead..6b72efdb6ef6 100644 --- a/python/extractor/tsg-python/src/main.rs +++ b/python/extractor/tsg-python/src/main.rs @@ -19,7 +19,7 @@ use tree_sitter_graph::Variables; use tree_sitter_graph::ast::File; use tree_sitter_graph::functions::Functions; -const BUILD_VERSION: &'static str = env!("CARGO_PKG_VERSION"); +const BUILD_VERSION: &str = env!("CARGO_PKG_VERSION"); pub mod extra_functions { use tree_sitter_graph::functions::{Function, Parameters}; @@ -331,7 +331,7 @@ pub mod extra_functions { None => { return Err(ExecutionError::FunctionFailed( "unnamed-child-index".into(), - format!("Cannot call child-index on the root node"), + "Cannot call child-index on the root node".to_string(), )); } }; @@ -342,7 +342,7 @@ pub mod extra_functions { .ok_or_else(|| { ExecutionError::FunctionFailed( "unnamed-child-index".into(), - format!("Called child-index on a non-named child"), + "Called child-index on a non-named child".to_string(), ) })?; Ok(Value::Integer(index as u32)) @@ -400,7 +400,7 @@ pub mod extra_functions { let parent = node.parent().ok_or_else(|| { ExecutionError::FunctionFailed( "get-parent".into(), - format!("Cannot call get-parent on the root node"), + "Cannot call get-parent on the root node".to_string(), ) })?; Ok(Value::SyntaxNode(graph.add_syntax_node(parent))) diff --git a/python/extractor/tsg-python/tsp/bindings/rust/build.rs b/python/extractor/tsg-python/tsp/bindings/rust/build.rs index 4450166885e2..74c445ae32ee 100644 --- a/python/extractor/tsg-python/tsp/bindings/rust/build.rs +++ b/python/extractor/tsg-python/tsp/bindings/rust/build.rs @@ -5,7 +5,7 @@ fn main() { let src_dir = Path::new("src"); let mut c_config = cc::Build::new(); - c_config.include(&src_dir); + c_config.include(src_dir); c_config .flag_if_supported("-Wno-unused-parameter") .flag_if_supported("-Wno-unused-but-set-variable") @@ -17,7 +17,7 @@ fn main() { let mut cpp_config = cc::Build::new(); cpp_config.cpp(true); - cpp_config.include(&src_dir); + cpp_config.include(src_dir); cpp_config .flag_if_supported("-Wno-unused-parameter") .flag_if_supported("-Wno-unused-but-set-variable"); diff --git a/python/extractor/tsg-python/tsp/bindings/rust/lib.rs b/python/extractor/tsg-python/tsp/bindings/rust/lib.rs index 0d524b28d273..560277354f2a 100644 --- a/python/extractor/tsg-python/tsp/bindings/rust/lib.rs +++ b/python/extractor/tsg-python/tsp/bindings/rust/lib.rs @@ -43,18 +43,18 @@ pub fn language() -> Language { } /// The source of the Python tree-sitter grammar description. -pub const GRAMMAR: &'static str = include_str!("../../grammar.js"); +pub const GRAMMAR: &str = include_str!("../../grammar.js"); /// The syntax highlighting query for this language. -pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm"); +pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); /// The symbol tagging query for this language. -pub const TAGGING_QUERY: &'static str = include_str!("../../queries/tags.scm"); +pub const TAGGING_QUERY: &str = include_str!("../../queries/tags.scm"); #[cfg(test)] mod tests { diff --git a/ruby/extractor/src/extractor.rs b/ruby/extractor/src/extractor.rs index f1c272f17927..d42713122263 100644 --- a/ruby/extractor/src/extractor.rs +++ b/ruby/extractor/src/extractor.rs @@ -99,7 +99,7 @@ pub fn run(options: Options) -> std::io::Result<()> { let mut needs_conversion = false; let code_ranges; let mut trap_writer = trap::Writer::new(); - if path.extension().map_or(false, |x| x == "erb") { + if path.extension().is_some_and(|x| x == "erb") { tracing::info!("scanning: {}", path.display()); extractor::extract( &erb, @@ -371,59 +371,59 @@ fn test_scan_coding_comment() { assert_eq!(result, Some("utf-8".into())); let text = "#coding:utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "# foo\n# encoding: utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, None); let text = "# encoding: latin1 encoding: utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("latin1".into())); let text = "# encoding: nonsense"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("nonsense".into())); let text = "# coding = utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "# CODING = utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "# CoDiNg = utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "# blah blahblahcoding = utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); // unicode BOM is ignored let text = "\u{FEFF}# encoding: utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "\u{FEFF} # encoding: utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "#! /usr/bin/env ruby\n # encoding: utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = "\u{FEFF}#! /usr/bin/env ruby\n # encoding: utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); // A #! must be the first thing on a line, otherwise it's a normal comment let text = " #! /usr/bin/env ruby encoding = utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, Some("utf-8".into())); let text = " #! /usr/bin/env ruby \n # encoding = utf-8"; - let result = scan_coding_comment(&text.as_bytes()); + let result = scan_coding_comment(text.as_bytes()); assert_eq!(result, None); } diff --git a/shared/tree-sitter-extractor/src/diagnostics.rs b/shared/tree-sitter-extractor/src/diagnostics.rs index f4d6d75a79c5..781a24797d5f 100644 --- a/shared/tree-sitter-extractor/src/diagnostics.rs +++ b/shared/tree-sitter-extractor/src/diagnostics.rs @@ -124,7 +124,7 @@ impl LogWriter { match std::fs::OpenOptions::new() .create(true) .append(true) - .write(true) + .open(path) { Err(e) => { diff --git a/shared/tree-sitter-extractor/src/generator/dbscheme.rs b/shared/tree-sitter-extractor/src/generator/dbscheme.rs index 67af94a4dab8..fd690f57a72f 100644 --- a/shared/tree-sitter-extractor/src/generator/dbscheme.rs +++ b/shared/tree-sitter-extractor/src/generator/dbscheme.rs @@ -48,7 +48,7 @@ pub enum DbColumnType { String, } -impl<'a> fmt::Display for Case<'a> { +impl fmt::Display for Case<'_> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { writeln!(f, "case @{}.{} of", &self.name, &self.column)?; let mut sep = " "; @@ -60,7 +60,7 @@ impl<'a> fmt::Display for Case<'a> { } } -impl<'a> fmt::Display for Table<'a> { +impl fmt::Display for Table<'_> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { if let Some(keyset) = &self.keysets { write!(f, "#keyset[")?; @@ -102,7 +102,7 @@ impl<'a> fmt::Display for Table<'a> { } } -impl<'a> fmt::Display for Union<'a> { +impl fmt::Display for Union<'_> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "@{} = ", self.name)?; let mut first = true; diff --git a/shared/tree-sitter-extractor/src/generator/ql.rs b/shared/tree-sitter-extractor/src/generator/ql.rs index 5dfc2ec84069..8e899462ac39 100644 --- a/shared/tree-sitter-extractor/src/generator/ql.rs +++ b/shared/tree-sitter-extractor/src/generator/ql.rs @@ -8,7 +8,7 @@ pub enum TopLevel<'a> { Module(Module<'a>), } -impl<'a> fmt::Display for TopLevel<'a> { +impl fmt::Display for TopLevel<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { TopLevel::Import(imp) => write!(f, "{}", imp), @@ -24,7 +24,7 @@ pub struct Import<'a> { pub alias: Option<&'a str>, } -impl<'a> fmt::Display for Import<'a> { +impl fmt::Display for Import<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "import {}", &self.module)?; if let Some(name) = &self.alias { @@ -43,7 +43,7 @@ pub struct Class<'a> { pub predicates: Vec>, } -impl<'a> fmt::Display for Class<'a> { +impl fmt::Display for Class<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { if let Some(qldoc) = &self.qldoc { write!(f, "/** {} */", qldoc)?; @@ -93,7 +93,7 @@ pub struct Module<'a> { pub body: Vec>, } -impl<'a> fmt::Display for Module<'a> { +impl fmt::Display for Module<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { if let Some(qldoc) = &self.qldoc { write!(f, "/** {} */", qldoc)?; @@ -122,7 +122,7 @@ pub enum Type<'a> { Normal(&'a str), } -impl<'a> fmt::Display for Type<'a> { +impl fmt::Display for Type<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { Type::Int => write!(f, "int"), @@ -152,7 +152,7 @@ pub enum Expression<'a> { }, } -impl<'a> fmt::Display for Expression<'a> { +impl fmt::Display for Expression<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { Expression::Var(x) => write!(f, "{}", x), @@ -246,7 +246,7 @@ pub struct Predicate<'a> { pub body: Expression<'a>, } -impl<'a> fmt::Display for Predicate<'a> { +impl fmt::Display for Predicate<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { if let Some(qldoc) = &self.qldoc { write!(f, "/** {} */", qldoc)?; @@ -280,7 +280,7 @@ pub struct FormalParameter<'a> { pub param_type: Type<'a>, } -impl<'a> fmt::Display for FormalParameter<'a> { +impl fmt::Display for FormalParameter<'_> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{} {}", self.param_type, self.name) } diff --git a/shared/tree-sitter-extractor/src/trap.rs b/shared/tree-sitter-extractor/src/trap.rs index 4c061f8dbd82..4ad1e48eb6ba 100644 --- a/shared/tree-sitter-extractor/src/trap.rs +++ b/shared/tree-sitter-extractor/src/trap.rs @@ -25,6 +25,12 @@ pub struct Writer { location_labels: std::collections::HashMap, } +impl Default for Writer { + fn default() -> Self { + Self::new() + } +} + impl Writer { pub fn new() -> Writer { Writer { @@ -306,9 +312,9 @@ impl Compression { #[test] fn limit_string_test() { - assert_eq!("hello", limit_string(&"hello world".to_owned(), 5)); - assert_eq!("hi ☹", limit_string(&"hi ☹☹".to_owned(), 6)); - assert_eq!("hi ", limit_string(&"hi ☹☹".to_owned(), 5)); + assert_eq!("hello", limit_string("hello world", 5)); + assert_eq!("hi ☹", limit_string("hi ☹☹", 6)); + assert_eq!("hi ", limit_string("hi ☹☹", 5)); } #[test] diff --git a/shared/tree-sitter-extractor/tests/common/mod.rs b/shared/tree-sitter-extractor/tests/common/mod.rs index f60f575a0a27..9871ae401c05 100644 --- a/shared/tree-sitter-extractor/tests/common/mod.rs +++ b/shared/tree-sitter-extractor/tests/common/mod.rs @@ -28,7 +28,7 @@ pub fn create_source_dir(files: Vec<(&'static str, &'static str)>) -> SourceArch let path = source_archive_dir.join(filename); let mut file = File::create(&path).unwrap(); file.write_all(contents.as_bytes()).unwrap(); - file_paths.push(PathBuf::from(path)); + file_paths.push(path); } let file_list = { @@ -69,5 +69,5 @@ pub fn expect_trap_file(root_dir: &Path, filename: &str) { fn create_dir(root: &Path, path: impl AsRef) -> PathBuf { let full_path = root.join(path); std::fs::create_dir_all(&full_path).expect("Failed to create directory"); - full_path.into() + full_path } diff --git a/shared/tree-sitter-extractor/tests/integration_test.rs b/shared/tree-sitter-extractor/tests/integration_test.rs index 34d475df5d01..7a6b4945d5d2 100644 --- a/shared/tree-sitter-extractor/tests/integration_test.rs +++ b/shared/tree-sitter-extractor/tests/integration_test.rs @@ -1,7 +1,6 @@ use codeql_extractor::extractor::simple; use codeql_extractor::trap; -use tree_sitter_ql; mod common; use common::{SourceArchive, create_source_dir, expect_trap_file}; diff --git a/shared/tree-sitter-extractor/tests/multiple_languages.rs b/shared/tree-sitter-extractor/tests/multiple_languages.rs index 766de2bc7820..2e45e56754a3 100644 --- a/shared/tree-sitter-extractor/tests/multiple_languages.rs +++ b/shared/tree-sitter-extractor/tests/multiple_languages.rs @@ -1,6 +1,5 @@ use codeql_extractor::extractor::simple; use codeql_extractor::trap; -use tree_sitter_ql; mod common; use common::{SourceArchive, create_source_dir, expect_trap_file}; From d2105a75284b2c578a14cd40d88846b57f24eb26 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:29:42 +0100 Subject: [PATCH 05/14] Shared: format code again --- shared/tree-sitter-extractor/src/diagnostics.rs | 1 - shared/tree-sitter-extractor/tests/integration_test.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/shared/tree-sitter-extractor/src/diagnostics.rs b/shared/tree-sitter-extractor/src/diagnostics.rs index 781a24797d5f..3c41b85425e7 100644 --- a/shared/tree-sitter-extractor/src/diagnostics.rs +++ b/shared/tree-sitter-extractor/src/diagnostics.rs @@ -124,7 +124,6 @@ impl LogWriter { match std::fs::OpenOptions::new() .create(true) .append(true) - .open(path) { Err(e) => { diff --git a/shared/tree-sitter-extractor/tests/integration_test.rs b/shared/tree-sitter-extractor/tests/integration_test.rs index 7a6b4945d5d2..2b243ff7945b 100644 --- a/shared/tree-sitter-extractor/tests/integration_test.rs +++ b/shared/tree-sitter-extractor/tests/integration_test.rs @@ -1,7 +1,6 @@ use codeql_extractor::extractor::simple; use codeql_extractor::trap; - mod common; use common::{SourceArchive, create_source_dir, expect_trap_file}; From 83e442a2667db742beae6bca80b9ed223159fc2f Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:23:49 +0100 Subject: [PATCH 06/14] Rust/Ruby: run `cargo upgrade --incompatible --pinned` --- Cargo.lock | 435 +++++++++++++----------- rust/ast-generator/Cargo.toml | 8 +- rust/extractor/Cargo.toml | 38 +-- rust/extractor/macros/Cargo.toml | 2 +- shared/tree-sitter-extractor/Cargo.toml | 4 +- 5 files changed, 268 insertions(+), 219 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 48aa23d25ea3..fc646d201d66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "adler2" @@ -82,19 +82,20 @@ dependencies = [ [[package]] name = "anstyle-wincon" -version = "3.0.6" +version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" dependencies = [ "anstyle", + "once_cell", "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.95" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" +checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4" [[package]] name = "argfile" @@ -156,9 +157,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.7.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be" +checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "borsh" @@ -252,9 +253,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chalk-derive" -version = "0.98.0" +version = "0.99.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9426c8fd0fe61c3da880b801d3b510524df17843a8f9ec1f5b9cec24fb7412df" +checksum = "572583d9b97f9d277e5c7607f8239a30e2e04d3ed3b47c87d1cb2152ae724073" dependencies = [ "proc-macro2", "quote", @@ -264,19 +265,19 @@ dependencies = [ [[package]] name = "chalk-ir" -version = "0.98.0" +version = "0.99.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5f2eb1cd6054da221bd1ac0197fb2fe5e2caf3dcb93619398fc1433f8f09093" +checksum = "e60e0ef9c81dce1336a9ed3c76f08775f5b623151d96d85ba45f7b10de76d1c7" dependencies = [ - "bitflags 2.7.0", + "bitflags 2.8.0", "chalk-derive", ] [[package]] name = "chalk-recursive" -version = "0.98.0" +version = "0.99.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "129dc03458f71cfb9c3cd621c9c68166a94e87b85b16ccd29af015d7ff9a1c61" +checksum = "5a06350d614e22b03a69b8105e3541614450a7ea48bc58ecc6c6bd92731a3995" dependencies = [ "chalk-derive", "chalk-ir", @@ -287,9 +288,9 @@ dependencies = [ [[package]] name = "chalk-solve" -version = "0.98.0" +version = "0.99.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7e8a8c1e928f98cdf227b868416ef21dcd8cc3c61b347576d783713444d41c8" +checksum = "0e428761e9b55bee516bfe2457caed8b6d1b86353f92ae825bbe438a36ce91e8" dependencies = [ "chalk-derive", "chalk-ir", @@ -318,9 +319,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.26" +version = "4.5.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783" +checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767" dependencies = [ "clap_builder", "clap_derive", @@ -328,9 +329,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.26" +version = "4.5.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121" +checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863" dependencies = [ "anstream", "anstyle", @@ -340,9 +341,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.24" +version = "4.5.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" +checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -580,9 +581,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] name = "either" -version = "1.13.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d" [[package]] name = "ena" @@ -590,7 +591,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" dependencies = [ - "log 0.4.22", + "log 0.4.25", ] [[package]] @@ -697,9 +698,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.35" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" +checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc" dependencies = [ "crc32fast", "miniz_oxide", @@ -737,13 +738,14 @@ checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a" [[package]] name = "getrandom" -version = "0.2.15" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" dependencies = [ "cfg-if", "libc", - "wasi", + "wasi 0.13.3+wasi-0.2.2", + "windows-targets 0.52.6", ] [[package]] @@ -760,7 +762,7 @@ checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19" dependencies = [ "aho-corasick", "bstr", - "log 0.4.22", + "log 0.4.25", "regex-automata 0.4.9", "regex-syntax 0.8.5", ] @@ -875,11 +877,11 @@ checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb" [[package]] name = "inotify" -version = "0.9.6" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" +checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.8.0", "inotify-sys", "libc", ] @@ -983,7 +985,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.7.0", + "bitflags 2.8.0", "libc", "redox_syscall", ] @@ -1014,14 +1016,14 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" dependencies = [ - "log 0.4.22", + "log 0.4.25", ] [[package]] name = "log" -version = "0.4.22" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" [[package]] name = "lz4_flex" @@ -1055,23 +1057,23 @@ dependencies = [ [[package]] name = "miniz_oxide" -version = "0.8.2" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" +checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5" dependencies = [ "adler2", ] [[package]] name = "mio" -version = "0.8.11" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ "libc", - "log 0.4.22", - "wasi", - "windows-sys 0.48.0", + "log 0.4.25", + "wasi 0.11.0+wasi-snapshot-preview1", + "windows-sys 0.52.0", ] [[package]] @@ -1101,23 +1103,29 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" [[package]] name = "notify" -version = "6.1.1" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" +checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943" dependencies = [ - "bitflags 2.7.0", - "crossbeam-channel", + "bitflags 2.8.0", "filetime", "fsevent-sys", "inotify", "kqueue", "libc", - "log 0.4.22", + "log 0.4.25", "mio", + "notify-types", "walkdir", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] +[[package]] +name = "notify-types" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d" + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -1155,9 +1163,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.20.2" +version = "1.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" +checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" [[package]] name = "oorandom" @@ -1273,7 +1281,7 @@ version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" dependencies = [ - "zerocopy", + "zerocopy 0.7.35", ] [[package]] @@ -1309,20 +1317,30 @@ dependencies = [ [[package]] name = "ra-ap-rustc_abi" -version = "0.87.0" +version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28b782af0a7a8df16ddf43cd70da9f17bc3b1ce712c9e4992b6edb16f5f53632" +checksum = "3829c3355d1681ffeaf1450ec71edcdace6820fe2e86469d8fc1ad45e2c96460" dependencies = [ - "bitflags 2.7.0", + "bitflags 2.8.0", + "ra-ap-rustc_hashes", "ra-ap-rustc_index", "tracing", ] +[[package]] +name = "ra-ap-rustc_hashes" +version = "0.97.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bd4d6d4c434bec08e02370a4f64a4985312097215a62e82d0f757f3a98e502e" +dependencies = [ + "rustc-stable-hash", +] + [[package]] name = "ra-ap-rustc_index" -version = "0.87.0" +version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce5742f134960482f543b35ecebec3cacc6d79a9a685713518b4d8d70c5f9aa8" +checksum = "bad6fc4bd7522e31096e2de5b0351144fe0684b608791ee26c842bf2da1b19ae" dependencies = [ "ra-ap-rustc_index_macros", "smallvec", @@ -1330,9 +1348,9 @@ dependencies = [ [[package]] name = "ra-ap-rustc_index_macros" -version = "0.87.0" +version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7ea011fcf68309a8835ad01d91c032cb18444617b00e2cab21d45b208164441" +checksum = "cfb234e1f84b92be45276c3025bee18789e9bc95bec8789bec961e78edb01c52" dependencies = [ "proc-macro2", "quote", @@ -1341,19 +1359,20 @@ dependencies = [ [[package]] name = "ra-ap-rustc_lexer" -version = "0.87.0" +version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb76f0a4d4c20859e41f0a23bff0f37ab9ca9171c214a6c7dd72ea69434865dc" +checksum = "7a3a40bd11dc43d1cb110e730b80620cf8102f4cca8920a02b65954da0ed931f" dependencies = [ + "memchr", "unicode-properties", "unicode-xid", ] [[package]] name = "ra-ap-rustc_parse_format" -version = "0.87.0" +version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06080bd35078305421a62da77f3c128482d8d44441b6da8ce9d146d1cd9cdb5b" +checksum = "5feb877478994cb4c0c0c7a5116a352eefc0634aefc8636feb00a893fa5b7135" dependencies = [ "ra-ap-rustc_index", "ra-ap-rustc_lexer", @@ -1361,12 +1380,12 @@ dependencies = [ [[package]] name = "ra-ap-rustc_pattern_analysis" -version = "0.87.0" +version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a3154fe4c20c177d7b3c678a2d3a97aba0cca156ddef88959915041889daf0" +checksum = "a76774d35934d464c4115908cde16f76a4f7e540fe1eea6b79336c556e37bdd3" dependencies = [ "ra-ap-rustc_index", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "rustc_apfloat", "smallvec", "tracing", @@ -1374,9 +1393,9 @@ dependencies = [ [[package]] name = "ra_ap_base_db" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "548b95b278a8f6f888a0bb6cb7bf4201fe920d3800cd99770054e5eb72f3cd6a" +checksum = "5d8e4a327f1a8ace5afced54ebaa1a34f8cf0bb535a28aefb8300e8ea49a7d6e" dependencies = [ "la-arena", "lz4_flex", @@ -1387,7 +1406,7 @@ dependencies = [ "ra_ap_stdx", "ra_ap_syntax", "ra_ap_vfs", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "semver", "tracing", "triomphe", @@ -1395,30 +1414,31 @@ dependencies = [ [[package]] name = "ra_ap_cfg" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "921e2b0232d1e8352eb9f476bb55c1d8bcbed0531adc17c74aa711fef015c851" +checksum = "4d974450788b1f90243c5f2231875ed4d7087444975c0190a1c2cb02c3ed465d" dependencies = [ "ra_ap_intern", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "tracing", ] [[package]] name = "ra_ap_edition" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cc6633305d878cafb4a4482e7e7002d1a5d7b15fa837728b6613ff5336f8a4" +checksum = "c3b1b961a84cb09a4e06e44d06b2e77bcf546d0c2623df9545ba9cc694880989" [[package]] name = "ra_ap_hir" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e3f6b31381a297e5bb4fa76108a2cf7bf8d35067a130f932aa6fdfb733ba3a1" +checksum = "ff0672e35a6cf12333cb6b9e3fd18aba4bc724fa7c7b24c3253df4730be1f9c3" dependencies = [ "arrayvec", "either", + "indexmap 2.7.0", "itertools 0.12.1", "ra_ap_base_db", "ra_ap_cfg", @@ -1430,7 +1450,7 @@ dependencies = [ "ra_ap_stdx", "ra_ap_syntax", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "smallvec", "tracing", "triomphe", @@ -1438,12 +1458,12 @@ dependencies = [ [[package]] name = "ra_ap_hir_def" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84144bdda7af170e660d312982889622f4a5361c1bb74df2afa2a6ce17d48644" +checksum = "fde2fb9361257e31e73e63eb2d07445ea3fd4cd1e7bae7f45e7ba82bcfcde29a" dependencies = [ "arrayvec", - "bitflags 2.7.0", + "bitflags 2.8.0", "cov-mark", "dashmap", "drop_bomb", @@ -1454,18 +1474,18 @@ dependencies = [ "itertools 0.12.1", "la-arena", "ra-ap-rustc_abi", + "ra-ap-rustc_hashes", "ra-ap-rustc_parse_format", "ra_ap_base_db", "ra_ap_cfg", "ra_ap_hir_expand", "ra_ap_intern", - "ra_ap_limit", "ra_ap_mbe", "ra_ap_span", "ra_ap_stdx", "ra_ap_syntax", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "rustc_apfloat", "smallvec", "text-size", @@ -1475,9 +1495,9 @@ dependencies = [ [[package]] name = "ra_ap_hir_expand" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "441661b394acfa4f3ac4cb54386f8ee8b451504ec167b0bf0e4200da1bbca50d" +checksum = "1823b649710bf1829c894f774dfe66acb33a3e5bc7409ff7836cd19f6e09c250" dependencies = [ "cov-mark", "either", @@ -1487,7 +1507,6 @@ dependencies = [ "ra_ap_base_db", "ra_ap_cfg", "ra_ap_intern", - "ra_ap_limit", "ra_ap_mbe", "ra_ap_parser", "ra_ap_span", @@ -1495,7 +1514,7 @@ dependencies = [ "ra_ap_syntax", "ra_ap_syntax-bridge", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "smallvec", "tracing", "triomphe", @@ -1503,12 +1522,12 @@ dependencies = [ [[package]] name = "ra_ap_hir_ty" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6feea30dff289f33a8ed76172ff4cb299db22d224f88735aa2c7f49ba1e5e77f" +checksum = "72a591a02787bd2e938c25fceb1f831d0929b9c08726e6d831f85c4a9fba04b5" dependencies = [ "arrayvec", - "bitflags 2.7.0", + "bitflags 2.8.0", "chalk-derive", "chalk-ir", "chalk-recursive", @@ -1522,17 +1541,17 @@ dependencies = [ "nohash-hasher", "oorandom", "ra-ap-rustc_abi", + "ra-ap-rustc_hashes", "ra-ap-rustc_index", "ra-ap-rustc_pattern_analysis", "ra_ap_base_db", "ra_ap_hir_def", "ra_ap_hir_expand", "ra_ap_intern", - "ra_ap_limit", "ra_ap_span", "ra_ap_stdx", "ra_ap_syntax", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "rustc_apfloat", "scoped-tls", "smallvec", @@ -1543,12 +1562,12 @@ dependencies = [ [[package]] name = "ra_ap_ide_db" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e33bd5a0139b6c74d34ed963494115abe3f9c95cf5936871ab3d9b548ccbbdf" +checksum = "c74386061453edc3ebfd52141c7c3cde109a7427faff9792a303c3c09a762a01" dependencies = [ "arrayvec", - "bitflags 2.7.0", + "bitflags 2.8.0", "cov-mark", "crossbeam-channel", "either", @@ -1560,42 +1579,34 @@ dependencies = [ "nohash-hasher", "ra_ap_base_db", "ra_ap_hir", - "ra_ap_limit", "ra_ap_parser", "ra_ap_profile", "ra_ap_span", "ra_ap_stdx", "ra_ap_syntax", "rayon", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "tracing", "triomphe", ] [[package]] name = "ra_ap_intern" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faa7ee24ae9bf4d2536ef7fb6de35f30856edbf7b3d6ac02e5a2532118896569" +checksum = "8239ffde688b558a4335f03d14fa42dcebb203f452367830554b18e17ff1c683" dependencies = [ "dashmap", "hashbrown 0.14.5", - "rustc-hash 2.1.0", - "sptr", + "rustc-hash 2.1.1", "triomphe", ] -[[package]] -name = "ra_ap_limit" -version = "0.0.258" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90d8a2aecbd488cf79b430bd5abe6650da44ae58b31cd6052c909dbd3f5d5926" - [[package]] name = "ra_ap_load-cargo" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2372aadd32e85460de595891c8b3562126166bc94fdc24508d6784c9d93357" +checksum = "01dd50ca287042b06ca3cc62b60e6891bacee3886d39381d26f9f966e509b1c7" dependencies = [ "anyhow", "crossbeam-channel", @@ -1615,9 +1626,9 @@ dependencies = [ [[package]] name = "ra_ap_mbe" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf69ba82adb6e436617ecd09c0ff58006f376060dff437eb9fd383c2983f6d01" +checksum = "c193592a0d1dcd315cf8c60f25d37a15c6b50c2b58bfbc6eac38b123e45c8c21" dependencies = [ "arrayvec", "cov-mark", @@ -1629,38 +1640,37 @@ dependencies = [ "ra_ap_syntax", "ra_ap_syntax-bridge", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "smallvec", "tracing", ] [[package]] name = "ra_ap_parser" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f499b6c33a588d60ed9722d057954a21ec01913b97a5693ff40ba4828ffa7b9" +checksum = "b380f96951dd56b8231eeb47884fea12c57b8515ac748eedd590b26cd156681c" dependencies = [ "drop_bomb", "ra-ap-rustc_lexer", "ra_ap_edition", - "ra_ap_limit", "tracing", ] [[package]] name = "ra_ap_paths" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5a16df131fa641a4af4d9488152b7b332a6a30e93bc655fdbe88f555ba28825" +checksum = "0801105582f532bc59a2b5714a30966c4cf9bd3e5b66f4161763c1d974d2c7d5" dependencies = [ "camino", ] [[package]] name = "ra_ap_proc_macro_api" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3480e0d07197ebcc2db5836b0c39625e07b0d77c6471a2a748e5bdf54ce556e3" +checksum = "da377b243e376b82819f875c1c6624125d27b682a740bd4cafc30b4f496d0ffa" dependencies = [ "indexmap 2.7.0", "ra_ap_intern", @@ -1668,7 +1678,7 @@ dependencies = [ "ra_ap_span", "ra_ap_stdx", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "serde", "serde_derive", "serde_json", @@ -1677,21 +1687,21 @@ dependencies = [ [[package]] name = "ra_ap_profile" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b707dd9c92139030587d81b3333428f48af8f4728330ed12101ab0bb431d72" +checksum = "4d6d1391bee4f86e56385438a2dcb739cbb96bd0fbf49799a492332d57e6db62" dependencies = [ "cfg-if", "libc", "perf-event", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "ra_ap_project_model" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "551a0de5a16f0538fbaf401a319d81d1a034f7aa014e46ac87c5bd74229a211b" +checksum = "e8b1ac2712d5f6a20197b360890031e64b4ea097b511f50e2cb8ab1a0e24f577" dependencies = [ "anyhow", "cargo_metadata", @@ -1704,7 +1714,7 @@ dependencies = [ "ra_ap_span", "ra_ap_stdx", "ra_ap_toolchain", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "semver", "serde", "serde_derive", @@ -1715,9 +1725,9 @@ dependencies = [ [[package]] name = "ra_ap_salsa" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ec0c82d9e5affbf7d582750b301d279589787a5ac729f95756f5a0b0bf2b4a4" +checksum = "bc3a0a272f50e2ab831452bd3f4e7f8a571ccf01282d76f4a078f661135ed0ce" dependencies = [ "indexmap 2.7.0", "itertools 0.12.1", @@ -1725,7 +1735,7 @@ dependencies = [ "oorandom", "parking_lot", "ra_ap_salsa-macros", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "smallvec", "tracing", "triomphe", @@ -1733,9 +1743,9 @@ dependencies = [ [[package]] name = "ra_ap_salsa-macros" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8440192eb549dda1cdefc95eaa1fc42ad13cfbd303add757517d77c81e7dc2e1" +checksum = "d5d59b47a54fd5468ce0dc03b146afd0932ae0f3d05a5c15ca78d29d5e85bc31" dependencies = [ "heck 0.4.1", "proc-macro2", @@ -1745,9 +1755,9 @@ dependencies = [ [[package]] name = "ra_ap_span" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18690685d10da2577d7821d46c0de5a884bf1755e59635cbb1a795451e2a4acc" +checksum = "f10dbdd611d2546be7c400934007865e85bb37570566c715edb3aac76367a782" dependencies = [ "hashbrown 0.14.5", "la-arena", @@ -1755,15 +1765,15 @@ dependencies = [ "ra_ap_stdx", "ra_ap_syntax", "ra_ap_vfs", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "text-size", ] [[package]] name = "ra_ap_stdx" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4016934faae8413b4ad3f1bf063c7ffccdcfdf3f67ff32f4a79a197a3c1cb0da" +checksum = "b7d5c58fcda9b35d61e23f334b2b11221abf53e7f5e4344fc7eb1de18b2cbf68" dependencies = [ "always-assert", "crossbeam-channel", @@ -1771,14 +1781,14 @@ dependencies = [ "jod-thread", "libc", "miow", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "ra_ap_syntax" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8e381d21d166d12b11906171f82382473d60abfead0c4acc6d7d07150f87f73" +checksum = "75334f45a8095223823ef1d2789c085460b7b9368c63a6430d46f6f2b9bd5cb5" dependencies = [ "cov-mark", "either", @@ -1788,7 +1798,7 @@ dependencies = [ "ra_ap_parser", "ra_ap_stdx", "rowan", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "smol_str", "tracing", "triomphe", @@ -1796,9 +1806,9 @@ dependencies = [ [[package]] name = "ra_ap_syntax-bridge" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65f1960218acd2ed8e486e7bd24f80a7eb89591906c6b0831296b2a75c556b2f" +checksum = "b331a50f90ae587d230b1b55b3852ebf67ab740dec33c1a4b0900005037e77c2" dependencies = [ "ra_ap_intern", "ra_ap_parser", @@ -1806,15 +1816,15 @@ dependencies = [ "ra_ap_stdx", "ra_ap_syntax", "ra_ap_tt", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "tracing", ] [[package]] name = "ra_ap_toolchain" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9195f69ff02f076f5a726c7fbafa2b4639d00235906cb44e52ca75cd8b33c30" +checksum = "8d56e1b3a34eac0448e54afccf63a6b7699ef14a734b2f1b340246ccdd00c0d3" dependencies = [ "camino", "home", @@ -1822,9 +1832,9 @@ dependencies = [ [[package]] name = "ra_ap_tt" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ac261d79d3ec475a1f3b2a758d3e466f2b9d7d883fb72239b06979bf6880018" +checksum = "4b974b1211e0b1e17e44b1f256ca1b4a3734d4d98f43ba09ee0a8476fc3a5b83" dependencies = [ "arrayvec", "ra-ap-rustc_lexer", @@ -1835,9 +1845,9 @@ dependencies = [ [[package]] name = "ra_ap_vfs" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee35a171beccbb01b4ede1d9ad91dee487a3742d7cc39efd7aed6961027cbe78" +checksum = "2b004e20f901dae213cb1673111a2b56fec4f0d1c4c894b62668a0f69ce25065" dependencies = [ "crossbeam-channel", "fst", @@ -1845,15 +1855,15 @@ dependencies = [ "nohash-hasher", "ra_ap_paths", "ra_ap_stdx", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "tracing", ] [[package]] name = "ra_ap_vfs-notify" -version = "0.0.258" +version = "0.0.266" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b234b7651eb5d61f18d4f4643590bb8b1fd59ef766a1059741c09c540ec8cd86" +checksum = "95f9e8df03407d76e044f99ef45fafd686d775508aa7d1ba836e9eca58b833a3" dependencies = [ "crossbeam-channel", "notify", @@ -1861,27 +1871,27 @@ dependencies = [ "ra_ap_stdx", "ra_ap_vfs", "rayon", - "rustc-hash 2.1.0", + "rustc-hash 2.1.1", "tracing", "walkdir", ] [[package]] name = "rand" -version = "0.8.5" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" dependencies = [ - "libc", "rand_chacha", "rand_core", + "zerocopy 0.8.20", ] [[package]] name = "rand_chacha" -version = "0.3.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", "rand_core", @@ -1889,11 +1899,12 @@ dependencies = [ [[package]] name = "rand_core" -version = "0.6.4" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +checksum = "7a509b1a2ffbe92afab0e55c8fd99dea1c280e8171bd2d88682bb20bc41cbc2c" dependencies = [ "getrandom", + "zerocopy 0.8.20", ] [[package]] @@ -1922,7 +1933,7 @@ version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 2.7.0", + "bitflags 2.8.0", ] [[package]] @@ -1998,9 +2009,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" + +[[package]] +name = "rustc-stable-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2febf9acc5ee5e99d1ad0afcdbccc02d87aa3f857a1f01f825b80eacf8edfcd1" [[package]] name = "rustc_apfloat" @@ -2013,9 +2030,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd" [[package]] name = "same-file" @@ -2049,18 +2066,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.217" +version = "1.0.218" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" +checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.217" +version = "1.0.218" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" +checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" dependencies = [ "proc-macro2", "quote", @@ -2069,9 +2086,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.135" +version = "1.0.139" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6" dependencies = [ "itoa", "memchr", @@ -2148,9 +2165,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "smallvec" -version = "1.13.2" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd" [[package]] name = "smol_str" @@ -2162,12 +2179,6 @@ dependencies = [ "serde", ] -[[package]] -name = "sptr" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a" - [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -2188,9 +2199,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "syn" -version = "2.0.96" +version = "2.0.98" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" +checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" dependencies = [ "proc-macro2", "quote", @@ -2277,9 +2288,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.19" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" +checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148" dependencies = [ "serde", "serde_spanned", @@ -2298,9 +2309,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.22" +version = "0.22.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" dependencies = [ "indexmap 2.7.0", "serde", @@ -2358,7 +2369,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ - "log 0.4.22", + "log 0.4.25", "once_cell", "tracing-core", ] @@ -2473,9 +2484,9 @@ checksum = "a3e5df347f0bf3ec1d670aad6ca5c6a1859cd9ea61d2113125794654ccced68f" [[package]] name = "unicode-ident" -version = "1.0.14" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" +checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034" [[package]] name = "unicode-properties" @@ -2529,6 +2540,15 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +[[package]] +name = "wasi" +version = "0.13.3+wasi-0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" +dependencies = [ + "wit-bindgen-rt", +] + [[package]] name = "wasm-bindgen" version = "0.2.99" @@ -2547,7 +2567,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" dependencies = [ "bumpalo", - "log 0.4.22", + "log 0.4.25", "proc-macro2", "quote", "syn", @@ -2773,13 +2793,22 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.6.24" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a" +checksum = "0e7f4ea97f6f78012141bcdb6a216b2609f0979ada50b20ca5b52dde2eac2bb1" dependencies = [ "memchr", ] +[[package]] +name = "wit-bindgen-rt" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" +dependencies = [ + "bitflags 2.8.0", +] + [[package]] name = "yansi" version = "1.0.1" @@ -2793,7 +2822,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ "byteorder", - "zerocopy-derive", + "zerocopy-derive 0.7.35", +] + +[[package]] +name = "zerocopy" +version = "0.8.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dde3bb8c68a8f3f1ed4ac9221aad6b10cece3e60a8e2ea54a6a2dec806d0084c" +dependencies = [ + "zerocopy-derive 0.8.20", ] [[package]] @@ -2806,3 +2844,14 @@ dependencies = [ "quote", "syn", ] + +[[package]] +name = "zerocopy-derive" +version = "0.8.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eea57037071898bf96a6da35fd626f4f27e9cee3ead2a6c703cf09d472b2e700" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/rust/ast-generator/Cargo.toml b/rust/ast-generator/Cargo.toml index d239ed3de089..6e89b5d140cc 100644 --- a/rust/ast-generator/Cargo.toml +++ b/rust/ast-generator/Cargo.toml @@ -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" diff --git a/rust/extractor/Cargo.toml b/rust/extractor/Cargo.toml index 3edcbc744db7..cc7c67407964 100644 --- a/rust/extractor/Cargo.toml +++ b/rust/extractor/Cargo.toml @@ -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" diff --git a/rust/extractor/macros/Cargo.toml b/rust/extractor/macros/Cargo.toml index 1f1c44b7d15d..06c1a6c43088 100644 --- a/rust/extractor/macros/Cargo.toml +++ b/rust/extractor/macros/Cargo.toml @@ -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"] } diff --git a/shared/tree-sitter-extractor/Cargo.toml b/shared/tree-sitter-extractor/Cargo.toml index a24523e7afbc..4c5bcd199419 100644 --- a/shared/tree-sitter-extractor/Cargo.toml +++ b/shared/tree-sitter-extractor/Cargo.toml @@ -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" From 17703ec908eff8bbe50092d40dbd28c32307ffe4 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:26:39 +0100 Subject: [PATCH 07/14] Bazel: update vendored rust dependencies --- MODULE.bazel | 102 +- misc/bazel/3rdparty/BUILD.bazel | 2 +- .../BUILD.aho-corasick-1.1.3.bazel | 2 +- .../BUILD.always-assert-0.2.0.bazel | 2 +- ...UILD.android_system_properties-0.1.5.bazel | 2 +- .../BUILD.anstream-0.6.18.bazel | 18 +- .../BUILD.anstyle-parse-0.2.6.bazel | 2 +- .../BUILD.anstyle-query-1.1.2.bazel | 6 +- ...bazel => BUILD.anstyle-wincon-3.0.7.bazel} | 13 +- ...1.0.95.bazel => BUILD.anyhow-1.0.96.bazel} | 6 +- .../BUILD.argfile-0.2.1.bazel | 4 +- .../BUILD.atomic-0.6.0.bazel | 2 +- .../tree_sitter_extractors_deps/BUILD.bazel | 256 +-- ...2.7.0.bazel => BUILD.bitflags-2.8.0.bazel} | 2 +- .../BUILD.borsh-1.5.3.bazel | 4 +- .../BUILD.bstr-1.11.3.bazel | 2 +- .../BUILD.camino-1.1.9.bazel | 4 +- .../BUILD.cargo-platform-0.1.9.bazel | 2 +- .../BUILD.cargo_metadata-0.18.1.bazel | 12 +- .../BUILD.cc-1.2.7.bazel | 2 +- ....bazel => BUILD.chalk-derive-0.99.0.bazel} | 10 +- ...98.0.bazel => BUILD.chalk-ir-0.99.0.bazel} | 6 +- ...zel => BUILD.chalk-recursive-0.99.0.bazel} | 12 +- ...0.bazel => BUILD.chalk-solve-0.99.0.bazel} | 18 +- .../BUILD.chrono-0.4.39.bazel | 70 +- ...p-4.5.26.bazel => BUILD.clap-4.5.31.bazel} | 6 +- ....bazel => BUILD.clap_builder-4.5.31.bazel} | 10 +- ...4.bazel => BUILD.clap_derive-4.5.28.bazel} | 10 +- .../BUILD.crc32fast-1.4.2.bazel | 2 +- .../BUILD.crossbeam-channel-0.5.14.bazel | 2 +- .../BUILD.crossbeam-deque-0.8.6.bazel | 4 +- .../BUILD.crossbeam-epoch-0.9.18.bazel | 2 +- .../BUILD.crossbeam-utils-0.8.21.bazel | 2 +- .../BUILD.darling-0.20.10.bazel | 4 +- .../BUILD.darling_core-0.20.10.bazel | 12 +- .../BUILD.darling_macro-0.20.10.bazel | 6 +- .../BUILD.dashmap-5.5.3.bazel | 10 +- ...1.13.0.bazel => BUILD.either-1.14.0.bazel} | 4 +- .../BUILD.ena-0.14.3.bazel | 2 +- .../BUILD.encoding-0.2.33.bazel | 10 +- ...encoding-index-japanese-1.20141219.5.bazel | 2 +- ...D.encoding-index-korean-1.20141219.5.bazel | 2 +- ...oding-index-simpchinese-1.20141219.5.bazel | 2 +- ...coding-index-singlebyte-1.20141219.5.bazel | 2 +- ...oding-index-tradchinese-1.20141219.5.bazel | 2 +- .../BUILD.figment-0.10.19.bazel | 40 +- .../BUILD.filetime-0.2.25.bazel | 56 +- ...-1.0.35.bazel => BUILD.flate2-1.1.0.bazel} | 6 +- .../BUILD.fs-err-2.11.0.bazel | 4 +- .../BUILD.fsevent-sys-4.1.0.bazel | 2 +- .../BUILD.fst-0.4.7.bazel | 2 +- .../BUILD.getrandom-0.2.15.bazel | 166 -- .../BUILD.getrandom-0.3.1.bazel | 226 +++ .../BUILD.globset-0.4.15.bazel | 10 +- .../BUILD.home-0.5.11.bazel | 6 +- .../BUILD.iana-time-zone-0.1.61.bazel | 30 +- .../BUILD.iana-time-zone-haiku-0.1.2.bazel | 4 +- .../BUILD.indexmap-1.9.3.bazel | 6 +- .../BUILD.indexmap-2.7.0.bazel | 4 +- ...0.9.6.bazel => BUILD.inotify-0.11.0.bazel} | 8 +- .../BUILD.inotify-sys-0.1.5.bazel | 2 +- .../BUILD.itertools-0.12.1.bazel | 2 +- .../BUILD.itertools-0.14.0.bazel | 2 +- .../BUILD.js-sys-0.3.76.bazel | 4 +- .../BUILD.kqueue-1.0.8.bazel | 4 +- .../BUILD.kqueue-sys-1.0.4.bazel | 4 +- .../BUILD.libc-0.2.169.bazel | 2 +- .../BUILD.libredox-0.1.3.bazel | 6 +- .../BUILD.line-index-0.1.2.bazel | 4 +- .../BUILD.lock_api-0.4.12.bazel | 6 +- .../BUILD.log-0.3.9.bazel | 2 +- ...og-0.4.22.bazel => BUILD.log-0.4.25.bazel} | 2 +- .../BUILD.matchers-0.1.0.bazel | 2 +- .../BUILD.memoffset-0.9.1.bazel | 4 +- ....2.bazel => BUILD.miniz_oxide-0.8.5.bazel} | 4 +- ...mio-0.8.11.bazel => BUILD.mio-1.0.3.bazel} | 64 +- .../BUILD.miow-0.6.0.bazel | 2 +- .../BUILD.mustache-0.9.0.bazel | 4 +- .../BUILD.notify-6.1.1.bazel | 179 --- .../BUILD.notify-8.0.0.bazel | 190 +++ ...8.bazel => BUILD.notify-types-2.0.0.bazel} | 6 +- .../BUILD.nu-ansi-term-0.46.0.bazel | 8 +- .../BUILD.num-traits-0.2.19.bazel | 4 +- .../BUILD.num_cpus-1.16.0.bazel | 66 +- ...0.2.bazel => BUILD.once_cell-1.20.3.bazel} | 2 +- .../BUILD.os_str_bytes-7.0.0.bazel | 2 +- .../BUILD.parking_lot-0.12.3.bazel | 4 +- .../BUILD.parking_lot_core-0.9.10.bazel | 60 +- .../BUILD.pear-0.2.9.bazel | 6 +- .../BUILD.pear_codegen-0.2.9.bazel | 8 +- .../BUILD.perf-event-0.4.7.bazel | 4 +- .../BUILD.perf-event-open-sys-1.0.1.bazel | 2 +- .../BUILD.petgraph-0.6.5.bazel | 4 +- .../BUILD.ppv-lite86-0.2.20.bazel | 2 +- .../BUILD.proc-macro2-1.0.93.bazel | 4 +- ...BUILD.proc-macro2-diagnostics-0.10.1.bazel | 12 +- .../BUILD.quote-1.0.38.bazel | 2 +- ...zel => BUILD.ra-ap-rustc_abi-0.97.0.bazel} | 14 +- .../BUILD.ra-ap-rustc_hashes-0.97.0.bazel | 86 + ...l => BUILD.ra-ap-rustc_index-0.97.0.bazel} | 10 +- ...ILD.ra-ap-rustc_index_macros-0.97.0.bazel} | 10 +- ...l => BUILD.ra-ap-rustc_lexer-0.97.0.bazel} | 9 +- ...ILD.ra-ap-rustc_parse_format-0.97.0.bazel} | 12 +- ...ra-ap-rustc_pattern_analysis-0.97.0.bazel} | 16 +- ...azel => BUILD.ra_ap_base_db-0.0.266.bazel} | 40 +- ...58.bazel => BUILD.ra_ap_cfg-0.0.266.bazel} | 14 +- ...azel => BUILD.ra_ap_edition-0.0.266.bazel} | 2 +- ...58.bazel => BUILD.ra_ap_hir-0.0.266.bazel} | 57 +- ...azel => BUILD.ra_ap_hir_def-0.0.266.bazel} | 79 +- ...l => BUILD.ra_ap_hir_expand-0.0.266.bazel} | 62 +- ...bazel => BUILD.ra_ap_hir_ty-0.0.266.bazel} | 81 +- ...bazel => BUILD.ra_ap_ide_db-0.0.266.bazel} | 62 +- ...bazel => BUILD.ra_ap_intern-0.0.266.bazel} | 11 +- ...l => BUILD.ra_ap_load-cargo-0.0.266.bazel} | 50 +- ...58.bazel => BUILD.ra_ap_mbe-0.0.266.bazel} | 42 +- ...bazel => BUILD.ra_ap_parser-0.0.266.bazel} | 14 +- ....bazel => BUILD.ra_ap_paths-0.0.266.bazel} | 4 +- ... BUILD.ra_ap_proc_macro_api-0.0.266.bazel} | 34 +- ...azel => BUILD.ra_ap_profile-0.0.266.bazel} | 30 +- ...> BUILD.ra_ap_project_model-0.0.266.bazel} | 52 +- ....bazel => BUILD.ra_ap_salsa-0.0.266.bazel} | 22 +- ...=> BUILD.ra_ap_salsa-macros-0.0.266.bazel} | 10 +- ...8.bazel => BUILD.ra_ap_span-0.0.266.bazel} | 24 +- ...8.bazel => BUILD.ra_ap_stdx-0.0.266.bazel} | 24 +- ...bazel => BUILD.ra_ap_syntax-0.0.266.bazel} | 30 +- ...> BUILD.ra_ap_syntax-bridge-0.0.266.bazel} | 30 +- ...el => BUILD.ra_ap_toolchain-0.0.266.bazel} | 6 +- ...258.bazel => BUILD.ra_ap_tt-0.0.266.bazel} | 16 +- ...58.bazel => BUILD.ra_ap_vfs-0.0.266.bazel} | 22 +- ...l => BUILD.ra_ap_vfs-notify-0.0.266.bazel} | 26 +- .../BUILD.rand-0.8.5.bazel | 170 -- .../BUILD.rand-0.9.0.bazel | 97 ++ ....1.bazel => BUILD.rand_chacha-0.9.0.bazel} | 8 +- ....6.4.bazel => BUILD.rand_core-0.9.2.bazel} | 10 +- .../BUILD.rayon-1.10.0.bazel | 4 +- .../BUILD.rayon-core-1.12.1.bazel | 6 +- .../BUILD.redox_syscall-0.5.8.bazel | 2 +- .../BUILD.regex-1.11.1.bazel | 8 +- .../BUILD.regex-automata-0.1.10.bazel | 2 +- .../BUILD.regex-automata-0.4.9.bazel | 6 +- .../BUILD.rowan-0.15.15.bazel | 10 +- ...1.0.bazel => BUILD.rustc-hash-2.1.1.bazel} | 2 +- .../BUILD.rustc-stable-hash-0.1.1.bazel | 83 + ...ustc_apfloat-0.2.1+llvm-462a31f5a5ab.bazel | 6 +- ...yu-1.0.18.bazel => BUILD.ryu-1.0.19.bazel} | 2 +- .../BUILD.same-file-1.0.6.bazel | 6 +- .../BUILD.semver-1.0.24.bazel | 4 +- ....0.217.bazel => BUILD.serde-1.0.218.bazel} | 8 +- ...bazel => BUILD.serde_derive-1.0.218.bazel} | 8 +- ...5.bazel => BUILD.serde_json-1.0.139.bazel} | 14 +- .../BUILD.serde_spanned-0.6.8.bazel | 2 +- .../BUILD.serde_with-3.12.0.bazel | 6 +- .../BUILD.serde_with_macros-3.12.0.bazel | 8 +- .../BUILD.serde_yaml-0.9.34+deprecated.bazel | 10 +- .../BUILD.sharded-slab-0.1.7.bazel | 2 +- ...13.2.bazel => BUILD.smallvec-1.14.0.bazel} | 2 +- .../BUILD.sptr-0.3.2.bazel | 86 - ...yn-2.0.96.bazel => BUILD.syn-2.0.98.bazel} | 8 +- .../BUILD.synstructure-0.13.1.bazel | 6 +- .../BUILD.thiserror-1.0.69.bazel | 4 +- .../BUILD.thiserror-impl-1.0.69.bazel | 6 +- .../BUILD.thread_local-1.1.8.bazel | 4 +- .../BUILD.time-0.3.37.bazel | 8 +- .../BUILD.time-macros-0.2.19.bazel | 4 +- ...l-0.8.19.bazel => BUILD.toml-0.8.20.bazel} | 10 +- .../BUILD.toml_datetime-0.6.8.bazel | 2 +- ...22.bazel => BUILD.toml_edit-0.22.24.bazel} | 12 +- .../BUILD.tracing-0.1.41.bazel | 6 +- .../BUILD.tracing-attributes-0.1.28.bazel | 6 +- .../BUILD.tracing-core-0.1.33.bazel | 2 +- .../BUILD.tracing-flame-0.2.0.bazel | 6 +- .../BUILD.tracing-log-0.2.0.bazel | 6 +- .../BUILD.tracing-subscriber-0.3.19.bazel | 20 +- .../BUILD.tree-sitter-0.24.6.bazel | 12 +- ...tree-sitter-embedded-template-0.23.2.bazel | 6 +- .../BUILD.tree-sitter-json-0.24.8.bazel | 6 +- .../BUILD.tree-sitter-ql-0.23.1.bazel | 6 +- .../BUILD.tree-sitter-ruby-0.23.1.bazel | 6 +- .../BUILD.triomphe-0.1.14.bazel | 4 +- .../BUILD.uncased-0.9.10.bazel | 4 +- ...bazel => BUILD.unicode-ident-1.0.16.bazel} | 2 +- .../BUILD.valuable-0.1.0.bazel | 2 +- .../BUILD.walkdir-2.5.0.bazel | 8 +- .../BUILD.wasi-0.13.3+wasi-0.2.2.bazel | 86 + .../BUILD.wasm-bindgen-0.2.99.bazel | 8 +- .../BUILD.wasm-bindgen-backend-0.2.99.bazel | 12 +- .../BUILD.wasm-bindgen-macro-0.2.99.bazel | 4 +- ...LD.wasm-bindgen-macro-support-0.2.99.bazel | 10 +- .../BUILD.wasm-bindgen-shared-0.2.99.bazel | 2 +- .../BUILD.winapi-0.3.9.bazel | 2 +- ...ILD.winapi-i686-pc-windows-gnu-0.4.0.bazel | 2 +- .../BUILD.winapi-util-0.1.9.bazel | 6 +- ...D.winapi-x86_64-pc-windows-gnu-0.4.0.bazel | 2 +- .../BUILD.windows-core-0.52.0.bazel | 2 +- .../BUILD.windows-sys-0.48.0.bazel | 3 +- .../BUILD.windows-sys-0.52.0.bazel | 10 +- .../BUILD.windows-sys-0.59.0.bazel | 7 +- .../BUILD.windows-targets-0.48.5.bazel | 12 +- .../BUILD.windows-targets-0.52.6.bazel | 12 +- ...BUILD.windows_aarch64_gnullvm-0.48.5.bazel | 2 +- ...BUILD.windows_aarch64_gnullvm-0.52.6.bazel | 2 +- .../BUILD.windows_aarch64_msvc-0.48.5.bazel | 2 +- .../BUILD.windows_aarch64_msvc-0.52.6.bazel | 2 +- .../BUILD.windows_i686_gnu-0.48.5.bazel | 2 +- .../BUILD.windows_i686_gnu-0.52.6.bazel | 2 +- .../BUILD.windows_i686_gnullvm-0.52.6.bazel | 2 +- .../BUILD.windows_i686_msvc-0.48.5.bazel | 2 +- .../BUILD.windows_i686_msvc-0.52.6.bazel | 2 +- .../BUILD.windows_x86_64_gnu-0.48.5.bazel | 2 +- .../BUILD.windows_x86_64_gnu-0.52.6.bazel | 2 +- .../BUILD.windows_x86_64_gnullvm-0.48.5.bazel | 2 +- .../BUILD.windows_x86_64_gnullvm-0.52.6.bazel | 2 +- .../BUILD.windows_x86_64_msvc-0.48.5.bazel | 2 +- .../BUILD.windows_x86_64_msvc-0.52.6.bazel | 2 +- ...-0.6.24.bazel => BUILD.winnow-0.7.3.bazel} | 2 +- .../BUILD.wit-bindgen-rt-0.33.0.bazel | 142 ++ .../BUILD.zerocopy-0.7.35.bazel | 4 +- .../BUILD.zerocopy-0.8.20.bazel | 148 ++ .../BUILD.zerocopy-derive-0.7.35.bazel | 6 +- .../BUILD.zerocopy-derive-0.8.20.bazel | 88 ++ .../tree_sitter_extractors_deps/crates.bzl | 4 +- .../tree_sitter_extractors_deps/defs.bzl | 1403 +++++++++-------- 222 files changed, 3129 insertions(+), 2529 deletions(-) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.anstyle-wincon-3.0.6.bazel => BUILD.anstyle-wincon-3.0.7.bazel} (88%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.anyhow-1.0.95.bazel => BUILD.anyhow-1.0.96.bazel} (97%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.bitflags-2.7.0.bazel => BUILD.bitflags-2.8.0.bazel} (99%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.chalk-derive-0.98.0.bazel => BUILD.chalk-derive-0.99.0.bazel} (94%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.chalk-ir-0.98.0.bazel => BUILD.chalk-ir-0.99.0.bazel} (96%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.chalk-recursive-0.98.0.bazel => BUILD.chalk-recursive-0.99.0.bazel} (92%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.chalk-solve-0.98.0.bazel => BUILD.chalk-solve-0.99.0.bazel} (89%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.clap-4.5.26.bazel => BUILD.clap-4.5.31.bazel} (96%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.clap_builder-4.5.26.bazel => BUILD.clap_builder-4.5.31.bazel} (94%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.clap_derive-4.5.24.bazel => BUILD.clap_derive-4.5.28.bazel} (94%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.either-1.13.0.bazel => BUILD.either-1.14.0.bazel} (98%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.flate2-1.0.35.bazel => BUILD.flate2-1.1.0.bazel} (96%) delete mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.2.15.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.3.1.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.inotify-0.9.6.bazel => BUILD.inotify-0.11.0.bazel} (95%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.log-0.4.22.bazel => BUILD.log-0.4.25.bazel} (99%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.miniz_oxide-0.8.2.bazel => BUILD.miniz_oxide-0.8.5.bazel} (98%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.mio-0.8.11.bazel => BUILD.mio-1.0.3.bazel} (74%) delete mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-6.1.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-8.0.0.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_limit-0.0.258.bazel => BUILD.notify-types-2.0.0.bazel} (97%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.once_cell-1.20.2.bazel => BUILD.once_cell-1.20.3.bazel} (99%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra-ap-rustc_abi-0.87.0.bazel => BUILD.ra-ap-rustc_abi-0.97.0.bazel} (88%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_hashes-0.97.0.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra-ap-rustc_index-0.87.0.bazel => BUILD.ra-ap-rustc_index-0.97.0.bazel} (92%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra-ap-rustc_index_macros-0.87.0.bazel => BUILD.ra-ap-rustc_index_macros-0.97.0.bazel} (95%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra-ap-rustc_lexer-0.87.0.bazel => BUILD.ra-ap-rustc_lexer-0.97.0.bazel} (94%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra-ap-rustc_parse_format-0.87.0.bazel => BUILD.ra-ap-rustc_parse_format-0.97.0.bazel} (91%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra-ap-rustc_pattern_analysis-0.87.0.bazel => BUILD.ra-ap-rustc_pattern_analysis-0.97.0.bazel} (89%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_base_db-0.0.258.bazel => BUILD.ra_ap_base_db-0.0.266.bazel} (76%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_cfg-0.0.258.bazel => BUILD.ra_ap_cfg-0.0.266.bazel} (90%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_edition-0.0.258.bazel => BUILD.ra_ap_edition-0.0.266.bazel} (99%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_hir-0.0.258.bazel => BUILD.ra_ap_hir-0.0.266.bazel} (68%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_hir_def-0.0.258.bazel => BUILD.ra_ap_hir_def-0.0.266.bazel} (61%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_hir_expand-0.0.258.bazel => BUILD.ra_ap_hir_expand-0.0.266.bazel} (67%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_hir_ty-0.0.258.bazel => BUILD.ra_ap_hir_ty-0.0.266.bazel} (60%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_ide_db-0.0.258.bazel => BUILD.ra_ap_ide_db-0.0.266.bazel} (68%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_intern-0.0.258.bazel => BUILD.ra_ap_intern-0.0.266.bazel} (93%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_load-cargo-0.0.258.bazel => BUILD.ra_ap_load-cargo-0.0.266.bazel} (69%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_mbe-0.0.258.bazel => BUILD.ra_ap_mbe-0.0.266.bazel} (74%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_parser-0.0.258.bazel => BUILD.ra_ap_parser-0.0.266.bazel} (89%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_paths-0.0.258.bazel => BUILD.ra_ap_paths-0.0.266.bazel} (98%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_proc_macro_api-0.0.258.bazel => BUILD.ra_ap_proc_macro_api-0.0.266.bazel} (79%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_profile-0.0.258.bazel => BUILD.ra_ap_profile-0.0.266.bazel} (80%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_project_model-0.0.258.bazel => BUILD.ra_ap_project_model-0.0.266.bazel} (71%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_salsa-0.0.258.bazel => BUILD.ra_ap_salsa-0.0.266.bazel} (86%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_salsa-macros-0.0.258.bazel => BUILD.ra_ap_salsa-macros-0.0.266.bazel} (94%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_span-0.0.258.bazel => BUILD.ra_ap_span-0.0.266.bazel} (85%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_stdx-0.0.258.bazel => BUILD.ra_ap_stdx-0.0.266.bazel} (84%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_syntax-0.0.258.bazel => BUILD.ra_ap_syntax-0.0.266.bazel} (82%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_syntax-bridge-0.0.258.bazel => BUILD.ra_ap_syntax-bridge-0.0.266.bazel} (80%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_toolchain-0.0.258.bazel => BUILD.ra_ap_toolchain-0.0.266.bazel} (96%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_tt-0.0.258.bazel => BUILD.ra_ap_tt-0.0.266.bazel} (89%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_vfs-0.0.258.bazel => BUILD.ra_ap_vfs-0.0.266.bazel} (86%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ra_ap_vfs-notify-0.0.258.bazel => BUILD.ra_ap_vfs-notify-0.0.266.bazel} (84%) delete mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.8.5.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.9.0.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.rand_chacha-0.3.1.bazel => BUILD.rand_chacha-0.9.0.bazel} (95%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.rand_core-0.6.4.bazel => BUILD.rand_core-0.9.2.bazel} (95%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.rustc-hash-2.1.0.bazel => BUILD.rustc-hash-2.1.1.bazel} (99%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-stable-hash-0.1.1.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.ryu-1.0.18.bazel => BUILD.ryu-1.0.19.bazel} (99%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.serde-1.0.217.bazel => BUILD.serde-1.0.218.bazel} (96%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.serde_derive-1.0.217.bazel => BUILD.serde_derive-1.0.218.bazel} (95%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.serde_json-1.0.135.bazel => BUILD.serde_json-1.0.139.bazel} (94%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.smallvec-1.13.2.bazel => BUILD.smallvec-1.14.0.bazel} (99%) delete mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sptr-0.3.2.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.syn-2.0.96.bazel => BUILD.syn-2.0.98.bazel} (95%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.toml-0.8.19.bazel => BUILD.toml-0.8.20.bazel} (93%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.toml_edit-0.22.22.bazel => BUILD.toml_edit-0.22.24.bazel} (92%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.unicode-ident-1.0.14.bazel => BUILD.unicode-ident-1.0.16.bazel} (99%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasi-0.13.3+wasi-0.2.2.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.winnow-0.6.24.bazel => BUILD.winnow-0.7.3.bazel} (99%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wit-bindgen-rt-0.33.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.8.20.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.8.20.bazel diff --git a/MODULE.bazel b/MODULE.bazel index c4a2526479a5..8fecb2770b90 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -71,57 +71,57 @@ use_repo( 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.95", - "vendor__argfile-0.2.1", - "vendor__chrono-0.4.39", - "vendor__clap-4.5.26", - "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__mustache-0.9.0", - "vendor__num-traits-0.2.19", - "vendor__num_cpus-1.16.0", - "vendor__proc-macro2-1.0.93", - "vendor__quote-1.0.38", - "vendor__ra_ap_base_db-0.0.258", - "vendor__ra_ap_cfg-0.0.258", - "vendor__ra_ap_hir-0.0.258", - "vendor__ra_ap_hir_def-0.0.258", - "vendor__ra_ap_hir_expand-0.0.258", - "vendor__ra_ap_ide_db-0.0.258", - "vendor__ra_ap_intern-0.0.258", - "vendor__ra_ap_load-cargo-0.0.258", - "vendor__ra_ap_parser-0.0.258", - "vendor__ra_ap_paths-0.0.258", - "vendor__ra_ap_project_model-0.0.258", - "vendor__ra_ap_span-0.0.258", - "vendor__ra_ap_stdx-0.0.258", - "vendor__ra_ap_syntax-0.0.258", - "vendor__ra_ap_vfs-0.0.258", - "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__syn-2.0.96", - "vendor__toml-0.8.19", - "vendor__tracing-0.1.41", - "vendor__tracing-flame-0.2.0", - "vendor__tracing-subscriber-0.3.19", - "vendor__tree-sitter-0.24.6", - "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", + "vendor_ts__anyhow-1.0.96", + "vendor_ts__argfile-0.2.1", + "vendor_ts__chrono-0.4.39", + "vendor_ts__clap-4.5.31", + "vendor_ts__dunce-1.0.5", + "vendor_ts__either-1.14.0", + "vendor_ts__encoding-0.2.33", + "vendor_ts__figment-0.10.19", + "vendor_ts__flate2-1.1.0", + "vendor_ts__glob-0.3.2", + "vendor_ts__globset-0.4.15", + "vendor_ts__itertools-0.14.0", + "vendor_ts__lazy_static-1.5.0", + "vendor_ts__mustache-0.9.0", + "vendor_ts__num-traits-0.2.19", + "vendor_ts__num_cpus-1.16.0", + "vendor_ts__proc-macro2-1.0.93", + "vendor_ts__quote-1.0.38", + "vendor_ts__ra_ap_base_db-0.0.266", + "vendor_ts__ra_ap_cfg-0.0.266", + "vendor_ts__ra_ap_hir-0.0.266", + "vendor_ts__ra_ap_hir_def-0.0.266", + "vendor_ts__ra_ap_hir_expand-0.0.266", + "vendor_ts__ra_ap_ide_db-0.0.266", + "vendor_ts__ra_ap_intern-0.0.266", + "vendor_ts__ra_ap_load-cargo-0.0.266", + "vendor_ts__ra_ap_parser-0.0.266", + "vendor_ts__ra_ap_paths-0.0.266", + "vendor_ts__ra_ap_project_model-0.0.266", + "vendor_ts__ra_ap_span-0.0.266", + "vendor_ts__ra_ap_stdx-0.0.266", + "vendor_ts__ra_ap_syntax-0.0.266", + "vendor_ts__ra_ap_vfs-0.0.266", + "vendor_ts__rand-0.9.0", + "vendor_ts__rayon-1.10.0", + "vendor_ts__regex-1.11.1", + "vendor_ts__serde-1.0.218", + "vendor_ts__serde_json-1.0.139", + "vendor_ts__serde_with-3.12.0", + "vendor_ts__syn-2.0.98", + "vendor_ts__toml-0.8.20", + "vendor_ts__tracing-0.1.41", + "vendor_ts__tracing-flame-0.2.0", + "vendor_ts__tracing-subscriber-0.3.19", + "vendor_ts__tree-sitter-0.24.6", + "vendor_ts__tree-sitter-embedded-template-0.23.2", + "vendor_ts__tree-sitter-json-0.24.8", + "vendor_ts__tree-sitter-ql-0.23.1", + "vendor_ts__tree-sitter-ruby-0.23.1", + "vendor_ts__triomphe-0.1.14", + "vendor_ts__ungrammar-1.16.1", ) http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") diff --git a/misc/bazel/3rdparty/BUILD.bazel b/misc/bazel/3rdparty/BUILD.bazel index 9855fdb1164f..4e12f92edee7 100644 --- a/misc/bazel/3rdparty/BUILD.bazel +++ b/misc/bazel/3rdparty/BUILD.bazel @@ -15,7 +15,7 @@ crates_vendor( "//shared/tree-sitter-extractor:Cargo.toml", ], mode = "remote", - repository_name = "vendor", + repository_name = "vendor_ts", tags = ["manual"], vendor_path = "tree_sitter_extractors_deps", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.aho-corasick-1.1.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.aho-corasick-1.1.3.bazel index 37d0f615d9ff..cade1a4cb938 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.aho-corasick-1.1.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.aho-corasick-1.1.3.bazel @@ -86,6 +86,6 @@ rust_library( }), version = "1.1.3", deps = [ - "@vendor__memchr-2.7.4//:memchr", + "@vendor_ts__memchr-2.7.4//:memchr", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.always-assert-0.2.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.always-assert-0.2.0.bazel index d95cf3dfd87a..bb05dcce52e4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.always-assert-0.2.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.always-assert-0.2.0.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "0.2.0", deps = [ - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.android_system_properties-0.1.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.android_system_properties-0.1.5.bazel index 700ea1d12517..a6d0823636ee 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.android_system_properties-0.1.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.android_system_properties-0.1.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.1.5", deps = [ - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstream-0.6.18.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstream-0.6.18.bazel index d317a8b4049c..3221dab6e8ba 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstream-0.6.18.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstream-0.6.18.bazel @@ -86,21 +86,21 @@ rust_library( }), version = "0.6.18", deps = [ - "@vendor__anstyle-1.0.10//:anstyle", - "@vendor__anstyle-parse-0.2.6//:anstyle_parse", - "@vendor__anstyle-query-1.1.2//:anstyle_query", - "@vendor__colorchoice-1.0.3//:colorchoice", - "@vendor__is_terminal_polyfill-1.70.1//:is_terminal_polyfill", - "@vendor__utf8parse-0.2.2//:utf8parse", + "@vendor_ts__anstyle-1.0.10//:anstyle", + "@vendor_ts__anstyle-parse-0.2.6//:anstyle_parse", + "@vendor_ts__anstyle-query-1.1.2//:anstyle_query", + "@vendor_ts__colorchoice-1.0.3//:colorchoice", + "@vendor_ts__is_terminal_polyfill-1.70.1//:is_terminal_polyfill", + "@vendor_ts__utf8parse-0.2.2//:utf8parse", ] + select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__anstyle-wincon-3.0.6//:anstyle_wincon", # aarch64-pc-windows-msvc + "@vendor_ts__anstyle-wincon-3.0.7//:anstyle_wincon", # aarch64-pc-windows-msvc ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__anstyle-wincon-3.0.6//:anstyle_wincon", # i686-pc-windows-msvc + "@vendor_ts__anstyle-wincon-3.0.7//:anstyle_wincon", # i686-pc-windows-msvc ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__anstyle-wincon-3.0.6//:anstyle_wincon", # x86_64-pc-windows-msvc + "@vendor_ts__anstyle-wincon-3.0.7//:anstyle_wincon", # x86_64-pc-windows-msvc ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-parse-0.2.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-parse-0.2.6.bazel index 5f1a8e7b478c..afc929f16948 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-parse-0.2.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-parse-0.2.6.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "0.2.6", deps = [ - "@vendor__utf8parse-0.2.2//:utf8parse", + "@vendor_ts__utf8parse-0.2.2//:utf8parse", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-query-1.1.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-query-1.1.2.bazel index 1256ede91579..2c8e86e0445e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-query-1.1.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-query-1.1.2.bazel @@ -82,13 +82,13 @@ rust_library( version = "1.1.2", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-wincon-3.0.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-wincon-3.0.7.bazel similarity index 88% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-wincon-3.0.6.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-wincon-3.0.7.bazel index 6490cd9011e8..b3491e3a0594 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-wincon-3.0.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anstyle-wincon-3.0.7.bazel @@ -79,18 +79,21 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "3.0.6", + version = "3.0.7", deps = [ - "@vendor__anstyle-1.0.10//:anstyle", + "@vendor_ts__anstyle-1.0.10//:anstyle", ] + select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__once_cell-1.20.3//:once_cell", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__once_cell-1.20.3//:once_cell", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__once_cell-1.20.3//:once_cell", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anyhow-1.0.95.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anyhow-1.0.96.bazel similarity index 97% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anyhow-1.0.95.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anyhow-1.0.96.bazel index 30ee807dacf3..25be98a2a2aa 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anyhow-1.0.95.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.anyhow-1.0.96.bazel @@ -84,9 +84,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.95", + version = "1.0.96", deps = [ - "@vendor__anyhow-1.0.95//:build_script_build", + "@vendor_ts__anyhow-1.0.96//:build_script_build", ], ) @@ -139,7 +139,7 @@ cargo_build_script( "noclippy", "norustfmt", ], - version = "1.0.95", + version = "1.0.96", visibility = ["//visibility:private"], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.argfile-0.2.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.argfile-0.2.1.bazel index a7f09f81f519..b2fff86bc5d9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.argfile-0.2.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.argfile-0.2.1.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "0.2.1", deps = [ - "@vendor__fs-err-2.11.0//:fs_err", - "@vendor__os_str_bytes-7.0.0//:os_str_bytes", + "@vendor_ts__fs-err-2.11.0//:fs_err", + "@vendor_ts__os_str_bytes-7.0.0//:os_str_bytes", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.atomic-0.6.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.atomic-0.6.0.bazel index ccbde7b37ad2..fb24bd230eef 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.atomic-0.6.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.atomic-0.6.0.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "0.6.0", deps = [ - "@vendor__bytemuck-1.21.0//:bytemuck", + "@vendor_ts__bytemuck-1.21.0//:bytemuck", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel index 952ad2432905..3632f78bd5f4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel @@ -32,619 +32,619 @@ filegroup( # Workspace Member Dependencies alias( - name = "anyhow-1.0.95", - actual = "@vendor__anyhow-1.0.95//:anyhow", + name = "anyhow-1.0.96", + actual = "@vendor_ts__anyhow-1.0.96//:anyhow", tags = ["manual"], ) alias( name = "anyhow", - actual = "@vendor__anyhow-1.0.95//:anyhow", + actual = "@vendor_ts__anyhow-1.0.96//:anyhow", tags = ["manual"], ) alias( name = "argfile-0.2.1", - actual = "@vendor__argfile-0.2.1//:argfile", + actual = "@vendor_ts__argfile-0.2.1//:argfile", tags = ["manual"], ) alias( name = "argfile", - actual = "@vendor__argfile-0.2.1//:argfile", + actual = "@vendor_ts__argfile-0.2.1//:argfile", tags = ["manual"], ) alias( name = "chrono-0.4.39", - actual = "@vendor__chrono-0.4.39//:chrono", + actual = "@vendor_ts__chrono-0.4.39//:chrono", tags = ["manual"], ) alias( name = "chrono", - actual = "@vendor__chrono-0.4.39//:chrono", + actual = "@vendor_ts__chrono-0.4.39//:chrono", tags = ["manual"], ) alias( - name = "clap-4.5.26", - actual = "@vendor__clap-4.5.26//:clap", + name = "clap-4.5.31", + actual = "@vendor_ts__clap-4.5.31//:clap", tags = ["manual"], ) alias( name = "clap", - actual = "@vendor__clap-4.5.26//:clap", + actual = "@vendor_ts__clap-4.5.31//:clap", tags = ["manual"], ) alias( name = "dunce-1.0.5", - actual = "@vendor__dunce-1.0.5//:dunce", + actual = "@vendor_ts__dunce-1.0.5//:dunce", tags = ["manual"], ) alias( name = "dunce", - actual = "@vendor__dunce-1.0.5//:dunce", + actual = "@vendor_ts__dunce-1.0.5//:dunce", tags = ["manual"], ) alias( - name = "either-1.13.0", - actual = "@vendor__either-1.13.0//:either", + name = "either-1.14.0", + actual = "@vendor_ts__either-1.14.0//:either", tags = ["manual"], ) alias( name = "either", - actual = "@vendor__either-1.13.0//:either", + actual = "@vendor_ts__either-1.14.0//:either", tags = ["manual"], ) alias( name = "encoding-0.2.33", - actual = "@vendor__encoding-0.2.33//:encoding", + actual = "@vendor_ts__encoding-0.2.33//:encoding", tags = ["manual"], ) alias( name = "encoding", - actual = "@vendor__encoding-0.2.33//:encoding", + actual = "@vendor_ts__encoding-0.2.33//:encoding", tags = ["manual"], ) alias( name = "figment-0.10.19", - actual = "@vendor__figment-0.10.19//:figment", + actual = "@vendor_ts__figment-0.10.19//:figment", tags = ["manual"], ) alias( name = "figment", - actual = "@vendor__figment-0.10.19//:figment", + actual = "@vendor_ts__figment-0.10.19//:figment", tags = ["manual"], ) alias( - name = "flate2-1.0.35", - actual = "@vendor__flate2-1.0.35//:flate2", + name = "flate2-1.1.0", + actual = "@vendor_ts__flate2-1.1.0//:flate2", tags = ["manual"], ) alias( name = "flate2", - actual = "@vendor__flate2-1.0.35//:flate2", + actual = "@vendor_ts__flate2-1.1.0//:flate2", tags = ["manual"], ) alias( name = "glob-0.3.2", - actual = "@vendor__glob-0.3.2//:glob", + actual = "@vendor_ts__glob-0.3.2//:glob", tags = ["manual"], ) alias( name = "glob", - actual = "@vendor__glob-0.3.2//:glob", + actual = "@vendor_ts__glob-0.3.2//:glob", tags = ["manual"], ) alias( name = "globset-0.4.15", - actual = "@vendor__globset-0.4.15//:globset", + actual = "@vendor_ts__globset-0.4.15//:globset", tags = ["manual"], ) alias( name = "globset", - actual = "@vendor__globset-0.4.15//:globset", + actual = "@vendor_ts__globset-0.4.15//:globset", tags = ["manual"], ) alias( name = "itertools-0.14.0", - actual = "@vendor__itertools-0.14.0//:itertools", + actual = "@vendor_ts__itertools-0.14.0//:itertools", tags = ["manual"], ) alias( name = "itertools", - actual = "@vendor__itertools-0.14.0//:itertools", + actual = "@vendor_ts__itertools-0.14.0//:itertools", tags = ["manual"], ) alias( name = "lazy_static-1.5.0", - actual = "@vendor__lazy_static-1.5.0//:lazy_static", + actual = "@vendor_ts__lazy_static-1.5.0//:lazy_static", tags = ["manual"], ) alias( name = "lazy_static", - actual = "@vendor__lazy_static-1.5.0//:lazy_static", + actual = "@vendor_ts__lazy_static-1.5.0//:lazy_static", tags = ["manual"], ) alias( name = "mustache-0.9.0", - actual = "@vendor__mustache-0.9.0//:mustache", + actual = "@vendor_ts__mustache-0.9.0//:mustache", tags = ["manual"], ) alias( name = "mustache", - actual = "@vendor__mustache-0.9.0//:mustache", + actual = "@vendor_ts__mustache-0.9.0//:mustache", tags = ["manual"], ) alias( name = "num-traits-0.2.19", - actual = "@vendor__num-traits-0.2.19//:num_traits", + actual = "@vendor_ts__num-traits-0.2.19//:num_traits", tags = ["manual"], ) alias( name = "num-traits", - actual = "@vendor__num-traits-0.2.19//:num_traits", + actual = "@vendor_ts__num-traits-0.2.19//:num_traits", tags = ["manual"], ) alias( name = "num_cpus-1.16.0", - actual = "@vendor__num_cpus-1.16.0//:num_cpus", + actual = "@vendor_ts__num_cpus-1.16.0//:num_cpus", tags = ["manual"], ) alias( name = "num_cpus", - actual = "@vendor__num_cpus-1.16.0//:num_cpus", + actual = "@vendor_ts__num_cpus-1.16.0//:num_cpus", tags = ["manual"], ) alias( name = "proc-macro2-1.0.93", - actual = "@vendor__proc-macro2-1.0.93//:proc_macro2", + actual = "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", tags = ["manual"], ) alias( name = "proc-macro2", - actual = "@vendor__proc-macro2-1.0.93//:proc_macro2", + actual = "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", tags = ["manual"], ) alias( name = "quote-1.0.38", - actual = "@vendor__quote-1.0.38//:quote", + actual = "@vendor_ts__quote-1.0.38//:quote", tags = ["manual"], ) alias( name = "quote", - actual = "@vendor__quote-1.0.38//:quote", + actual = "@vendor_ts__quote-1.0.38//:quote", tags = ["manual"], ) alias( - name = "ra_ap_base_db-0.0.258", - actual = "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", + name = "ra_ap_base_db-0.0.266", + actual = "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", tags = ["manual"], ) alias( name = "ra_ap_base_db", - actual = "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", + actual = "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", tags = ["manual"], ) alias( - name = "ra_ap_cfg-0.0.258", - actual = "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", + name = "ra_ap_cfg-0.0.266", + actual = "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", tags = ["manual"], ) alias( name = "ra_ap_cfg", - actual = "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", + actual = "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", tags = ["manual"], ) alias( - name = "ra_ap_hir-0.0.258", - actual = "@vendor__ra_ap_hir-0.0.258//:ra_ap_hir", + name = "ra_ap_hir-0.0.266", + actual = "@vendor_ts__ra_ap_hir-0.0.266//:ra_ap_hir", tags = ["manual"], ) alias( name = "ra_ap_hir", - actual = "@vendor__ra_ap_hir-0.0.258//:ra_ap_hir", + actual = "@vendor_ts__ra_ap_hir-0.0.266//:ra_ap_hir", tags = ["manual"], ) alias( - name = "ra_ap_hir_def-0.0.258", - actual = "@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def", + name = "ra_ap_hir_def-0.0.266", + actual = "@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def", tags = ["manual"], ) alias( name = "ra_ap_hir_def", - actual = "@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def", + actual = "@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def", tags = ["manual"], ) alias( - name = "ra_ap_hir_expand-0.0.258", - actual = "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand", + name = "ra_ap_hir_expand-0.0.266", + actual = "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand", tags = ["manual"], ) alias( name = "ra_ap_hir_expand", - actual = "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand", + actual = "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand", tags = ["manual"], ) alias( - name = "ra_ap_ide_db-0.0.258", - actual = "@vendor__ra_ap_ide_db-0.0.258//:ra_ap_ide_db", + name = "ra_ap_ide_db-0.0.266", + actual = "@vendor_ts__ra_ap_ide_db-0.0.266//:ra_ap_ide_db", tags = ["manual"], ) alias( name = "ra_ap_ide_db", - actual = "@vendor__ra_ap_ide_db-0.0.258//:ra_ap_ide_db", + actual = "@vendor_ts__ra_ap_ide_db-0.0.266//:ra_ap_ide_db", tags = ["manual"], ) alias( - name = "ra_ap_intern-0.0.258", - actual = "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", + name = "ra_ap_intern-0.0.266", + actual = "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", tags = ["manual"], ) alias( name = "ra_ap_intern", - actual = "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", + actual = "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", tags = ["manual"], ) alias( - name = "ra_ap_load-cargo-0.0.258", - actual = "@vendor__ra_ap_load-cargo-0.0.258//:ra_ap_load_cargo", + name = "ra_ap_load-cargo-0.0.266", + actual = "@vendor_ts__ra_ap_load-cargo-0.0.266//:ra_ap_load_cargo", tags = ["manual"], ) alias( name = "ra_ap_load-cargo", - actual = "@vendor__ra_ap_load-cargo-0.0.258//:ra_ap_load_cargo", + actual = "@vendor_ts__ra_ap_load-cargo-0.0.266//:ra_ap_load_cargo", tags = ["manual"], ) alias( - name = "ra_ap_parser-0.0.258", - actual = "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", + name = "ra_ap_parser-0.0.266", + actual = "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", tags = ["manual"], ) alias( name = "ra_ap_parser", - actual = "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", + actual = "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", tags = ["manual"], ) alias( - name = "ra_ap_paths-0.0.258", - actual = "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", + name = "ra_ap_paths-0.0.266", + actual = "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", tags = ["manual"], ) alias( name = "ra_ap_paths", - actual = "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", + actual = "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", tags = ["manual"], ) alias( - name = "ra_ap_project_model-0.0.258", - actual = "@vendor__ra_ap_project_model-0.0.258//:ra_ap_project_model", + name = "ra_ap_project_model-0.0.266", + actual = "@vendor_ts__ra_ap_project_model-0.0.266//:ra_ap_project_model", tags = ["manual"], ) alias( name = "ra_ap_project_model", - actual = "@vendor__ra_ap_project_model-0.0.258//:ra_ap_project_model", + actual = "@vendor_ts__ra_ap_project_model-0.0.266//:ra_ap_project_model", tags = ["manual"], ) alias( - name = "ra_ap_span-0.0.258", - actual = "@vendor__ra_ap_span-0.0.258//:ra_ap_span", + name = "ra_ap_span-0.0.266", + actual = "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", tags = ["manual"], ) alias( name = "ra_ap_span", - actual = "@vendor__ra_ap_span-0.0.258//:ra_ap_span", + actual = "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", tags = ["manual"], ) alias( - name = "ra_ap_stdx-0.0.258", - actual = "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", + name = "ra_ap_stdx-0.0.266", + actual = "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", tags = ["manual"], ) alias( - name = "stdx-0.0.258", - actual = "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", + name = "stdx-0.0.266", + actual = "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", tags = ["manual"], ) alias( name = "stdx", - actual = "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", + actual = "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", tags = ["manual"], ) alias( - name = "ra_ap_syntax-0.0.258", - actual = "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", + name = "ra_ap_syntax-0.0.266", + actual = "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", tags = ["manual"], ) alias( name = "ra_ap_syntax", - actual = "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", + actual = "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", tags = ["manual"], ) alias( - name = "ra_ap_vfs-0.0.258", - actual = "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs", + name = "ra_ap_vfs-0.0.266", + actual = "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs", tags = ["manual"], ) alias( name = "ra_ap_vfs", - actual = "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs", + actual = "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs", tags = ["manual"], ) alias( - name = "rand-0.8.5", - actual = "@vendor__rand-0.8.5//:rand", + name = "rand-0.9.0", + actual = "@vendor_ts__rand-0.9.0//:rand", tags = ["manual"], ) alias( name = "rand", - actual = "@vendor__rand-0.8.5//:rand", + actual = "@vendor_ts__rand-0.9.0//:rand", tags = ["manual"], ) alias( name = "rayon-1.10.0", - actual = "@vendor__rayon-1.10.0//:rayon", + actual = "@vendor_ts__rayon-1.10.0//:rayon", tags = ["manual"], ) alias( name = "rayon", - actual = "@vendor__rayon-1.10.0//:rayon", + actual = "@vendor_ts__rayon-1.10.0//:rayon", tags = ["manual"], ) alias( name = "regex-1.11.1", - actual = "@vendor__regex-1.11.1//:regex", + actual = "@vendor_ts__regex-1.11.1//:regex", tags = ["manual"], ) alias( name = "regex", - actual = "@vendor__regex-1.11.1//:regex", + actual = "@vendor_ts__regex-1.11.1//:regex", tags = ["manual"], ) alias( - name = "serde-1.0.217", - actual = "@vendor__serde-1.0.217//:serde", + name = "serde-1.0.218", + actual = "@vendor_ts__serde-1.0.218//:serde", tags = ["manual"], ) alias( name = "serde", - actual = "@vendor__serde-1.0.217//:serde", + actual = "@vendor_ts__serde-1.0.218//:serde", tags = ["manual"], ) alias( - name = "serde_json-1.0.135", - actual = "@vendor__serde_json-1.0.135//:serde_json", + name = "serde_json-1.0.139", + actual = "@vendor_ts__serde_json-1.0.139//:serde_json", tags = ["manual"], ) alias( name = "serde_json", - actual = "@vendor__serde_json-1.0.135//:serde_json", + actual = "@vendor_ts__serde_json-1.0.139//:serde_json", tags = ["manual"], ) alias( name = "serde_with-3.12.0", - actual = "@vendor__serde_with-3.12.0//:serde_with", + actual = "@vendor_ts__serde_with-3.12.0//:serde_with", tags = ["manual"], ) alias( name = "serde_with", - actual = "@vendor__serde_with-3.12.0//:serde_with", + actual = "@vendor_ts__serde_with-3.12.0//:serde_with", tags = ["manual"], ) alias( - name = "syn-2.0.96", - actual = "@vendor__syn-2.0.96//:syn", + name = "syn-2.0.98", + actual = "@vendor_ts__syn-2.0.98//:syn", tags = ["manual"], ) alias( name = "syn", - actual = "@vendor__syn-2.0.96//:syn", + actual = "@vendor_ts__syn-2.0.98//:syn", tags = ["manual"], ) alias( - name = "toml-0.8.19", - actual = "@vendor__toml-0.8.19//:toml", + name = "toml-0.8.20", + actual = "@vendor_ts__toml-0.8.20//:toml", tags = ["manual"], ) alias( name = "toml", - actual = "@vendor__toml-0.8.19//:toml", + actual = "@vendor_ts__toml-0.8.20//:toml", tags = ["manual"], ) alias( name = "tracing-0.1.41", - actual = "@vendor__tracing-0.1.41//:tracing", + actual = "@vendor_ts__tracing-0.1.41//:tracing", tags = ["manual"], ) alias( name = "tracing", - actual = "@vendor__tracing-0.1.41//:tracing", + actual = "@vendor_ts__tracing-0.1.41//:tracing", tags = ["manual"], ) alias( name = "tracing-flame-0.2.0", - actual = "@vendor__tracing-flame-0.2.0//:tracing_flame", + actual = "@vendor_ts__tracing-flame-0.2.0//:tracing_flame", tags = ["manual"], ) alias( name = "tracing-flame", - actual = "@vendor__tracing-flame-0.2.0//:tracing_flame", + actual = "@vendor_ts__tracing-flame-0.2.0//:tracing_flame", tags = ["manual"], ) alias( name = "tracing-subscriber-0.3.19", - actual = "@vendor__tracing-subscriber-0.3.19//:tracing_subscriber", + actual = "@vendor_ts__tracing-subscriber-0.3.19//:tracing_subscriber", tags = ["manual"], ) alias( name = "tracing-subscriber", - actual = "@vendor__tracing-subscriber-0.3.19//:tracing_subscriber", + actual = "@vendor_ts__tracing-subscriber-0.3.19//:tracing_subscriber", tags = ["manual"], ) alias( name = "tree-sitter-0.24.6", - actual = "@vendor__tree-sitter-0.24.6//:tree_sitter", + actual = "@vendor_ts__tree-sitter-0.24.6//:tree_sitter", tags = ["manual"], ) alias( name = "tree-sitter", - actual = "@vendor__tree-sitter-0.24.6//:tree_sitter", + actual = "@vendor_ts__tree-sitter-0.24.6//:tree_sitter", tags = ["manual"], ) alias( name = "tree-sitter-embedded-template-0.23.2", - actual = "@vendor__tree-sitter-embedded-template-0.23.2//:tree_sitter_embedded_template", + actual = "@vendor_ts__tree-sitter-embedded-template-0.23.2//:tree_sitter_embedded_template", tags = ["manual"], ) alias( name = "tree-sitter-embedded-template", - actual = "@vendor__tree-sitter-embedded-template-0.23.2//:tree_sitter_embedded_template", + actual = "@vendor_ts__tree-sitter-embedded-template-0.23.2//:tree_sitter_embedded_template", tags = ["manual"], ) alias( name = "tree-sitter-json-0.24.8", - actual = "@vendor__tree-sitter-json-0.24.8//:tree_sitter_json", + actual = "@vendor_ts__tree-sitter-json-0.24.8//:tree_sitter_json", tags = ["manual"], ) alias( name = "tree-sitter-json", - actual = "@vendor__tree-sitter-json-0.24.8//:tree_sitter_json", + actual = "@vendor_ts__tree-sitter-json-0.24.8//:tree_sitter_json", tags = ["manual"], ) alias( name = "tree-sitter-ql-0.23.1", - actual = "@vendor__tree-sitter-ql-0.23.1//:tree_sitter_ql", + actual = "@vendor_ts__tree-sitter-ql-0.23.1//:tree_sitter_ql", tags = ["manual"], ) alias( name = "tree-sitter-ql", - actual = "@vendor__tree-sitter-ql-0.23.1//:tree_sitter_ql", + actual = "@vendor_ts__tree-sitter-ql-0.23.1//:tree_sitter_ql", tags = ["manual"], ) alias( name = "tree-sitter-ruby-0.23.1", - actual = "@vendor__tree-sitter-ruby-0.23.1//:tree_sitter_ruby", + actual = "@vendor_ts__tree-sitter-ruby-0.23.1//:tree_sitter_ruby", tags = ["manual"], ) alias( name = "tree-sitter-ruby", - actual = "@vendor__tree-sitter-ruby-0.23.1//:tree_sitter_ruby", + actual = "@vendor_ts__tree-sitter-ruby-0.23.1//:tree_sitter_ruby", tags = ["manual"], ) alias( name = "triomphe-0.1.14", - actual = "@vendor__triomphe-0.1.14//:triomphe", + actual = "@vendor_ts__triomphe-0.1.14//:triomphe", tags = ["manual"], ) alias( name = "triomphe", - actual = "@vendor__triomphe-0.1.14//:triomphe", + actual = "@vendor_ts__triomphe-0.1.14//:triomphe", tags = ["manual"], ) alias( name = "ungrammar-1.16.1", - actual = "@vendor__ungrammar-1.16.1//:ungrammar", + actual = "@vendor_ts__ungrammar-1.16.1//:ungrammar", tags = ["manual"], ) alias( name = "ungrammar", - actual = "@vendor__ungrammar-1.16.1//:ungrammar", + actual = "@vendor_ts__ungrammar-1.16.1//:ungrammar", tags = ["manual"], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bitflags-2.7.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bitflags-2.8.0.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bitflags-2.7.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bitflags-2.8.0.bazel index 8cab6aa66048..eb58d610f971 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bitflags-2.7.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bitflags-2.8.0.bazel @@ -79,5 +79,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "2.7.0", + version = "2.8.0", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.borsh-1.5.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.borsh-1.5.3.bazel index f355f40e61eb..09e2ca4092d4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.borsh-1.5.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.borsh-1.5.3.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "1.5.3", deps = [ - "@vendor__borsh-1.5.3//:build_script_build", + "@vendor_ts__borsh-1.5.3//:build_script_build", ], ) @@ -134,7 +134,7 @@ cargo_build_script( version = "1.5.3", visibility = ["//visibility:private"], deps = [ - "@vendor__cfg_aliases-0.2.1//:cfg_aliases", + "@vendor_ts__cfg_aliases-0.2.1//:cfg_aliases", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bstr-1.11.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bstr-1.11.3.bazel index 40c109380a87..baeadd361ef5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bstr-1.11.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bstr-1.11.3.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "1.11.3", deps = [ - "@vendor__memchr-2.7.4//:memchr", + "@vendor_ts__memchr-2.7.4//:memchr", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.camino-1.1.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.camino-1.1.9.bazel index 1c5987a67610..55635691a8f4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.camino-1.1.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.camino-1.1.9.bazel @@ -86,8 +86,8 @@ rust_library( }), version = "1.1.9", deps = [ - "@vendor__camino-1.1.9//:build_script_build", - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__camino-1.1.9//:build_script_build", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-platform-0.1.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-platform-0.1.9.bazel index ebaa6fbc108a..3882206b4690 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-platform-0.1.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-platform-0.1.9.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.1.9", deps = [ - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.18.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.18.1.bazel index 3ce41e37c246..0cbaa4613c05 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.18.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.18.1.bazel @@ -84,11 +84,11 @@ rust_library( }), version = "0.18.1", deps = [ - "@vendor__camino-1.1.9//:camino", - "@vendor__cargo-platform-0.1.9//:cargo_platform", - "@vendor__semver-1.0.24//:semver", - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_json-1.0.135//:serde_json", - "@vendor__thiserror-1.0.69//:thiserror", + "@vendor_ts__camino-1.1.9//:camino", + "@vendor_ts__cargo-platform-0.1.9//:cargo_platform", + "@vendor_ts__semver-1.0.24//:semver", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_json-1.0.139//:serde_json", + "@vendor_ts__thiserror-1.0.69//:thiserror", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cc-1.2.7.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cc-1.2.7.bazel index 650c2f35f4db..56be5f5153be 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cc-1.2.7.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cc-1.2.7.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.2.7", deps = [ - "@vendor__shlex-1.3.0//:shlex", + "@vendor_ts__shlex-1.3.0//:shlex", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-derive-0.98.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-derive-0.99.0.bazel similarity index 94% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-derive-0.98.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-derive-0.99.0.bazel index 3c918d1dc988..bb2cfb0ca84c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-derive-0.98.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-derive-0.99.0.bazel @@ -79,11 +79,11 @@ rust_proc_macro( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.98.0", + version = "0.99.0", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", - "@vendor__synstructure-0.13.1//:synstructure", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", + "@vendor_ts__synstructure-0.13.1//:synstructure", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-ir-0.98.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-ir-0.99.0.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-ir-0.98.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-ir-0.99.0.bazel index 2bdd3b3a0353..45829e9abfe2 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-ir-0.98.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-ir-0.99.0.bazel @@ -31,7 +31,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__chalk-derive-0.98.0//:chalk_derive", + "@vendor_ts__chalk-derive-0.99.0//:chalk_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -82,8 +82,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.98.0", + version = "0.99.0", deps = [ - "@vendor__bitflags-2.7.0//:bitflags", + "@vendor_ts__bitflags-2.8.0//:bitflags", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-recursive-0.98.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-recursive-0.99.0.bazel similarity index 92% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-recursive-0.98.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-recursive-0.99.0.bazel index eecbab031314..e15beb719fb1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-recursive-0.98.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-recursive-0.99.0.bazel @@ -31,7 +31,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__chalk-derive-0.98.0//:chalk_derive", + "@vendor_ts__chalk-derive-0.99.0//:chalk_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -82,11 +82,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.98.0", + version = "0.99.0", deps = [ - "@vendor__chalk-ir-0.98.0//:chalk_ir", - "@vendor__chalk-solve-0.98.0//:chalk_solve", - "@vendor__rustc-hash-1.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__chalk-ir-0.99.0//:chalk_ir", + "@vendor_ts__chalk-solve-0.99.0//:chalk_solve", + "@vendor_ts__rustc-hash-1.1.0//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.98.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.99.0.bazel similarity index 89% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.98.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.99.0.bazel index bca1e7971ed9..f12dc8d4f113 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.98.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.99.0.bazel @@ -31,7 +31,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__chalk-derive-0.98.0//:chalk_derive", + "@vendor_ts__chalk-derive-0.99.0//:chalk_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -82,14 +82,14 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.98.0", + version = "0.99.0", deps = [ - "@vendor__chalk-ir-0.98.0//:chalk_ir", - "@vendor__ena-0.14.3//:ena", - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__petgraph-0.6.5//:petgraph", - "@vendor__rustc-hash-1.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__chalk-ir-0.99.0//:chalk_ir", + "@vendor_ts__ena-0.14.3//:ena", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__petgraph-0.6.5//:petgraph", + "@vendor_ts__rustc-hash-1.1.0//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chrono-0.4.39.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chrono-0.4.39.bazel index 24d353c1eb9b..0f8702ab3f05 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chrono-0.4.39.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chrono-0.4.39.bazel @@ -97,97 +97,97 @@ rust_library( }), version = "0.4.39", deps = [ - "@vendor__num-traits-0.2.19//:num_traits", - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__num-traits-0.2.19//:num_traits", + "@vendor_ts__serde-1.0.218//:serde", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-darwin + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-darwin ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-ios + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-ios ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-ios-sim + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-apple-ios-sim ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__android-tzdata-0.1.1//:android_tzdata", # aarch64-linux-android - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-linux-android + "@vendor_ts__android-tzdata-0.1.1//:android_tzdata", # aarch64-linux-android + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-linux-android ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-targets-0.52.6//:windows_targets", # aarch64-pc-windows-msvc + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # aarch64-pc-windows-msvc ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-fuchsia + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-fuchsia ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-linux-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-linux-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-nto-qnx710 + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # aarch64-unknown-nto-qnx710 ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # arm-unknown-linux-gnueabi + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # arm-unknown-linux-gnueabi ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__android-tzdata-0.1.1//:android_tzdata", # armv7-linux-androideabi - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # armv7-linux-androideabi + "@vendor_ts__android-tzdata-0.1.1//:android_tzdata", # armv7-linux-androideabi + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # armv7-linux-androideabi ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # armv7-unknown-linux-gnueabi + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # armv7-unknown-linux-gnueabi ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # i686-apple-darwin + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # i686-apple-darwin ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__android-tzdata-0.1.1//:android_tzdata", # i686-linux-android - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # i686-linux-android + "@vendor_ts__android-tzdata-0.1.1//:android_tzdata", # i686-linux-android + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # i686-linux-android ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-targets-0.52.6//:windows_targets", # i686-pc-windows-msvc + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # i686-pc-windows-msvc ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # i686-unknown-freebsd + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # i686-unknown-freebsd ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # i686-unknown-linux-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # i686-unknown-linux-gnu ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # powerpc-unknown-linux-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # powerpc-unknown-linux-gnu ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # s390x-unknown-linux-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # s390x-unknown-linux-gnu ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@vendor__js-sys-0.3.76//:js_sys", # wasm32-unknown-unknown - "@vendor__wasm-bindgen-0.2.99//:wasm_bindgen", # wasm32-unknown-unknown + "@vendor_ts__js-sys-0.3.76//:js_sys", # wasm32-unknown-unknown + "@vendor_ts__wasm-bindgen-0.2.99//:wasm_bindgen", # wasm32-unknown-unknown ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-apple-darwin + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-apple-darwin ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-apple-ios + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-apple-ios ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__android-tzdata-0.1.1//:android_tzdata", # x86_64-linux-android - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-linux-android + "@vendor_ts__android-tzdata-0.1.1//:android_tzdata", # x86_64-linux-android + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-linux-android ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-targets-0.52.6//:windows_targets", # x86_64-pc-windows-msvc + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # x86_64-pc-windows-msvc ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-freebsd + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-freebsd ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-fuchsia + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-fuchsia ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-linux-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "@vendor_ts__iana-time-zone-0.1.61//:iana_time_zone", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap-4.5.26.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap-4.5.31.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap-4.5.26.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap-4.5.31.bazel index b0fc737a3a18..704def0d16af 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap-4.5.26.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap-4.5.31.bazel @@ -41,7 +41,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__clap_derive-4.5.24//:clap_derive", + "@vendor_ts__clap_derive-4.5.28//:clap_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -92,8 +92,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "4.5.26", + version = "4.5.31", deps = [ - "@vendor__clap_builder-4.5.26//:clap_builder", + "@vendor_ts__clap_builder-4.5.31//:clap_builder", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_builder-4.5.26.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_builder-4.5.31.bazel similarity index 94% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_builder-4.5.26.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_builder-4.5.31.bazel index 1cb3a18cd0c1..a65b405d44c7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_builder-4.5.26.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_builder-4.5.31.bazel @@ -87,11 +87,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "4.5.26", + version = "4.5.31", deps = [ - "@vendor__anstream-0.6.18//:anstream", - "@vendor__anstyle-1.0.10//:anstyle", - "@vendor__clap_lex-0.7.4//:clap_lex", - "@vendor__strsim-0.11.1//:strsim", + "@vendor_ts__anstream-0.6.18//:anstream", + "@vendor_ts__anstyle-1.0.10//:anstyle", + "@vendor_ts__clap_lex-0.7.4//:clap_lex", + "@vendor_ts__strsim-0.11.1//:strsim", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_derive-4.5.24.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_derive-4.5.28.bazel similarity index 94% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_derive-4.5.24.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_derive-4.5.28.bazel index fdf5dc04a455..1e6c70d11eed 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_derive-4.5.24.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clap_derive-4.5.28.bazel @@ -82,11 +82,11 @@ rust_proc_macro( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "4.5.24", + version = "4.5.28", deps = [ - "@vendor__heck-0.5.0//:heck", - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__heck-0.5.0//:heck", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crc32fast-1.4.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crc32fast-1.4.2.bazel index 9c41e7925d47..1bc709e0ab7b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crc32fast-1.4.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crc32fast-1.4.2.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "1.4.2", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-channel-0.5.14.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-channel-0.5.14.bazel index e2b441186d1e..716f7732fc48 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-channel-0.5.14.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-channel-0.5.14.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "0.5.14", deps = [ - "@vendor__crossbeam-utils-0.8.21//:crossbeam_utils", + "@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-deque-0.8.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-deque-0.8.6.bazel index f0201da11a69..3bb0e6f18ea2 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-deque-0.8.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-deque-0.8.6.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "0.8.6", deps = [ - "@vendor__crossbeam-epoch-0.9.18//:crossbeam_epoch", - "@vendor__crossbeam-utils-0.8.21//:crossbeam_utils", + "@vendor_ts__crossbeam-epoch-0.9.18//:crossbeam_epoch", + "@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-epoch-0.9.18.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-epoch-0.9.18.bazel index be6f936368d2..76d404fae876 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-epoch-0.9.18.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-epoch-0.9.18.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "0.9.18", deps = [ - "@vendor__crossbeam-utils-0.8.21//:crossbeam_utils", + "@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-utils-0.8.21.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-utils-0.8.21.bazel index fe420a1c2676..4c738272e68b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-utils-0.8.21.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.crossbeam-utils-0.8.21.bazel @@ -86,7 +86,7 @@ rust_library( }), version = "0.8.21", deps = [ - "@vendor__crossbeam-utils-0.8.21//:build_script_build", + "@vendor_ts__crossbeam-utils-0.8.21//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling-0.20.10.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling-0.20.10.bazel index f2b095874d9c..81ba24ba9546 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling-0.20.10.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling-0.20.10.bazel @@ -35,7 +35,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__darling_macro-0.20.10//:darling_macro", + "@vendor_ts__darling_macro-0.20.10//:darling_macro", ], rustc_flags = [ "--cap-lints=allow", @@ -88,6 +88,6 @@ rust_library( }), version = "0.20.10", deps = [ - "@vendor__darling_core-0.20.10//:darling_core", + "@vendor_ts__darling_core-0.20.10//:darling_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_core-0.20.10.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_core-0.20.10.bazel index de185bceab00..299241442a11 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_core-0.20.10.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_core-0.20.10.bazel @@ -85,11 +85,11 @@ rust_library( }), version = "0.20.10", deps = [ - "@vendor__fnv-1.0.7//:fnv", - "@vendor__ident_case-1.0.1//:ident_case", - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__strsim-0.11.1//:strsim", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__fnv-1.0.7//:fnv", + "@vendor_ts__ident_case-1.0.1//:ident_case", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__strsim-0.11.1//:strsim", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_macro-0.20.10.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_macro-0.20.10.bazel index edd5c9242ce3..aeb122f8a02c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_macro-0.20.10.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.darling_macro-0.20.10.bazel @@ -81,8 +81,8 @@ rust_proc_macro( }), version = "0.20.10", deps = [ - "@vendor__darling_core-0.20.10//:darling_core", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__darling_core-0.20.10//:darling_core", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.dashmap-5.5.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.dashmap-5.5.3.bazel index 6aa63816f3a7..f761a7301a9b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.dashmap-5.5.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.dashmap-5.5.3.bazel @@ -84,10 +84,10 @@ rust_library( }), version = "5.5.3", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", - "@vendor__hashbrown-0.14.5//:hashbrown", - "@vendor__lock_api-0.4.12//:lock_api", - "@vendor__once_cell-1.20.2//:once_cell", - "@vendor__parking_lot_core-0.9.10//:parking_lot_core", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__hashbrown-0.14.5//:hashbrown", + "@vendor_ts__lock_api-0.4.12//:lock_api", + "@vendor_ts__once_cell-1.20.3//:once_cell", + "@vendor_ts__parking_lot_core-0.9.10//:parking_lot_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.either-1.13.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.either-1.14.0.bazel similarity index 98% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.either-1.13.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.either-1.14.0.bazel index b3a9ed19098a..7d258985cf58 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.either-1.13.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.either-1.14.0.bazel @@ -33,7 +33,7 @@ rust_library( "use_std", ], crate_root = "src/lib.rs", - edition = "2018", + edition = "2021", rustc_flags = [ "--cap-lints=allow", ], @@ -83,5 +83,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.13.0", + version = "1.14.0", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ena-0.14.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ena-0.14.3.bazel index b1f8132eef70..0675dd061161 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ena-0.14.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ena-0.14.3.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.14.3", deps = [ - "@vendor__log-0.4.22//:log", + "@vendor_ts__log-0.4.25//:log", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-0.2.33.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-0.2.33.bazel index e87060e4b44c..625e2e262168 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-0.2.33.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-0.2.33.bazel @@ -81,10 +81,10 @@ rust_library( }), version = "0.2.33", deps = [ - "@vendor__encoding-index-japanese-1.20141219.5//:encoding_index_japanese", - "@vendor__encoding-index-korean-1.20141219.5//:encoding_index_korean", - "@vendor__encoding-index-simpchinese-1.20141219.5//:encoding_index_simpchinese", - "@vendor__encoding-index-singlebyte-1.20141219.5//:encoding_index_singlebyte", - "@vendor__encoding-index-tradchinese-1.20141219.5//:encoding_index_tradchinese", + "@vendor_ts__encoding-index-japanese-1.20141219.5//:encoding_index_japanese", + "@vendor_ts__encoding-index-korean-1.20141219.5//:encoding_index_korean", + "@vendor_ts__encoding-index-simpchinese-1.20141219.5//:encoding_index_simpchinese", + "@vendor_ts__encoding-index-singlebyte-1.20141219.5//:encoding_index_singlebyte", + "@vendor_ts__encoding-index-tradchinese-1.20141219.5//:encoding_index_tradchinese", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-japanese-1.20141219.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-japanese-1.20141219.5.bazel index 880bee66622e..13d487c632d0 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-japanese-1.20141219.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-japanese-1.20141219.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.20141219.5", deps = [ - "@vendor__encoding_index_tests-0.1.4//:encoding_index_tests", + "@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-korean-1.20141219.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-korean-1.20141219.5.bazel index c7a1933827f7..97a7c7735c15 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-korean-1.20141219.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-korean-1.20141219.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.20141219.5", deps = [ - "@vendor__encoding_index_tests-0.1.4//:encoding_index_tests", + "@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-simpchinese-1.20141219.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-simpchinese-1.20141219.5.bazel index 9b21912641fe..1d849a7173a9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-simpchinese-1.20141219.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-simpchinese-1.20141219.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.20141219.5", deps = [ - "@vendor__encoding_index_tests-0.1.4//:encoding_index_tests", + "@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-singlebyte-1.20141219.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-singlebyte-1.20141219.5.bazel index 6777eeecd0fe..c2abfe5614be 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-singlebyte-1.20141219.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-singlebyte-1.20141219.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.20141219.5", deps = [ - "@vendor__encoding_index_tests-0.1.4//:encoding_index_tests", + "@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-tradchinese-1.20141219.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-tradchinese-1.20141219.5.bazel index a84d85e6d7c6..60e931b095a7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-tradchinese-1.20141219.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.encoding-index-tradchinese-1.20141219.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.20141219.5", deps = [ - "@vendor__encoding_index_tests-0.1.4//:encoding_index_tests", + "@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.figment-0.10.19.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.figment-0.10.19.bazel index 96f9285e43c7..176db4ab06a9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.figment-0.10.19.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.figment-0.10.19.bazel @@ -89,53 +89,53 @@ rust_library( }), version = "0.10.19", deps = [ - "@vendor__figment-0.10.19//:build_script_build", - "@vendor__pear-0.2.9//:pear", - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_yaml-0.9.34-deprecated//:serde_yaml", - "@vendor__uncased-0.9.10//:uncased", + "@vendor_ts__figment-0.10.19//:build_script_build", + "@vendor_ts__pear-0.2.9//:pear", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_yaml-0.9.34-deprecated//:serde_yaml", + "@vendor_ts__uncased-0.9.10//:uncased", ] + select({ "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@vendor__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) + "@vendor_ts__atomic-0.6.0//:atomic", # cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32")) ], "//conditions:default": [], }), @@ -196,7 +196,7 @@ cargo_build_script( version = "0.10.19", visibility = ["//visibility:private"], deps = [ - "@vendor__version_check-0.9.5//:version_check", + "@vendor_ts__version_check-0.9.5//:version_check", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.filetime-0.2.25.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.filetime-0.2.25.bazel index 598f69662035..afa987bf06c9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.filetime-0.2.25.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.filetime-0.2.25.bazel @@ -81,88 +81,88 @@ rust_library( }), version = "0.2.25", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.flate2-1.0.35.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.flate2-1.1.0.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.flate2-1.0.35.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.flate2-1.1.0.bazel index 6a1e3a3263b1..348b7df02744 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.flate2-1.0.35.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.flate2-1.1.0.bazel @@ -85,9 +85,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.35", + version = "1.1.0", deps = [ - "@vendor__crc32fast-1.4.2//:crc32fast", - "@vendor__miniz_oxide-0.8.2//:miniz_oxide", + "@vendor_ts__crc32fast-1.4.2//:crc32fast", + "@vendor_ts__miniz_oxide-0.8.5//:miniz_oxide", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fs-err-2.11.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fs-err-2.11.0.bazel index 680fded6c546..59751efc4aa0 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fs-err-2.11.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fs-err-2.11.0.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "2.11.0", deps = [ - "@vendor__fs-err-2.11.0//:build_script_build", + "@vendor_ts__fs-err-2.11.0//:build_script_build", ], ) @@ -134,7 +134,7 @@ cargo_build_script( version = "2.11.0", visibility = ["//visibility:private"], deps = [ - "@vendor__autocfg-1.4.0//:autocfg", + "@vendor_ts__autocfg-1.4.0//:autocfg", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fsevent-sys-4.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fsevent-sys-4.1.0.bazel index 5b280ccfeb80..fa1103d4e4ab 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fsevent-sys-4.1.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fsevent-sys-4.1.0.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "4.1.0", deps = [ - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fst-0.4.7.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fst-0.4.7.bazel index e358007c5fd3..d0d00bc09926 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fst-0.4.7.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fst-0.4.7.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "0.4.7", deps = [ - "@vendor__fst-0.4.7//:build_script_build", + "@vendor_ts__fst-0.4.7//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.2.15.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.2.15.bazel deleted file mode 100644 index 83de162212b9..000000000000 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.2.15.bazel +++ /dev/null @@ -1,166 +0,0 @@ -############################################################################### -# @generated -# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To -# regenerate this file, run the following: -# -# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors -############################################################################### - -load("@rules_rust//rust:defs.bzl", "rust_library") - -package(default_visibility = ["//visibility:public"]) - -rust_library( - name = "getrandom", - srcs = glob( - include = ["**/*.rs"], - allow_empty = True, - ), - compile_data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - crate_features = [ - "std", - ], - crate_root = "src/lib.rs", - edition = "2018", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-bazel", - "crate-name=getrandom", - "manual", - "noclippy", - "norustfmt", - ], - target_compatible_with = select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [], - "@rules_rust//rust/platform:aarch64-apple-ios": [], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], - "@rules_rust//rust/platform:aarch64-linux-android": [], - "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], - "@rules_rust//rust/platform:aarch64-unknown-uefi": [], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:armv7-linux-androideabi": [], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:i686-apple-darwin": [], - "@rules_rust//rust/platform:i686-linux-android": [], - "@rules_rust//rust/platform:i686-pc-windows-msvc": [], - "@rules_rust//rust/platform:i686-unknown-freebsd": [], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], - "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], - "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], - "@rules_rust//rust/platform:thumbv7em-none-eabi": [], - "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], - "@rules_rust//rust/platform:wasm32-unknown-unknown": [], - "@rules_rust//rust/platform:wasm32-wasip1": [], - "@rules_rust//rust/platform:x86_64-apple-darwin": [], - "@rules_rust//rust/platform:x86_64-apple-ios": [], - "@rules_rust//rust/platform:x86_64-linux-android": [], - "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-none": [], - "@rules_rust//rust/platform:x86_64-unknown-uefi": [], - "//conditions:default": ["@platforms//:incompatible"], - }), - version = "0.2.15", - deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", - ] + select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:wasm32-wasip1": [ - "@vendor__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") - ], - "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) - ], - "//conditions:default": [], - }), -) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.3.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.3.1.bazel new file mode 100644 index 000000000000..ae0fc92ddc7c --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.getrandom-0.3.1.bazel @@ -0,0 +1,226 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_build_script") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "getrandom", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "std", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=getrandom", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.3.1", + deps = [ + "@vendor_ts__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__getrandom-0.3.1//:build_script_build", + ] + select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + ], + "@rules_rust//rust/platform:aarch64-apple-ios": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) + ], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) + ], + "@rules_rust//rust/platform:aarch64-linux-android": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(all(windows, not(target_vendor = "win7"))) + ], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "haiku", target_os = "redox", target_os = "nto", target_os = "aix")) + ], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:armv7-linux-androideabi": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:i686-apple-darwin": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + ], + "@rules_rust//rust/platform:i686-linux-android": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [ + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(all(windows, not(target_vendor = "win7"))) + ], + "@rules_rust//rust/platform:i686-unknown-freebsd": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", all(target_os = "horizon", target_arch = "arm"))) + ], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:x86_64-apple-darwin": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) + ], + "@rules_rust//rust/platform:x86_64-apple-ios": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) + ], + "@rules_rust//rust/platform:x86_64-linux-android": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(all(windows, not(target_vendor = "win7"))) + ], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", all(target_os = "horizon", target_arch = "arm"))) + ], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ + "@vendor_ts__libc-0.2.169//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) + ], + "//conditions:default": [], + }), +) + +cargo_build_script( + name = "_bs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + "**/*.rs", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "std", + ], + crate_name = "build_script_build", + crate_root = "build.rs", + data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + edition = "2021", + pkg_name = "getrandom", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=getrandom", + "manual", + "noclippy", + "norustfmt", + ], + version = "0.3.1", + visibility = ["//visibility:private"], +) + +alias( + name = "build_script_build", + actual = ":_bs", + tags = ["manual"], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.globset-0.4.15.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.globset-0.4.15.bazel index f0c754989697..c7341c6d1f1b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.globset-0.4.15.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.globset-0.4.15.bazel @@ -85,10 +85,10 @@ rust_library( }), version = "0.4.15", deps = [ - "@vendor__aho-corasick-1.1.3//:aho_corasick", - "@vendor__bstr-1.11.3//:bstr", - "@vendor__log-0.4.22//:log", - "@vendor__regex-automata-0.4.9//:regex_automata", - "@vendor__regex-syntax-0.8.5//:regex_syntax", + "@vendor_ts__aho-corasick-1.1.3//:aho_corasick", + "@vendor_ts__bstr-1.11.3//:bstr", + "@vendor_ts__log-0.4.25//:log", + "@vendor_ts__regex-automata-0.4.9//:regex_automata", + "@vendor_ts__regex-syntax-0.8.5//:regex_syntax", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.home-0.5.11.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.home-0.5.11.bazel index 5d955b693c3c..3908ba2dea47 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.home-0.5.11.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.home-0.5.11.bazel @@ -82,13 +82,13 @@ rust_library( version = "0.5.11", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-0.1.61.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-0.1.61.bazel index 006e1ef22bab..98fd2110ebbe 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-0.1.61.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-0.1.61.bazel @@ -85,47 +85,47 @@ rust_library( version = "0.1.61", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-core-0.52.0//:windows_core", # cfg(target_os = "windows") + "@vendor_ts__windows-core-0.52.0//:windows_core", # cfg(target_os = "windows") ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-core-0.52.0//:windows_core", # cfg(target_os = "windows") + "@vendor_ts__windows-core-0.52.0//:windows_core", # cfg(target_os = "windows") ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@vendor__js-sys-0.3.76//:js_sys", # cfg(all(target_arch = "wasm32", target_os = "unknown")) - "@vendor__wasm-bindgen-0.2.99//:wasm_bindgen", # cfg(all(target_arch = "wasm32", target_os = "unknown")) + "@vendor_ts__js-sys-0.3.76//:js_sys", # cfg(all(target_arch = "wasm32", target_os = "unknown")) + "@vendor_ts__wasm-bindgen-0.2.99//:wasm_bindgen", # cfg(all(target_arch = "wasm32", target_os = "unknown")) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-core-0.52.0//:windows_core", # cfg(target_os = "windows") + "@vendor_ts__windows-core-0.52.0//:windows_core", # cfg(target_os = "windows") ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-haiku-0.1.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-haiku-0.1.2.bazel index 97beb36734fd..c07a773cbeaf 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-haiku-0.1.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.iana-time-zone-haiku-0.1.2.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.1.2", deps = [ - "@vendor__iana-time-zone-haiku-0.1.2//:build_script_build", + "@vendor_ts__iana-time-zone-haiku-0.1.2//:build_script_build", ], ) @@ -134,7 +134,7 @@ cargo_build_script( version = "0.1.2", visibility = ["//visibility:private"], deps = [ - "@vendor__cc-1.2.7//:cc", + "@vendor_ts__cc-1.2.7//:cc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-1.9.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-1.9.3.bazel index 5947f8c959bf..f5728f60e0e1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-1.9.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-1.9.3.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "1.9.3", deps = [ - "@vendor__hashbrown-0.12.3//:hashbrown", - "@vendor__indexmap-1.9.3//:build_script_build", + "@vendor_ts__hashbrown-0.12.3//:hashbrown", + "@vendor_ts__indexmap-1.9.3//:build_script_build", ], ) @@ -135,7 +135,7 @@ cargo_build_script( version = "1.9.3", visibility = ["//visibility:private"], deps = [ - "@vendor__autocfg-1.4.0//:autocfg", + "@vendor_ts__autocfg-1.4.0//:autocfg", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.7.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.7.0.bazel index c4caf3ebfa46..de2ed0d53275 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.7.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.7.0.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "2.7.0", deps = [ - "@vendor__equivalent-1.0.1//:equivalent", - "@vendor__hashbrown-0.15.2//:hashbrown", + "@vendor_ts__equivalent-1.0.1//:equivalent", + "@vendor_ts__hashbrown-0.15.2//:hashbrown", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-0.9.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-0.11.0.bazel similarity index 95% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-0.9.6.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-0.11.0.bazel index 9b8089c8bb81..8abc71e58117 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-0.9.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-0.11.0.bazel @@ -79,10 +79,10 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.9.6", + version = "0.11.0", deps = [ - "@vendor__bitflags-1.3.2//:bitflags", - "@vendor__inotify-sys-0.1.5//:inotify_sys", - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__bitflags-2.8.0//:bitflags", + "@vendor_ts__inotify-sys-0.1.5//:inotify_sys", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-sys-0.1.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-sys-0.1.5.bazel index c31f00f36823..3e23ee4dea6f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-sys-0.1.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.inotify-sys-0.1.5.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.1.5", deps = [ - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.12.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.12.1.bazel index 6fd6eb800b46..e9f3a3532d3a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.12.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.12.1.bazel @@ -86,6 +86,6 @@ rust_library( }), version = "0.12.1", deps = [ - "@vendor__either-1.13.0//:either", + "@vendor_ts__either-1.14.0//:either", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.14.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.14.0.bazel index 6c9dac8660ef..020cdf4b9dad 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.14.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.itertools-0.14.0.bazel @@ -86,6 +86,6 @@ rust_library( }), version = "0.14.0", deps = [ - "@vendor__either-1.13.0//:either", + "@vendor_ts__either-1.14.0//:either", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.js-sys-0.3.76.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.js-sys-0.3.76.bazel index 07a7873c5c15..c4c245329262 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.js-sys-0.3.76.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.js-sys-0.3.76.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "0.3.76", deps = [ - "@vendor__once_cell-1.20.2//:once_cell", - "@vendor__wasm-bindgen-0.2.99//:wasm_bindgen", + "@vendor_ts__once_cell-1.20.3//:once_cell", + "@vendor_ts__wasm-bindgen-0.2.99//:wasm_bindgen", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-1.0.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-1.0.8.bazel index 90ebace5cef3..25390d540e0e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-1.0.8.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-1.0.8.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "1.0.8", deps = [ - "@vendor__kqueue-sys-1.0.4//:kqueue_sys", - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__kqueue-sys-1.0.4//:kqueue_sys", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-sys-1.0.4.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-sys-1.0.4.bazel index 16504b28cb82..e226e4b77c7f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-sys-1.0.4.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.kqueue-sys-1.0.4.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "1.0.4", deps = [ - "@vendor__bitflags-1.3.2//:bitflags", - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__bitflags-1.3.2//:bitflags", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libc-0.2.169.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libc-0.2.169.bazel index 4c96b7c5dc95..d3cef09f0cd8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libc-0.2.169.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libc-0.2.169.bazel @@ -86,7 +86,7 @@ rust_library( }), version = "0.2.169", deps = [ - "@vendor__libc-0.2.169//:build_script_build", + "@vendor_ts__libc-0.2.169//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libredox-0.1.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libredox-0.1.3.bazel index f13d15a95e10..4bbbe82982c5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libredox-0.1.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libredox-0.1.3.bazel @@ -81,8 +81,8 @@ rust_library( }), version = "0.1.3", deps = [ - "@vendor__bitflags-2.7.0//:bitflags", - "@vendor__libc-0.2.169//:libc", - "@vendor__redox_syscall-0.5.8//:syscall", + "@vendor_ts__bitflags-2.8.0//:bitflags", + "@vendor_ts__libc-0.2.169//:libc", + "@vendor_ts__redox_syscall-0.5.8//:syscall", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.line-index-0.1.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.line-index-0.1.2.bazel index 2e36a7d3ab24..0606a147a5cb 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.line-index-0.1.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.line-index-0.1.2.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "0.1.2", deps = [ - "@vendor__nohash-hasher-0.2.0//:nohash_hasher", - "@vendor__text-size-1.1.1//:text_size", + "@vendor_ts__nohash-hasher-0.2.0//:nohash_hasher", + "@vendor_ts__text-size-1.1.1//:text_size", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.lock_api-0.4.12.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.lock_api-0.4.12.bazel index 7998bc5361fa..3044c1276928 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.lock_api-0.4.12.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.lock_api-0.4.12.bazel @@ -86,8 +86,8 @@ rust_library( }), version = "0.4.12", deps = [ - "@vendor__lock_api-0.4.12//:build_script_build", - "@vendor__scopeguard-1.2.0//:scopeguard", + "@vendor_ts__lock_api-0.4.12//:build_script_build", + "@vendor_ts__scopeguard-1.2.0//:scopeguard", ], ) @@ -143,7 +143,7 @@ cargo_build_script( version = "0.4.12", visibility = ["//visibility:private"], deps = [ - "@vendor__autocfg-1.4.0//:autocfg", + "@vendor_ts__autocfg-1.4.0//:autocfg", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.3.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.3.9.bazel index 5c06b96e63fe..c17f4cad96b1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.3.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.3.9.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "0.3.9", deps = [ - "@vendor__log-0.4.22//:log", + "@vendor_ts__log-0.4.25//:log", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.4.22.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.4.25.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.4.22.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.4.25.bazel index 74a985fb2ee4..a2e0e15b13ef 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.4.22.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.4.25.bazel @@ -82,5 +82,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.4.22", + version = "0.4.25", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.matchers-0.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.matchers-0.1.0.bazel index 792b5181e1dd..90227adce7e5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.matchers-0.1.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.matchers-0.1.0.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.1.0", deps = [ - "@vendor__regex-automata-0.1.10//:regex_automata", + "@vendor_ts__regex-automata-0.1.10//:regex_automata", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.memoffset-0.9.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.memoffset-0.9.1.bazel index 7342bcdd53fd..19d3d136021e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.memoffset-0.9.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.memoffset-0.9.1.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "0.9.1", deps = [ - "@vendor__memoffset-0.9.1//:build_script_build", + "@vendor_ts__memoffset-0.9.1//:build_script_build", ], ) @@ -140,7 +140,7 @@ cargo_build_script( version = "0.9.1", visibility = ["//visibility:private"], deps = [ - "@vendor__autocfg-1.4.0//:autocfg", + "@vendor_ts__autocfg-1.4.0//:autocfg", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miniz_oxide-0.8.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miniz_oxide-0.8.5.bazel similarity index 98% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miniz_oxide-0.8.2.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miniz_oxide-0.8.5.bazel index 2c0bb16b669f..2d7b2e2a69fc 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miniz_oxide-0.8.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miniz_oxide-0.8.5.bazel @@ -82,8 +82,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.8.2", + version = "0.8.5", deps = [ - "@vendor__adler2-2.0.0//:adler2", + "@vendor_ts__adler2-2.0.0//:adler2", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mio-0.8.11.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mio-1.0.3.bazel similarity index 74% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mio-0.8.11.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mio-1.0.3.bazel index 8f8955e3a753..617822e3a9ca 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mio-0.8.11.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mio-1.0.3.bazel @@ -35,7 +35,7 @@ rust_library( "os-poll", ], crate_root = "src/lib.rs", - edition = "2018", + edition = "2021", rustc_flags = [ "--cap-lints=allow", ], @@ -85,94 +85,94 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.8.11", + version = "1.0.3", deps = [ - "@vendor__log-0.4.22//:log", + "@vendor_ts__log-0.4.25//:log", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.52.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.52.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@vendor__libc-0.2.169//:libc", # cfg(target_os = "wasi") - "@vendor__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") + "@vendor_ts__libc-0.2.169//:libc", # cfg(target_os = "wasi") + "@vendor_ts__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.52.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miow-0.6.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miow-0.6.0.bazel index ff7ceeb231e5..373f357ebb5b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miow-0.6.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.miow-0.6.0.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.6.0", deps = [ - "@vendor__windows-sys-0.48.0//:windows_sys", + "@vendor_ts__windows-sys-0.48.0//:windows_sys", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mustache-0.9.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mustache-0.9.0.bazel index 23106f8a48ce..d21d1c5497c8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mustache-0.9.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mustache-0.9.0.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "0.9.0", deps = [ - "@vendor__log-0.3.9//:log", - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__log-0.3.9//:log", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-6.1.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-6.1.1.bazel deleted file mode 100644 index 261a1067fb6e..000000000000 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-6.1.1.bazel +++ /dev/null @@ -1,179 +0,0 @@ -############################################################################### -# @generated -# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To -# regenerate this file, run the following: -# -# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors -############################################################################### - -load("@rules_rust//rust:defs.bzl", "rust_library") - -package(default_visibility = ["//visibility:public"]) - -rust_library( - name = "notify", - srcs = glob( - include = ["**/*.rs"], - allow_empty = True, - ), - compile_data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - crate_features = [ - "crossbeam-channel", - "default", - "fsevent-sys", - "macos_fsevent", - ], - crate_root = "src/lib.rs", - edition = "2021", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-bazel", - "crate-name=notify", - "manual", - "noclippy", - "norustfmt", - ], - target_compatible_with = select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [], - "@rules_rust//rust/platform:aarch64-apple-ios": [], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], - "@rules_rust//rust/platform:aarch64-linux-android": [], - "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], - "@rules_rust//rust/platform:aarch64-unknown-uefi": [], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:armv7-linux-androideabi": [], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:i686-apple-darwin": [], - "@rules_rust//rust/platform:i686-linux-android": [], - "@rules_rust//rust/platform:i686-pc-windows-msvc": [], - "@rules_rust//rust/platform:i686-unknown-freebsd": [], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], - "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], - "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], - "@rules_rust//rust/platform:thumbv7em-none-eabi": [], - "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], - "@rules_rust//rust/platform:wasm32-unknown-unknown": [], - "@rules_rust//rust/platform:wasm32-wasip1": [], - "@rules_rust//rust/platform:x86_64-apple-darwin": [], - "@rules_rust//rust/platform:x86_64-apple-ios": [], - "@rules_rust//rust/platform:x86_64-linux-android": [], - "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-none": [], - "@rules_rust//rust/platform:x86_64-unknown-uefi": [], - "//conditions:default": ["@platforms//:incompatible"], - }), - version = "6.1.1", - deps = [ - "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", - "@vendor__filetime-0.2.25//:filetime", - "@vendor__libc-0.2.169//:libc", - "@vendor__log-0.4.22//:log", - "@vendor__walkdir-2.5.0//:walkdir", - ] + select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__bitflags-2.7.0//:bitflags", # cfg(target_os = "macos") - "@vendor__fsevent-sys-4.1.0//:fsevent_sys", # aarch64-apple-darwin - ], - "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows) - ], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__bitflags-2.7.0//:bitflags", # cfg(target_os = "macos") - "@vendor__fsevent-sys-4.1.0//:fsevent_sys", # i686-apple-darwin - ], - "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows) - ], - "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd")) - ], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__bitflags-2.7.0//:bitflags", # cfg(target_os = "macos") - "@vendor__fsevent-sys-4.1.0//:fsevent_sys", # x86_64-apple-darwin - ], - "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows) - ], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd")) - ], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__inotify-0.9.6//:inotify", # cfg(any(target_os = "linux", target_os = "android")) - "@vendor__mio-0.8.11//:mio", # cfg(any(target_os = "linux", target_os = "android")) - ], - "//conditions:default": [], - }), -) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-8.0.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-8.0.0.bazel new file mode 100644 index 000000000000..43a411a44ef6 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-8.0.0.bazel @@ -0,0 +1,190 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "notify", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "fsevent-sys", + "macos_fsevent", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=notify", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "8.0.0", + deps = [ + "@vendor_ts__filetime-0.2.25//:filetime", + "@vendor_ts__libc-0.2.169//:libc", + "@vendor_ts__log-0.4.25//:log", + "@vendor_ts__notify-types-2.0.0//:notify_types", + "@vendor_ts__walkdir-2.5.0//:walkdir", + ] + select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [ + "@vendor_ts__bitflags-2.8.0//:bitflags", # cfg(target_os = "macos") + "@vendor_ts__fsevent-sys-4.1.0//:fsevent_sys", # aarch64-apple-darwin + ], + "@rules_rust//rust/platform:aarch64-apple-ios": [ + "@vendor_ts__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + ], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ + "@vendor_ts__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + ], + "@rules_rust//rust/platform:aarch64-linux-android": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) + ], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:armv7-linux-androideabi": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:i686-apple-darwin": [ + "@vendor_ts__bitflags-2.8.0//:bitflags", # cfg(target_os = "macos") + "@vendor_ts__fsevent-sys-4.1.0//:fsevent_sys", # i686-apple-darwin + ], + "@rules_rust//rust/platform:i686-linux-android": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [ + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) + ], + "@rules_rust//rust/platform:i686-unknown-freebsd": [ + "@vendor_ts__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + ], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:x86_64-apple-darwin": [ + "@vendor_ts__bitflags-2.8.0//:bitflags", # cfg(target_os = "macos") + "@vendor_ts__fsevent-sys-4.1.0//:fsevent_sys", # x86_64-apple-darwin + ], + "@rules_rust//rust/platform:x86_64-apple-ios": [ + "@vendor_ts__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + ], + "@rules_rust//rust/platform:x86_64-linux-android": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) + ], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ + "@vendor_ts__kqueue-1.0.8//:kqueue", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonflybsd", target_os = "ios")) + ], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ + "@vendor_ts__inotify-0.11.0//:inotify", # cfg(any(target_os = "linux", target_os = "android")) + "@vendor_ts__mio-1.0.3//:mio", # cfg(any(target_os = "linux", target_os = "android")) + ], + "//conditions:default": [], + }), +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_limit-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-types-2.0.0.bazel similarity index 97% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_limit-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-types-2.0.0.bazel index 3589754e1c97..2a58d2dd5730 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_limit-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.notify-types-2.0.0.bazel @@ -11,7 +11,7 @@ load("@rules_rust//rust:defs.bzl", "rust_library") package(default_visibility = ["//visibility:public"]) rust_library( - name = "ra_ap_limit", + name = "notify_types", srcs = glob( include = ["**/*.rs"], allow_empty = True, @@ -35,7 +35,7 @@ rust_library( ], tags = [ "cargo-bazel", - "crate-name=ra_ap_limit", + "crate-name=notify-types", "manual", "noclippy", "norustfmt", @@ -79,5 +79,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "2.0.0", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nu-ansi-term-0.46.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nu-ansi-term-0.46.0.bazel index 654e4c1d4a55..96808381d753 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nu-ansi-term-0.46.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nu-ansi-term-0.46.0.bazel @@ -81,16 +81,16 @@ rust_library( }), version = "0.46.0", deps = [ - "@vendor__overload-0.1.1//:overload", + "@vendor_ts__overload-0.1.1//:overload", ] + select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__winapi-0.3.9//:winapi", # cfg(target_os = "windows") + "@vendor_ts__winapi-0.3.9//:winapi", # cfg(target_os = "windows") ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__winapi-0.3.9//:winapi", # cfg(target_os = "windows") + "@vendor_ts__winapi-0.3.9//:winapi", # cfg(target_os = "windows") ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__winapi-0.3.9//:winapi", # cfg(target_os = "windows") + "@vendor_ts__winapi-0.3.9//:winapi", # cfg(target_os = "windows") ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num-traits-0.2.19.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num-traits-0.2.19.bazel index a9087f9167ce..96213437ade3 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num-traits-0.2.19.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num-traits-0.2.19.bazel @@ -86,7 +86,7 @@ rust_library( }), version = "0.2.19", deps = [ - "@vendor__num-traits-0.2.19//:build_script_build", + "@vendor_ts__num-traits-0.2.19//:build_script_build", ], ) @@ -142,7 +142,7 @@ cargo_build_script( version = "0.2.19", visibility = ["//visibility:private"], deps = [ - "@vendor__autocfg-1.4.0//:autocfg", + "@vendor_ts__autocfg-1.4.0//:autocfg", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num_cpus-1.16.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num_cpus-1.16.0.bazel index 4e067f66eafa..ccbaed88173e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num_cpus-1.16.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.num_cpus-1.16.0.bazel @@ -82,103 +82,103 @@ rust_library( version = "1.16.0", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-uefi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-uefi": [ - "@vendor__libc-0.2.169//:libc", # cfg(not(windows)) + "@vendor_ts__libc-0.2.169//:libc", # cfg(not(windows)) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.once_cell-1.20.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.once_cell-1.20.3.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.once_cell-1.20.2.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.once_cell-1.20.3.bazel index 03549cbfb504..5b194f587bb8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.once_cell-1.20.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.once_cell-1.20.3.bazel @@ -85,5 +85,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.20.2", + version = "1.20.3", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.os_str_bytes-7.0.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.os_str_bytes-7.0.0.bazel index afb6050d04e7..ea9024c51ced 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.os_str_bytes-7.0.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.os_str_bytes-7.0.0.bazel @@ -86,6 +86,6 @@ rust_library( }), version = "7.0.0", deps = [ - "@vendor__memchr-2.7.4//:memchr", + "@vendor_ts__memchr-2.7.4//:memchr", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot-0.12.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot-0.12.3.bazel index 93eb0e47dcc5..8dc49b684be5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot-0.12.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot-0.12.3.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "0.12.3", deps = [ - "@vendor__lock_api-0.4.12//:lock_api", - "@vendor__parking_lot_core-0.9.10//:parking_lot_core", + "@vendor_ts__lock_api-0.4.12//:lock_api", + "@vendor_ts__parking_lot_core-0.9.10//:parking_lot_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot_core-0.9.10.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot_core-0.9.10.bazel index 38b7fc7fc6f5..d53c706ee3cb 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot_core-0.9.10.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.parking_lot_core-0.9.10.bazel @@ -82,90 +82,90 @@ rust_library( }), version = "0.9.10", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", - "@vendor__parking_lot_core-0.9.10//:build_script_build", - "@vendor__smallvec-1.13.2//:smallvec", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__parking_lot_core-0.9.10//:build_script_build", + "@vendor_ts__smallvec-1.14.0//:smallvec", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-targets-0.52.6//:windows_targets", # cfg(windows) + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-targets-0.52.6//:windows_targets", # cfg(windows) + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-targets-0.52.6//:windows_targets", # cfg(windows) + "@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # cfg(unix) + "@vendor_ts__libc-0.2.169//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear-0.2.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear-0.2.9.bazel index ec071cb5de34..72d8ec29384b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear-0.2.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear-0.2.9.bazel @@ -36,7 +36,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__pear_codegen-0.2.9//:pear_codegen", + "@vendor_ts__pear_codegen-0.2.9//:pear_codegen", ], rustc_flags = [ "--cap-lints=allow", @@ -89,7 +89,7 @@ rust_library( }), version = "0.2.9", deps = [ - "@vendor__inlinable_string-0.1.15//:inlinable_string", - "@vendor__yansi-1.0.1//:yansi", + "@vendor_ts__inlinable_string-0.1.15//:inlinable_string", + "@vendor_ts__yansi-1.0.1//:yansi", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear_codegen-0.2.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear_codegen-0.2.9.bazel index b7f577c7ca46..4ba44587033d 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear_codegen-0.2.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pear_codegen-0.2.9.bazel @@ -81,9 +81,9 @@ rust_proc_macro( }), version = "0.2.9", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__proc-macro2-diagnostics-0.10.1//:proc_macro2_diagnostics", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__proc-macro2-diagnostics-0.10.1//:proc_macro2_diagnostics", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-0.4.7.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-0.4.7.bazel index 1f6476ee6320..5784824a2985 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-0.4.7.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-0.4.7.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "0.4.7", deps = [ - "@vendor__libc-0.2.169//:libc", - "@vendor__perf-event-open-sys-1.0.1//:perf_event_open_sys", + "@vendor_ts__libc-0.2.169//:libc", + "@vendor_ts__perf-event-open-sys-1.0.1//:perf_event_open_sys", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-open-sys-1.0.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-open-sys-1.0.1.bazel index bae5d7a89bfd..92b15bc5d885 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-open-sys-1.0.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.perf-event-open-sys-1.0.1.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "1.0.1", deps = [ - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__libc-0.2.169//:libc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel index 44b02c9f9d4e..df987bd453e9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel @@ -87,7 +87,7 @@ rust_library( }), version = "0.6.5", deps = [ - "@vendor__fixedbitset-0.4.2//:fixedbitset", - "@vendor__indexmap-2.7.0//:indexmap", + "@vendor_ts__fixedbitset-0.4.2//:fixedbitset", + "@vendor_ts__indexmap-2.7.0//:indexmap", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ppv-lite86-0.2.20.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ppv-lite86-0.2.20.bazel index 7a21bfe9b505..37a6586979ac 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ppv-lite86-0.2.20.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ppv-lite86-0.2.20.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "0.2.20", deps = [ - "@vendor__zerocopy-0.7.35//:zerocopy", + "@vendor_ts__zerocopy-0.7.35//:zerocopy", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-1.0.93.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-1.0.93.bazel index 17e69670194b..bcc9b7fe36af 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-1.0.93.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-1.0.93.bazel @@ -86,8 +86,8 @@ rust_library( }), version = "1.0.93", deps = [ - "@vendor__proc-macro2-1.0.93//:build_script_build", - "@vendor__unicode-ident-1.0.14//:unicode_ident", + "@vendor_ts__proc-macro2-1.0.93//:build_script_build", + "@vendor_ts__unicode-ident-1.0.16//:unicode_ident", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-diagnostics-0.10.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-diagnostics-0.10.1.bazel index 478e5671ace3..6e74bb3b8793 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-diagnostics-0.10.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro2-diagnostics-0.10.1.bazel @@ -87,11 +87,11 @@ rust_library( }), version = "0.10.1", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__proc-macro2-diagnostics-0.10.1//:build_script_build", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", - "@vendor__yansi-1.0.1//:yansi", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__proc-macro2-diagnostics-0.10.1//:build_script_build", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", + "@vendor_ts__yansi-1.0.1//:yansi", ], ) @@ -148,7 +148,7 @@ cargo_build_script( version = "0.10.1", visibility = ["//visibility:private"], deps = [ - "@vendor__version_check-0.9.5//:version_check", + "@vendor_ts__version_check-0.9.5//:version_check", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.quote-1.0.38.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.quote-1.0.38.bazel index 6e2d08c844e6..1f85e8a04310 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.quote-1.0.38.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.quote-1.0.38.bazel @@ -85,6 +85,6 @@ rust_library( }), version = "1.0.38", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_abi-0.87.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_abi-0.97.0.bazel similarity index 88% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_abi-0.87.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_abi-0.97.0.bazel index 4eb18732fe05..742b9bee04b6 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_abi-0.87.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_abi-0.97.0.bazel @@ -17,7 +17,8 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index": "rustc_index", + "@vendor_ts__ra-ap-rustc_hashes-0.97.0//:ra_ap_rustc_hashes": "rustc_hashes", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index": "rustc_index", }, compile_data = glob( include = ["**"], @@ -32,7 +33,7 @@ rust_library( ], ), crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", rustc_flags = [ "--cap-lints=allow", ], @@ -82,10 +83,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.87.0", + version = "0.97.0", deps = [ - "@vendor__bitflags-2.7.0//:bitflags", - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__bitflags-2.8.0//:bitflags", + "@vendor_ts__ra-ap-rustc_hashes-0.97.0//:ra_ap_rustc_hashes", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_hashes-0.97.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_hashes-0.97.0.bazel new file mode 100644 index 000000000000..f44bed7781db --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_hashes-0.97.0.bazel @@ -0,0 +1,86 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "ra_ap_rustc_hashes", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2024", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=ra-ap-rustc_hashes", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.97.0", + deps = [ + "@vendor_ts__rustc-stable-hash-0.1.1//:rustc_stable_hash", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index-0.87.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index-0.97.0.bazel similarity index 92% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index-0.87.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index-0.97.0.bazel index db976fae9026..20f80a3542a4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index-0.87.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index-0.97.0.bazel @@ -17,7 +17,7 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra-ap-rustc_index_macros-0.87.0//:ra_ap_rustc_index_macros": "rustc_index_macros", + "@vendor_ts__ra-ap-rustc_index_macros-0.97.0//:ra_ap_rustc_index_macros": "rustc_index_macros", }, compile_data = glob( include = ["**"], @@ -32,9 +32,9 @@ rust_library( ], ), crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", proc_macro_deps = [ - "@vendor__ra-ap-rustc_index_macros-0.87.0//:ra_ap_rustc_index_macros", + "@vendor_ts__ra-ap-rustc_index_macros-0.97.0//:ra_ap_rustc_index_macros", ], rustc_flags = [ "--cap-lints=allow", @@ -85,8 +85,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.87.0", + version = "0.97.0", deps = [ - "@vendor__smallvec-1.13.2//:smallvec", + "@vendor_ts__smallvec-1.14.0//:smallvec", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index_macros-0.87.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index_macros-0.97.0.bazel similarity index 95% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index_macros-0.87.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index_macros-0.97.0.bazel index ec5390efd1d0..eca0772470cf 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index_macros-0.87.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_index_macros-0.97.0.bazel @@ -29,7 +29,7 @@ rust_proc_macro( ], ), crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", rustc_flags = [ "--cap-lints=allow", ], @@ -79,10 +79,10 @@ rust_proc_macro( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.87.0", + version = "0.97.0", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_lexer-0.87.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_lexer-0.97.0.bazel similarity index 94% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_lexer-0.87.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_lexer-0.97.0.bazel index e6f63b6889ee..58c662ab8d39 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_lexer-0.87.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_lexer-0.97.0.bazel @@ -29,7 +29,7 @@ rust_library( ], ), crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", rustc_flags = [ "--cap-lints=allow", ], @@ -79,9 +79,10 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.87.0", + version = "0.97.0", deps = [ - "@vendor__unicode-properties-0.1.3//:unicode_properties", - "@vendor__unicode-xid-0.2.6//:unicode_xid", + "@vendor_ts__memchr-2.7.4//:memchr", + "@vendor_ts__unicode-properties-0.1.3//:unicode_properties", + "@vendor_ts__unicode-xid-0.2.6//:unicode_xid", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_parse_format-0.87.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_parse_format-0.97.0.bazel similarity index 91% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_parse_format-0.87.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_parse_format-0.97.0.bazel index eff127696b17..38ac1f7eab54 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_parse_format-0.87.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_parse_format-0.97.0.bazel @@ -17,8 +17,8 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index": "rustc_index", - "@vendor__ra-ap-rustc_lexer-0.87.0//:ra_ap_rustc_lexer": "rustc_lexer", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index": "rustc_index", + "@vendor_ts__ra-ap-rustc_lexer-0.97.0//:ra_ap_rustc_lexer": "rustc_lexer", }, compile_data = glob( include = ["**"], @@ -33,7 +33,7 @@ rust_library( ], ), crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", rustc_flags = [ "--cap-lints=allow", ], @@ -83,9 +83,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.87.0", + version = "0.97.0", deps = [ - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index", - "@vendor__ra-ap-rustc_lexer-0.87.0//:ra_ap_rustc_lexer", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index", + "@vendor_ts__ra-ap-rustc_lexer-0.97.0//:ra_ap_rustc_lexer", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_pattern_analysis-0.87.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_pattern_analysis-0.97.0.bazel similarity index 89% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_pattern_analysis-0.87.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_pattern_analysis-0.97.0.bazel index 5d27526cf686..cdef8ca0b9a3 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_pattern_analysis-0.87.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra-ap-rustc_pattern_analysis-0.97.0.bazel @@ -17,7 +17,7 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index": "rustc_index", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index": "rustc_index", }, compile_data = glob( include = ["**"], @@ -32,7 +32,7 @@ rust_library( ], ), crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", rustc_flags = [ "--cap-lints=allow", ], @@ -82,12 +82,12 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.87.0", + version = "0.97.0", deps = [ - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:rustc_apfloat", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:rustc_apfloat", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.266.bazel similarity index 76% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.266.bazel index 592b32e7a456..70595c88a116 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.266.bazel @@ -17,12 +17,12 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg": "cfg", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs": "vfs", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg": "cfg", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs": "vfs", }, compile_data = glob( include = ["**"], @@ -87,20 +87,20 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__la-arena-0.3.1//:la_arena", - "@vendor__lz4_flex-0.11.3//:lz4_flex", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_salsa-0.0.258//:ra_salsa", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__semver-1.0.24//:semver", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__la-arena-0.3.1//:la_arena", + "@vendor_ts__lz4_flex-0.11.3//:lz4_flex", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_salsa-0.0.266//:ra_salsa", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__semver-1.0.24//:semver", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_cfg-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_cfg-0.0.266.bazel similarity index 90% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_cfg-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_cfg-0.0.266.bazel index 779a777c067a..e58f52a7129d 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_cfg-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_cfg-0.0.266.bazel @@ -17,8 +17,8 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -86,11 +86,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_edition-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_edition-0.0.266.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_edition-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_edition-0.0.266.bazel index eed58b91a1f2..2c7410fd47f7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_edition-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_edition-0.0.266.bazel @@ -79,5 +79,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.266.bazel similarity index 68% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.266.bazel index 54a350d42d68..5a688858e7fb 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.266.bazel @@ -17,16 +17,16 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db": "base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg": "cfg", - "@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def": "hir_def", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand": "hir_expand", - "@vendor__ra_ap_hir_ty-0.0.258//:ra_ap_hir_ty": "hir_ty", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db": "base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg": "cfg", + "@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def": "hir_def", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand": "hir_expand", + "@vendor_ts__ra_ap_hir_ty-0.0.266//:ra_ap_hir_ty": "hir_ty", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -91,24 +91,25 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__arrayvec-0.7.6//:arrayvec", - "@vendor__either-1.13.0//:either", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", - "@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand", - "@vendor__ra_ap_hir_ty-0.0.258//:ra_ap_hir_ty", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__arrayvec-0.7.6//:arrayvec", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", + "@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand", + "@vendor_ts__ra_ap_hir_ty-0.0.266//:ra_ap_hir_ty", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.266.bazel similarity index 61% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.266.bazel index 1018a98e564d..a8280467c4d9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.266.bazel @@ -17,16 +17,15 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db": "base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg": "cfg", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand": "hir_expand", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit": "limit", - "@vendor__ra_ap_mbe-0.0.258//:ra_ap_mbe": "mbe", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db": "base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg": "cfg", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand": "hir_expand", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_mbe-0.0.266//:ra_ap_mbe": "mbe", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -91,36 +90,36 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__arrayvec-0.7.6//:arrayvec", - "@vendor__bitflags-2.7.0//:bitflags", - "@vendor__cov-mark-2.0.0//:cov_mark", - "@vendor__dashmap-5.5.3//:dashmap", - "@vendor__drop_bomb-0.1.5//:drop_bomb", - "@vendor__either-1.13.0//:either", - "@vendor__fst-0.4.7//:fst", - "@vendor__hashbrown-0.14.5//:hashbrown", - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__la-arena-0.3.1//:la_arena", - "@vendor__ra-ap-rustc_abi-0.87.0//:ra_ap_rustc_abi", - "@vendor__ra-ap-rustc_parse_format-0.87.0//:ra_ap_rustc_parse_format", - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit", - "@vendor__ra_ap_mbe-0.0.258//:ra_ap_mbe", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:rustc_apfloat", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__text-size-1.1.1//:text_size", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__arrayvec-0.7.6//:arrayvec", + "@vendor_ts__bitflags-2.8.0//:bitflags", + "@vendor_ts__cov-mark-2.0.0//:cov_mark", + "@vendor_ts__dashmap-5.5.3//:dashmap", + "@vendor_ts__drop_bomb-0.1.5//:drop_bomb", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__fst-0.4.7//:fst", + "@vendor_ts__hashbrown-0.14.5//:hashbrown", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__la-arena-0.3.1//:la_arena", + "@vendor_ts__ra-ap-rustc_abi-0.97.0//:ra_ap_rustc_abi", + "@vendor_ts__ra-ap-rustc_hashes-0.97.0//:ra_ap_rustc_hashes", + "@vendor_ts__ra-ap-rustc_parse_format-0.97.0//:ra_ap_rustc_parse_format", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_mbe-0.0.266//:ra_ap_mbe", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:rustc_apfloat", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__text-size-1.1.1//:text_size", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_expand-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_expand-0.0.266.bazel similarity index 67% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_expand-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_expand-0.0.266.bazel index 6baf3717b846..8c89fecda8d8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_expand-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_expand-0.0.266.bazel @@ -17,17 +17,16 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db": "base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg": "cfg", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit": "limit", - "@vendor__ra_ap_mbe-0.0.258//:ra_ap_mbe": "mbe", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser": "parser", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_syntax-bridge-0.0.258//:ra_ap_syntax_bridge": "syntax_bridge", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db": "base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg": "cfg", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_mbe-0.0.266//:ra_ap_mbe": "mbe", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser": "parser", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_syntax-bridge-0.0.266//:ra_ap_syntax_bridge": "syntax_bridge", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -92,27 +91,26 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__cov-mark-2.0.0//:cov_mark", - "@vendor__either-1.13.0//:either", - "@vendor__hashbrown-0.14.5//:hashbrown", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__la-arena-0.3.1//:la_arena", - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit", - "@vendor__ra_ap_mbe-0.0.258//:ra_ap_mbe", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_syntax-bridge-0.0.258//:ra_ap_syntax_bridge", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__cov-mark-2.0.0//:cov_mark", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__hashbrown-0.14.5//:hashbrown", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__la-arena-0.3.1//:la_arena", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_mbe-0.0.266//:ra_ap_mbe", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_syntax-bridge-0.0.266//:ra_ap_syntax_bridge", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.266.bazel similarity index 60% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.266.bazel index ea0475075893..9770a5812cf5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.266.bazel @@ -17,14 +17,13 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db": "base_db", - "@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def": "hir_def", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand": "hir_expand", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit": "limit", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db": "base_db", + "@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def": "hir_def", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand": "hir_expand", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", }, compile_data = glob( include = ["**"], @@ -41,7 +40,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__chalk-derive-0.98.0//:chalk_derive", + "@vendor_ts__chalk-derive-0.99.0//:chalk_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -92,38 +91,38 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__arrayvec-0.7.6//:arrayvec", - "@vendor__bitflags-2.7.0//:bitflags", - "@vendor__chalk-ir-0.98.0//:chalk_ir", - "@vendor__chalk-recursive-0.98.0//:chalk_recursive", - "@vendor__chalk-solve-0.98.0//:chalk_solve", - "@vendor__cov-mark-2.0.0//:cov_mark", - "@vendor__either-1.13.0//:either", - "@vendor__ena-0.14.3//:ena", - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__la-arena-0.3.1//:la_arena", - "@vendor__nohash-hasher-0.2.0//:nohash_hasher", - "@vendor__oorandom-11.1.4//:oorandom", - "@vendor__ra-ap-rustc_abi-0.87.0//:ra_ap_rustc_abi", - "@vendor__ra-ap-rustc_index-0.87.0//:ra_ap_rustc_index", - "@vendor__ra-ap-rustc_pattern_analysis-0.87.0//:ra_ap_rustc_pattern_analysis", - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", - "@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:rustc_apfloat", - "@vendor__scoped-tls-1.0.1//:scoped_tls", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", - "@vendor__typed-arena-2.0.2//:typed_arena", + "@vendor_ts__arrayvec-0.7.6//:arrayvec", + "@vendor_ts__bitflags-2.8.0//:bitflags", + "@vendor_ts__chalk-ir-0.99.0//:chalk_ir", + "@vendor_ts__chalk-recursive-0.99.0//:chalk_recursive", + "@vendor_ts__chalk-solve-0.99.0//:chalk_solve", + "@vendor_ts__cov-mark-2.0.0//:cov_mark", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__ena-0.14.3//:ena", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__la-arena-0.3.1//:la_arena", + "@vendor_ts__nohash-hasher-0.2.0//:nohash_hasher", + "@vendor_ts__oorandom-11.1.4//:oorandom", + "@vendor_ts__ra-ap-rustc_abi-0.97.0//:ra_ap_rustc_abi", + "@vendor_ts__ra-ap-rustc_hashes-0.97.0//:ra_ap_rustc_hashes", + "@vendor_ts__ra-ap-rustc_index-0.97.0//:ra_ap_rustc_index", + "@vendor_ts__ra-ap-rustc_pattern_analysis-0.97.0//:ra_ap_rustc_pattern_analysis", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", + "@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:rustc_apfloat", + "@vendor_ts__scoped-tls-1.0.1//:scoped_tls", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", + "@vendor_ts__typed-arena-2.0.2//:typed_arena", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.266.bazel similarity index 68% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.266.bazel index c81b3c20fac0..3b6ecbc023c6 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.266.bazel @@ -17,14 +17,13 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db": "base_db", - "@vendor__ra_ap_hir-0.0.258//:ra_ap_hir": "hir", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit": "limit", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser": "parser", - "@vendor__ra_ap_profile-0.0.258//:ra_ap_profile": "profile", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db": "base_db", + "@vendor_ts__ra_ap_hir-0.0.266//:ra_ap_hir": "hir", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser": "parser", + "@vendor_ts__ra_ap_profile-0.0.266//:ra_ap_profile": "profile", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", }, compile_data = glob( include = ["**"], @@ -89,30 +88,29 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__arrayvec-0.7.6//:arrayvec", - "@vendor__bitflags-2.7.0//:bitflags", - "@vendor__cov-mark-2.0.0//:cov_mark", - "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", - "@vendor__either-1.13.0//:either", - "@vendor__fst-0.4.7//:fst", - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__line-index-0.1.2//:line_index", - "@vendor__memchr-2.7.4//:memchr", - "@vendor__nohash-hasher-0.2.0//:nohash_hasher", - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", - "@vendor__ra_ap_hir-0.0.258//:ra_ap_hir", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", - "@vendor__ra_ap_profile-0.0.258//:ra_ap_profile", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__rayon-1.10.0//:rayon", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__arrayvec-0.7.6//:arrayvec", + "@vendor_ts__bitflags-2.8.0//:bitflags", + "@vendor_ts__cov-mark-2.0.0//:cov_mark", + "@vendor_ts__crossbeam-channel-0.5.14//:crossbeam_channel", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__fst-0.4.7//:fst", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__line-index-0.1.2//:line_index", + "@vendor_ts__memchr-2.7.4//:memchr", + "@vendor_ts__nohash-hasher-0.2.0//:nohash_hasher", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", + "@vendor_ts__ra_ap_hir-0.0.266//:ra_ap_hir", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", + "@vendor_ts__ra_ap_profile-0.0.266//:ra_ap_profile", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__rayon-1.10.0//:rayon", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_intern-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_intern-0.0.266.bazel similarity index 93% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_intern-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_intern-0.0.266.bazel index ad2a8bb0bc99..a36d7b0d3cb5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_intern-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_intern-0.0.266.bazel @@ -79,12 +79,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__dashmap-5.5.3//:dashmap", - "@vendor__hashbrown-0.14.5//:hashbrown", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__sptr-0.3.2//:sptr", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__dashmap-5.5.3//:dashmap", + "@vendor_ts__hashbrown-0.14.5//:hashbrown", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_load-cargo-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_load-cargo-0.0.266.bazel similarity index 69% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_load-cargo-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_load-cargo-0.0.266.bazel index 90360799291d..09abc14852e5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_load-cargo-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_load-cargo-0.0.266.bazel @@ -17,16 +17,16 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand": "hir_expand", - "@vendor__ra_ap_ide_db-0.0.258//:ra_ap_ide_db": "ide_db", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths": "paths", - "@vendor__ra_ap_proc_macro_api-0.0.258//:ra_ap_proc_macro_api": "proc_macro_api", - "@vendor__ra_ap_project_model-0.0.258//:ra_ap_project_model": "project_model", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs": "vfs", - "@vendor__ra_ap_vfs-notify-0.0.258//:ra_ap_vfs_notify": "vfs_notify", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand": "hir_expand", + "@vendor_ts__ra_ap_ide_db-0.0.266//:ra_ap_ide_db": "ide_db", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths": "paths", + "@vendor_ts__ra_ap_proc_macro_api-0.0.266//:ra_ap_proc_macro_api": "proc_macro_api", + "@vendor_ts__ra_ap_project_model-0.0.266//:ra_ap_project_model": "project_model", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs": "vfs", + "@vendor_ts__ra_ap_vfs-notify-0.0.266//:ra_ap_vfs_notify": "vfs_notify", }, compile_data = glob( include = ["**"], @@ -91,21 +91,21 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__anyhow-1.0.95//:anyhow", - "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand", - "@vendor__ra_ap_ide_db-0.0.258//:ra_ap_ide_db", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", - "@vendor__ra_ap_proc_macro_api-0.0.258//:ra_ap_proc_macro_api", - "@vendor__ra_ap_project_model-0.0.258//:ra_ap_project_model", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs", - "@vendor__ra_ap_vfs-notify-0.0.258//:ra_ap_vfs_notify", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__anyhow-1.0.96//:anyhow", + "@vendor_ts__crossbeam-channel-0.5.14//:crossbeam_channel", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand", + "@vendor_ts__ra_ap_ide_db-0.0.266//:ra_ap_ide_db", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", + "@vendor_ts__ra_ap_proc_macro_api-0.0.266//:ra_ap_proc_macro_api", + "@vendor_ts__ra_ap_project_model-0.0.266//:ra_ap_project_model", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs", + "@vendor_ts__ra_ap_vfs-notify-0.0.266//:ra_ap_vfs_notify", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_mbe-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_mbe-0.0.266.bazel similarity index 74% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_mbe-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_mbe-0.0.266.bazel index f2161a2ee382..c3a16c603ff2 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_mbe-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_mbe-0.0.266.bazel @@ -17,13 +17,13 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser": "parser", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_syntax-bridge-0.0.258//:ra_ap_syntax_bridge": "syntax_bridge", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser": "parser", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_syntax-bridge-0.0.266//:ra_ap_syntax_bridge": "syntax_bridge", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -88,20 +88,20 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__arrayvec-0.7.6//:arrayvec", - "@vendor__cov-mark-2.0.0//:cov_mark", - "@vendor__ra-ap-rustc_lexer-0.87.0//:ra_ap_rustc_lexer", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_syntax-bridge-0.0.258//:ra_ap_syntax_bridge", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__arrayvec-0.7.6//:arrayvec", + "@vendor_ts__cov-mark-2.0.0//:cov_mark", + "@vendor_ts__ra-ap-rustc_lexer-0.97.0//:ra_ap_rustc_lexer", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_syntax-bridge-0.0.266//:ra_ap_syntax_bridge", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_parser-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_parser-0.0.266.bazel similarity index 89% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_parser-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_parser-0.0.266.bazel index 7b9d090ca90b..e183b2734b9e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_parser-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_parser-0.0.266.bazel @@ -17,8 +17,7 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_edition-0.0.258//:ra_ap_edition": "edition", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit": "limit", + "@vendor_ts__ra_ap_edition-0.0.266//:ra_ap_edition": "edition", }, compile_data = glob( include = ["**"], @@ -87,12 +86,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__drop_bomb-0.1.5//:drop_bomb", - "@vendor__ra-ap-rustc_lexer-0.87.0//:ra_ap_rustc_lexer", - "@vendor__ra_ap_edition-0.0.258//:ra_ap_edition", - "@vendor__ra_ap_limit-0.0.258//:ra_ap_limit", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__drop_bomb-0.1.5//:drop_bomb", + "@vendor_ts__ra-ap-rustc_lexer-0.97.0//:ra_ap_rustc_lexer", + "@vendor_ts__ra_ap_edition-0.0.266//:ra_ap_edition", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_paths-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_paths-0.0.266.bazel similarity index 98% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_paths-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_paths-0.0.266.bazel index ad60384aca90..71c23f70a942 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_paths-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_paths-0.0.266.bazel @@ -82,8 +82,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__camino-1.1.9//:camino", + "@vendor_ts__camino-1.1.9//:camino", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.266.bazel similarity index 79% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.266.bazel index 8d97fd5cdd80..52cd154b6fcc 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.266.bazel @@ -17,11 +17,11 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths": "paths", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths": "paths", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -38,7 +38,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__serde_derive-1.0.217//:serde_derive", + "@vendor_ts__serde_derive-1.0.218//:serde_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -89,17 +89,17 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_json-1.0.135//:serde_json", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_json-1.0.139//:serde_json", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_profile-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_profile-0.0.266.bazel similarity index 80% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_profile-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_profile-0.0.266.bazel index 755a0f6b3834..1ca7ddd38df7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_profile-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_profile-0.0.266.bazel @@ -79,46 +79,46 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__libc-0.2.169//:libc", ] + select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.52.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.52.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.52.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") + "@vendor_ts__perf-event-0.4.7//:perf_event", # cfg(target_os = "linux") ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.266.bazel similarity index 71% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.266.bazel index 7ebaa0815432..7edf5bc0f821 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.266.bazel @@ -17,13 +17,13 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db": "base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg": "cfg", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths": "paths", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_toolchain-0.0.258//:ra_ap_toolchain": "toolchain", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db": "base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg": "cfg", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths": "paths", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_toolchain-0.0.266//:ra_ap_toolchain": "toolchain", }, compile_data = glob( include = ["**"], @@ -40,7 +40,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__serde_derive-1.0.217//:serde_derive", + "@vendor_ts__serde_derive-1.0.218//:serde_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -91,24 +91,24 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__anyhow-1.0.95//:anyhow", - "@vendor__cargo_metadata-0.18.1//:cargo_metadata", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__la-arena-0.3.1//:la_arena", - "@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db", - "@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_toolchain-0.0.258//:ra_ap_toolchain", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__semver-1.0.24//:semver", - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_json-1.0.135//:serde_json", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__anyhow-1.0.96//:anyhow", + "@vendor_ts__cargo_metadata-0.18.1//:cargo_metadata", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__la-arena-0.3.1//:la_arena", + "@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db", + "@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_toolchain-0.0.266//:ra_ap_toolchain", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__semver-1.0.24//:semver", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_json-1.0.139//:serde_json", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-0.0.266.bazel similarity index 86% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-0.0.266.bazel index a9542ad6008d..bab83cc8eebd 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-0.0.266.bazel @@ -31,7 +31,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__ra_ap_salsa-macros-0.0.258//:ra_salsa_macros", + "@vendor_ts__ra_ap_salsa-macros-0.0.266//:ra_salsa_macros", ], rustc_flags = [ "--cap-lints=allow", @@ -82,16 +82,16 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__lock_api-0.4.12//:lock_api", - "@vendor__oorandom-11.1.4//:oorandom", - "@vendor__parking_lot-0.12.3//:parking_lot", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__lock_api-0.4.12//:lock_api", + "@vendor_ts__oorandom-11.1.4//:oorandom", + "@vendor_ts__parking_lot-0.12.3//:parking_lot", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-macros-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-macros-0.0.266.bazel similarity index 94% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-macros-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-macros-0.0.266.bazel index b753230db46a..53313071100f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-macros-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_salsa-macros-0.0.266.bazel @@ -79,11 +79,11 @@ rust_proc_macro( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__heck-0.4.1//:heck", - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__heck-0.4.1//:heck", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_span-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_span-0.0.266.bazel similarity index 85% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_span-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_span-0.0.266.bazel index ee3121891d2d..b77f7a5723da 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_span-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_span-0.0.266.bazel @@ -17,9 +17,9 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs": "vfs", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs": "vfs", }, compile_data = glob( include = ["**"], @@ -88,15 +88,15 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__hashbrown-0.14.5//:hashbrown", - "@vendor__la-arena-0.3.1//:la_arena", - "@vendor__ra_ap_salsa-0.0.258//:ra_salsa", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__text-size-1.1.1//:text_size", + "@vendor_ts__hashbrown-0.14.5//:hashbrown", + "@vendor_ts__la-arena-0.3.1//:la_arena", + "@vendor_ts__ra_ap_salsa-0.0.266//:ra_salsa", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__text-size-1.1.1//:text_size", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_stdx-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_stdx-0.0.266.bazel similarity index 84% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_stdx-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_stdx-0.0.266.bazel index 6c81bb672056..dec7e842d90b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_stdx-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_stdx-0.0.266.bazel @@ -79,25 +79,25 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__always-assert-0.2.0//:always_assert", - "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__jod-thread-0.1.2//:jod_thread", - "@vendor__libc-0.2.169//:libc", + "@vendor_ts__always-assert-0.2.0//:always_assert", + "@vendor_ts__crossbeam-channel-0.5.14//:crossbeam_channel", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__jod-thread-0.1.2//:jod_thread", + "@vendor_ts__libc-0.2.169//:libc", ] + select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__miow-0.6.0//:miow", # cfg(windows) - "@vendor__windows-sys-0.52.0//:windows_sys", # cfg(windows) + "@vendor_ts__miow-0.6.0//:miow", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__miow-0.6.0//:miow", # cfg(windows) - "@vendor__windows-sys-0.52.0//:windows_sys", # cfg(windows) + "@vendor_ts__miow-0.6.0//:miow", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__miow-0.6.0//:miow", # cfg(windows) - "@vendor__windows-sys-0.52.0//:windows_sys", # cfg(windows) + "@vendor_ts__miow-0.6.0//:miow", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-0.0.266.bazel similarity index 82% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-0.0.266.bazel index 02cf67802e69..de3c0271fd46 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-0.0.266.bazel @@ -17,8 +17,8 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser": "parser", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser": "parser", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", }, compile_data = glob( include = ["**"], @@ -83,20 +83,20 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__cov-mark-2.0.0//:cov_mark", - "@vendor__either-1.13.0//:either", - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itertools-0.12.1//:itertools", - "@vendor__ra-ap-rustc_lexer-0.87.0//:ra_ap_rustc_lexer", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__rowan-0.15.15//:rowan", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__smol_str-0.3.2//:smol_str", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__triomphe-0.1.14//:triomphe", + "@vendor_ts__cov-mark-2.0.0//:cov_mark", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__ra-ap-rustc_lexer-0.97.0//:ra_ap_rustc_lexer", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__rowan-0.15.15//:rowan", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__smol_str-0.3.2//:smol_str", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__triomphe-0.1.14//:triomphe", ], ) exports_files(["rust.ungram"]) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-bridge-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-bridge-0.0.266.bazel similarity index 80% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-bridge-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-bridge-0.0.266.bazel index 62290545bbc8..501bd5f18418 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-bridge-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_syntax-bridge-0.0.266.bazel @@ -17,12 +17,12 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser": "parser", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span": "span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax": "syntax", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt": "tt", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser": "parser", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span": "span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax": "syntax", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt": "tt", }, compile_data = glob( include = ["**"], @@ -87,15 +87,15 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_parser-0.0.258//:ra_ap_parser", - "@vendor__ra_ap_span-0.0.258//:ra_ap_span", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax", - "@vendor__ra_ap_tt-0.0.258//:ra_ap_tt", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser", + "@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax", + "@vendor_ts__ra_ap_tt-0.0.266//:ra_ap_tt", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_toolchain-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_toolchain-0.0.266.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_toolchain-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_toolchain-0.0.266.bazel index 86dfdc8d6c3b..66f181536d6a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_toolchain-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_toolchain-0.0.266.bazel @@ -79,9 +79,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__camino-1.1.9//:camino", - "@vendor__home-0.5.11//:home", + "@vendor_ts__camino-1.1.9//:camino", + "@vendor_ts__home-0.5.11//:home", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_tt-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_tt-0.0.266.bazel similarity index 89% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_tt-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_tt-0.0.266.bazel index b3de52733253..19c7faf10dd2 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_tt-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_tt-0.0.266.bazel @@ -17,8 +17,8 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern": "intern", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern": "intern", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", }, compile_data = glob( include = ["**"], @@ -83,12 +83,12 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__arrayvec-0.7.6//:arrayvec", - "@vendor__ra-ap-rustc_lexer-0.87.0//:ra_ap_rustc_lexer", - "@vendor__ra_ap_intern-0.0.258//:ra_ap_intern", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__text-size-1.1.1//:text_size", + "@vendor_ts__arrayvec-0.7.6//:arrayvec", + "@vendor_ts__ra-ap-rustc_lexer-0.97.0//:ra_ap_rustc_lexer", + "@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__text-size-1.1.1//:text_size", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.266.bazel similarity index 86% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.266.bazel index e370e63c4a08..af56a94962c1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.266.bazel @@ -17,8 +17,8 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths": "paths", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths": "paths", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", }, compile_data = glob( include = ["**"], @@ -83,15 +83,15 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", - "@vendor__fst-0.4.7//:fst", - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__nohash-hasher-0.2.0//:nohash_hasher", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", + "@vendor_ts__crossbeam-channel-0.5.14//:crossbeam_channel", + "@vendor_ts__fst-0.4.7//:fst", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__nohash-hasher-0.2.0//:nohash_hasher", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-notify-0.0.258.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-notify-0.0.266.bazel similarity index 84% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-notify-0.0.258.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-notify-0.0.266.bazel index 43deef421ae0..97a009bdce5b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-notify-0.0.258.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-notify-0.0.266.bazel @@ -17,9 +17,9 @@ rust_library( allow_empty = True, ), aliases = { - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths": "paths", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx": "stdx", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs": "vfs", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths": "paths", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx": "stdx", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs": "vfs", }, compile_data = glob( include = ["**"], @@ -84,16 +84,16 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.0.258", + version = "0.0.266", deps = [ - "@vendor__crossbeam-channel-0.5.14//:crossbeam_channel", - "@vendor__notify-6.1.1//:notify", - "@vendor__ra_ap_paths-0.0.258//:ra_ap_paths", - "@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx", - "@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs", - "@vendor__rayon-1.10.0//:rayon", - "@vendor__rustc-hash-2.1.0//:rustc_hash", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__walkdir-2.5.0//:walkdir", + "@vendor_ts__crossbeam-channel-0.5.14//:crossbeam_channel", + "@vendor_ts__notify-8.0.0//:notify", + "@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths", + "@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx", + "@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs", + "@vendor_ts__rayon-1.10.0//:rayon", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__walkdir-2.5.0//:walkdir", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.8.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.8.5.bazel deleted file mode 100644 index de831037046f..000000000000 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.8.5.bazel +++ /dev/null @@ -1,170 +0,0 @@ -############################################################################### -# @generated -# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To -# regenerate this file, run the following: -# -# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors -############################################################################### - -load("@rules_rust//rust:defs.bzl", "rust_library") - -package(default_visibility = ["//visibility:public"]) - -rust_library( - name = "rand", - srcs = glob( - include = ["**/*.rs"], - allow_empty = True, - ), - compile_data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - crate_features = [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "std", - "std_rng", - ], - crate_root = "src/lib.rs", - edition = "2018", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-bazel", - "crate-name=rand", - "manual", - "noclippy", - "norustfmt", - ], - target_compatible_with = select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [], - "@rules_rust//rust/platform:aarch64-apple-ios": [], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], - "@rules_rust//rust/platform:aarch64-linux-android": [], - "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], - "@rules_rust//rust/platform:aarch64-unknown-uefi": [], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:armv7-linux-androideabi": [], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:i686-apple-darwin": [], - "@rules_rust//rust/platform:i686-linux-android": [], - "@rules_rust//rust/platform:i686-pc-windows-msvc": [], - "@rules_rust//rust/platform:i686-unknown-freebsd": [], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], - "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], - "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], - "@rules_rust//rust/platform:thumbv7em-none-eabi": [], - "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], - "@rules_rust//rust/platform:wasm32-unknown-unknown": [], - "@rules_rust//rust/platform:wasm32-wasip1": [], - "@rules_rust//rust/platform:x86_64-apple-darwin": [], - "@rules_rust//rust/platform:x86_64-apple-ios": [], - "@rules_rust//rust/platform:x86_64-linux-android": [], - "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-none": [], - "@rules_rust//rust/platform:x86_64-unknown-uefi": [], - "//conditions:default": ["@platforms//:incompatible"], - }), - version = "0.8.5", - deps = [ - "@vendor__rand_chacha-0.3.1//:rand_chacha", - "@vendor__rand_core-0.6.4//:rand_core", - ] + select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # aarch64-apple-darwin - ], - "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # aarch64-apple-ios - ], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@vendor__libc-0.2.169//:libc", # aarch64-apple-ios-sim - ], - "@rules_rust//rust/platform:aarch64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # aarch64-linux-android - ], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # aarch64-unknown-fuchsia - ], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # aarch64-unknown-linux-gnu - ], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu - ], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@vendor__libc-0.2.169//:libc", # aarch64-unknown-nto-qnx710 - ], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # arm-unknown-linux-gnueabi - ], - "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@vendor__libc-0.2.169//:libc", # armv7-linux-androideabi - ], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@vendor__libc-0.2.169//:libc", # armv7-unknown-linux-gnueabi - ], - "@rules_rust//rust/platform:i686-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # i686-apple-darwin - ], - "@rules_rust//rust/platform:i686-linux-android": [ - "@vendor__libc-0.2.169//:libc", # i686-linux-android - ], - "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # i686-unknown-freebsd - ], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # i686-unknown-linux-gnu - ], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # powerpc-unknown-linux-gnu - ], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # s390x-unknown-linux-gnu - ], - "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor__libc-0.2.169//:libc", # x86_64-apple-darwin - ], - "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@vendor__libc-0.2.169//:libc", # x86_64-apple-ios - ], - "@rules_rust//rust/platform:x86_64-linux-android": [ - "@vendor__libc-0.2.169//:libc", # x86_64-linux-android - ], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor__libc-0.2.169//:libc", # x86_64-unknown-freebsd - ], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@vendor__libc-0.2.169//:libc", # x86_64-unknown-fuchsia - ], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__libc-0.2.169//:libc", # x86_64-unknown-linux-gnu - ], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__libc-0.2.169//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu - ], - "//conditions:default": [], - }), -) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.9.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.9.0.bazel new file mode 100644 index 000000000000..9dc571cda9a3 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand-0.9.0.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "rand", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "alloc", + "default", + "os_rng", + "small_rng", + "std", + "std_rng", + "thread_rng", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rand", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.9.0", + deps = [ + "@vendor_ts__rand_chacha-0.9.0//:rand_chacha", + "@vendor_ts__rand_core-0.9.2//:rand_core", + "@vendor_ts__zerocopy-0.8.20//:zerocopy", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_chacha-0.3.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_chacha-0.9.0.bazel similarity index 95% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_chacha-0.3.1.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_chacha-0.9.0.bazel index 80c48fd82252..eb188225fa44 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_chacha-0.3.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_chacha-0.9.0.bazel @@ -32,7 +32,7 @@ rust_library( "std", ], crate_root = "src/lib.rs", - edition = "2018", + edition = "2021", rustc_flags = [ "--cap-lints=allow", ], @@ -82,9 +82,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.3.1", + version = "0.9.0", deps = [ - "@vendor__ppv-lite86-0.2.20//:ppv_lite86", - "@vendor__rand_core-0.6.4//:rand_core", + "@vendor_ts__ppv-lite86-0.2.20//:ppv_lite86", + "@vendor_ts__rand_core-0.9.2//:rand_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_core-0.6.4.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_core-0.9.2.bazel similarity index 95% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_core-0.6.4.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_core-0.9.2.bazel index f3d96b8a33c7..79af89a699ed 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_core-0.6.4.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rand_core-0.9.2.bazel @@ -29,12 +29,11 @@ rust_library( ], ), crate_features = [ - "alloc", - "getrandom", + "os_rng", "std", ], crate_root = "src/lib.rs", - edition = "2018", + edition = "2021", rustc_flags = [ "--cap-lints=allow", ], @@ -84,8 +83,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.6.4", + version = "0.9.2", deps = [ - "@vendor__getrandom-0.2.15//:getrandom", + "@vendor_ts__getrandom-0.3.1//:getrandom", + "@vendor_ts__zerocopy-0.8.20//:zerocopy", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-1.10.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-1.10.0.bazel index abe95003d292..f84dc0969f2c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-1.10.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-1.10.0.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "1.10.0", deps = [ - "@vendor__either-1.13.0//:either", - "@vendor__rayon-core-1.12.1//:rayon_core", + "@vendor_ts__either-1.14.0//:either", + "@vendor_ts__rayon-core-1.12.1//:rayon_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-core-1.12.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-core-1.12.1.bazel index 2abb8caa8698..53bd8e6fe3d6 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-core-1.12.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rayon-core-1.12.1.bazel @@ -82,9 +82,9 @@ rust_library( }), version = "1.12.1", deps = [ - "@vendor__crossbeam-deque-0.8.6//:crossbeam_deque", - "@vendor__crossbeam-utils-0.8.21//:crossbeam_utils", - "@vendor__rayon-core-1.12.1//:build_script_build", + "@vendor_ts__crossbeam-deque-0.8.6//:crossbeam_deque", + "@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils", + "@vendor_ts__rayon-core-1.12.1//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.redox_syscall-0.5.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.redox_syscall-0.5.8.bazel index f9f0c89fa5ec..adc812c3df5a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.redox_syscall-0.5.8.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.redox_syscall-0.5.8.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.5.8", deps = [ - "@vendor__bitflags-2.7.0//:bitflags", + "@vendor_ts__bitflags-2.8.0//:bitflags", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-1.11.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-1.11.1.bazel index e0a2b9880c24..0399f3132c64 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-1.11.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-1.11.1.bazel @@ -100,9 +100,9 @@ rust_library( }), version = "1.11.1", deps = [ - "@vendor__aho-corasick-1.1.3//:aho_corasick", - "@vendor__memchr-2.7.4//:memchr", - "@vendor__regex-automata-0.4.9//:regex_automata", - "@vendor__regex-syntax-0.8.5//:regex_syntax", + "@vendor_ts__aho-corasick-1.1.3//:aho_corasick", + "@vendor_ts__memchr-2.7.4//:memchr", + "@vendor_ts__regex-automata-0.4.9//:regex_automata", + "@vendor_ts__regex-syntax-0.8.5//:regex_syntax", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.1.10.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.1.10.bazel index 1978a52d5c2d..59e85402070a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.1.10.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.1.10.bazel @@ -86,6 +86,6 @@ rust_library( }), version = "0.1.10", deps = [ - "@vendor__regex-syntax-0.6.29//:regex_syntax", + "@vendor_ts__regex-syntax-0.6.29//:regex_syntax", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.4.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.4.9.bazel index f16dfc66ef22..02062f8053c7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.4.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.regex-automata-0.4.9.bazel @@ -107,8 +107,8 @@ rust_library( }), version = "0.4.9", deps = [ - "@vendor__aho-corasick-1.1.3//:aho_corasick", - "@vendor__memchr-2.7.4//:memchr", - "@vendor__regex-syntax-0.8.5//:regex_syntax", + "@vendor_ts__aho-corasick-1.1.3//:aho_corasick", + "@vendor_ts__memchr-2.7.4//:memchr", + "@vendor_ts__regex-syntax-0.8.5//:regex_syntax", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rowan-0.15.15.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rowan-0.15.15.bazel index b35e36f48ccf..f2f46f442a8c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rowan-0.15.15.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rowan-0.15.15.bazel @@ -81,10 +81,10 @@ rust_library( }), version = "0.15.15", deps = [ - "@vendor__countme-3.0.1//:countme", - "@vendor__hashbrown-0.14.5//:hashbrown", - "@vendor__memoffset-0.9.1//:memoffset", - "@vendor__rustc-hash-1.1.0//:rustc_hash", - "@vendor__text-size-1.1.1//:text_size", + "@vendor_ts__countme-3.0.1//:countme", + "@vendor_ts__hashbrown-0.14.5//:hashbrown", + "@vendor_ts__memoffset-0.9.1//:memoffset", + "@vendor_ts__rustc-hash-1.1.0//:rustc_hash", + "@vendor_ts__text-size-1.1.1//:text_size", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-hash-2.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-hash-2.1.1.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-hash-2.1.0.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-hash-2.1.1.bazel index 37220a441d57..4fef93e46326 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-hash-2.1.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-hash-2.1.1.bazel @@ -83,5 +83,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "2.1.0", + version = "2.1.1", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-stable-hash-0.1.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-stable-hash-0.1.1.bazel new file mode 100644 index 000000000000..82ce1ee93122 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc-stable-hash-0.1.1.bazel @@ -0,0 +1,83 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "rustc_stable_hash", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rustc-stable-hash", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.1.1", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc_apfloat-0.2.1+llvm-462a31f5a5ab.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc_apfloat-0.2.1+llvm-462a31f5a5ab.bazel index 37b394fcebad..00e80306ea45 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc_apfloat-0.2.1+llvm-462a31f5a5ab.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rustc_apfloat-0.2.1+llvm-462a31f5a5ab.bazel @@ -82,9 +82,9 @@ rust_library( }), version = "0.2.1+llvm-462a31f5a5ab", deps = [ - "@vendor__bitflags-1.3.2//:bitflags", - "@vendor__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:build_script_build", - "@vendor__smallvec-1.13.2//:smallvec", + "@vendor_ts__bitflags-1.3.2//:bitflags", + "@vendor_ts__rustc_apfloat-0.2.1-llvm-462a31f5a5ab//:build_script_build", + "@vendor_ts__smallvec-1.14.0//:smallvec", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ryu-1.0.18.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ryu-1.0.19.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ryu-1.0.18.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ryu-1.0.19.bazel index 95adbd009780..eb7d8b9c8f12 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ryu-1.0.18.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ryu-1.0.19.bazel @@ -79,5 +79,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.18", + version = "1.0.19", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.same-file-1.0.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.same-file-1.0.6.bazel index 416211ad6a0f..823e6471df3b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.same-file-1.0.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.same-file-1.0.6.bazel @@ -82,13 +82,13 @@ rust_library( version = "1.0.6", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__winapi-util-0.1.9//:winapi_util", # cfg(windows) + "@vendor_ts__winapi-util-0.1.9//:winapi_util", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__winapi-util-0.1.9//:winapi_util", # cfg(windows) + "@vendor_ts__winapi-util-0.1.9//:winapi_util", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__winapi-util-0.1.9//:winapi_util", # cfg(windows) + "@vendor_ts__winapi-util-0.1.9//:winapi_util", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.24.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.24.bazel index 2ebe5dba7841..c05cc8b555ee 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.24.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.24.bazel @@ -87,8 +87,8 @@ rust_library( }), version = "1.0.24", deps = [ - "@vendor__semver-1.0.24//:build_script_build", - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__semver-1.0.24//:build_script_build", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde-1.0.217.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde-1.0.218.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde-1.0.217.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde-1.0.218.bazel index d11c7ab0b963..df8589a8859e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde-1.0.217.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde-1.0.218.bazel @@ -39,7 +39,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__serde_derive-1.0.217//:serde_derive", + "@vendor_ts__serde_derive-1.0.218//:serde_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -90,9 +90,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.217", + version = "1.0.218", deps = [ - "@vendor__serde-1.0.217//:build_script_build", + "@vendor_ts__serde-1.0.218//:build_script_build", ], ) @@ -148,7 +148,7 @@ cargo_build_script( "noclippy", "norustfmt", ], - version = "1.0.217", + version = "1.0.218", visibility = ["//visibility:private"], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_derive-1.0.217.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_derive-1.0.218.bazel similarity index 95% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_derive-1.0.217.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_derive-1.0.218.bazel index 5e70c8e29a67..ec591a096a13 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_derive-1.0.217.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_derive-1.0.218.bazel @@ -82,10 +82,10 @@ rust_proc_macro( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.217", + version = "1.0.218", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.135.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.139.bazel similarity index 94% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.135.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.139.bazel index 8acb6187cdd9..747fcb93840c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.135.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.139.bazel @@ -85,13 +85,13 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.135", + version = "1.0.139", deps = [ - "@vendor__itoa-1.0.14//:itoa", - "@vendor__memchr-2.7.4//:memchr", - "@vendor__ryu-1.0.18//:ryu", - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_json-1.0.135//:build_script_build", + "@vendor_ts__itoa-1.0.14//:itoa", + "@vendor_ts__memchr-2.7.4//:memchr", + "@vendor_ts__ryu-1.0.19//:ryu", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_json-1.0.139//:build_script_build", ], ) @@ -145,7 +145,7 @@ cargo_build_script( "noclippy", "norustfmt", ], - version = "1.0.135", + version = "1.0.139", visibility = ["//visibility:private"], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_spanned-0.6.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_spanned-0.6.8.bazel index e0565b9afff0..f57f3f118ffa 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_spanned-0.6.8.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_spanned-0.6.8.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "0.6.8", deps = [ - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with-3.12.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with-3.12.0.bazel index 8a6cf4d7f4dc..913a64f240a8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with-3.12.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with-3.12.0.bazel @@ -37,8 +37,8 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__serde_derive-1.0.217//:serde_derive", - "@vendor__serde_with_macros-3.12.0//:serde_with_macros", + "@vendor_ts__serde_derive-1.0.218//:serde_derive", + "@vendor_ts__serde_with_macros-3.12.0//:serde_with_macros", ], rustc_flags = [ "--cap-lints=allow", @@ -91,6 +91,6 @@ rust_library( }), version = "3.12.0", deps = [ - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with_macros-3.12.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with_macros-3.12.0.bazel index c4748cafea99..28a15ef4179e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with_macros-3.12.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_with_macros-3.12.0.bazel @@ -81,9 +81,9 @@ rust_proc_macro( }), version = "3.12.0", deps = [ - "@vendor__darling-0.20.10//:darling", - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__darling-0.20.10//:darling", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel index d1d5a34b6a64..9a863536b9e2 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel @@ -81,10 +81,10 @@ rust_library( }), version = "0.9.34+deprecated", deps = [ - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__itoa-1.0.14//:itoa", - "@vendor__ryu-1.0.18//:ryu", - "@vendor__serde-1.0.217//:serde", - "@vendor__unsafe-libyaml-0.2.11//:unsafe_libyaml", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__itoa-1.0.14//:itoa", + "@vendor_ts__ryu-1.0.19//:ryu", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__unsafe-libyaml-0.2.11//:unsafe_libyaml", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sharded-slab-0.1.7.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sharded-slab-0.1.7.bazel index af217a122bbb..e978ca25cd6e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sharded-slab-0.1.7.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sharded-slab-0.1.7.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.1.7", deps = [ - "@vendor__lazy_static-1.5.0//:lazy_static", + "@vendor_ts__lazy_static-1.5.0//:lazy_static", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallvec-1.13.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallvec-1.14.0.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallvec-1.13.2.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallvec-1.14.0.bazel index 6c353706f276..1e4a6aa9f73c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallvec-1.13.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallvec-1.14.0.bazel @@ -84,5 +84,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.13.2", + version = "1.14.0", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sptr-0.3.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sptr-0.3.2.bazel deleted file mode 100644 index 6f9bfbbbe67f..000000000000 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.sptr-0.3.2.bazel +++ /dev/null @@ -1,86 +0,0 @@ -############################################################################### -# @generated -# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To -# regenerate this file, run the following: -# -# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors -############################################################################### - -load("@rules_rust//rust:defs.bzl", "rust_library") - -package(default_visibility = ["//visibility:public"]) - -rust_library( - name = "sptr", - srcs = glob( - include = ["**/*.rs"], - allow_empty = True, - ), - compile_data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - crate_features = [ - "default", - ], - crate_root = "src/lib.rs", - edition = "2018", - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-bazel", - "crate-name=sptr", - "manual", - "noclippy", - "norustfmt", - ], - target_compatible_with = select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [], - "@rules_rust//rust/platform:aarch64-apple-ios": [], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], - "@rules_rust//rust/platform:aarch64-linux-android": [], - "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], - "@rules_rust//rust/platform:aarch64-unknown-uefi": [], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:armv7-linux-androideabi": [], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:i686-apple-darwin": [], - "@rules_rust//rust/platform:i686-linux-android": [], - "@rules_rust//rust/platform:i686-pc-windows-msvc": [], - "@rules_rust//rust/platform:i686-unknown-freebsd": [], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], - "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], - "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], - "@rules_rust//rust/platform:thumbv7em-none-eabi": [], - "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], - "@rules_rust//rust/platform:wasm32-unknown-unknown": [], - "@rules_rust//rust/platform:wasm32-wasip1": [], - "@rules_rust//rust/platform:x86_64-apple-darwin": [], - "@rules_rust//rust/platform:x86_64-apple-ios": [], - "@rules_rust//rust/platform:x86_64-linux-android": [], - "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-none": [], - "@rules_rust//rust/platform:x86_64-unknown-uefi": [], - "//conditions:default": ["@platforms//:incompatible"], - }), - version = "0.3.2", -) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.syn-2.0.96.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.syn-2.0.98.bazel similarity index 95% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.syn-2.0.96.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.syn-2.0.98.bazel index bb6dc0c98bfc..c241c8b14aac 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.syn-2.0.96.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.syn-2.0.98.bazel @@ -91,10 +91,10 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "2.0.96", + version = "2.0.98", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__unicode-ident-1.0.14//:unicode_ident", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__unicode-ident-1.0.16//:unicode_ident", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.synstructure-0.13.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.synstructure-0.13.1.bazel index 8c2e97f71a09..0f6f912481fb 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.synstructure-0.13.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.synstructure-0.13.1.bazel @@ -85,8 +85,8 @@ rust_library( }), version = "0.13.1", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-1.0.69.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-1.0.69.bazel index 40eb0932ca58..a79c49f5eeaf 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-1.0.69.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-1.0.69.bazel @@ -32,7 +32,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__thiserror-impl-1.0.69//:thiserror_impl", + "@vendor_ts__thiserror-impl-1.0.69//:thiserror_impl", ], rustc_flags = [ "--cap-lints=allow", @@ -85,7 +85,7 @@ rust_library( }), version = "1.0.69", deps = [ - "@vendor__thiserror-1.0.69//:build_script_build", + "@vendor_ts__thiserror-1.0.69//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-1.0.69.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-1.0.69.bazel index 271f65c25271..cf0239a907b0 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-1.0.69.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-1.0.69.bazel @@ -81,8 +81,8 @@ rust_proc_macro( }), version = "1.0.69", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thread_local-1.1.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thread_local-1.1.8.bazel index e1c2a444f29c..93e058516c02 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thread_local-1.1.8.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thread_local-1.1.8.bazel @@ -81,7 +81,7 @@ rust_library( }), version = "1.1.8", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", - "@vendor__once_cell-1.20.2//:once_cell", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__once_cell-1.20.3//:once_cell", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-0.3.37.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-0.3.37.bazel index fd77f693651e..83d1b0f07a4a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-0.3.37.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-0.3.37.bazel @@ -81,9 +81,9 @@ rust_library( }), version = "0.3.37", deps = [ - "@vendor__deranged-0.3.11//:deranged", - "@vendor__num-conv-0.1.0//:num_conv", - "@vendor__powerfmt-0.2.0//:powerfmt", - "@vendor__time-core-0.1.2//:time_core", + "@vendor_ts__deranged-0.3.11//:deranged", + "@vendor_ts__num-conv-0.1.0//:num_conv", + "@vendor_ts__powerfmt-0.2.0//:powerfmt", + "@vendor_ts__time-core-0.1.2//:time_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-macros-0.2.19.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-macros-0.2.19.bazel index ef0cfd707390..d35fd00eb5ea 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-macros-0.2.19.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.time-macros-0.2.19.bazel @@ -81,7 +81,7 @@ rust_proc_macro( }), version = "0.2.19", deps = [ - "@vendor__num-conv-0.1.0//:num_conv", - "@vendor__time-core-0.1.2//:time_core", + "@vendor_ts__num-conv-0.1.0//:num_conv", + "@vendor_ts__time-core-0.1.2//:time_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.8.19.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.8.20.bazel similarity index 93% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.8.19.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.8.20.bazel index 2b99894b5132..9755bbcbacf0 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.8.19.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.8.20.bazel @@ -84,11 +84,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.8.19", + version = "0.8.20", deps = [ - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_spanned-0.6.8//:serde_spanned", - "@vendor__toml_datetime-0.6.8//:toml_datetime", - "@vendor__toml_edit-0.22.22//:toml_edit", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_spanned-0.6.8//:serde_spanned", + "@vendor_ts__toml_datetime-0.6.8//:toml_datetime", + "@vendor_ts__toml_edit-0.22.24//:toml_edit", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-0.6.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-0.6.8.bazel index e10e9d2c2d9f..2f1b87c6a2ed 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-0.6.8.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-0.6.8.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "0.6.8", deps = [ - "@vendor__serde-1.0.217//:serde", + "@vendor_ts__serde-1.0.218//:serde", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.22.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.24.bazel similarity index 92% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.22.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.24.bazel index f2ac65f16e1b..6ef0d9a44688 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.22.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.24.bazel @@ -84,12 +84,12 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.22.22", + version = "0.22.24", deps = [ - "@vendor__indexmap-2.7.0//:indexmap", - "@vendor__serde-1.0.217//:serde", - "@vendor__serde_spanned-0.6.8//:serde_spanned", - "@vendor__toml_datetime-0.6.8//:toml_datetime", - "@vendor__winnow-0.6.24//:winnow", + "@vendor_ts__indexmap-2.7.0//:indexmap", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__serde_spanned-0.6.8//:serde_spanned", + "@vendor_ts__toml_datetime-0.6.8//:toml_datetime", + "@vendor_ts__winnow-0.7.3//:winnow", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-0.1.41.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-0.1.41.bazel index d11310f4dbca..97ea0c0bd807 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-0.1.41.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-0.1.41.bazel @@ -37,7 +37,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__tracing-attributes-0.1.28//:tracing_attributes", + "@vendor_ts__tracing-attributes-0.1.28//:tracing_attributes", ], rustc_flags = [ "--cap-lints=allow", @@ -90,7 +90,7 @@ rust_library( }), version = "0.1.41", deps = [ - "@vendor__pin-project-lite-0.2.16//:pin_project_lite", - "@vendor__tracing-core-0.1.33//:tracing_core", + "@vendor_ts__pin-project-lite-0.2.16//:pin_project_lite", + "@vendor_ts__tracing-core-0.1.33//:tracing_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-attributes-0.1.28.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-attributes-0.1.28.bazel index 237a318293e8..b82896b5d1f0 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-attributes-0.1.28.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-attributes-0.1.28.bazel @@ -81,8 +81,8 @@ rust_proc_macro( }), version = "0.1.28", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-core-0.1.33.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-core-0.1.33.bazel index 4cd145f54f64..ce9e6c7f4862 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-core-0.1.33.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-core-0.1.33.bazel @@ -86,6 +86,6 @@ rust_library( }), version = "0.1.33", deps = [ - "@vendor__once_cell-1.20.2//:once_cell", + "@vendor_ts__once_cell-1.20.3//:once_cell", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-flame-0.2.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-flame-0.2.0.bazel index 978d69bb0ef3..bda5915465ae 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-flame-0.2.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-flame-0.2.0.bazel @@ -85,8 +85,8 @@ rust_library( }), version = "0.2.0", deps = [ - "@vendor__lazy_static-1.5.0//:lazy_static", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__tracing-subscriber-0.3.19//:tracing_subscriber", + "@vendor_ts__lazy_static-1.5.0//:lazy_static", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__tracing-subscriber-0.3.19//:tracing_subscriber", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-log-0.2.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-log-0.2.0.bazel index e6fe9ab8320b..da7b8a8bfc07 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-log-0.2.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-log-0.2.0.bazel @@ -85,8 +85,8 @@ rust_library( }), version = "0.2.0", deps = [ - "@vendor__log-0.4.22//:log", - "@vendor__once_cell-1.20.2//:once_cell", - "@vendor__tracing-core-0.1.33//:tracing_core", + "@vendor_ts__log-0.4.25//:log", + "@vendor_ts__once_cell-1.20.3//:once_cell", + "@vendor_ts__tracing-core-0.1.33//:tracing_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-subscriber-0.3.19.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-subscriber-0.3.19.bazel index 723df60eada8..e017d44b227a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-subscriber-0.3.19.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tracing-subscriber-0.3.19.bazel @@ -99,15 +99,15 @@ rust_library( }), version = "0.3.19", deps = [ - "@vendor__matchers-0.1.0//:matchers", - "@vendor__nu-ansi-term-0.46.0//:nu_ansi_term", - "@vendor__once_cell-1.20.2//:once_cell", - "@vendor__regex-1.11.1//:regex", - "@vendor__sharded-slab-0.1.7//:sharded_slab", - "@vendor__smallvec-1.13.2//:smallvec", - "@vendor__thread_local-1.1.8//:thread_local", - "@vendor__tracing-0.1.41//:tracing", - "@vendor__tracing-core-0.1.33//:tracing_core", - "@vendor__tracing-log-0.2.0//:tracing_log", + "@vendor_ts__matchers-0.1.0//:matchers", + "@vendor_ts__nu-ansi-term-0.46.0//:nu_ansi_term", + "@vendor_ts__once_cell-1.20.3//:once_cell", + "@vendor_ts__regex-1.11.1//:regex", + "@vendor_ts__sharded-slab-0.1.7//:sharded_slab", + "@vendor_ts__smallvec-1.14.0//:smallvec", + "@vendor_ts__thread_local-1.1.8//:thread_local", + "@vendor_ts__tracing-0.1.41//:tracing", + "@vendor_ts__tracing-core-0.1.33//:tracing_core", + "@vendor_ts__tracing-log-0.2.0//:tracing_log", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-0.24.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-0.24.6.bazel index 4e7cb41b8117..aec9a765ca69 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-0.24.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-0.24.6.bazel @@ -86,11 +86,11 @@ rust_library( }), version = "0.24.6", deps = [ - "@vendor__regex-1.11.1//:regex", - "@vendor__regex-syntax-0.8.5//:regex_syntax", - "@vendor__streaming-iterator-0.1.9//:streaming_iterator", - "@vendor__tree-sitter-0.24.6//:build_script_build", - "@vendor__tree-sitter-language-0.1.3//:tree_sitter_language", + "@vendor_ts__regex-1.11.1//:regex", + "@vendor_ts__regex-syntax-0.8.5//:regex_syntax", + "@vendor_ts__streaming-iterator-0.1.9//:streaming_iterator", + "@vendor_ts__tree-sitter-0.24.6//:build_script_build", + "@vendor_ts__tree-sitter-language-0.1.3//:tree_sitter_language", ], ) @@ -147,7 +147,7 @@ cargo_build_script( version = "0.24.6", visibility = ["//visibility:private"], deps = [ - "@vendor__cc-1.2.7//:cc", + "@vendor_ts__cc-1.2.7//:cc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-embedded-template-0.23.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-embedded-template-0.23.2.bazel index dd057689059b..e65ebd282658 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-embedded-template-0.23.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-embedded-template-0.23.2.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "0.23.2", deps = [ - "@vendor__tree-sitter-embedded-template-0.23.2//:build_script_build", - "@vendor__tree-sitter-language-0.1.3//:tree_sitter_language", + "@vendor_ts__tree-sitter-embedded-template-0.23.2//:build_script_build", + "@vendor_ts__tree-sitter-language-0.1.3//:tree_sitter_language", ], ) @@ -135,7 +135,7 @@ cargo_build_script( version = "0.23.2", visibility = ["//visibility:private"], deps = [ - "@vendor__cc-1.2.7//:cc", + "@vendor_ts__cc-1.2.7//:cc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-json-0.24.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-json-0.24.8.bazel index 8110b726022b..a5d58cfff1cd 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-json-0.24.8.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-json-0.24.8.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "0.24.8", deps = [ - "@vendor__tree-sitter-json-0.24.8//:build_script_build", - "@vendor__tree-sitter-language-0.1.3//:tree_sitter_language", + "@vendor_ts__tree-sitter-json-0.24.8//:build_script_build", + "@vendor_ts__tree-sitter-language-0.1.3//:tree_sitter_language", ], ) @@ -135,7 +135,7 @@ cargo_build_script( version = "0.24.8", visibility = ["//visibility:private"], deps = [ - "@vendor__cc-1.2.7//:cc", + "@vendor_ts__cc-1.2.7//:cc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ql-0.23.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ql-0.23.1.bazel index 981966e42287..404fe701044a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ql-0.23.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ql-0.23.1.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "0.23.1", deps = [ - "@vendor__tree-sitter-language-0.1.3//:tree_sitter_language", - "@vendor__tree-sitter-ql-0.23.1//:build_script_build", + "@vendor_ts__tree-sitter-language-0.1.3//:tree_sitter_language", + "@vendor_ts__tree-sitter-ql-0.23.1//:build_script_build", ], ) @@ -135,7 +135,7 @@ cargo_build_script( version = "0.23.1", visibility = ["//visibility:private"], deps = [ - "@vendor__cc-1.2.7//:cc", + "@vendor_ts__cc-1.2.7//:cc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ruby-0.23.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ruby-0.23.1.bazel index e01e9bb737a3..71a3b2369845 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ruby-0.23.1.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-ruby-0.23.1.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "0.23.1", deps = [ - "@vendor__tree-sitter-language-0.1.3//:tree_sitter_language", - "@vendor__tree-sitter-ruby-0.23.1//:build_script_build", + "@vendor_ts__tree-sitter-language-0.1.3//:tree_sitter_language", + "@vendor_ts__tree-sitter-ruby-0.23.1//:build_script_build", ], ) @@ -135,7 +135,7 @@ cargo_build_script( version = "0.23.1", visibility = ["//visibility:private"], deps = [ - "@vendor__cc-1.2.7//:cc", + "@vendor_ts__cc-1.2.7//:cc", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.triomphe-0.1.14.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.triomphe-0.1.14.bazel index cee5d9b5be6d..df6d10a847af 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.triomphe-0.1.14.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.triomphe-0.1.14.bazel @@ -87,7 +87,7 @@ rust_library( }), version = "0.1.14", deps = [ - "@vendor__serde-1.0.217//:serde", - "@vendor__stable_deref_trait-1.2.0//:stable_deref_trait", + "@vendor_ts__serde-1.0.218//:serde", + "@vendor_ts__stable_deref_trait-1.2.0//:stable_deref_trait", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.uncased-0.9.10.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.uncased-0.9.10.bazel index 3666af4b65a1..9f9e8eaaf6a4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.uncased-0.9.10.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.uncased-0.9.10.bazel @@ -86,7 +86,7 @@ rust_library( }), version = "0.9.10", deps = [ - "@vendor__uncased-0.9.10//:build_script_build", + "@vendor_ts__uncased-0.9.10//:build_script_build", ], ) @@ -142,7 +142,7 @@ cargo_build_script( version = "0.9.10", visibility = ["//visibility:private"], deps = [ - "@vendor__version_check-0.9.5//:version_check", + "@vendor_ts__version_check-0.9.5//:version_check", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-ident-1.0.14.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-ident-1.0.16.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-ident-1.0.14.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-ident-1.0.16.bazel index 3caee39efcce..f1e1eea9fb4f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-ident-1.0.14.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-ident-1.0.16.bazel @@ -79,5 +79,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.14", + version = "1.0.16", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.valuable-0.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.valuable-0.1.0.bazel index a9cceb25bed8..a8fe7b8a667e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.valuable-0.1.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.valuable-0.1.0.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.1.0", deps = [ - "@vendor__valuable-0.1.0//:build_script_build", + "@vendor_ts__valuable-0.1.0//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.walkdir-2.5.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.walkdir-2.5.0.bazel index 0cac3017546d..6162d18a3cc4 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.walkdir-2.5.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.walkdir-2.5.0.bazel @@ -81,16 +81,16 @@ rust_library( }), version = "2.5.0", deps = [ - "@vendor__same-file-1.0.6//:same_file", + "@vendor_ts__same-file-1.0.6//:same_file", ] + select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__winapi-util-0.1.9//:winapi_util", # cfg(windows) + "@vendor_ts__winapi-util-0.1.9//:winapi_util", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__winapi-util-0.1.9//:winapi_util", # cfg(windows) + "@vendor_ts__winapi-util-0.1.9//:winapi_util", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__winapi-util-0.1.9//:winapi_util", # cfg(windows) + "@vendor_ts__winapi-util-0.1.9//:winapi_util", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasi-0.13.3+wasi-0.2.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasi-0.13.3+wasi-0.2.2.bazel new file mode 100644 index 000000000000..62578b6a312b --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasi-0.13.3+wasi-0.2.2.bazel @@ -0,0 +1,86 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "wasi", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=wasi", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.13.3+wasi-0.2.2", + deps = [ + "@vendor_ts__wit-bindgen-rt-0.33.0//:wit_bindgen_rt", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-0.2.99.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-0.2.99.bazel index 13e98ffd7af3..52ec9171a917 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-0.2.99.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-0.2.99.bazel @@ -37,7 +37,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor__wasm-bindgen-macro-0.2.99//:wasm_bindgen_macro", + "@vendor_ts__wasm-bindgen-macro-0.2.99//:wasm_bindgen_macro", ], rustc_flags = [ "--cap-lints=allow", @@ -90,9 +90,9 @@ rust_library( }), version = "0.2.99", deps = [ - "@vendor__cfg-if-1.0.0//:cfg_if", - "@vendor__once_cell-1.20.2//:once_cell", - "@vendor__wasm-bindgen-0.2.99//:build_script_build", + "@vendor_ts__cfg-if-1.0.0//:cfg_if", + "@vendor_ts__once_cell-1.20.3//:once_cell", + "@vendor_ts__wasm-bindgen-0.2.99//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-backend-0.2.99.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-backend-0.2.99.bazel index 63a6bbad2db6..8e6b5f0e47a7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-backend-0.2.99.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-backend-0.2.99.bazel @@ -85,11 +85,11 @@ rust_library( }), version = "0.2.99", deps = [ - "@vendor__bumpalo-3.16.0//:bumpalo", - "@vendor__log-0.4.22//:log", - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", - "@vendor__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared", + "@vendor_ts__bumpalo-3.16.0//:bumpalo", + "@vendor_ts__log-0.4.25//:log", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", + "@vendor_ts__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-0.2.99.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-0.2.99.bazel index 548b449cf6fb..c0b07b27ac27 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-0.2.99.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-0.2.99.bazel @@ -85,7 +85,7 @@ rust_proc_macro( }), version = "0.2.99", deps = [ - "@vendor__quote-1.0.38//:quote", - "@vendor__wasm-bindgen-macro-support-0.2.99//:wasm_bindgen_macro_support", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__wasm-bindgen-macro-support-0.2.99//:wasm_bindgen_macro_support", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-support-0.2.99.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-support-0.2.99.bazel index 2d299b317f80..97d5fe34087e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-support-0.2.99.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-macro-support-0.2.99.bazel @@ -85,10 +85,10 @@ rust_library( }), version = "0.2.99", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", - "@vendor__wasm-bindgen-backend-0.2.99//:wasm_bindgen_backend", - "@vendor__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", + "@vendor_ts__wasm-bindgen-backend-0.2.99//:wasm_bindgen_backend", + "@vendor_ts__wasm-bindgen-shared-0.2.99//:wasm_bindgen_shared", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-shared-0.2.99.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-shared-0.2.99.bazel index 2842ddd46580..c22eb09d6269 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-shared-0.2.99.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wasm-bindgen-shared-0.2.99.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.2.99", deps = [ - "@vendor__wasm-bindgen-shared-0.2.99//:build_script_build", + "@vendor_ts__wasm-bindgen-shared-0.2.99//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-0.3.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-0.3.9.bazel index 6a1b6359aa4b..d80dd87d6905 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-0.3.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-0.3.9.bazel @@ -89,7 +89,7 @@ rust_library( }), version = "0.3.9", deps = [ - "@vendor__winapi-0.3.9//:build_script_build", + "@vendor_ts__winapi-0.3.9//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index b4756544ab6e..2251d0123cd5 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.4.0", deps = [ - "@vendor__winapi-i686-pc-windows-gnu-0.4.0//:build_script_build", + "@vendor_ts__winapi-i686-pc-windows-gnu-0.4.0//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-util-0.1.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-util-0.1.9.bazel index 74cade3e6823..cdb2fccbf698 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-util-0.1.9.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-util-0.1.9.bazel @@ -82,13 +82,13 @@ rust_library( version = "0.1.9", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows) + "@vendor_ts__windows-sys-0.59.0//:windows_sys", # cfg(windows) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index 3a0a95027ff6..4de908b91117 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.4.0", deps = [ - "@vendor__winapi-x86_64-pc-windows-gnu-0.4.0//:build_script_build", + "@vendor_ts__winapi-x86_64-pc-windows-gnu-0.4.0//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-core-0.52.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-core-0.52.0.bazel index e55c7e5da8d1..89ebc463e004 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-core-0.52.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-core-0.52.0.bazel @@ -81,6 +81,6 @@ rust_library( }), version = "0.52.0", deps = [ - "@vendor__windows-targets-0.52.6//:windows_targets", + "@vendor_ts__windows-targets-0.52.6//:windows_targets", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.48.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.48.0.bazel index 2addd7c9aa43..744659daedf9 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.48.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.48.0.bazel @@ -40,7 +40,6 @@ rust_library( "Win32_System_IO", "Win32_System_Pipes", "Win32_System_Threading", - "Win32_System_WindowsProgramming", "default", ], crate_root = "src/lib.rs", @@ -96,6 +95,6 @@ rust_library( }), version = "0.48.0", deps = [ - "@vendor__windows-targets-0.48.5//:windows_targets", + "@vendor_ts__windows-targets-0.48.5//:windows_targets", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.52.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.52.0.bazel index 8d2ee2174e1b..ab36b4cfa4e0 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.52.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.52.0.bazel @@ -28,14 +28,6 @@ rust_library( "WORKSPACE.bazel", ], ), - crate_features = [ - "Win32", - "Win32_Foundation", - "Win32_System", - "Win32_System_ProcessStatus", - "Win32_System_Threading", - "default", - ], crate_root = "src/lib.rs", edition = "2021", rustc_flags = [ @@ -89,6 +81,6 @@ rust_library( }), version = "0.52.0", deps = [ - "@vendor__windows-targets-0.52.6//:windows_targets", + "@vendor_ts__windows-targets-0.52.6//:windows_targets", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.59.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.59.0.bazel index 3edea90968f3..9b2c722558cc 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.59.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.59.0.bazel @@ -31,12 +31,17 @@ rust_library( crate_features = [ "Win32", "Win32_Foundation", + "Win32_Security", "Win32_Storage", "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Com", "Win32_System_Console", + "Win32_System_IO", + "Win32_System_ProcessStatus", "Win32_System_SystemInformation", + "Win32_System_Threading", + "Win32_System_WindowsProgramming", "Win32_UI", "Win32_UI_Shell", "default", @@ -94,6 +99,6 @@ rust_library( }), version = "0.59.0", deps = [ - "@vendor__windows-targets-0.52.6//:windows_targets", + "@vendor_ts__windows-targets-0.52.6//:windows_targets", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.48.5.bazel index 8d59fbf6b521..f235fb732a5a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.48.5.bazel @@ -82,22 +82,22 @@ rust_library( version = "0.48.5", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows_aarch64_msvc-0.48.5//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) + "@vendor_ts__windows_aarch64_msvc-0.48.5//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows_i686_msvc-0.48.5//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) + "@vendor_ts__windows_i686_msvc-0.48.5//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__windows_i686_gnu-0.48.5//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib))) + "@vendor_ts__windows_i686_gnu-0.48.5//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows_x86_64_msvc-0.48.5//:windows_x86_64_msvc", # cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib))) + "@vendor_ts__windows_x86_64_msvc-0.48.5//:windows_x86_64_msvc", # cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@vendor_ts__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@vendor_ts__windows_x86_64_gnu-0.48.5//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.52.6.bazel index 854e7e0b060a..c979bc50d9d1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-targets-0.52.6.bazel @@ -82,22 +82,22 @@ rust_library( version = "0.52.6", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor__windows_aarch64_msvc-0.52.6//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) + "@vendor_ts__windows_aarch64_msvc-0.52.6//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor__windows_i686_msvc-0.52.6//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) + "@vendor_ts__windows_i686_msvc-0.52.6//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor__windows_i686_gnu-0.52.6//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@vendor_ts__windows_i686_gnu-0.52.6//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor__windows_x86_64_msvc-0.52.6//:windows_x86_64_msvc", # cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib))) + "@vendor_ts__windows_x86_64_msvc-0.52.6//:windows_x86_64_msvc", # cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@vendor_ts__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@vendor_ts__windows_x86_64_gnu-0.52.6//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.48.5.bazel index d43430783ad6..362ee5153396 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_aarch64_gnullvm-0.48.5//:build_script_build", + "@vendor_ts__windows_aarch64_gnullvm-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.52.6.bazel index 28d57204eab3..d4a56f926807 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_gnullvm-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_aarch64_gnullvm-0.52.6//:build_script_build", + "@vendor_ts__windows_aarch64_gnullvm-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.48.5.bazel index 8b9d61a37fcc..7b60315c4658 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_aarch64_msvc-0.48.5//:build_script_build", + "@vendor_ts__windows_aarch64_msvc-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.52.6.bazel index 4ea07829b8e5..7aaf3e56924b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_aarch64_msvc-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_aarch64_msvc-0.52.6//:build_script_build", + "@vendor_ts__windows_aarch64_msvc-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.48.5.bazel index 1f1ccff3723e..45cf7592d1a8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_i686_gnu-0.48.5//:build_script_build", + "@vendor_ts__windows_i686_gnu-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.52.6.bazel index e97f0d525e95..c31f565b76c6 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnu-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_i686_gnu-0.52.6//:build_script_build", + "@vendor_ts__windows_i686_gnu-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnullvm-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnullvm-0.52.6.bazel index abd74fe822ee..7f37dcce3068 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnullvm-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_gnullvm-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_i686_gnullvm-0.52.6//:build_script_build", + "@vendor_ts__windows_i686_gnullvm-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.48.5.bazel index 6a1d284815b4..98eef82ece69 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_i686_msvc-0.48.5//:build_script_build", + "@vendor_ts__windows_i686_msvc-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.52.6.bazel index 557e0069dbce..d09383b28359 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_i686_msvc-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_i686_msvc-0.52.6//:build_script_build", + "@vendor_ts__windows_i686_msvc-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.48.5.bazel index 993ddafbaf99..14508675b586 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_x86_64_gnu-0.48.5//:build_script_build", + "@vendor_ts__windows_x86_64_gnu-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.52.6.bazel index 665a23a53619..eb1219c681ce 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnu-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_x86_64_gnu-0.52.6//:build_script_build", + "@vendor_ts__windows_x86_64_gnu-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.48.5.bazel index 703625bfdca9..71285899742a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_x86_64_gnullvm-0.48.5//:build_script_build", + "@vendor_ts__windows_x86_64_gnullvm-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.52.6.bazel index d4a3464e1176..678e71b4da5f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_gnullvm-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_x86_64_gnullvm-0.52.6//:build_script_build", + "@vendor_ts__windows_x86_64_gnullvm-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.48.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.48.5.bazel index bcc41e3bef94..9d9664ccbd46 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.48.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.48.5.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.48.5", deps = [ - "@vendor__windows_x86_64_msvc-0.48.5//:build_script_build", + "@vendor_ts__windows_x86_64_msvc-0.48.5//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.52.6.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.52.6.bazel index 5c2d37dbca84..df8d9024f53c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.52.6.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows_x86_64_msvc-0.52.6.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.52.6", deps = [ - "@vendor__windows_x86_64_msvc-0.52.6//:build_script_build", + "@vendor_ts__windows_x86_64_msvc-0.52.6//:build_script_build", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-0.6.24.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-0.7.3.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-0.6.24.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-0.7.3.bazel index e5cef505d453..4c327dadb1db 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-0.6.24.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-0.7.3.bazel @@ -84,5 +84,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.6.24", + version = "0.7.3", ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wit-bindgen-rt-0.33.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wit-bindgen-rt-0.33.0.bazel new file mode 100644 index 000000000000..01f119aef6f8 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.wit-bindgen-rt-0.33.0.bazel @@ -0,0 +1,142 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_build_script") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "wit_bindgen_rt", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=wit-bindgen-rt", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.33.0", + deps = [ + "@vendor_ts__wit-bindgen-rt-0.33.0//:build_script_build", + ], +) + +cargo_build_script( + name = "_bs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + "**/*.rs", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_name = "build_script_build", + crate_root = "build.rs", + data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + edition = "2021", + pkg_name = "wit-bindgen-rt", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=wit-bindgen-rt", + "manual", + "noclippy", + "norustfmt", + ], + version = "0.33.0", + visibility = ["//visibility:private"], +) + +alias( + name = "build_script_build", + actual = ":_bs", + tags = ["manual"], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.7.35.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.7.35.bazel index ac2c3dbf2572..04a723e7bd5c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.7.35.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.7.35.bazel @@ -38,7 +38,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@vendor__zerocopy-derive-0.7.35//:zerocopy_derive", + "@vendor_ts__zerocopy-derive-0.7.35//:zerocopy_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -91,6 +91,6 @@ rust_library( }), version = "0.7.35", deps = [ - "@vendor__byteorder-1.5.0//:byteorder", + "@vendor_ts__byteorder-1.5.0//:byteorder", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.8.20.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.8.20.bazel new file mode 100644 index 000000000000..2e234c58a3be --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-0.8.20.bazel @@ -0,0 +1,148 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_build_script") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +rust_library( + name = "zerocopy", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "simd", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=zerocopy", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.8.20", + deps = [ + "@vendor_ts__zerocopy-0.8.20//:build_script_build", + ], +) + +cargo_build_script( + name = "_bs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + "**/*.rs", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "simd", + ], + crate_name = "build_script_build", + crate_root = "build.rs", + data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + edition = "2021", + pkg_name = "zerocopy", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=zerocopy", + "manual", + "noclippy", + "norustfmt", + ], + version = "0.8.20", + visibility = ["//visibility:private"], +) + +alias( + name = "build_script_build", + actual = ":_bs", + tags = ["manual"], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.7.35.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.7.35.bazel index b457d85d3503..a3bb7ebae970 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.7.35.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.7.35.bazel @@ -81,8 +81,8 @@ rust_proc_macro( }), version = "0.7.35", deps = [ - "@vendor__proc-macro2-1.0.93//:proc_macro2", - "@vendor__quote-1.0.38//:quote", - "@vendor__syn-2.0.96//:syn", + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.8.20.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.8.20.bazel new file mode 100644 index 000000000000..0f6480931fcb --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.zerocopy-derive-0.8.20.bazel @@ -0,0 +1,88 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//rust:defs.bzl", "rust_proc_macro") + +package(default_visibility = ["//visibility:public"]) + +rust_proc_macro( + name = "zerocopy_derive", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=zerocopy-derive", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.8.20", + deps = [ + "@vendor_ts__proc-macro2-1.0.93//:proc_macro2", + "@vendor_ts__quote-1.0.38//:quote", + "@vendor_ts__syn-2.0.98//:syn", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/crates.bzl b/misc/bazel/3rdparty/tree_sitter_extractors_deps/crates.bzl index 932b9ce66d0b..6d6d80ef58ce 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/crates.bzl +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/crates.bzl @@ -22,11 +22,11 @@ def crate_repositories(): """ maybe( crates_vendor_remote_repository, - name = "vendor", + name = "vendor_ts", build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bazel"), defs_module = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:defs.bzl"), ) - direct_deps = [struct(repo = "vendor", is_dev_dep = False)] + direct_deps = [struct(repo = "vendor_ts", is_dev_dep = False)] direct_deps.extend(_crate_repositories()) return direct_deps diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl b/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl index bd5fbaf27ae0..ff89ab88d59e 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl @@ -296,89 +296,89 @@ def aliases( _NORMAL_DEPENDENCIES = { "ruby/extractor": { _COMMON_CONDITION: { - "clap": Label("@vendor__clap-4.5.26//:clap"), - "encoding": Label("@vendor__encoding-0.2.33//:encoding"), - "lazy_static": Label("@vendor__lazy_static-1.5.0//:lazy_static"), - "rayon": Label("@vendor__rayon-1.10.0//:rayon"), - "regex": Label("@vendor__regex-1.11.1//:regex"), - "tracing": Label("@vendor__tracing-0.1.41//:tracing"), - "tracing-subscriber": Label("@vendor__tracing-subscriber-0.3.19//:tracing_subscriber"), - "tree-sitter": Label("@vendor__tree-sitter-0.24.6//:tree_sitter"), - "tree-sitter-embedded-template": Label("@vendor__tree-sitter-embedded-template-0.23.2//:tree_sitter_embedded_template"), - "tree-sitter-ruby": Label("@vendor__tree-sitter-ruby-0.23.1//:tree_sitter_ruby"), + "clap": Label("@vendor_ts__clap-4.5.31//:clap"), + "encoding": Label("@vendor_ts__encoding-0.2.33//:encoding"), + "lazy_static": Label("@vendor_ts__lazy_static-1.5.0//:lazy_static"), + "rayon": Label("@vendor_ts__rayon-1.10.0//:rayon"), + "regex": Label("@vendor_ts__regex-1.11.1//:regex"), + "tracing": Label("@vendor_ts__tracing-0.1.41//:tracing"), + "tracing-subscriber": Label("@vendor_ts__tracing-subscriber-0.3.19//:tracing_subscriber"), + "tree-sitter": Label("@vendor_ts__tree-sitter-0.24.6//:tree_sitter"), + "tree-sitter-embedded-template": Label("@vendor_ts__tree-sitter-embedded-template-0.23.2//:tree_sitter_embedded_template"), + "tree-sitter-ruby": Label("@vendor_ts__tree-sitter-ruby-0.23.1//:tree_sitter_ruby"), }, }, "rust/ast-generator": { _COMMON_CONDITION: { - "anyhow": Label("@vendor__anyhow-1.0.95//:anyhow"), - "either": Label("@vendor__either-1.13.0//:either"), - "itertools": Label("@vendor__itertools-0.14.0//:itertools"), - "mustache": Label("@vendor__mustache-0.9.0//:mustache"), - "proc-macro2": Label("@vendor__proc-macro2-1.0.93//:proc_macro2"), - "quote": Label("@vendor__quote-1.0.38//:quote"), - "serde": Label("@vendor__serde-1.0.217//:serde"), - "stdx": Label("@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx"), - "ungrammar": Label("@vendor__ungrammar-1.16.1//:ungrammar"), + "anyhow": Label("@vendor_ts__anyhow-1.0.96//:anyhow"), + "either": Label("@vendor_ts__either-1.14.0//:either"), + "itertools": Label("@vendor_ts__itertools-0.14.0//:itertools"), + "mustache": Label("@vendor_ts__mustache-0.9.0//:mustache"), + "proc-macro2": Label("@vendor_ts__proc-macro2-1.0.93//:proc_macro2"), + "quote": Label("@vendor_ts__quote-1.0.38//:quote"), + "serde": Label("@vendor_ts__serde-1.0.218//:serde"), + "stdx": Label("@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx"), + "ungrammar": Label("@vendor_ts__ungrammar-1.16.1//:ungrammar"), }, }, "rust/autobuild": { }, "rust/extractor": { _COMMON_CONDITION: { - "anyhow": Label("@vendor__anyhow-1.0.95//:anyhow"), - "argfile": Label("@vendor__argfile-0.2.1//:argfile"), - "chrono": Label("@vendor__chrono-0.4.39//:chrono"), - "clap": Label("@vendor__clap-4.5.26//:clap"), - "dunce": Label("@vendor__dunce-1.0.5//:dunce"), - "figment": Label("@vendor__figment-0.10.19//:figment"), - "glob": Label("@vendor__glob-0.3.2//:glob"), - "itertools": Label("@vendor__itertools-0.14.0//:itertools"), - "num-traits": Label("@vendor__num-traits-0.2.19//:num_traits"), - "ra_ap_base_db": Label("@vendor__ra_ap_base_db-0.0.258//:ra_ap_base_db"), - "ra_ap_cfg": Label("@vendor__ra_ap_cfg-0.0.258//:ra_ap_cfg"), - "ra_ap_hir": Label("@vendor__ra_ap_hir-0.0.258//:ra_ap_hir"), - "ra_ap_hir_def": Label("@vendor__ra_ap_hir_def-0.0.258//:ra_ap_hir_def"), - "ra_ap_hir_expand": Label("@vendor__ra_ap_hir_expand-0.0.258//:ra_ap_hir_expand"), - "ra_ap_ide_db": Label("@vendor__ra_ap_ide_db-0.0.258//:ra_ap_ide_db"), - "ra_ap_intern": Label("@vendor__ra_ap_intern-0.0.258//:ra_ap_intern"), - "ra_ap_load-cargo": Label("@vendor__ra_ap_load-cargo-0.0.258//:ra_ap_load_cargo"), - "ra_ap_parser": Label("@vendor__ra_ap_parser-0.0.258//:ra_ap_parser"), - "ra_ap_paths": Label("@vendor__ra_ap_paths-0.0.258//:ra_ap_paths"), - "ra_ap_project_model": Label("@vendor__ra_ap_project_model-0.0.258//:ra_ap_project_model"), - "ra_ap_span": Label("@vendor__ra_ap_span-0.0.258//:ra_ap_span"), - "ra_ap_syntax": Label("@vendor__ra_ap_syntax-0.0.258//:ra_ap_syntax"), - "ra_ap_vfs": Label("@vendor__ra_ap_vfs-0.0.258//:ra_ap_vfs"), - "serde": Label("@vendor__serde-1.0.217//:serde"), - "serde_json": Label("@vendor__serde_json-1.0.135//:serde_json"), - "serde_with": Label("@vendor__serde_with-3.12.0//:serde_with"), - "toml": Label("@vendor__toml-0.8.19//:toml"), - "tracing": Label("@vendor__tracing-0.1.41//:tracing"), - "tracing-flame": Label("@vendor__tracing-flame-0.2.0//:tracing_flame"), - "tracing-subscriber": Label("@vendor__tracing-subscriber-0.3.19//:tracing_subscriber"), - "triomphe": Label("@vendor__triomphe-0.1.14//:triomphe"), + "anyhow": Label("@vendor_ts__anyhow-1.0.96//:anyhow"), + "argfile": Label("@vendor_ts__argfile-0.2.1//:argfile"), + "chrono": Label("@vendor_ts__chrono-0.4.39//:chrono"), + "clap": Label("@vendor_ts__clap-4.5.31//:clap"), + "dunce": Label("@vendor_ts__dunce-1.0.5//:dunce"), + "figment": Label("@vendor_ts__figment-0.10.19//:figment"), + "glob": Label("@vendor_ts__glob-0.3.2//:glob"), + "itertools": Label("@vendor_ts__itertools-0.14.0//:itertools"), + "num-traits": Label("@vendor_ts__num-traits-0.2.19//:num_traits"), + "ra_ap_base_db": Label("@vendor_ts__ra_ap_base_db-0.0.266//:ra_ap_base_db"), + "ra_ap_cfg": Label("@vendor_ts__ra_ap_cfg-0.0.266//:ra_ap_cfg"), + "ra_ap_hir": Label("@vendor_ts__ra_ap_hir-0.0.266//:ra_ap_hir"), + "ra_ap_hir_def": Label("@vendor_ts__ra_ap_hir_def-0.0.266//:ra_ap_hir_def"), + "ra_ap_hir_expand": Label("@vendor_ts__ra_ap_hir_expand-0.0.266//:ra_ap_hir_expand"), + "ra_ap_ide_db": Label("@vendor_ts__ra_ap_ide_db-0.0.266//:ra_ap_ide_db"), + "ra_ap_intern": Label("@vendor_ts__ra_ap_intern-0.0.266//:ra_ap_intern"), + "ra_ap_load-cargo": Label("@vendor_ts__ra_ap_load-cargo-0.0.266//:ra_ap_load_cargo"), + "ra_ap_parser": Label("@vendor_ts__ra_ap_parser-0.0.266//:ra_ap_parser"), + "ra_ap_paths": Label("@vendor_ts__ra_ap_paths-0.0.266//:ra_ap_paths"), + "ra_ap_project_model": Label("@vendor_ts__ra_ap_project_model-0.0.266//:ra_ap_project_model"), + "ra_ap_span": Label("@vendor_ts__ra_ap_span-0.0.266//:ra_ap_span"), + "ra_ap_syntax": Label("@vendor_ts__ra_ap_syntax-0.0.266//:ra_ap_syntax"), + "ra_ap_vfs": Label("@vendor_ts__ra_ap_vfs-0.0.266//:ra_ap_vfs"), + "serde": Label("@vendor_ts__serde-1.0.218//:serde"), + "serde_json": Label("@vendor_ts__serde_json-1.0.139//:serde_json"), + "serde_with": Label("@vendor_ts__serde_with-3.12.0//:serde_with"), + "toml": Label("@vendor_ts__toml-0.8.20//:toml"), + "tracing": Label("@vendor_ts__tracing-0.1.41//:tracing"), + "tracing-flame": Label("@vendor_ts__tracing-flame-0.2.0//:tracing_flame"), + "tracing-subscriber": Label("@vendor_ts__tracing-subscriber-0.3.19//:tracing_subscriber"), + "triomphe": Label("@vendor_ts__triomphe-0.1.14//:triomphe"), }, }, "rust/extractor/macros": { _COMMON_CONDITION: { - "quote": Label("@vendor__quote-1.0.38//:quote"), - "syn": Label("@vendor__syn-2.0.96//:syn"), + "quote": Label("@vendor_ts__quote-1.0.38//:quote"), + "syn": Label("@vendor_ts__syn-2.0.98//:syn"), }, }, "shared/tree-sitter-extractor": { _COMMON_CONDITION: { - "chrono": Label("@vendor__chrono-0.4.39//:chrono"), - "encoding": Label("@vendor__encoding-0.2.33//:encoding"), - "flate2": Label("@vendor__flate2-1.0.35//:flate2"), - "globset": Label("@vendor__globset-0.4.15//:globset"), - "lazy_static": Label("@vendor__lazy_static-1.5.0//:lazy_static"), - "num_cpus": Label("@vendor__num_cpus-1.16.0//:num_cpus"), - "rayon": Label("@vendor__rayon-1.10.0//:rayon"), - "regex": Label("@vendor__regex-1.11.1//:regex"), - "serde": Label("@vendor__serde-1.0.217//:serde"), - "serde_json": Label("@vendor__serde_json-1.0.135//:serde_json"), - "tracing": Label("@vendor__tracing-0.1.41//:tracing"), - "tracing-subscriber": Label("@vendor__tracing-subscriber-0.3.19//:tracing_subscriber"), - "tree-sitter": Label("@vendor__tree-sitter-0.24.6//:tree_sitter"), + "chrono": Label("@vendor_ts__chrono-0.4.39//:chrono"), + "encoding": Label("@vendor_ts__encoding-0.2.33//:encoding"), + "flate2": Label("@vendor_ts__flate2-1.1.0//:flate2"), + "globset": Label("@vendor_ts__globset-0.4.15//:globset"), + "lazy_static": Label("@vendor_ts__lazy_static-1.5.0//:lazy_static"), + "num_cpus": Label("@vendor_ts__num_cpus-1.16.0//:num_cpus"), + "rayon": Label("@vendor_ts__rayon-1.10.0//:rayon"), + "regex": Label("@vendor_ts__regex-1.11.1//:regex"), + "serde": Label("@vendor_ts__serde-1.0.218//:serde"), + "serde_json": Label("@vendor_ts__serde_json-1.0.139//:serde_json"), + "tracing": Label("@vendor_ts__tracing-0.1.41//:tracing"), + "tracing-subscriber": Label("@vendor_ts__tracing-subscriber-0.3.19//:tracing_subscriber"), + "tree-sitter": Label("@vendor_ts__tree-sitter-0.24.6//:tree_sitter"), }, }, } @@ -390,7 +390,7 @@ _NORMAL_ALIASES = { }, "rust/ast-generator": { _COMMON_CONDITION: { - Label("@vendor__ra_ap_stdx-0.0.258//:ra_ap_stdx"): "stdx", + Label("@vendor_ts__ra_ap_stdx-0.0.266//:ra_ap_stdx"): "stdx", }, }, "rust/autobuild": { @@ -422,9 +422,9 @@ _NORMAL_DEV_DEPENDENCIES = { }, "shared/tree-sitter-extractor": { _COMMON_CONDITION: { - "rand": Label("@vendor__rand-0.8.5//:rand"), - "tree-sitter-json": Label("@vendor__tree-sitter-json-0.24.8//:tree_sitter_json"), - "tree-sitter-ql": Label("@vendor__tree-sitter-ql-0.23.1//:tree_sitter_ql"), + "rand": Label("@vendor_ts__rand-0.9.0//:rand"), + "tree-sitter-json": Label("@vendor_ts__tree-sitter-json-0.24.8//:tree_sitter_json"), + "tree-sitter-ql": Label("@vendor_ts__tree-sitter-ql-0.23.1//:tree_sitter_ql"), }, }, } @@ -584,16 +584,24 @@ _CONDITIONS = { "armv7-linux-androideabi": ["@rules_rust//rust/platform:armv7-linux-androideabi"], "armv7-unknown-linux-gnueabi": ["@rules_rust//rust/platform:armv7-unknown-linux-gnueabi"], "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:x86_64-pc-windows-msvc"], + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(getrandom_backend = \"custom\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": ["@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"], "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc"], "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": ["@rules_rust//rust/platform:wasm32-unknown-unknown"], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [], "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": ["@rules_rust//rust/platform:i686-unknown-linux-gnu"], "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:i686-unknown-linux-gnu"], "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:i686-pc-windows-msvc"], "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": ["@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"], "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:x86_64-pc-windows-msvc"], - "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\"))": ["@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-freebsd"], + "cfg(all(windows, not(target_vendor = \"win7\")))": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"], + "cfg(any())": [], + "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", all(target_os = \"horizon\", target_arch = \"arm\")))": ["@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-freebsd"], + "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\", target_os = \"ios\"))": ["@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-unknown-freebsd"], + "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": ["@rules_rust//rust/platform:aarch64-unknown-nto-qnx710"], + "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": ["@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:x86_64-apple-ios"], "cfg(any(target_os = \"linux\", target_os = \"android\"))": ["@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"], "cfg(any(target_os = \"macos\", target_os = \"ios\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios"], + "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-darwin"], "cfg(any(target_pointer_width = \"8\", target_pointer_width = \"16\", target_pointer_width = \"32\"))": ["@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:riscv32imc-unknown-none-elf", "@rules_rust//rust/platform:thumbv7em-none-eabi", "@rules_rust//rust/platform:thumbv8m.main-none-eabi", "@rules_rust//rust/platform:wasm32-unknown-unknown", "@rules_rust//rust/platform:wasm32-wasip1"], "cfg(not(windows))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-fuchsia", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710", "@rules_rust//rust/platform:aarch64-unknown-uefi", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:riscv32imc-unknown-none-elf", "@rules_rust//rust/platform:riscv64gc-unknown-none-elf", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:thumbv7em-none-eabi", "@rules_rust//rust/platform:thumbv8m.main-none-eabi", "@rules_rust//rust/platform:wasm32-unknown-unknown", "@rules_rust//rust/platform:wasm32-wasip1", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-fuchsia", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu", "@rules_rust//rust/platform:x86_64-unknown-none", "@rules_rust//rust/platform:x86_64-unknown-uefi"], "cfg(target_os = \"android\")": ["@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:x86_64-linux-android"], @@ -601,7 +609,10 @@ _CONDITIONS = { "cfg(target_os = \"hermit\")": [], "cfg(target_os = \"linux\")": ["@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"], "cfg(target_os = \"macos\")": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-darwin"], + "cfg(target_os = \"netbsd\")": [], "cfg(target_os = \"redox\")": [], + "cfg(target_os = \"solaris\")": [], + "cfg(target_os = \"vxworks\")": [], "cfg(target_os = \"wasi\")": ["@rules_rust//rust/platform:wasm32-wasip1"], "cfg(target_os = \"windows\")": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"], "cfg(unix)": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-fuchsia", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-fuchsia", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"], @@ -645,7 +656,7 @@ def crate_repositories(): """ maybe( http_archive, - name = "vendor__adler2-2.0.0", + name = "vendor_ts__adler2-2.0.0", sha256 = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627", type = "tar.gz", urls = ["https://static.crates.io/crates/adler2/2.0.0/download"], @@ -655,7 +666,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__aho-corasick-1.1.3", + name = "vendor_ts__aho-corasick-1.1.3", sha256 = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916", type = "tar.gz", urls = ["https://static.crates.io/crates/aho-corasick/1.1.3/download"], @@ -665,7 +676,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__always-assert-0.2.0", + name = "vendor_ts__always-assert-0.2.0", sha256 = "a1078fa1ce1e34b1872d8611ad921196d76bdd7027e949fbe31231abde201892", type = "tar.gz", urls = ["https://static.crates.io/crates/always-assert/0.2.0/download"], @@ -675,7 +686,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__android-tzdata-0.1.1", + name = "vendor_ts__android-tzdata-0.1.1", sha256 = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0", type = "tar.gz", urls = ["https://static.crates.io/crates/android-tzdata/0.1.1/download"], @@ -685,7 +696,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__android_system_properties-0.1.5", + name = "vendor_ts__android_system_properties-0.1.5", sha256 = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311", type = "tar.gz", urls = ["https://static.crates.io/crates/android_system_properties/0.1.5/download"], @@ -695,7 +706,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__anstream-0.6.18", + name = "vendor_ts__anstream-0.6.18", sha256 = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b", type = "tar.gz", urls = ["https://static.crates.io/crates/anstream/0.6.18/download"], @@ -705,7 +716,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__anstyle-1.0.10", + name = "vendor_ts__anstyle-1.0.10", sha256 = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9", type = "tar.gz", urls = ["https://static.crates.io/crates/anstyle/1.0.10/download"], @@ -715,7 +726,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__anstyle-parse-0.2.6", + name = "vendor_ts__anstyle-parse-0.2.6", sha256 = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9", type = "tar.gz", urls = ["https://static.crates.io/crates/anstyle-parse/0.2.6/download"], @@ -725,7 +736,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__anstyle-query-1.1.2", + name = "vendor_ts__anstyle-query-1.1.2", sha256 = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c", type = "tar.gz", urls = ["https://static.crates.io/crates/anstyle-query/1.1.2/download"], @@ -735,27 +746,27 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__anstyle-wincon-3.0.6", - sha256 = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125", + name = "vendor_ts__anstyle-wincon-3.0.7", + sha256 = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e", type = "tar.gz", - urls = ["https://static.crates.io/crates/anstyle-wincon/3.0.6/download"], - strip_prefix = "anstyle-wincon-3.0.6", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.anstyle-wincon-3.0.6.bazel"), + urls = ["https://static.crates.io/crates/anstyle-wincon/3.0.7/download"], + strip_prefix = "anstyle-wincon-3.0.7", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.anstyle-wincon-3.0.7.bazel"), ) maybe( http_archive, - name = "vendor__anyhow-1.0.95", - sha256 = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04", + name = "vendor_ts__anyhow-1.0.96", + sha256 = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4", type = "tar.gz", - urls = ["https://static.crates.io/crates/anyhow/1.0.95/download"], - strip_prefix = "anyhow-1.0.95", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.anyhow-1.0.95.bazel"), + urls = ["https://static.crates.io/crates/anyhow/1.0.96/download"], + strip_prefix = "anyhow-1.0.96", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.anyhow-1.0.96.bazel"), ) maybe( http_archive, - name = "vendor__argfile-0.2.1", + name = "vendor_ts__argfile-0.2.1", sha256 = "0a1cc0ba69de57db40674c66f7cf2caee3981ddef084388482c95c0e2133e5e8", type = "tar.gz", urls = ["https://static.crates.io/crates/argfile/0.2.1/download"], @@ -765,7 +776,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__arrayvec-0.7.6", + name = "vendor_ts__arrayvec-0.7.6", sha256 = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50", type = "tar.gz", urls = ["https://static.crates.io/crates/arrayvec/0.7.6/download"], @@ -775,7 +786,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__atomic-0.6.0", + name = "vendor_ts__atomic-0.6.0", sha256 = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994", type = "tar.gz", urls = ["https://static.crates.io/crates/atomic/0.6.0/download"], @@ -785,7 +796,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__autocfg-1.4.0", + name = "vendor_ts__autocfg-1.4.0", sha256 = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26", type = "tar.gz", urls = ["https://static.crates.io/crates/autocfg/1.4.0/download"], @@ -795,7 +806,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__base64-0.22.1", + name = "vendor_ts__base64-0.22.1", sha256 = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6", type = "tar.gz", urls = ["https://static.crates.io/crates/base64/0.22.1/download"], @@ -805,7 +816,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__bitflags-1.3.2", + name = "vendor_ts__bitflags-1.3.2", sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", type = "tar.gz", urls = ["https://static.crates.io/crates/bitflags/1.3.2/download"], @@ -815,17 +826,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__bitflags-2.7.0", - sha256 = "1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be", + name = "vendor_ts__bitflags-2.8.0", + sha256 = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36", type = "tar.gz", - urls = ["https://static.crates.io/crates/bitflags/2.7.0/download"], - strip_prefix = "bitflags-2.7.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bitflags-2.7.0.bazel"), + urls = ["https://static.crates.io/crates/bitflags/2.8.0/download"], + strip_prefix = "bitflags-2.8.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bitflags-2.8.0.bazel"), ) maybe( http_archive, - name = "vendor__borsh-1.5.3", + name = "vendor_ts__borsh-1.5.3", sha256 = "2506947f73ad44e344215ccd6403ac2ae18cd8e046e581a441bf8d199f257f03", type = "tar.gz", urls = ["https://static.crates.io/crates/borsh/1.5.3/download"], @@ -835,7 +846,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__bstr-1.11.3", + name = "vendor_ts__bstr-1.11.3", sha256 = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0", type = "tar.gz", urls = ["https://static.crates.io/crates/bstr/1.11.3/download"], @@ -845,7 +856,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__bumpalo-3.16.0", + name = "vendor_ts__bumpalo-3.16.0", sha256 = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c", type = "tar.gz", urls = ["https://static.crates.io/crates/bumpalo/3.16.0/download"], @@ -855,7 +866,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__bytemuck-1.21.0", + name = "vendor_ts__bytemuck-1.21.0", sha256 = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3", type = "tar.gz", urls = ["https://static.crates.io/crates/bytemuck/1.21.0/download"], @@ -865,7 +876,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__byteorder-1.5.0", + name = "vendor_ts__byteorder-1.5.0", sha256 = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b", type = "tar.gz", urls = ["https://static.crates.io/crates/byteorder/1.5.0/download"], @@ -875,7 +886,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__camino-1.1.9", + name = "vendor_ts__camino-1.1.9", sha256 = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3", type = "tar.gz", urls = ["https://static.crates.io/crates/camino/1.1.9/download"], @@ -885,7 +896,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__cargo-platform-0.1.9", + name = "vendor_ts__cargo-platform-0.1.9", sha256 = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea", type = "tar.gz", urls = ["https://static.crates.io/crates/cargo-platform/0.1.9/download"], @@ -895,7 +906,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__cargo_metadata-0.18.1", + name = "vendor_ts__cargo_metadata-0.18.1", sha256 = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037", type = "tar.gz", urls = ["https://static.crates.io/crates/cargo_metadata/0.18.1/download"], @@ -905,7 +916,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__cc-1.2.7", + name = "vendor_ts__cc-1.2.7", sha256 = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7", type = "tar.gz", urls = ["https://static.crates.io/crates/cc/1.2.7/download"], @@ -915,7 +926,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__cfg-if-1.0.0", + name = "vendor_ts__cfg-if-1.0.0", sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", type = "tar.gz", urls = ["https://static.crates.io/crates/cfg-if/1.0.0/download"], @@ -925,7 +936,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__cfg_aliases-0.2.1", + name = "vendor_ts__cfg_aliases-0.2.1", sha256 = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724", type = "tar.gz", urls = ["https://static.crates.io/crates/cfg_aliases/0.2.1/download"], @@ -935,47 +946,47 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__chalk-derive-0.98.0", - sha256 = "9426c8fd0fe61c3da880b801d3b510524df17843a8f9ec1f5b9cec24fb7412df", + name = "vendor_ts__chalk-derive-0.99.0", + sha256 = "572583d9b97f9d277e5c7607f8239a30e2e04d3ed3b47c87d1cb2152ae724073", type = "tar.gz", - urls = ["https://static.crates.io/crates/chalk-derive/0.98.0/download"], - strip_prefix = "chalk-derive-0.98.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-derive-0.98.0.bazel"), + urls = ["https://static.crates.io/crates/chalk-derive/0.99.0/download"], + strip_prefix = "chalk-derive-0.99.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-derive-0.99.0.bazel"), ) maybe( http_archive, - name = "vendor__chalk-ir-0.98.0", - sha256 = "d5f2eb1cd6054da221bd1ac0197fb2fe5e2caf3dcb93619398fc1433f8f09093", + name = "vendor_ts__chalk-ir-0.99.0", + sha256 = "e60e0ef9c81dce1336a9ed3c76f08775f5b623151d96d85ba45f7b10de76d1c7", type = "tar.gz", - urls = ["https://static.crates.io/crates/chalk-ir/0.98.0/download"], - strip_prefix = "chalk-ir-0.98.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-ir-0.98.0.bazel"), + urls = ["https://static.crates.io/crates/chalk-ir/0.99.0/download"], + strip_prefix = "chalk-ir-0.99.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-ir-0.99.0.bazel"), ) maybe( http_archive, - name = "vendor__chalk-recursive-0.98.0", - sha256 = "129dc03458f71cfb9c3cd621c9c68166a94e87b85b16ccd29af015d7ff9a1c61", + name = "vendor_ts__chalk-recursive-0.99.0", + sha256 = "5a06350d614e22b03a69b8105e3541614450a7ea48bc58ecc6c6bd92731a3995", type = "tar.gz", - urls = ["https://static.crates.io/crates/chalk-recursive/0.98.0/download"], - strip_prefix = "chalk-recursive-0.98.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-recursive-0.98.0.bazel"), + urls = ["https://static.crates.io/crates/chalk-recursive/0.99.0/download"], + strip_prefix = "chalk-recursive-0.99.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-recursive-0.99.0.bazel"), ) maybe( http_archive, - name = "vendor__chalk-solve-0.98.0", - sha256 = "d7e8a8c1e928f98cdf227b868416ef21dcd8cc3c61b347576d783713444d41c8", + name = "vendor_ts__chalk-solve-0.99.0", + sha256 = "0e428761e9b55bee516bfe2457caed8b6d1b86353f92ae825bbe438a36ce91e8", type = "tar.gz", - urls = ["https://static.crates.io/crates/chalk-solve/0.98.0/download"], - strip_prefix = "chalk-solve-0.98.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-solve-0.98.0.bazel"), + urls = ["https://static.crates.io/crates/chalk-solve/0.99.0/download"], + strip_prefix = "chalk-solve-0.99.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chalk-solve-0.99.0.bazel"), ) maybe( http_archive, - name = "vendor__chrono-0.4.39", + name = "vendor_ts__chrono-0.4.39", sha256 = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825", type = "tar.gz", urls = ["https://static.crates.io/crates/chrono/0.4.39/download"], @@ -985,37 +996,37 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__clap-4.5.26", - sha256 = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783", + name = "vendor_ts__clap-4.5.31", + sha256 = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767", type = "tar.gz", - urls = ["https://static.crates.io/crates/clap/4.5.26/download"], - strip_prefix = "clap-4.5.26", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap-4.5.26.bazel"), + urls = ["https://static.crates.io/crates/clap/4.5.31/download"], + strip_prefix = "clap-4.5.31", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap-4.5.31.bazel"), ) maybe( http_archive, - name = "vendor__clap_builder-4.5.26", - sha256 = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121", + name = "vendor_ts__clap_builder-4.5.31", + sha256 = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863", type = "tar.gz", - urls = ["https://static.crates.io/crates/clap_builder/4.5.26/download"], - strip_prefix = "clap_builder-4.5.26", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_builder-4.5.26.bazel"), + urls = ["https://static.crates.io/crates/clap_builder/4.5.31/download"], + strip_prefix = "clap_builder-4.5.31", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_builder-4.5.31.bazel"), ) maybe( http_archive, - name = "vendor__clap_derive-4.5.24", - sha256 = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c", + name = "vendor_ts__clap_derive-4.5.28", + sha256 = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed", type = "tar.gz", - urls = ["https://static.crates.io/crates/clap_derive/4.5.24/download"], - strip_prefix = "clap_derive-4.5.24", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_derive-4.5.24.bazel"), + urls = ["https://static.crates.io/crates/clap_derive/4.5.28/download"], + strip_prefix = "clap_derive-4.5.28", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clap_derive-4.5.28.bazel"), ) maybe( http_archive, - name = "vendor__clap_lex-0.7.4", + name = "vendor_ts__clap_lex-0.7.4", sha256 = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6", type = "tar.gz", urls = ["https://static.crates.io/crates/clap_lex/0.7.4/download"], @@ -1025,7 +1036,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__colorchoice-1.0.3", + name = "vendor_ts__colorchoice-1.0.3", sha256 = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990", type = "tar.gz", urls = ["https://static.crates.io/crates/colorchoice/1.0.3/download"], @@ -1035,7 +1046,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__core-foundation-sys-0.8.7", + name = "vendor_ts__core-foundation-sys-0.8.7", sha256 = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b", type = "tar.gz", urls = ["https://static.crates.io/crates/core-foundation-sys/0.8.7/download"], @@ -1045,7 +1056,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__countme-3.0.1", + name = "vendor_ts__countme-3.0.1", sha256 = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636", type = "tar.gz", urls = ["https://static.crates.io/crates/countme/3.0.1/download"], @@ -1055,7 +1066,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__cov-mark-2.0.0", + name = "vendor_ts__cov-mark-2.0.0", sha256 = "0570650661aa447e7335f1d5e4f499d8e58796e617bedc9267d971e51c8b49d4", type = "tar.gz", urls = ["https://static.crates.io/crates/cov-mark/2.0.0/download"], @@ -1065,7 +1076,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__crc32fast-1.4.2", + name = "vendor_ts__crc32fast-1.4.2", sha256 = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3", type = "tar.gz", urls = ["https://static.crates.io/crates/crc32fast/1.4.2/download"], @@ -1075,7 +1086,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__crossbeam-channel-0.5.14", + name = "vendor_ts__crossbeam-channel-0.5.14", sha256 = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-channel/0.5.14/download"], @@ -1085,7 +1096,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__crossbeam-deque-0.8.6", + name = "vendor_ts__crossbeam-deque-0.8.6", sha256 = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-deque/0.8.6/download"], @@ -1095,7 +1106,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__crossbeam-epoch-0.9.18", + name = "vendor_ts__crossbeam-epoch-0.9.18", sha256 = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-epoch/0.9.18/download"], @@ -1105,7 +1116,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__crossbeam-utils-0.8.21", + name = "vendor_ts__crossbeam-utils-0.8.21", sha256 = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-utils/0.8.21/download"], @@ -1115,7 +1126,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__darling-0.20.10", + name = "vendor_ts__darling-0.20.10", sha256 = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989", type = "tar.gz", urls = ["https://static.crates.io/crates/darling/0.20.10/download"], @@ -1125,7 +1136,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__darling_core-0.20.10", + name = "vendor_ts__darling_core-0.20.10", sha256 = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5", type = "tar.gz", urls = ["https://static.crates.io/crates/darling_core/0.20.10/download"], @@ -1135,7 +1146,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__darling_macro-0.20.10", + name = "vendor_ts__darling_macro-0.20.10", sha256 = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806", type = "tar.gz", urls = ["https://static.crates.io/crates/darling_macro/0.20.10/download"], @@ -1145,7 +1156,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__dashmap-5.5.3", + name = "vendor_ts__dashmap-5.5.3", sha256 = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856", type = "tar.gz", urls = ["https://static.crates.io/crates/dashmap/5.5.3/download"], @@ -1155,7 +1166,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__deranged-0.3.11", + name = "vendor_ts__deranged-0.3.11", sha256 = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4", type = "tar.gz", urls = ["https://static.crates.io/crates/deranged/0.3.11/download"], @@ -1165,7 +1176,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__drop_bomb-0.1.5", + name = "vendor_ts__drop_bomb-0.1.5", sha256 = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1", type = "tar.gz", urls = ["https://static.crates.io/crates/drop_bomb/0.1.5/download"], @@ -1175,7 +1186,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__dunce-1.0.5", + name = "vendor_ts__dunce-1.0.5", sha256 = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813", type = "tar.gz", urls = ["https://static.crates.io/crates/dunce/1.0.5/download"], @@ -1185,17 +1196,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__either-1.13.0", - sha256 = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0", + name = "vendor_ts__either-1.14.0", + sha256 = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d", type = "tar.gz", - urls = ["https://static.crates.io/crates/either/1.13.0/download"], - strip_prefix = "either-1.13.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.either-1.13.0.bazel"), + urls = ["https://static.crates.io/crates/either/1.14.0/download"], + strip_prefix = "either-1.14.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.either-1.14.0.bazel"), ) maybe( http_archive, - name = "vendor__ena-0.14.3", + name = "vendor_ts__ena-0.14.3", sha256 = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5", type = "tar.gz", urls = ["https://static.crates.io/crates/ena/0.14.3/download"], @@ -1205,7 +1216,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding-0.2.33", + name = "vendor_ts__encoding-0.2.33", sha256 = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding/0.2.33/download"], @@ -1215,7 +1226,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding-index-japanese-1.20141219.5", + name = "vendor_ts__encoding-index-japanese-1.20141219.5", sha256 = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding-index-japanese/1.20141219.5/download"], @@ -1225,7 +1236,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding-index-korean-1.20141219.5", + name = "vendor_ts__encoding-index-korean-1.20141219.5", sha256 = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding-index-korean/1.20141219.5/download"], @@ -1235,7 +1246,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding-index-simpchinese-1.20141219.5", + name = "vendor_ts__encoding-index-simpchinese-1.20141219.5", sha256 = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding-index-simpchinese/1.20141219.5/download"], @@ -1245,7 +1256,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding-index-singlebyte-1.20141219.5", + name = "vendor_ts__encoding-index-singlebyte-1.20141219.5", sha256 = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding-index-singlebyte/1.20141219.5/download"], @@ -1255,7 +1266,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding-index-tradchinese-1.20141219.5", + name = "vendor_ts__encoding-index-tradchinese-1.20141219.5", sha256 = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding-index-tradchinese/1.20141219.5/download"], @@ -1265,7 +1276,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__encoding_index_tests-0.1.4", + name = "vendor_ts__encoding_index_tests-0.1.4", sha256 = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569", type = "tar.gz", urls = ["https://static.crates.io/crates/encoding_index_tests/0.1.4/download"], @@ -1275,7 +1286,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__equivalent-1.0.1", + name = "vendor_ts__equivalent-1.0.1", sha256 = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5", type = "tar.gz", urls = ["https://static.crates.io/crates/equivalent/1.0.1/download"], @@ -1285,7 +1296,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__figment-0.10.19", + name = "vendor_ts__figment-0.10.19", sha256 = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3", type = "tar.gz", urls = ["https://static.crates.io/crates/figment/0.10.19/download"], @@ -1295,7 +1306,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__filetime-0.2.25", + name = "vendor_ts__filetime-0.2.25", sha256 = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586", type = "tar.gz", urls = ["https://static.crates.io/crates/filetime/0.2.25/download"], @@ -1305,7 +1316,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__fixedbitset-0.4.2", + name = "vendor_ts__fixedbitset-0.4.2", sha256 = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80", type = "tar.gz", urls = ["https://static.crates.io/crates/fixedbitset/0.4.2/download"], @@ -1315,17 +1326,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__flate2-1.0.35", - sha256 = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c", + name = "vendor_ts__flate2-1.1.0", + sha256 = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc", type = "tar.gz", - urls = ["https://static.crates.io/crates/flate2/1.0.35/download"], - strip_prefix = "flate2-1.0.35", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.flate2-1.0.35.bazel"), + urls = ["https://static.crates.io/crates/flate2/1.1.0/download"], + strip_prefix = "flate2-1.1.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.flate2-1.1.0.bazel"), ) maybe( http_archive, - name = "vendor__fnv-1.0.7", + name = "vendor_ts__fnv-1.0.7", sha256 = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1", type = "tar.gz", urls = ["https://static.crates.io/crates/fnv/1.0.7/download"], @@ -1335,7 +1346,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__fs-err-2.11.0", + name = "vendor_ts__fs-err-2.11.0", sha256 = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41", type = "tar.gz", urls = ["https://static.crates.io/crates/fs-err/2.11.0/download"], @@ -1345,7 +1356,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__fsevent-sys-4.1.0", + name = "vendor_ts__fsevent-sys-4.1.0", sha256 = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2", type = "tar.gz", urls = ["https://static.crates.io/crates/fsevent-sys/4.1.0/download"], @@ -1355,7 +1366,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__fst-0.4.7", + name = "vendor_ts__fst-0.4.7", sha256 = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a", type = "tar.gz", urls = ["https://static.crates.io/crates/fst/0.4.7/download"], @@ -1365,17 +1376,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__getrandom-0.2.15", - sha256 = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7", + name = "vendor_ts__getrandom-0.3.1", + sha256 = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8", type = "tar.gz", - urls = ["https://static.crates.io/crates/getrandom/0.2.15/download"], - strip_prefix = "getrandom-0.2.15", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.getrandom-0.2.15.bazel"), + urls = ["https://static.crates.io/crates/getrandom/0.3.1/download"], + strip_prefix = "getrandom-0.3.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.getrandom-0.3.1.bazel"), ) maybe( http_archive, - name = "vendor__glob-0.3.2", + name = "vendor_ts__glob-0.3.2", sha256 = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2", type = "tar.gz", urls = ["https://static.crates.io/crates/glob/0.3.2/download"], @@ -1385,7 +1396,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__globset-0.4.15", + name = "vendor_ts__globset-0.4.15", sha256 = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19", type = "tar.gz", urls = ["https://static.crates.io/crates/globset/0.4.15/download"], @@ -1395,7 +1406,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__hashbrown-0.12.3", + name = "vendor_ts__hashbrown-0.12.3", sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.12.3/download"], @@ -1405,7 +1416,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__hashbrown-0.14.5", + name = "vendor_ts__hashbrown-0.14.5", sha256 = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1", type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.14.5/download"], @@ -1415,7 +1426,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__hashbrown-0.15.2", + name = "vendor_ts__hashbrown-0.15.2", sha256 = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289", type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.15.2/download"], @@ -1425,7 +1436,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__heck-0.4.1", + name = "vendor_ts__heck-0.4.1", sha256 = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8", type = "tar.gz", urls = ["https://static.crates.io/crates/heck/0.4.1/download"], @@ -1435,7 +1446,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__heck-0.5.0", + name = "vendor_ts__heck-0.5.0", sha256 = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea", type = "tar.gz", urls = ["https://static.crates.io/crates/heck/0.5.0/download"], @@ -1445,7 +1456,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__hermit-abi-0.3.9", + name = "vendor_ts__hermit-abi-0.3.9", sha256 = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024", type = "tar.gz", urls = ["https://static.crates.io/crates/hermit-abi/0.3.9/download"], @@ -1455,7 +1466,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__hex-0.4.3", + name = "vendor_ts__hex-0.4.3", sha256 = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70", type = "tar.gz", urls = ["https://static.crates.io/crates/hex/0.4.3/download"], @@ -1465,7 +1476,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__home-0.5.11", + name = "vendor_ts__home-0.5.11", sha256 = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf", type = "tar.gz", urls = ["https://static.crates.io/crates/home/0.5.11/download"], @@ -1475,7 +1486,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__iana-time-zone-0.1.61", + name = "vendor_ts__iana-time-zone-0.1.61", sha256 = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220", type = "tar.gz", urls = ["https://static.crates.io/crates/iana-time-zone/0.1.61/download"], @@ -1485,7 +1496,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__iana-time-zone-haiku-0.1.2", + name = "vendor_ts__iana-time-zone-haiku-0.1.2", sha256 = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f", type = "tar.gz", urls = ["https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download"], @@ -1495,7 +1506,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__ident_case-1.0.1", + name = "vendor_ts__ident_case-1.0.1", sha256 = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39", type = "tar.gz", urls = ["https://static.crates.io/crates/ident_case/1.0.1/download"], @@ -1505,7 +1516,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__indexmap-1.9.3", + name = "vendor_ts__indexmap-1.9.3", sha256 = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99", type = "tar.gz", urls = ["https://static.crates.io/crates/indexmap/1.9.3/download"], @@ -1515,7 +1526,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__indexmap-2.7.0", + name = "vendor_ts__indexmap-2.7.0", sha256 = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f", type = "tar.gz", urls = ["https://static.crates.io/crates/indexmap/2.7.0/download"], @@ -1525,7 +1536,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__inlinable_string-0.1.15", + name = "vendor_ts__inlinable_string-0.1.15", sha256 = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb", type = "tar.gz", urls = ["https://static.crates.io/crates/inlinable_string/0.1.15/download"], @@ -1535,17 +1546,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__inotify-0.9.6", - sha256 = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff", + name = "vendor_ts__inotify-0.11.0", + sha256 = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3", type = "tar.gz", - urls = ["https://static.crates.io/crates/inotify/0.9.6/download"], - strip_prefix = "inotify-0.9.6", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.inotify-0.9.6.bazel"), + urls = ["https://static.crates.io/crates/inotify/0.11.0/download"], + strip_prefix = "inotify-0.11.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.inotify-0.11.0.bazel"), ) maybe( http_archive, - name = "vendor__inotify-sys-0.1.5", + name = "vendor_ts__inotify-sys-0.1.5", sha256 = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb", type = "tar.gz", urls = ["https://static.crates.io/crates/inotify-sys/0.1.5/download"], @@ -1555,7 +1566,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__is_terminal_polyfill-1.70.1", + name = "vendor_ts__is_terminal_polyfill-1.70.1", sha256 = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf", type = "tar.gz", urls = ["https://static.crates.io/crates/is_terminal_polyfill/1.70.1/download"], @@ -1565,7 +1576,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__itertools-0.12.1", + name = "vendor_ts__itertools-0.12.1", sha256 = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569", type = "tar.gz", urls = ["https://static.crates.io/crates/itertools/0.12.1/download"], @@ -1575,7 +1586,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__itertools-0.14.0", + name = "vendor_ts__itertools-0.14.0", sha256 = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285", type = "tar.gz", urls = ["https://static.crates.io/crates/itertools/0.14.0/download"], @@ -1585,7 +1596,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__itoa-1.0.14", + name = "vendor_ts__itoa-1.0.14", sha256 = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674", type = "tar.gz", urls = ["https://static.crates.io/crates/itoa/1.0.14/download"], @@ -1595,7 +1606,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__jod-thread-0.1.2", + name = "vendor_ts__jod-thread-0.1.2", sha256 = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae", type = "tar.gz", urls = ["https://static.crates.io/crates/jod-thread/0.1.2/download"], @@ -1605,7 +1616,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__js-sys-0.3.76", + name = "vendor_ts__js-sys-0.3.76", sha256 = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7", type = "tar.gz", urls = ["https://static.crates.io/crates/js-sys/0.3.76/download"], @@ -1615,7 +1626,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__kqueue-1.0.8", + name = "vendor_ts__kqueue-1.0.8", sha256 = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c", type = "tar.gz", urls = ["https://static.crates.io/crates/kqueue/1.0.8/download"], @@ -1625,7 +1636,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__kqueue-sys-1.0.4", + name = "vendor_ts__kqueue-sys-1.0.4", sha256 = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b", type = "tar.gz", urls = ["https://static.crates.io/crates/kqueue-sys/1.0.4/download"], @@ -1635,7 +1646,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__la-arena-0.3.1", + name = "vendor_ts__la-arena-0.3.1", sha256 = "3752f229dcc5a481d60f385fa479ff46818033d881d2d801aa27dffcfb5e8306", type = "tar.gz", urls = ["https://static.crates.io/crates/la-arena/0.3.1/download"], @@ -1645,7 +1656,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__lazy_static-1.5.0", + name = "vendor_ts__lazy_static-1.5.0", sha256 = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe", type = "tar.gz", urls = ["https://static.crates.io/crates/lazy_static/1.5.0/download"], @@ -1655,7 +1666,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__libc-0.2.169", + name = "vendor_ts__libc-0.2.169", sha256 = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a", type = "tar.gz", urls = ["https://static.crates.io/crates/libc/0.2.169/download"], @@ -1665,7 +1676,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__libredox-0.1.3", + name = "vendor_ts__libredox-0.1.3", sha256 = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d", type = "tar.gz", urls = ["https://static.crates.io/crates/libredox/0.1.3/download"], @@ -1675,7 +1686,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__line-index-0.1.2", + name = "vendor_ts__line-index-0.1.2", sha256 = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2", type = "tar.gz", urls = ["https://static.crates.io/crates/line-index/0.1.2/download"], @@ -1685,7 +1696,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__lock_api-0.4.12", + name = "vendor_ts__lock_api-0.4.12", sha256 = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17", type = "tar.gz", urls = ["https://static.crates.io/crates/lock_api/0.4.12/download"], @@ -1695,7 +1706,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__log-0.3.9", + name = "vendor_ts__log-0.3.9", sha256 = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b", type = "tar.gz", urls = ["https://static.crates.io/crates/log/0.3.9/download"], @@ -1705,17 +1716,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__log-0.4.22", - sha256 = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24", + name = "vendor_ts__log-0.4.25", + sha256 = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f", type = "tar.gz", - urls = ["https://static.crates.io/crates/log/0.4.22/download"], - strip_prefix = "log-0.4.22", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.log-0.4.22.bazel"), + urls = ["https://static.crates.io/crates/log/0.4.25/download"], + strip_prefix = "log-0.4.25", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.log-0.4.25.bazel"), ) maybe( http_archive, - name = "vendor__lz4_flex-0.11.3", + name = "vendor_ts__lz4_flex-0.11.3", sha256 = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5", type = "tar.gz", urls = ["https://static.crates.io/crates/lz4_flex/0.11.3/download"], @@ -1725,7 +1736,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__matchers-0.1.0", + name = "vendor_ts__matchers-0.1.0", sha256 = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558", type = "tar.gz", urls = ["https://static.crates.io/crates/matchers/0.1.0/download"], @@ -1735,7 +1746,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__memchr-2.7.4", + name = "vendor_ts__memchr-2.7.4", sha256 = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3", type = "tar.gz", urls = ["https://static.crates.io/crates/memchr/2.7.4/download"], @@ -1745,7 +1756,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__memoffset-0.9.1", + name = "vendor_ts__memoffset-0.9.1", sha256 = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a", type = "tar.gz", urls = ["https://static.crates.io/crates/memoffset/0.9.1/download"], @@ -1755,27 +1766,27 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__miniz_oxide-0.8.2", - sha256 = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394", + name = "vendor_ts__miniz_oxide-0.8.5", + sha256 = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5", type = "tar.gz", - urls = ["https://static.crates.io/crates/miniz_oxide/0.8.2/download"], - strip_prefix = "miniz_oxide-0.8.2", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.miniz_oxide-0.8.2.bazel"), + urls = ["https://static.crates.io/crates/miniz_oxide/0.8.5/download"], + strip_prefix = "miniz_oxide-0.8.5", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.miniz_oxide-0.8.5.bazel"), ) maybe( http_archive, - name = "vendor__mio-0.8.11", - sha256 = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c", + name = "vendor_ts__mio-1.0.3", + sha256 = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd", type = "tar.gz", - urls = ["https://static.crates.io/crates/mio/0.8.11/download"], - strip_prefix = "mio-0.8.11", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.mio-0.8.11.bazel"), + urls = ["https://static.crates.io/crates/mio/1.0.3/download"], + strip_prefix = "mio-1.0.3", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.mio-1.0.3.bazel"), ) maybe( http_archive, - name = "vendor__miow-0.6.0", + name = "vendor_ts__miow-0.6.0", sha256 = "359f76430b20a79f9e20e115b3428614e654f04fab314482fc0fda0ebd3c6044", type = "tar.gz", urls = ["https://static.crates.io/crates/miow/0.6.0/download"], @@ -1785,7 +1796,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__mustache-0.9.0", + name = "vendor_ts__mustache-0.9.0", sha256 = "51956ef1c5d20a1384524d91e616fb44dfc7d8f249bf696d49c97dd3289ecab5", type = "tar.gz", urls = ["https://static.crates.io/crates/mustache/0.9.0/download"], @@ -1795,7 +1806,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__nohash-hasher-0.2.0", + name = "vendor_ts__nohash-hasher-0.2.0", sha256 = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451", type = "tar.gz", urls = ["https://static.crates.io/crates/nohash-hasher/0.2.0/download"], @@ -1805,17 +1816,27 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__notify-6.1.1", - sha256 = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d", + name = "vendor_ts__notify-8.0.0", + sha256 = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943", type = "tar.gz", - urls = ["https://static.crates.io/crates/notify/6.1.1/download"], - strip_prefix = "notify-6.1.1", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.notify-6.1.1.bazel"), + urls = ["https://static.crates.io/crates/notify/8.0.0/download"], + strip_prefix = "notify-8.0.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.notify-8.0.0.bazel"), ) maybe( http_archive, - name = "vendor__nu-ansi-term-0.46.0", + name = "vendor_ts__notify-types-2.0.0", + sha256 = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d", + type = "tar.gz", + urls = ["https://static.crates.io/crates/notify-types/2.0.0/download"], + strip_prefix = "notify-types-2.0.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.notify-types-2.0.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__nu-ansi-term-0.46.0", sha256 = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84", type = "tar.gz", urls = ["https://static.crates.io/crates/nu-ansi-term/0.46.0/download"], @@ -1825,7 +1846,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__num-conv-0.1.0", + name = "vendor_ts__num-conv-0.1.0", sha256 = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9", type = "tar.gz", urls = ["https://static.crates.io/crates/num-conv/0.1.0/download"], @@ -1835,7 +1856,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__num-traits-0.2.19", + name = "vendor_ts__num-traits-0.2.19", sha256 = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841", type = "tar.gz", urls = ["https://static.crates.io/crates/num-traits/0.2.19/download"], @@ -1845,7 +1866,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__num_cpus-1.16.0", + name = "vendor_ts__num_cpus-1.16.0", sha256 = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43", type = "tar.gz", urls = ["https://static.crates.io/crates/num_cpus/1.16.0/download"], @@ -1855,17 +1876,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__once_cell-1.20.2", - sha256 = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775", + name = "vendor_ts__once_cell-1.20.3", + sha256 = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e", type = "tar.gz", - urls = ["https://static.crates.io/crates/once_cell/1.20.2/download"], - strip_prefix = "once_cell-1.20.2", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.once_cell-1.20.2.bazel"), + urls = ["https://static.crates.io/crates/once_cell/1.20.3/download"], + strip_prefix = "once_cell-1.20.3", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.once_cell-1.20.3.bazel"), ) maybe( http_archive, - name = "vendor__oorandom-11.1.4", + name = "vendor_ts__oorandom-11.1.4", sha256 = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9", type = "tar.gz", urls = ["https://static.crates.io/crates/oorandom/11.1.4/download"], @@ -1875,7 +1896,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__os_str_bytes-7.0.0", + name = "vendor_ts__os_str_bytes-7.0.0", sha256 = "7ac44c994af577c799b1b4bd80dc214701e349873ad894d6cdf96f4f7526e0b9", type = "tar.gz", urls = ["https://static.crates.io/crates/os_str_bytes/7.0.0/download"], @@ -1885,7 +1906,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__overload-0.1.1", + name = "vendor_ts__overload-0.1.1", sha256 = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39", type = "tar.gz", urls = ["https://static.crates.io/crates/overload/0.1.1/download"], @@ -1895,7 +1916,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__parking_lot-0.12.3", + name = "vendor_ts__parking_lot-0.12.3", sha256 = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27", type = "tar.gz", urls = ["https://static.crates.io/crates/parking_lot/0.12.3/download"], @@ -1905,7 +1926,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__parking_lot_core-0.9.10", + name = "vendor_ts__parking_lot_core-0.9.10", sha256 = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8", type = "tar.gz", urls = ["https://static.crates.io/crates/parking_lot_core/0.9.10/download"], @@ -1915,7 +1936,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__pear-0.2.9", + name = "vendor_ts__pear-0.2.9", sha256 = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467", type = "tar.gz", urls = ["https://static.crates.io/crates/pear/0.2.9/download"], @@ -1925,7 +1946,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__pear_codegen-0.2.9", + name = "vendor_ts__pear_codegen-0.2.9", sha256 = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147", type = "tar.gz", urls = ["https://static.crates.io/crates/pear_codegen/0.2.9/download"], @@ -1935,7 +1956,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__perf-event-0.4.7", + name = "vendor_ts__perf-event-0.4.7", sha256 = "5396562cd2eaa828445d6d34258ae21ee1eb9d40fe626ca7f51c8dccb4af9d66", type = "tar.gz", urls = ["https://static.crates.io/crates/perf-event/0.4.7/download"], @@ -1945,7 +1966,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__perf-event-open-sys-1.0.1", + name = "vendor_ts__perf-event-open-sys-1.0.1", sha256 = "ce9bedf5da2c234fdf2391ede2b90fabf585355f33100689bc364a3ea558561a", type = "tar.gz", urls = ["https://static.crates.io/crates/perf-event-open-sys/1.0.1/download"], @@ -1955,7 +1976,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__petgraph-0.6.5", + name = "vendor_ts__petgraph-0.6.5", sha256 = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db", type = "tar.gz", urls = ["https://static.crates.io/crates/petgraph/0.6.5/download"], @@ -1965,7 +1986,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__pin-project-lite-0.2.16", + name = "vendor_ts__pin-project-lite-0.2.16", sha256 = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b", type = "tar.gz", urls = ["https://static.crates.io/crates/pin-project-lite/0.2.16/download"], @@ -1975,7 +1996,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__powerfmt-0.2.0", + name = "vendor_ts__powerfmt-0.2.0", sha256 = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391", type = "tar.gz", urls = ["https://static.crates.io/crates/powerfmt/0.2.0/download"], @@ -1985,7 +2006,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__ppv-lite86-0.2.20", + name = "vendor_ts__ppv-lite86-0.2.20", sha256 = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04", type = "tar.gz", urls = ["https://static.crates.io/crates/ppv-lite86/0.2.20/download"], @@ -1995,7 +2016,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__proc-macro2-1.0.93", + name = "vendor_ts__proc-macro2-1.0.93", sha256 = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99", type = "tar.gz", urls = ["https://static.crates.io/crates/proc-macro2/1.0.93/download"], @@ -2005,7 +2026,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__proc-macro2-diagnostics-0.10.1", + name = "vendor_ts__proc-macro2-diagnostics-0.10.1", sha256 = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8", type = "tar.gz", urls = ["https://static.crates.io/crates/proc-macro2-diagnostics/0.10.1/download"], @@ -2015,7 +2036,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__quote-1.0.38", + name = "vendor_ts__quote-1.0.38", sha256 = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc", type = "tar.gz", urls = ["https://static.crates.io/crates/quote/1.0.38/download"], @@ -2025,367 +2046,367 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__ra-ap-rustc_abi-0.87.0", - sha256 = "28b782af0a7a8df16ddf43cd70da9f17bc3b1ce712c9e4992b6edb16f5f53632", + name = "vendor_ts__ra-ap-rustc_abi-0.97.0", + sha256 = "3829c3355d1681ffeaf1450ec71edcdace6820fe2e86469d8fc1ad45e2c96460", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra-ap-rustc_abi/0.87.0/download"], - strip_prefix = "ra-ap-rustc_abi-0.87.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_abi-0.87.0.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_abi/0.97.0/download"], + strip_prefix = "ra-ap-rustc_abi-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_abi-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra-ap-rustc_index-0.87.0", - sha256 = "ce5742f134960482f543b35ecebec3cacc6d79a9a685713518b4d8d70c5f9aa8", + name = "vendor_ts__ra-ap-rustc_hashes-0.97.0", + sha256 = "1bd4d6d4c434bec08e02370a4f64a4985312097215a62e82d0f757f3a98e502e", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra-ap-rustc_index/0.87.0/download"], - strip_prefix = "ra-ap-rustc_index-0.87.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_index-0.87.0.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_hashes/0.97.0/download"], + strip_prefix = "ra-ap-rustc_hashes-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_hashes-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra-ap-rustc_index_macros-0.87.0", - sha256 = "d7ea011fcf68309a8835ad01d91c032cb18444617b00e2cab21d45b208164441", + name = "vendor_ts__ra-ap-rustc_index-0.97.0", + sha256 = "bad6fc4bd7522e31096e2de5b0351144fe0684b608791ee26c842bf2da1b19ae", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra-ap-rustc_index_macros/0.87.0/download"], - strip_prefix = "ra-ap-rustc_index_macros-0.87.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_index_macros-0.87.0.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_index/0.97.0/download"], + strip_prefix = "ra-ap-rustc_index-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_index-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra-ap-rustc_lexer-0.87.0", - sha256 = "eb76f0a4d4c20859e41f0a23bff0f37ab9ca9171c214a6c7dd72ea69434865dc", + name = "vendor_ts__ra-ap-rustc_index_macros-0.97.0", + sha256 = "cfb234e1f84b92be45276c3025bee18789e9bc95bec8789bec961e78edb01c52", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra-ap-rustc_lexer/0.87.0/download"], - strip_prefix = "ra-ap-rustc_lexer-0.87.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_lexer-0.87.0.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_index_macros/0.97.0/download"], + strip_prefix = "ra-ap-rustc_index_macros-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_index_macros-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra-ap-rustc_parse_format-0.87.0", - sha256 = "06080bd35078305421a62da77f3c128482d8d44441b6da8ce9d146d1cd9cdb5b", + name = "vendor_ts__ra-ap-rustc_lexer-0.97.0", + sha256 = "7a3a40bd11dc43d1cb110e730b80620cf8102f4cca8920a02b65954da0ed931f", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra-ap-rustc_parse_format/0.87.0/download"], - strip_prefix = "ra-ap-rustc_parse_format-0.87.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_parse_format-0.87.0.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_lexer/0.97.0/download"], + strip_prefix = "ra-ap-rustc_lexer-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_lexer-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra-ap-rustc_pattern_analysis-0.87.0", - sha256 = "68a3154fe4c20c177d7b3c678a2d3a97aba0cca156ddef88959915041889daf0", + name = "vendor_ts__ra-ap-rustc_parse_format-0.97.0", + sha256 = "5feb877478994cb4c0c0c7a5116a352eefc0634aefc8636feb00a893fa5b7135", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra-ap-rustc_pattern_analysis/0.87.0/download"], - strip_prefix = "ra-ap-rustc_pattern_analysis-0.87.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_pattern_analysis-0.87.0.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_parse_format/0.97.0/download"], + strip_prefix = "ra-ap-rustc_parse_format-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_parse_format-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_base_db-0.0.258", - sha256 = "548b95b278a8f6f888a0bb6cb7bf4201fe920d3800cd99770054e5eb72f3cd6a", + name = "vendor_ts__ra-ap-rustc_pattern_analysis-0.97.0", + sha256 = "a76774d35934d464c4115908cde16f76a4f7e540fe1eea6b79336c556e37bdd3", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_base_db/0.0.258/download"], - strip_prefix = "ra_ap_base_db-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_base_db-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra-ap-rustc_pattern_analysis/0.97.0/download"], + strip_prefix = "ra-ap-rustc_pattern_analysis-0.97.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra-ap-rustc_pattern_analysis-0.97.0.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_cfg-0.0.258", - sha256 = "921e2b0232d1e8352eb9f476bb55c1d8bcbed0531adc17c74aa711fef015c851", + name = "vendor_ts__ra_ap_base_db-0.0.266", + sha256 = "5d8e4a327f1a8ace5afced54ebaa1a34f8cf0bb535a28aefb8300e8ea49a7d6e", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_cfg/0.0.258/download"], - strip_prefix = "ra_ap_cfg-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_cfg-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_base_db/0.0.266/download"], + strip_prefix = "ra_ap_base_db-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_base_db-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_edition-0.0.258", - sha256 = "a7cc6633305d878cafb4a4482e7e7002d1a5d7b15fa837728b6613ff5336f8a4", + name = "vendor_ts__ra_ap_cfg-0.0.266", + sha256 = "4d974450788b1f90243c5f2231875ed4d7087444975c0190a1c2cb02c3ed465d", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_edition/0.0.258/download"], - strip_prefix = "ra_ap_edition-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_edition-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_cfg/0.0.266/download"], + strip_prefix = "ra_ap_cfg-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_cfg-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_hir-0.0.258", - sha256 = "6e3f6b31381a297e5bb4fa76108a2cf7bf8d35067a130f932aa6fdfb733ba3a1", + name = "vendor_ts__ra_ap_edition-0.0.266", + sha256 = "c3b1b961a84cb09a4e06e44d06b2e77bcf546d0c2623df9545ba9cc694880989", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_hir/0.0.258/download"], - strip_prefix = "ra_ap_hir-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_edition/0.0.266/download"], + strip_prefix = "ra_ap_edition-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_edition-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_hir_def-0.0.258", - sha256 = "84144bdda7af170e660d312982889622f4a5361c1bb74df2afa2a6ce17d48644", + name = "vendor_ts__ra_ap_hir-0.0.266", + sha256 = "ff0672e35a6cf12333cb6b9e3fd18aba4bc724fa7c7b24c3253df4730be1f9c3", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_hir_def/0.0.258/download"], - strip_prefix = "ra_ap_hir_def-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir_def-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_hir/0.0.266/download"], + strip_prefix = "ra_ap_hir-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_hir_expand-0.0.258", - sha256 = "441661b394acfa4f3ac4cb54386f8ee8b451504ec167b0bf0e4200da1bbca50d", + name = "vendor_ts__ra_ap_hir_def-0.0.266", + sha256 = "fde2fb9361257e31e73e63eb2d07445ea3fd4cd1e7bae7f45e7ba82bcfcde29a", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_hir_expand/0.0.258/download"], - strip_prefix = "ra_ap_hir_expand-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir_expand-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_hir_def/0.0.266/download"], + strip_prefix = "ra_ap_hir_def-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir_def-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_hir_ty-0.0.258", - sha256 = "6feea30dff289f33a8ed76172ff4cb299db22d224f88735aa2c7f49ba1e5e77f", + name = "vendor_ts__ra_ap_hir_expand-0.0.266", + sha256 = "1823b649710bf1829c894f774dfe66acb33a3e5bc7409ff7836cd19f6e09c250", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_hir_ty/0.0.258/download"], - strip_prefix = "ra_ap_hir_ty-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir_ty-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_hir_expand/0.0.266/download"], + strip_prefix = "ra_ap_hir_expand-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir_expand-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_ide_db-0.0.258", - sha256 = "7e33bd5a0139b6c74d34ed963494115abe3f9c95cf5936871ab3d9b548ccbbdf", + name = "vendor_ts__ra_ap_hir_ty-0.0.266", + sha256 = "72a591a02787bd2e938c25fceb1f831d0929b9c08726e6d831f85c4a9fba04b5", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_ide_db/0.0.258/download"], - strip_prefix = "ra_ap_ide_db-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_ide_db-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_hir_ty/0.0.266/download"], + strip_prefix = "ra_ap_hir_ty-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_hir_ty-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_intern-0.0.258", - sha256 = "faa7ee24ae9bf4d2536ef7fb6de35f30856edbf7b3d6ac02e5a2532118896569", + name = "vendor_ts__ra_ap_ide_db-0.0.266", + sha256 = "c74386061453edc3ebfd52141c7c3cde109a7427faff9792a303c3c09a762a01", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_intern/0.0.258/download"], - strip_prefix = "ra_ap_intern-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_intern-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_ide_db/0.0.266/download"], + strip_prefix = "ra_ap_ide_db-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_ide_db-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_limit-0.0.258", - sha256 = "90d8a2aecbd488cf79b430bd5abe6650da44ae58b31cd6052c909dbd3f5d5926", + name = "vendor_ts__ra_ap_intern-0.0.266", + sha256 = "8239ffde688b558a4335f03d14fa42dcebb203f452367830554b18e17ff1c683", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_limit/0.0.258/download"], - strip_prefix = "ra_ap_limit-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_limit-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_intern/0.0.266/download"], + strip_prefix = "ra_ap_intern-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_intern-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_load-cargo-0.0.258", - sha256 = "6e2372aadd32e85460de595891c8b3562126166bc94fdc24508d6784c9d93357", + name = "vendor_ts__ra_ap_load-cargo-0.0.266", + sha256 = "01dd50ca287042b06ca3cc62b60e6891bacee3886d39381d26f9f966e509b1c7", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_load-cargo/0.0.258/download"], - strip_prefix = "ra_ap_load-cargo-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_load-cargo-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_load-cargo/0.0.266/download"], + strip_prefix = "ra_ap_load-cargo-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_load-cargo-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_mbe-0.0.258", - sha256 = "bf69ba82adb6e436617ecd09c0ff58006f376060dff437eb9fd383c2983f6d01", + name = "vendor_ts__ra_ap_mbe-0.0.266", + sha256 = "c193592a0d1dcd315cf8c60f25d37a15c6b50c2b58bfbc6eac38b123e45c8c21", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_mbe/0.0.258/download"], - strip_prefix = "ra_ap_mbe-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_mbe-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_mbe/0.0.266/download"], + strip_prefix = "ra_ap_mbe-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_mbe-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_parser-0.0.258", - sha256 = "8f499b6c33a588d60ed9722d057954a21ec01913b97a5693ff40ba4828ffa7b9", + name = "vendor_ts__ra_ap_parser-0.0.266", + sha256 = "b380f96951dd56b8231eeb47884fea12c57b8515ac748eedd590b26cd156681c", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_parser/0.0.258/download"], - strip_prefix = "ra_ap_parser-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_parser-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_parser/0.0.266/download"], + strip_prefix = "ra_ap_parser-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_parser-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_paths-0.0.258", - sha256 = "b5a16df131fa641a4af4d9488152b7b332a6a30e93bc655fdbe88f555ba28825", + name = "vendor_ts__ra_ap_paths-0.0.266", + sha256 = "0801105582f532bc59a2b5714a30966c4cf9bd3e5b66f4161763c1d974d2c7d5", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_paths/0.0.258/download"], - strip_prefix = "ra_ap_paths-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_paths-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_paths/0.0.266/download"], + strip_prefix = "ra_ap_paths-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_paths-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_proc_macro_api-0.0.258", - sha256 = "3480e0d07197ebcc2db5836b0c39625e07b0d77c6471a2a748e5bdf54ce556e3", + name = "vendor_ts__ra_ap_proc_macro_api-0.0.266", + sha256 = "da377b243e376b82819f875c1c6624125d27b682a740bd4cafc30b4f496d0ffa", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_proc_macro_api/0.0.258/download"], - strip_prefix = "ra_ap_proc_macro_api-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_proc_macro_api-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_proc_macro_api/0.0.266/download"], + strip_prefix = "ra_ap_proc_macro_api-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_proc_macro_api-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_profile-0.0.258", - sha256 = "95b707dd9c92139030587d81b3333428f48af8f4728330ed12101ab0bb431d72", + name = "vendor_ts__ra_ap_profile-0.0.266", + sha256 = "4d6d1391bee4f86e56385438a2dcb739cbb96bd0fbf49799a492332d57e6db62", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_profile/0.0.258/download"], - strip_prefix = "ra_ap_profile-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_profile-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_profile/0.0.266/download"], + strip_prefix = "ra_ap_profile-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_profile-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_project_model-0.0.258", - sha256 = "551a0de5a16f0538fbaf401a319d81d1a034f7aa014e46ac87c5bd74229a211b", + name = "vendor_ts__ra_ap_project_model-0.0.266", + sha256 = "e8b1ac2712d5f6a20197b360890031e64b4ea097b511f50e2cb8ab1a0e24f577", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_project_model/0.0.258/download"], - strip_prefix = "ra_ap_project_model-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_project_model-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_project_model/0.0.266/download"], + strip_prefix = "ra_ap_project_model-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_project_model-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_salsa-0.0.258", - sha256 = "6ec0c82d9e5affbf7d582750b301d279589787a5ac729f95756f5a0b0bf2b4a4", + name = "vendor_ts__ra_ap_salsa-0.0.266", + sha256 = "bc3a0a272f50e2ab831452bd3f4e7f8a571ccf01282d76f4a078f661135ed0ce", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_salsa/0.0.258/download"], - strip_prefix = "ra_ap_salsa-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_salsa-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_salsa/0.0.266/download"], + strip_prefix = "ra_ap_salsa-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_salsa-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_salsa-macros-0.0.258", - sha256 = "8440192eb549dda1cdefc95eaa1fc42ad13cfbd303add757517d77c81e7dc2e1", + name = "vendor_ts__ra_ap_salsa-macros-0.0.266", + sha256 = "d5d59b47a54fd5468ce0dc03b146afd0932ae0f3d05a5c15ca78d29d5e85bc31", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_salsa-macros/0.0.258/download"], - strip_prefix = "ra_ap_salsa-macros-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_salsa-macros-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_salsa-macros/0.0.266/download"], + strip_prefix = "ra_ap_salsa-macros-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_salsa-macros-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_span-0.0.258", - sha256 = "18690685d10da2577d7821d46c0de5a884bf1755e59635cbb1a795451e2a4acc", + name = "vendor_ts__ra_ap_span-0.0.266", + sha256 = "f10dbdd611d2546be7c400934007865e85bb37570566c715edb3aac76367a782", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_span/0.0.258/download"], - strip_prefix = "ra_ap_span-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_span-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_span/0.0.266/download"], + strip_prefix = "ra_ap_span-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_span-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_stdx-0.0.258", - sha256 = "4016934faae8413b4ad3f1bf063c7ffccdcfdf3f67ff32f4a79a197a3c1cb0da", + name = "vendor_ts__ra_ap_stdx-0.0.266", + sha256 = "b7d5c58fcda9b35d61e23f334b2b11221abf53e7f5e4344fc7eb1de18b2cbf68", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_stdx/0.0.258/download"], - strip_prefix = "ra_ap_stdx-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_stdx-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_stdx/0.0.266/download"], + strip_prefix = "ra_ap_stdx-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_stdx-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_syntax-0.0.258", - sha256 = "e8e381d21d166d12b11906171f82382473d60abfead0c4acc6d7d07150f87f73", + name = "vendor_ts__ra_ap_syntax-0.0.266", + sha256 = "75334f45a8095223823ef1d2789c085460b7b9368c63a6430d46f6f2b9bd5cb5", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_syntax/0.0.258/download"], - strip_prefix = "ra_ap_syntax-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_syntax-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_syntax/0.0.266/download"], + strip_prefix = "ra_ap_syntax-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_syntax-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_syntax-bridge-0.0.258", - sha256 = "65f1960218acd2ed8e486e7bd24f80a7eb89591906c6b0831296b2a75c556b2f", + name = "vendor_ts__ra_ap_syntax-bridge-0.0.266", + sha256 = "b331a50f90ae587d230b1b55b3852ebf67ab740dec33c1a4b0900005037e77c2", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_syntax-bridge/0.0.258/download"], - strip_prefix = "ra_ap_syntax-bridge-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_syntax-bridge-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_syntax-bridge/0.0.266/download"], + strip_prefix = "ra_ap_syntax-bridge-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_syntax-bridge-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_toolchain-0.0.258", - sha256 = "c9195f69ff02f076f5a726c7fbafa2b4639d00235906cb44e52ca75cd8b33c30", + name = "vendor_ts__ra_ap_toolchain-0.0.266", + sha256 = "8d56e1b3a34eac0448e54afccf63a6b7699ef14a734b2f1b340246ccdd00c0d3", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_toolchain/0.0.258/download"], - strip_prefix = "ra_ap_toolchain-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_toolchain-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_toolchain/0.0.266/download"], + strip_prefix = "ra_ap_toolchain-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_toolchain-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_tt-0.0.258", - sha256 = "8ac261d79d3ec475a1f3b2a758d3e466f2b9d7d883fb72239b06979bf6880018", + name = "vendor_ts__ra_ap_tt-0.0.266", + sha256 = "4b974b1211e0b1e17e44b1f256ca1b4a3734d4d98f43ba09ee0a8476fc3a5b83", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_tt/0.0.258/download"], - strip_prefix = "ra_ap_tt-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_tt-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_tt/0.0.266/download"], + strip_prefix = "ra_ap_tt-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_tt-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_vfs-0.0.258", - sha256 = "ee35a171beccbb01b4ede1d9ad91dee487a3742d7cc39efd7aed6961027cbe78", + name = "vendor_ts__ra_ap_vfs-0.0.266", + sha256 = "2b004e20f901dae213cb1673111a2b56fec4f0d1c4c894b62668a0f69ce25065", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_vfs/0.0.258/download"], - strip_prefix = "ra_ap_vfs-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_vfs-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_vfs/0.0.266/download"], + strip_prefix = "ra_ap_vfs-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_vfs-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__ra_ap_vfs-notify-0.0.258", - sha256 = "b234b7651eb5d61f18d4f4643590bb8b1fd59ef766a1059741c09c540ec8cd86", + name = "vendor_ts__ra_ap_vfs-notify-0.0.266", + sha256 = "95f9e8df03407d76e044f99ef45fafd686d775508aa7d1ba836e9eca58b833a3", type = "tar.gz", - urls = ["https://static.crates.io/crates/ra_ap_vfs-notify/0.0.258/download"], - strip_prefix = "ra_ap_vfs-notify-0.0.258", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_vfs-notify-0.0.258.bazel"), + urls = ["https://static.crates.io/crates/ra_ap_vfs-notify/0.0.266/download"], + strip_prefix = "ra_ap_vfs-notify-0.0.266", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ra_ap_vfs-notify-0.0.266.bazel"), ) maybe( http_archive, - name = "vendor__rand-0.8.5", - sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", + name = "vendor_ts__rand-0.9.0", + sha256 = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94", type = "tar.gz", - urls = ["https://static.crates.io/crates/rand/0.8.5/download"], - strip_prefix = "rand-0.8.5", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rand-0.8.5.bazel"), + urls = ["https://static.crates.io/crates/rand/0.9.0/download"], + strip_prefix = "rand-0.9.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rand-0.9.0.bazel"), ) maybe( http_archive, - name = "vendor__rand_chacha-0.3.1", - sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", + name = "vendor_ts__rand_chacha-0.9.0", + sha256 = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb", type = "tar.gz", - urls = ["https://static.crates.io/crates/rand_chacha/0.3.1/download"], - strip_prefix = "rand_chacha-0.3.1", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rand_chacha-0.3.1.bazel"), + urls = ["https://static.crates.io/crates/rand_chacha/0.9.0/download"], + strip_prefix = "rand_chacha-0.9.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rand_chacha-0.9.0.bazel"), ) maybe( http_archive, - name = "vendor__rand_core-0.6.4", - sha256 = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", + name = "vendor_ts__rand_core-0.9.2", + sha256 = "7a509b1a2ffbe92afab0e55c8fd99dea1c280e8171bd2d88682bb20bc41cbc2c", type = "tar.gz", - urls = ["https://static.crates.io/crates/rand_core/0.6.4/download"], - strip_prefix = "rand_core-0.6.4", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rand_core-0.6.4.bazel"), + urls = ["https://static.crates.io/crates/rand_core/0.9.2/download"], + strip_prefix = "rand_core-0.9.2", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rand_core-0.9.2.bazel"), ) maybe( http_archive, - name = "vendor__rayon-1.10.0", + name = "vendor_ts__rayon-1.10.0", sha256 = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa", type = "tar.gz", urls = ["https://static.crates.io/crates/rayon/1.10.0/download"], @@ -2395,7 +2416,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__rayon-core-1.12.1", + name = "vendor_ts__rayon-core-1.12.1", sha256 = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2", type = "tar.gz", urls = ["https://static.crates.io/crates/rayon-core/1.12.1/download"], @@ -2405,7 +2426,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__redox_syscall-0.5.8", + name = "vendor_ts__redox_syscall-0.5.8", sha256 = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834", type = "tar.gz", urls = ["https://static.crates.io/crates/redox_syscall/0.5.8/download"], @@ -2415,7 +2436,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__regex-1.11.1", + name = "vendor_ts__regex-1.11.1", sha256 = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191", type = "tar.gz", urls = ["https://static.crates.io/crates/regex/1.11.1/download"], @@ -2425,7 +2446,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__regex-automata-0.1.10", + name = "vendor_ts__regex-automata-0.1.10", sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-automata/0.1.10/download"], @@ -2435,7 +2456,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__regex-automata-0.4.9", + name = "vendor_ts__regex-automata-0.4.9", sha256 = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-automata/0.4.9/download"], @@ -2445,7 +2466,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__regex-syntax-0.6.29", + name = "vendor_ts__regex-syntax-0.6.29", sha256 = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-syntax/0.6.29/download"], @@ -2455,7 +2476,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__regex-syntax-0.8.5", + name = "vendor_ts__regex-syntax-0.8.5", sha256 = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-syntax/0.8.5/download"], @@ -2465,7 +2486,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__rowan-0.15.15", + name = "vendor_ts__rowan-0.15.15", sha256 = "32a58fa8a7ccff2aec4f39cc45bf5f985cec7125ab271cf681c279fd00192b49", type = "tar.gz", urls = ["https://static.crates.io/crates/rowan/0.15.15/download"], @@ -2475,7 +2496,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__rustc-hash-1.1.0", + name = "vendor_ts__rustc-hash-1.1.0", sha256 = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2", type = "tar.gz", urls = ["https://static.crates.io/crates/rustc-hash/1.1.0/download"], @@ -2485,17 +2506,27 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__rustc-hash-2.1.0", - sha256 = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497", + name = "vendor_ts__rustc-hash-2.1.1", + sha256 = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d", + type = "tar.gz", + urls = ["https://static.crates.io/crates/rustc-hash/2.1.1/download"], + strip_prefix = "rustc-hash-2.1.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rustc-hash-2.1.1.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__rustc-stable-hash-0.1.1", + sha256 = "2febf9acc5ee5e99d1ad0afcdbccc02d87aa3f857a1f01f825b80eacf8edfcd1", type = "tar.gz", - urls = ["https://static.crates.io/crates/rustc-hash/2.1.0/download"], - strip_prefix = "rustc-hash-2.1.0", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rustc-hash-2.1.0.bazel"), + urls = ["https://static.crates.io/crates/rustc-stable-hash/0.1.1/download"], + strip_prefix = "rustc-stable-hash-0.1.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rustc-stable-hash-0.1.1.bazel"), ) maybe( new_git_repository, - name = "vendor__rustc_apfloat-0.2.1-llvm-462a31f5a5ab", + name = "vendor_ts__rustc_apfloat-0.2.1-llvm-462a31f5a5ab", commit = "096d585100636bc2e9f09d7eefec38c5b334d47b", init_submodules = True, remote = "https://github.com/redsun82/rustc_apfloat.git", @@ -2504,17 +2535,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__ryu-1.0.18", - sha256 = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f", + name = "vendor_ts__ryu-1.0.19", + sha256 = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd", type = "tar.gz", - urls = ["https://static.crates.io/crates/ryu/1.0.18/download"], - strip_prefix = "ryu-1.0.18", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ryu-1.0.18.bazel"), + urls = ["https://static.crates.io/crates/ryu/1.0.19/download"], + strip_prefix = "ryu-1.0.19", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ryu-1.0.19.bazel"), ) maybe( http_archive, - name = "vendor__same-file-1.0.6", + name = "vendor_ts__same-file-1.0.6", sha256 = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502", type = "tar.gz", urls = ["https://static.crates.io/crates/same-file/1.0.6/download"], @@ -2524,7 +2555,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__scoped-tls-1.0.1", + name = "vendor_ts__scoped-tls-1.0.1", sha256 = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294", type = "tar.gz", urls = ["https://static.crates.io/crates/scoped-tls/1.0.1/download"], @@ -2534,7 +2565,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__scopeguard-1.2.0", + name = "vendor_ts__scopeguard-1.2.0", sha256 = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49", type = "tar.gz", urls = ["https://static.crates.io/crates/scopeguard/1.2.0/download"], @@ -2544,7 +2575,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__semver-1.0.24", + name = "vendor_ts__semver-1.0.24", sha256 = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba", type = "tar.gz", urls = ["https://static.crates.io/crates/semver/1.0.24/download"], @@ -2554,37 +2585,37 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__serde-1.0.217", - sha256 = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70", + name = "vendor_ts__serde-1.0.218", + sha256 = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60", type = "tar.gz", - urls = ["https://static.crates.io/crates/serde/1.0.217/download"], - strip_prefix = "serde-1.0.217", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde-1.0.217.bazel"), + urls = ["https://static.crates.io/crates/serde/1.0.218/download"], + strip_prefix = "serde-1.0.218", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde-1.0.218.bazel"), ) maybe( http_archive, - name = "vendor__serde_derive-1.0.217", - sha256 = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0", + name = "vendor_ts__serde_derive-1.0.218", + sha256 = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b", type = "tar.gz", - urls = ["https://static.crates.io/crates/serde_derive/1.0.217/download"], - strip_prefix = "serde_derive-1.0.217", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_derive-1.0.217.bazel"), + urls = ["https://static.crates.io/crates/serde_derive/1.0.218/download"], + strip_prefix = "serde_derive-1.0.218", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_derive-1.0.218.bazel"), ) maybe( http_archive, - name = "vendor__serde_json-1.0.135", - sha256 = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9", + name = "vendor_ts__serde_json-1.0.139", + sha256 = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6", type = "tar.gz", - urls = ["https://static.crates.io/crates/serde_json/1.0.135/download"], - strip_prefix = "serde_json-1.0.135", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_json-1.0.135.bazel"), + urls = ["https://static.crates.io/crates/serde_json/1.0.139/download"], + strip_prefix = "serde_json-1.0.139", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.serde_json-1.0.139.bazel"), ) maybe( http_archive, - name = "vendor__serde_spanned-0.6.8", + name = "vendor_ts__serde_spanned-0.6.8", sha256 = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_spanned/0.6.8/download"], @@ -2594,7 +2625,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__serde_with-3.12.0", + name = "vendor_ts__serde_with-3.12.0", sha256 = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_with/3.12.0/download"], @@ -2604,7 +2635,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__serde_with_macros-3.12.0", + name = "vendor_ts__serde_with_macros-3.12.0", sha256 = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_with_macros/3.12.0/download"], @@ -2614,7 +2645,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__serde_yaml-0.9.34-deprecated", + name = "vendor_ts__serde_yaml-0.9.34-deprecated", sha256 = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_yaml/0.9.34+deprecated/download"], @@ -2624,7 +2655,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__sharded-slab-0.1.7", + name = "vendor_ts__sharded-slab-0.1.7", sha256 = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6", type = "tar.gz", urls = ["https://static.crates.io/crates/sharded-slab/0.1.7/download"], @@ -2634,7 +2665,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__shlex-1.3.0", + name = "vendor_ts__shlex-1.3.0", sha256 = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64", type = "tar.gz", urls = ["https://static.crates.io/crates/shlex/1.3.0/download"], @@ -2644,17 +2675,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__smallvec-1.13.2", - sha256 = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67", + name = "vendor_ts__smallvec-1.14.0", + sha256 = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd", type = "tar.gz", - urls = ["https://static.crates.io/crates/smallvec/1.13.2/download"], - strip_prefix = "smallvec-1.13.2", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.smallvec-1.13.2.bazel"), + urls = ["https://static.crates.io/crates/smallvec/1.14.0/download"], + strip_prefix = "smallvec-1.14.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.smallvec-1.14.0.bazel"), ) maybe( http_archive, - name = "vendor__smol_str-0.3.2", + name = "vendor_ts__smol_str-0.3.2", sha256 = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d", type = "tar.gz", urls = ["https://static.crates.io/crates/smol_str/0.3.2/download"], @@ -2664,17 +2695,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__sptr-0.3.2", - sha256 = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a", - type = "tar.gz", - urls = ["https://static.crates.io/crates/sptr/0.3.2/download"], - strip_prefix = "sptr-0.3.2", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.sptr-0.3.2.bazel"), - ) - - maybe( - http_archive, - name = "vendor__stable_deref_trait-1.2.0", + name = "vendor_ts__stable_deref_trait-1.2.0", sha256 = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3", type = "tar.gz", urls = ["https://static.crates.io/crates/stable_deref_trait/1.2.0/download"], @@ -2684,7 +2705,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__streaming-iterator-0.1.9", + name = "vendor_ts__streaming-iterator-0.1.9", sha256 = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520", type = "tar.gz", urls = ["https://static.crates.io/crates/streaming-iterator/0.1.9/download"], @@ -2694,7 +2715,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__strsim-0.11.1", + name = "vendor_ts__strsim-0.11.1", sha256 = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f", type = "tar.gz", urls = ["https://static.crates.io/crates/strsim/0.11.1/download"], @@ -2704,17 +2725,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__syn-2.0.96", - sha256 = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80", + name = "vendor_ts__syn-2.0.98", + sha256 = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1", type = "tar.gz", - urls = ["https://static.crates.io/crates/syn/2.0.96/download"], - strip_prefix = "syn-2.0.96", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.syn-2.0.96.bazel"), + urls = ["https://static.crates.io/crates/syn/2.0.98/download"], + strip_prefix = "syn-2.0.98", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.syn-2.0.98.bazel"), ) maybe( http_archive, - name = "vendor__synstructure-0.13.1", + name = "vendor_ts__synstructure-0.13.1", sha256 = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971", type = "tar.gz", urls = ["https://static.crates.io/crates/synstructure/0.13.1/download"], @@ -2724,7 +2745,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__text-size-1.1.1", + name = "vendor_ts__text-size-1.1.1", sha256 = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233", type = "tar.gz", urls = ["https://static.crates.io/crates/text-size/1.1.1/download"], @@ -2734,7 +2755,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__thiserror-1.0.69", + name = "vendor_ts__thiserror-1.0.69", sha256 = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52", type = "tar.gz", urls = ["https://static.crates.io/crates/thiserror/1.0.69/download"], @@ -2744,7 +2765,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__thiserror-impl-1.0.69", + name = "vendor_ts__thiserror-impl-1.0.69", sha256 = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1", type = "tar.gz", urls = ["https://static.crates.io/crates/thiserror-impl/1.0.69/download"], @@ -2754,7 +2775,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__thread_local-1.1.8", + name = "vendor_ts__thread_local-1.1.8", sha256 = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c", type = "tar.gz", urls = ["https://static.crates.io/crates/thread_local/1.1.8/download"], @@ -2764,7 +2785,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__time-0.3.37", + name = "vendor_ts__time-0.3.37", sha256 = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21", type = "tar.gz", urls = ["https://static.crates.io/crates/time/0.3.37/download"], @@ -2774,7 +2795,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__time-core-0.1.2", + name = "vendor_ts__time-core-0.1.2", sha256 = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3", type = "tar.gz", urls = ["https://static.crates.io/crates/time-core/0.1.2/download"], @@ -2784,7 +2805,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__time-macros-0.2.19", + name = "vendor_ts__time-macros-0.2.19", sha256 = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de", type = "tar.gz", urls = ["https://static.crates.io/crates/time-macros/0.2.19/download"], @@ -2794,17 +2815,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__toml-0.8.19", - sha256 = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e", + name = "vendor_ts__toml-0.8.20", + sha256 = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148", type = "tar.gz", - urls = ["https://static.crates.io/crates/toml/0.8.19/download"], - strip_prefix = "toml-0.8.19", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml-0.8.19.bazel"), + urls = ["https://static.crates.io/crates/toml/0.8.20/download"], + strip_prefix = "toml-0.8.20", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml-0.8.20.bazel"), ) maybe( http_archive, - name = "vendor__toml_datetime-0.6.8", + name = "vendor_ts__toml_datetime-0.6.8", sha256 = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41", type = "tar.gz", urls = ["https://static.crates.io/crates/toml_datetime/0.6.8/download"], @@ -2814,17 +2835,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__toml_edit-0.22.22", - sha256 = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5", + name = "vendor_ts__toml_edit-0.22.24", + sha256 = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474", type = "tar.gz", - urls = ["https://static.crates.io/crates/toml_edit/0.22.22/download"], - strip_prefix = "toml_edit-0.22.22", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_edit-0.22.22.bazel"), + urls = ["https://static.crates.io/crates/toml_edit/0.22.24/download"], + strip_prefix = "toml_edit-0.22.24", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_edit-0.22.24.bazel"), ) maybe( http_archive, - name = "vendor__tracing-0.1.41", + name = "vendor_ts__tracing-0.1.41", sha256 = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0", type = "tar.gz", urls = ["https://static.crates.io/crates/tracing/0.1.41/download"], @@ -2834,7 +2855,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tracing-attributes-0.1.28", + name = "vendor_ts__tracing-attributes-0.1.28", sha256 = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d", type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-attributes/0.1.28/download"], @@ -2844,7 +2865,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tracing-core-0.1.33", + name = "vendor_ts__tracing-core-0.1.33", sha256 = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c", type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-core/0.1.33/download"], @@ -2854,7 +2875,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tracing-flame-0.2.0", + name = "vendor_ts__tracing-flame-0.2.0", sha256 = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9", type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-flame/0.2.0/download"], @@ -2864,7 +2885,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tracing-log-0.2.0", + name = "vendor_ts__tracing-log-0.2.0", sha256 = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3", type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-log/0.2.0/download"], @@ -2874,7 +2895,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tracing-subscriber-0.3.19", + name = "vendor_ts__tracing-subscriber-0.3.19", sha256 = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008", type = "tar.gz", urls = ["https://static.crates.io/crates/tracing-subscriber/0.3.19/download"], @@ -2884,7 +2905,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tree-sitter-0.24.6", + name = "vendor_ts__tree-sitter-0.24.6", sha256 = "5f2434c86ba59ed15af56039cc5bf1acf8ba76ce301e32ef08827388ef285ec5", type = "tar.gz", urls = ["https://static.crates.io/crates/tree-sitter/0.24.6/download"], @@ -2894,7 +2915,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tree-sitter-embedded-template-0.23.2", + name = "vendor_ts__tree-sitter-embedded-template-0.23.2", sha256 = "790063ef14e5b67556abc0b3be0ed863fb41d65ee791cf8c0b20eb42a1fa46af", type = "tar.gz", urls = ["https://static.crates.io/crates/tree-sitter-embedded-template/0.23.2/download"], @@ -2904,7 +2925,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tree-sitter-json-0.24.8", + name = "vendor_ts__tree-sitter-json-0.24.8", sha256 = "4d727acca406c0020cffc6cf35516764f36c8e3dc4408e5ebe2cb35a947ec471", type = "tar.gz", urls = ["https://static.crates.io/crates/tree-sitter-json/0.24.8/download"], @@ -2914,7 +2935,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tree-sitter-language-0.1.3", + name = "vendor_ts__tree-sitter-language-0.1.3", sha256 = "c199356c799a8945965bb5f2c55b2ad9d9aa7c4b4f6e587fe9dea0bc715e5f9c", type = "tar.gz", urls = ["https://static.crates.io/crates/tree-sitter-language/0.1.3/download"], @@ -2924,7 +2945,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tree-sitter-ql-0.23.1", + name = "vendor_ts__tree-sitter-ql-0.23.1", sha256 = "80b7bcaf39acefbb199417a6ec2fd0c038083ba115da3e4f4426c820dc76d386", type = "tar.gz", urls = ["https://static.crates.io/crates/tree-sitter-ql/0.23.1/download"], @@ -2934,7 +2955,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__tree-sitter-ruby-0.23.1", + name = "vendor_ts__tree-sitter-ruby-0.23.1", sha256 = "be0484ea4ef6bb9c575b4fdabde7e31340a8d2dbc7d52b321ac83da703249f95", type = "tar.gz", urls = ["https://static.crates.io/crates/tree-sitter-ruby/0.23.1/download"], @@ -2944,7 +2965,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__triomphe-0.1.14", + name = "vendor_ts__triomphe-0.1.14", sha256 = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85", type = "tar.gz", urls = ["https://static.crates.io/crates/triomphe/0.1.14/download"], @@ -2954,7 +2975,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__typed-arena-2.0.2", + name = "vendor_ts__typed-arena-2.0.2", sha256 = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a", type = "tar.gz", urls = ["https://static.crates.io/crates/typed-arena/2.0.2/download"], @@ -2964,7 +2985,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__uncased-0.9.10", + name = "vendor_ts__uncased-0.9.10", sha256 = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697", type = "tar.gz", urls = ["https://static.crates.io/crates/uncased/0.9.10/download"], @@ -2974,7 +2995,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__ungrammar-1.16.1", + name = "vendor_ts__ungrammar-1.16.1", sha256 = "a3e5df347f0bf3ec1d670aad6ca5c6a1859cd9ea61d2113125794654ccced68f", type = "tar.gz", urls = ["https://static.crates.io/crates/ungrammar/1.16.1/download"], @@ -2984,17 +3005,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__unicode-ident-1.0.14", - sha256 = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83", + name = "vendor_ts__unicode-ident-1.0.16", + sha256 = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034", type = "tar.gz", - urls = ["https://static.crates.io/crates/unicode-ident/1.0.14/download"], - strip_prefix = "unicode-ident-1.0.14", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.unicode-ident-1.0.14.bazel"), + urls = ["https://static.crates.io/crates/unicode-ident/1.0.16/download"], + strip_prefix = "unicode-ident-1.0.16", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.unicode-ident-1.0.16.bazel"), ) maybe( http_archive, - name = "vendor__unicode-properties-0.1.3", + name = "vendor_ts__unicode-properties-0.1.3", sha256 = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-properties/0.1.3/download"], @@ -3004,7 +3025,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__unicode-xid-0.2.6", + name = "vendor_ts__unicode-xid-0.2.6", sha256 = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-xid/0.2.6/download"], @@ -3014,7 +3035,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__unsafe-libyaml-0.2.11", + name = "vendor_ts__unsafe-libyaml-0.2.11", sha256 = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861", type = "tar.gz", urls = ["https://static.crates.io/crates/unsafe-libyaml/0.2.11/download"], @@ -3024,7 +3045,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__utf8parse-0.2.2", + name = "vendor_ts__utf8parse-0.2.2", sha256 = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821", type = "tar.gz", urls = ["https://static.crates.io/crates/utf8parse/0.2.2/download"], @@ -3034,7 +3055,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__valuable-0.1.0", + name = "vendor_ts__valuable-0.1.0", sha256 = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d", type = "tar.gz", urls = ["https://static.crates.io/crates/valuable/0.1.0/download"], @@ -3044,7 +3065,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__version_check-0.9.5", + name = "vendor_ts__version_check-0.9.5", sha256 = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a", type = "tar.gz", urls = ["https://static.crates.io/crates/version_check/0.9.5/download"], @@ -3054,7 +3075,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__walkdir-2.5.0", + name = "vendor_ts__walkdir-2.5.0", sha256 = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b", type = "tar.gz", urls = ["https://static.crates.io/crates/walkdir/2.5.0/download"], @@ -3064,7 +3085,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__wasi-0.11.0-wasi-snapshot-preview1", + name = "vendor_ts__wasi-0.11.0-wasi-snapshot-preview1", sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", type = "tar.gz", urls = ["https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download"], @@ -3074,7 +3095,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__wasm-bindgen-0.2.99", + name = "vendor_ts__wasi-0.13.3-wasi-0.2.2", + sha256 = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2", + type = "tar.gz", + urls = ["https://static.crates.io/crates/wasi/0.13.3+wasi-0.2.2/download"], + strip_prefix = "wasi-0.13.3+wasi-0.2.2", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.wasi-0.13.3+wasi-0.2.2.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__wasm-bindgen-0.2.99", sha256 = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen/0.2.99/download"], @@ -3084,7 +3115,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__wasm-bindgen-backend-0.2.99", + name = "vendor_ts__wasm-bindgen-backend-0.2.99", sha256 = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-backend/0.2.99/download"], @@ -3094,7 +3125,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__wasm-bindgen-macro-0.2.99", + name = "vendor_ts__wasm-bindgen-macro-0.2.99", sha256 = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-macro/0.2.99/download"], @@ -3104,7 +3135,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__wasm-bindgen-macro-support-0.2.99", + name = "vendor_ts__wasm-bindgen-macro-support-0.2.99", sha256 = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.99/download"], @@ -3114,7 +3145,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__wasm-bindgen-shared-0.2.99", + name = "vendor_ts__wasm-bindgen-shared-0.2.99", sha256 = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-shared/0.2.99/download"], @@ -3124,7 +3155,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__winapi-0.3.9", + name = "vendor_ts__winapi-0.3.9", sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi/0.3.9/download"], @@ -3134,7 +3165,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__winapi-i686-pc-windows-gnu-0.4.0", + name = "vendor_ts__winapi-i686-pc-windows-gnu-0.4.0", sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download"], @@ -3144,7 +3175,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__winapi-util-0.1.9", + name = "vendor_ts__winapi-util-0.1.9", sha256 = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-util/0.1.9/download"], @@ -3154,7 +3185,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__winapi-x86_64-pc-windows-gnu-0.4.0", + name = "vendor_ts__winapi-x86_64-pc-windows-gnu-0.4.0", sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download"], @@ -3164,7 +3195,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows-core-0.52.0", + name = "vendor_ts__windows-core-0.52.0", sha256 = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-core/0.52.0/download"], @@ -3174,7 +3205,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows-sys-0.48.0", + name = "vendor_ts__windows-sys-0.48.0", sha256 = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.48.0/download"], @@ -3184,7 +3215,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows-sys-0.52.0", + name = "vendor_ts__windows-sys-0.52.0", sha256 = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.52.0/download"], @@ -3194,7 +3225,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows-sys-0.59.0", + name = "vendor_ts__windows-sys-0.59.0", sha256 = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.59.0/download"], @@ -3204,7 +3235,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows-targets-0.48.5", + name = "vendor_ts__windows-targets-0.48.5", sha256 = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.48.5/download"], @@ -3214,7 +3245,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows-targets-0.52.6", + name = "vendor_ts__windows-targets-0.52.6", sha256 = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.52.6/download"], @@ -3224,7 +3255,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_aarch64_gnullvm-0.48.5", + name = "vendor_ts__windows_aarch64_gnullvm-0.48.5", sha256 = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download"], @@ -3234,7 +3265,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_aarch64_gnullvm-0.52.6", + name = "vendor_ts__windows_aarch64_gnullvm-0.52.6", sha256 = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download"], @@ -3244,7 +3275,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_aarch64_msvc-0.48.5", + name = "vendor_ts__windows_aarch64_msvc-0.48.5", sha256 = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download"], @@ -3254,7 +3285,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_aarch64_msvc-0.52.6", + name = "vendor_ts__windows_aarch64_msvc-0.52.6", sha256 = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download"], @@ -3264,7 +3295,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_i686_gnu-0.48.5", + name = "vendor_ts__windows_i686_gnu-0.48.5", sha256 = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.48.5/download"], @@ -3274,7 +3305,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_i686_gnu-0.52.6", + name = "vendor_ts__windows_i686_gnu-0.52.6", sha256 = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.52.6/download"], @@ -3284,7 +3315,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_i686_gnullvm-0.52.6", + name = "vendor_ts__windows_i686_gnullvm-0.52.6", sha256 = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download"], @@ -3294,7 +3325,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_i686_msvc-0.48.5", + name = "vendor_ts__windows_i686_msvc-0.48.5", sha256 = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.48.5/download"], @@ -3304,7 +3335,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_i686_msvc-0.52.6", + name = "vendor_ts__windows_i686_msvc-0.52.6", sha256 = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.52.6/download"], @@ -3314,7 +3345,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_x86_64_gnu-0.48.5", + name = "vendor_ts__windows_x86_64_gnu-0.48.5", sha256 = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download"], @@ -3324,7 +3355,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_x86_64_gnu-0.52.6", + name = "vendor_ts__windows_x86_64_gnu-0.52.6", sha256 = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download"], @@ -3334,7 +3365,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_x86_64_gnullvm-0.48.5", + name = "vendor_ts__windows_x86_64_gnullvm-0.48.5", sha256 = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download"], @@ -3344,7 +3375,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_x86_64_gnullvm-0.52.6", + name = "vendor_ts__windows_x86_64_gnullvm-0.52.6", sha256 = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download"], @@ -3354,7 +3385,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_x86_64_msvc-0.48.5", + name = "vendor_ts__windows_x86_64_msvc-0.48.5", sha256 = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download"], @@ -3364,7 +3395,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__windows_x86_64_msvc-0.52.6", + name = "vendor_ts__windows_x86_64_msvc-0.52.6", sha256 = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download"], @@ -3374,17 +3405,27 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__winnow-0.6.24", - sha256 = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a", + name = "vendor_ts__winnow-0.7.3", + sha256 = "0e7f4ea97f6f78012141bcdb6a216b2609f0979ada50b20ca5b52dde2eac2bb1", type = "tar.gz", - urls = ["https://static.crates.io/crates/winnow/0.6.24/download"], - strip_prefix = "winnow-0.6.24", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.winnow-0.6.24.bazel"), + urls = ["https://static.crates.io/crates/winnow/0.7.3/download"], + strip_prefix = "winnow-0.7.3", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.winnow-0.7.3.bazel"), ) maybe( http_archive, - name = "vendor__yansi-1.0.1", + name = "vendor_ts__wit-bindgen-rt-0.33.0", + sha256 = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c", + type = "tar.gz", + urls = ["https://static.crates.io/crates/wit-bindgen-rt/0.33.0/download"], + strip_prefix = "wit-bindgen-rt-0.33.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.wit-bindgen-rt-0.33.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__yansi-1.0.1", sha256 = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049", type = "tar.gz", urls = ["https://static.crates.io/crates/yansi/1.0.1/download"], @@ -3394,7 +3435,7 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__zerocopy-0.7.35", + name = "vendor_ts__zerocopy-0.7.35", sha256 = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0", type = "tar.gz", urls = ["https://static.crates.io/crates/zerocopy/0.7.35/download"], @@ -3404,7 +3445,17 @@ def crate_repositories(): maybe( http_archive, - name = "vendor__zerocopy-derive-0.7.35", + name = "vendor_ts__zerocopy-0.8.20", + sha256 = "dde3bb8c68a8f3f1ed4ac9221aad6b10cece3e60a8e2ea54a6a2dec806d0084c", + type = "tar.gz", + urls = ["https://static.crates.io/crates/zerocopy/0.8.20/download"], + strip_prefix = "zerocopy-0.8.20", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.zerocopy-0.8.20.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__zerocopy-derive-0.7.35", sha256 = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e", type = "tar.gz", urls = ["https://static.crates.io/crates/zerocopy-derive/0.7.35/download"], @@ -3412,56 +3463,66 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.zerocopy-derive-0.7.35.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__zerocopy-derive-0.8.20", + sha256 = "eea57037071898bf96a6da35fd626f4f27e9cee3ead2a6c703cf09d472b2e700", + type = "tar.gz", + urls = ["https://static.crates.io/crates/zerocopy-derive/0.8.20/download"], + strip_prefix = "zerocopy-derive-0.8.20", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.zerocopy-derive-0.8.20.bazel"), + ) + return [ - 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__chrono-0.4.39", is_dev_dep = False), - struct(repo = "vendor__clap-4.5.26", 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__encoding-0.2.33", 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__glob-0.3.2", is_dev_dep = False), - struct(repo = "vendor__globset-0.4.15", is_dev_dep = False), - struct(repo = "vendor__itertools-0.14.0", is_dev_dep = False), - struct(repo = "vendor__lazy_static-1.5.0", is_dev_dep = False), - struct(repo = "vendor__mustache-0.9.0", 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__proc-macro2-1.0.93", is_dev_dep = False), - struct(repo = "vendor__quote-1.0.38", is_dev_dep = False), - struct(repo = "vendor__ra_ap_base_db-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_cfg-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_hir-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_hir_def-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_hir_expand-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_ide_db-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_intern-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_load-cargo-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_parser-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_paths-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_project_model-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_span-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_stdx-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_syntax-0.0.258", is_dev_dep = False), - struct(repo = "vendor__ra_ap_vfs-0.0.258", 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__serde-1.0.217", is_dev_dep = False), - struct(repo = "vendor__serde_json-1.0.135", is_dev_dep = False), - struct(repo = "vendor__serde_with-3.12.0", is_dev_dep = False), - struct(repo = "vendor__syn-2.0.96", is_dev_dep = False), - struct(repo = "vendor__toml-0.8.19", is_dev_dep = False), - struct(repo = "vendor__tracing-0.1.41", is_dev_dep = False), - struct(repo = "vendor__tracing-flame-0.2.0", is_dev_dep = False), - struct(repo = "vendor__tracing-subscriber-0.3.19", is_dev_dep = False), - struct(repo = "vendor__tree-sitter-0.24.6", is_dev_dep = False), - struct(repo = "vendor__tree-sitter-embedded-template-0.23.2", is_dev_dep = False), - struct(repo = "vendor__tree-sitter-ruby-0.23.1", is_dev_dep = False), - struct(repo = "vendor__triomphe-0.1.14", is_dev_dep = False), - struct(repo = "vendor__ungrammar-1.16.1", is_dev_dep = False), - struct(repo = "vendor__rand-0.8.5", is_dev_dep = True), - struct(repo = "vendor__tree-sitter-json-0.24.8", is_dev_dep = True), - struct(repo = "vendor__tree-sitter-ql-0.23.1", is_dev_dep = True), + struct(repo = "vendor_ts__anyhow-1.0.96", is_dev_dep = False), + struct(repo = "vendor_ts__argfile-0.2.1", is_dev_dep = False), + struct(repo = "vendor_ts__chrono-0.4.39", is_dev_dep = False), + struct(repo = "vendor_ts__clap-4.5.31", is_dev_dep = False), + struct(repo = "vendor_ts__dunce-1.0.5", is_dev_dep = False), + struct(repo = "vendor_ts__either-1.14.0", is_dev_dep = False), + struct(repo = "vendor_ts__encoding-0.2.33", is_dev_dep = False), + struct(repo = "vendor_ts__figment-0.10.19", is_dev_dep = False), + struct(repo = "vendor_ts__flate2-1.1.0", is_dev_dep = False), + struct(repo = "vendor_ts__glob-0.3.2", is_dev_dep = False), + struct(repo = "vendor_ts__globset-0.4.15", is_dev_dep = False), + struct(repo = "vendor_ts__itertools-0.14.0", is_dev_dep = False), + struct(repo = "vendor_ts__lazy_static-1.5.0", is_dev_dep = False), + struct(repo = "vendor_ts__mustache-0.9.0", is_dev_dep = False), + struct(repo = "vendor_ts__num-traits-0.2.19", is_dev_dep = False), + struct(repo = "vendor_ts__num_cpus-1.16.0", is_dev_dep = False), + struct(repo = "vendor_ts__proc-macro2-1.0.93", is_dev_dep = False), + struct(repo = "vendor_ts__quote-1.0.38", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_base_db-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_cfg-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_hir-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_hir_def-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_hir_expand-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_ide_db-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_intern-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_load-cargo-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_parser-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_paths-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_project_model-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_span-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_stdx-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_syntax-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__ra_ap_vfs-0.0.266", is_dev_dep = False), + struct(repo = "vendor_ts__rayon-1.10.0", is_dev_dep = False), + struct(repo = "vendor_ts__regex-1.11.1", is_dev_dep = False), + struct(repo = "vendor_ts__serde-1.0.218", is_dev_dep = False), + struct(repo = "vendor_ts__serde_json-1.0.139", is_dev_dep = False), + struct(repo = "vendor_ts__serde_with-3.12.0", is_dev_dep = False), + struct(repo = "vendor_ts__syn-2.0.98", is_dev_dep = False), + struct(repo = "vendor_ts__toml-0.8.20", is_dev_dep = False), + struct(repo = "vendor_ts__tracing-0.1.41", is_dev_dep = False), + struct(repo = "vendor_ts__tracing-flame-0.2.0", is_dev_dep = False), + struct(repo = "vendor_ts__tracing-subscriber-0.3.19", is_dev_dep = False), + struct(repo = "vendor_ts__tree-sitter-0.24.6", is_dev_dep = False), + struct(repo = "vendor_ts__tree-sitter-embedded-template-0.23.2", is_dev_dep = False), + struct(repo = "vendor_ts__tree-sitter-ruby-0.23.1", is_dev_dep = False), + struct(repo = "vendor_ts__triomphe-0.1.14", is_dev_dep = False), + struct(repo = "vendor_ts__ungrammar-1.16.1", is_dev_dep = False), + struct(repo = "vendor_ts__rand-0.9.0", is_dev_dep = True), + struct(repo = "vendor_ts__tree-sitter-json-0.24.8", is_dev_dep = True), + struct(repo = "vendor_ts__tree-sitter-ql-0.23.1", is_dev_dep = True), ] From cbae16b3928ad1770fa55ec06d69d5fb9534e4de Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:29:17 +0100 Subject: [PATCH 08/14] Rust: rerun code generation --- rust/extractor/src/generated/.generated.list | 2 +- rust/extractor/src/generated/top.rs | 4 ++++ rust/extractor/src/translate/generated.rs | 2 ++ rust/ql/.generated.list | 11 ++++++----- rust/ql/.gitattributes | 1 + rust/ql/lib/codeql/rust/elements/RecordField.qll | 1 + .../elements/internal/generated/ParentChild.qll | 11 ++++++++--- .../rust/elements/internal/generated/Raw.qll | 5 +++++ .../elements/internal/generated/RecordField.qll | 14 ++++++++++++++ rust/ql/lib/rust.dbscheme | 6 ++++++ .../generated/RecordField/RecordField.ql | 9 ++++++--- .../generated/RecordField/RecordField_getExpr.ql | 7 +++++++ rust/schema/ast.py | 1 + 13 files changed, 62 insertions(+), 12 deletions(-) create mode 100644 rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.ql diff --git a/rust/extractor/src/generated/.generated.list b/rust/extractor/src/generated/.generated.list index 6aaea33eac5c..528da1d56714 100644 --- a/rust/extractor/src/generated/.generated.list +++ b/rust/extractor/src/generated/.generated.list @@ -1,2 +1,2 @@ mod.rs 4bcb9def847469aae9d8649461546b7c21ec97cf6e63d3cf394e339915ce65d7 4bcb9def847469aae9d8649461546b7c21ec97cf6e63d3cf394e339915ce65d7 -top.rs 18702be33d768cc6f723201fce8c2bf2125df192c0336db9711a99f8fa7b074f 18702be33d768cc6f723201fce8c2bf2125df192c0336db9711a99f8fa7b074f +top.rs da0f43b99d3a173520048275597e2b052a7351f6fcb2ad5fc912257976742bb7 da0f43b99d3a173520048275597e2b052a7351f6fcb2ad5fc912257976742bb7 diff --git a/rust/extractor/src/generated/top.rs b/rust/extractor/src/generated/top.rs index fe5a9cd8ee38..2774193823aa 100644 --- a/rust/extractor/src/generated/top.rs +++ b/rust/extractor/src/generated/top.rs @@ -2185,6 +2185,7 @@ impl From> for trap::Label { pub struct RecordField { pub id: trap::TrapId, pub attrs: Vec>, + pub expr: Option>, pub name: Option>, pub type_repr: Option>, pub visibility: Option>, @@ -2200,6 +2201,9 @@ impl trap::TrapEntry for RecordField { for (i, v) in self.attrs.into_iter().enumerate() { out.add_tuple("record_field_attrs", vec![id.into(), i.into(), v.into()]); } + if let Some(v) = self.expr { + out.add_tuple("record_field_exprs", vec![id.into(), v.into()]); + } if let Some(v) = self.name { out.add_tuple("record_field_names", vec![id.into(), v.into()]); } diff --git a/rust/extractor/src/translate/generated.rs b/rust/extractor/src/translate/generated.rs index dc4828e078f9..249027eefa92 100644 --- a/rust/extractor/src/translate/generated.rs +++ b/rust/extractor/src/translate/generated.rs @@ -1849,12 +1849,14 @@ impl Translator<'_> { pub(crate) fn emit_record_field(&mut self, node: ast::RecordField) -> Option> { if self.should_be_excluded(&node) { return None; } let attrs = node.attrs().filter_map(|x| self.emit_attr(x)).collect(); + let expr = node.expr().and_then(|x| self.emit_expr(x)); let name = node.name().and_then(|x| self.emit_name(x)); let type_repr = node.ty().and_then(|x| self.emit_type(x)); let visibility = node.visibility().and_then(|x| self.emit_visibility(x)); let label = self.trap.emit(generated::RecordField { id: TrapId::Star, attrs, + expr, name, type_repr, visibility, diff --git a/rust/ql/.generated.list b/rust/ql/.generated.list index c8195b8a7664..6e7a2892a418 100644 --- a/rust/ql/.generated.list +++ b/rust/ql/.generated.list @@ -131,7 +131,7 @@ lib/codeql/rust/elements/RangePat.qll b5c0cfc84b8a767d58593fa7102dcf4be3ff8b02ba lib/codeql/rust/elements/RecordExpr.qll b8541a33ef408f2070103c1db8b6ec845bc6b1d8c810f5d8d208e5eeb9f86b30 a6d9602a64c9acf48f033f06fe7e1d86382512fd378ee3044f1126726847f696 lib/codeql/rust/elements/RecordExprField.qll edac04146849e2aeca27e7bbb896c21aa2e2b15736b1e8a06ac51ab01433b3ac 7c062bd6d5dd5b1d972450fb0b3272cd9b45f94ccd668c3bd4347e2dce3279ed lib/codeql/rust/elements/RecordExprFieldList.qll 672c3854cb84090c8a2e9311c43448016dc2614ecbf86dbe404156304674e38f 01ae0ffca0bf640c61120e36fcf2c560555f4aabbd49ddce6f5c1a3561dbfc31 -lib/codeql/rust/elements/RecordField.qll 87d68aa912574596ba09ecb3ab437472635cd76eff49cd5bef00eaabbd264f08 01871ee4dd9bd02acd981fbc109abfa4ee1b303deaa148484476317c4c41c924 +lib/codeql/rust/elements/RecordField.qll 5d23e25985857e37ab7d699a6298d842751da9fb46da341378e17fd7cef66cc8 59272d720dbbad02094f98bf8cf3372974eb449843522b5f510c1f1b01bd2834 lib/codeql/rust/elements/RecordFieldList.qll cebab3fba41221e61cda801070a7f414b62b4fbcf2206e35462c0da35ad75c3f db092d47eea871d61541b9711d7139a99394e0ed83901a8ae60f03dfa8ed722f lib/codeql/rust/elements/RecordPat.qll 3e31af707f72e9af42142e54b7251da8cbc88a9d5f448a4e6b3ca578f92f5680 0b459d751c26a062608ef0b6f3859e9ed1342e129b004ec218694d011955cfbd lib/codeql/rust/elements/RecordPatField.qll 7487461887e82bcf224b02628dfc64457121ab17e731e2dc7aa7e731ab16c02f f2018e55722245eb4273fb067242aaa503c43f91671a55b3a4bb51fe7bc0a03c @@ -574,7 +574,7 @@ lib/codeql/rust/elements/internal/generated/ParamList.qll c808c9d84dd7800573832b lib/codeql/rust/elements/internal/generated/ParenExpr.qll bc0731505bfe88516205ec360582a4222d2681d11342c93e15258590ddee82f2 d4bd6e0c80cf1d63746c88d4bcb3a01d4c75732e5da09e3ebd9437ced227fb60 lib/codeql/rust/elements/internal/generated/ParenPat.qll 4f168ef5d5bb87a903251cc31b2e44a759b099ec69c90af31783fbb15778c940 0e34f94a45a13396fd57d94c245dc64d1adde2ab0e22b56946f7e94c04e297fc lib/codeql/rust/elements/internal/generated/ParenTypeRepr.qll 40ab5c592e7699c621787793743e33988de71ff42ca27599f5ab3ddb70e3f7d8 12c0a6eed2202ee3e892f61da3b3ce77ac3190854cdf3097e8d2be98aa3cb91d -lib/codeql/rust/elements/internal/generated/ParentChild.qll 1df63bfa8268f7db25eab70abedb8d424d892b56e92ceee8c7900cd33b1af07f cfa3d31a89303e60f4ed60ed5ca5fd04973202828aa674205d333f9fa784705f +lib/codeql/rust/elements/internal/generated/ParentChild.qll 2992505ffc3279d58f2d03e89ec0f7d23aedebb3c3baf990bfbda894a6cc10e8 2f6b721e8244b444b47d41c2303fea166debee208544389c4dd9f2be0d62fe43 lib/codeql/rust/elements/internal/generated/ParenthesizedArgList.qll c5fa328ea60d3a3333d7c7bb3480969c1873166c7ac8ebb9d0afad7a8099d1a8 2dbbb6200d96f7db7dea4a55bdeab8d67b14d39a43e0bd54ada019f7e466f163 lib/codeql/rust/elements/internal/generated/Pat.qll 3605ac062be2f294ee73336e9669027b8b655f4ad55660e1eab35266275154ee 7f9400db2884d336dd1d21df2a8093759c2a110be9bf6482ce8e80ae0fd74ed4 lib/codeql/rust/elements/internal/generated/Path.qll 8e47e91aff3f8c60f1ee8cb3887b8e4936c38e4665d052f2c92a939a969aac29 2c28beb89cabd7c7c91a5bc65c874f414cb96bbefde37b25811b61089a8a0053 @@ -589,11 +589,11 @@ lib/codeql/rust/elements/internal/generated/PtrTypeRepr.qll 51d1e9e683fc79dddbff lib/codeql/rust/elements/internal/generated/PureSynthConstructors.qll e5b8e69519012bbaae29dcb82d53f7f7ecce368c0358ec27ef6180b228a0057f e5b8e69519012bbaae29dcb82d53f7f7ecce368c0358ec27ef6180b228a0057f lib/codeql/rust/elements/internal/generated/RangeExpr.qll 23cca03bf43535f33b22a38894f70d669787be4e4f5b8fe5c8f7b964d30e9027 18624cef6c6b679eeace2a98737e472432e0ead354cca02192b4d45330f047c9 lib/codeql/rust/elements/internal/generated/RangePat.qll 80826a6a6868a803aa2372e31c52a03e1811a3f1f2abdb469f91ca0bfdd9ecb6 34ee1e208c1690cba505dff2c588837c0cd91e185e2a87d1fe673191962276a9 -lib/codeql/rust/elements/internal/generated/Raw.qll 17037cbf4b911c74b45453d733726218512c5c8f5e890a6f0e3290fab894a237 5fb11b239f210c30823b8862385f8b9f459ef8b62d47b6b50ba560e4ce2cac7c +lib/codeql/rust/elements/internal/generated/Raw.qll cfbf960b83fc7f659214a48ced60001366410322a116de255678dec9d765d8dd c0d1ee182ccb916dedf33a272fb37ac394e0fac95ef4fadb8a93c7db8d11feb5 lib/codeql/rust/elements/internal/generated/RecordExpr.qll 2131b2cb336caa76170082e69776011bf02576bbfdd34ba68ca84af24209250a 39a2e3ec32352b594c43cc1295e0e8b3f9808173322d3d73cb7d48ef969d5565 lib/codeql/rust/elements/internal/generated/RecordExprField.qll 7e9f8663d3b74ebbc9603b10c9912f082febba6bd73d344b100bbd3edf837802 fbe6b578e7fd5d5a6f21bbb8c388957ab7210a6a249ec71510a50fb35b319ea1 lib/codeql/rust/elements/internal/generated/RecordExprFieldList.qll 179a97211fe7aa6265085d4d54115cdbc0e1cd7c9b2135591e8f36d6432f13d3 dd44bbbc1e83a1ed3a587afb729d7debf7aeb7b63245de181726af13090e50c0 -lib/codeql/rust/elements/internal/generated/RecordField.qll 6d4b184c85419f9282937ebd1b1d14930a263e8754124f2323953991ca0f0e59 2f8bec227f960ae98fc320a65efdfdc5dc04455cd59697e2621585e5a5f942b8 +lib/codeql/rust/elements/internal/generated/RecordField.qll 7a6fd6a8362ea1671560eeb96abcaf9ae412ec9800fcf9c9fbda1849253912af 0e72e067475c20d72aeae2f10589e3f25806b44ac60b6b7289ba860de98a7c92 lib/codeql/rust/elements/internal/generated/RecordFieldList.qll d7bb2677338cf420b0d6371aeec781aacc2272c73413ea96b7418177ad149fb9 5ef52074b9f4ec31e7422b70efdb2e650d673b2625efdfec18a4e48c30e35cf6 lib/codeql/rust/elements/internal/generated/RecordPat.qll f2ce392fb7e481a139ea527ad32d1c7ba65404a05efc56f5c68ce1e8e1e0a928 9710048cd1e6b26b3054ac95778e47f16cff6424bab9ef0c099c1109ef14741f lib/codeql/rust/elements/internal/generated/RecordPatField.qll 5bf624d22903fb874e6d03541cf453493badd382b6910ce950ad0d34dd580e9a b9ec89b69a58b9c418405efa9b0e6ee7b07616f5696a0858583a339d657b5855 @@ -1029,8 +1029,9 @@ test/extractor-tests/generated/RecordExprFieldList/RecordExprFieldList.ql b6cd65 test/extractor-tests/generated/RecordExprFieldList/RecordExprFieldList_getAttr.ql 15b297e79c1ba8c92cb97148d6aab78ed1fd2c94f0d3a430ead8d541024e81ce 4f0a131011cf32e172f7bd027769e39642fb506d37b3d50b175c6ed5947d3d9c test/extractor-tests/generated/RecordExprFieldList/RecordExprFieldList_getField.ql c55e4775c8880c05944be04bdeb1c9e6bad45b922ba71ac3145acd83ff988e59 14ce98d1e5564e9e27c29110237cf6210d130ea887920b2b1bd34a853b7fcc63 test/extractor-tests/generated/RecordExprFieldList/RecordExprFieldList_getSpread.ql f2dd6b85da1cd8195986aefbe7dc8171db6fbbe5b2612c4cbdd8aba052cb0c6a 2c19cb1510c215ddfa004d40bf30fc0fe0dcbb530c320b297541f1dbcb204143 -test/extractor-tests/generated/RecordField/RecordField.ql b1f14a17b6f2e581c2a1e882a7405351ded14c565375b99a0119fafed93a2b09 b7d74549a4f7556e79fcbdb79748905fb13d13cd01de3d551cb5898b1d0af87a +test/extractor-tests/generated/RecordField/RecordField.ql 8ba8ed51144c69266f8a5644604f560d1569de76e1070d8f22247d07ebc521c8 87d485651f9711e49c576dddd543077c49892b71e45fc65ce5122ded303b49f5 test/extractor-tests/generated/RecordField/RecordField_getAttr.ql aa29d317dee23039a807df530a6f04b0678c4d1d34207a4381be535ff04af478 41c5778d6316eec19192334046ed110aea44a4c45937d5c355a9b71c54aa8e04 +test/extractor-tests/generated/RecordField/RecordField_getExpr.ql 15ab939ede4ed4395ef8db8f6e0a3ac03079a3ae617ce9335fb93ba565b402de 9d853f305baf56ec08b22342adc4deb096d771fa48fd478932cc5187cd66304f test/extractor-tests/generated/RecordField/RecordField_getName.ql 1f5c47d41367bd0115df86f22a70d4621d7cbfb41554daa598da29f549479670 64535303b273f1c2027b6ce89b50816ad3cbbca9bf00b2b8402e36b26e675d97 test/extractor-tests/generated/RecordField/RecordField_getTypeRepr.ql f61cfcd0c682604b882a4ed9c746e6f6087e4798d7aaf9d29579e0e2372406e6 01371887fa82748ef196d2e9d27d26c586efb5b4f82d48967b5494723c54af4d test/extractor-tests/generated/RecordField/RecordField_getVisibility.ql cc45e9bb9418d15cef07a1827358c3f18a8737324c8e6852591a2da70df89360 45557497fc165a212fffda71dedabc8159a4f72323430df732698a18922b366c diff --git a/rust/ql/.gitattributes b/rust/ql/.gitattributes index 4d5b319bc367..05ac0fbbf272 100644 --- a/rust/ql/.gitattributes +++ b/rust/ql/.gitattributes @@ -1033,6 +1033,7 @@ /test/extractor-tests/generated/RecordExprFieldList/RecordExprFieldList_getSpread.ql linguist-generated /test/extractor-tests/generated/RecordField/RecordField.ql linguist-generated /test/extractor-tests/generated/RecordField/RecordField_getAttr.ql linguist-generated +/test/extractor-tests/generated/RecordField/RecordField_getExpr.ql linguist-generated /test/extractor-tests/generated/RecordField/RecordField_getName.ql linguist-generated /test/extractor-tests/generated/RecordField/RecordField_getTypeRepr.ql linguist-generated /test/extractor-tests/generated/RecordField/RecordField_getVisibility.ql linguist-generated diff --git a/rust/ql/lib/codeql/rust/elements/RecordField.qll b/rust/ql/lib/codeql/rust/elements/RecordField.qll index 4a5e749b9050..d19a605dad97 100644 --- a/rust/ql/lib/codeql/rust/elements/RecordField.qll +++ b/rust/ql/lib/codeql/rust/elements/RecordField.qll @@ -6,6 +6,7 @@ private import internal.RecordFieldImpl import codeql.rust.elements.AstNode import codeql.rust.elements.Attr +import codeql.rust.elements.Expr import codeql.rust.elements.Name import codeql.rust.elements.TypeRepr import codeql.rust.elements.Visibility diff --git a/rust/ql/lib/codeql/rust/elements/internal/generated/ParentChild.qll b/rust/ql/lib/codeql/rust/elements/internal/generated/ParentChild.qll index 54301cd04ceb..ee97d8a4c601 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/generated/ParentChild.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/generated/ParentChild.qll @@ -903,12 +903,15 @@ private module Impl { private Element getImmediateChildOfRecordField( RecordField e, int index, string partialPredicateCall ) { - exists(int b, int bAstNode, int n, int nAttr, int nName, int nTypeRepr, int nVisibility | + exists( + int b, int bAstNode, int n, int nAttr, int nExpr, int nName, int nTypeRepr, int nVisibility + | b = 0 and bAstNode = b + 1 + max(int i | i = -1 or exists(getImmediateChildOfAstNode(e, i, _)) | i) and n = bAstNode and nAttr = n + 1 + max(int i | i = -1 or exists(e.getAttr(i)) | i) and - nName = nAttr + 1 and + nExpr = nAttr + 1 and + nName = nExpr + 1 and nTypeRepr = nName + 1 and nVisibility = nTypeRepr + 1 and ( @@ -919,7 +922,9 @@ private module Impl { result = e.getAttr(index - n) and partialPredicateCall = "Attr(" + (index - n).toString() + ")" or - index = nAttr and result = e.getName() and partialPredicateCall = "Name()" + index = nAttr and result = e.getExpr() and partialPredicateCall = "Expr()" + or + index = nExpr and result = e.getName() and partialPredicateCall = "Name()" or index = nName and result = e.getTypeRepr() and partialPredicateCall = "TypeRepr()" or diff --git a/rust/ql/lib/codeql/rust/elements/internal/generated/Raw.qll b/rust/ql/lib/codeql/rust/elements/internal/generated/Raw.qll index 4e4abb2ae679..a858c89ce57c 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/generated/Raw.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/generated/Raw.qll @@ -786,6 +786,11 @@ module Raw { */ Attr getAttr(int index) { record_field_attrs(this, index, result) } + /** + * Gets the expression of this record field, if it exists. + */ + Expr getExpr() { record_field_exprs(this, result) } + /** * Gets the name of this record field, if it exists. */ diff --git a/rust/ql/lib/codeql/rust/elements/internal/generated/RecordField.qll b/rust/ql/lib/codeql/rust/elements/internal/generated/RecordField.qll index aa840aafdcdf..c60261128a1e 100644 --- a/rust/ql/lib/codeql/rust/elements/internal/generated/RecordField.qll +++ b/rust/ql/lib/codeql/rust/elements/internal/generated/RecordField.qll @@ -8,6 +8,7 @@ private import codeql.rust.elements.internal.generated.Synth private import codeql.rust.elements.internal.generated.Raw import codeql.rust.elements.internal.AstNodeImpl::Impl as AstNodeImpl import codeql.rust.elements.Attr +import codeql.rust.elements.Expr import codeql.rust.elements.Name import codeql.rust.elements.TypeRepr import codeql.rust.elements.Visibility @@ -48,6 +49,19 @@ module Generated { */ final int getNumberOfAttrs() { result = count(int i | exists(this.getAttr(i))) } + /** + * Gets the expression of this record field, if it exists. + */ + Expr getExpr() { + result = + Synth::convertExprFromRaw(Synth::convertRecordFieldToRaw(this).(Raw::RecordField).getExpr()) + } + + /** + * Holds if `getExpr()` exists. + */ + final predicate hasExpr() { exists(this.getExpr()) } + /** * Gets the name of this record field, if it exists. */ diff --git a/rust/ql/lib/rust.dbscheme b/rust/ql/lib/rust.dbscheme index bbe668c56ea9..29a351d42ac6 100644 --- a/rust/ql/lib/rust.dbscheme +++ b/rust/ql/lib/rust.dbscheme @@ -836,6 +836,12 @@ record_field_attrs( int attr: @attr ref ); +#keyset[id] +record_field_exprs( + int id: @record_field ref, + int expr: @expr ref +); + #keyset[id] record_field_names( int id: @record_field ref, diff --git a/rust/ql/test/extractor-tests/generated/RecordField/RecordField.ql b/rust/ql/test/extractor-tests/generated/RecordField/RecordField.ql index 6cb0510df2c1..d338dec4c35b 100644 --- a/rust/ql/test/extractor-tests/generated/RecordField/RecordField.ql +++ b/rust/ql/test/extractor-tests/generated/RecordField/RecordField.ql @@ -2,13 +2,16 @@ import codeql.rust.elements import TestUtils -from RecordField x, int getNumberOfAttrs, string hasName, string hasTypeRepr, string hasVisibility +from + RecordField x, int getNumberOfAttrs, string hasExpr, string hasName, string hasTypeRepr, + string hasVisibility where toBeTested(x) and not x.isUnknown() and getNumberOfAttrs = x.getNumberOfAttrs() and + (if x.hasExpr() then hasExpr = "yes" else hasExpr = "no") and (if x.hasName() then hasName = "yes" else hasName = "no") and (if x.hasTypeRepr() then hasTypeRepr = "yes" else hasTypeRepr = "no") and if x.hasVisibility() then hasVisibility = "yes" else hasVisibility = "no" -select x, "getNumberOfAttrs:", getNumberOfAttrs, "hasName:", hasName, "hasTypeRepr:", hasTypeRepr, - "hasVisibility:", hasVisibility +select x, "getNumberOfAttrs:", getNumberOfAttrs, "hasExpr:", hasExpr, "hasName:", hasName, + "hasTypeRepr:", hasTypeRepr, "hasVisibility:", hasVisibility diff --git a/rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.ql b/rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.ql new file mode 100644 index 000000000000..7519191f6b6a --- /dev/null +++ b/rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.ql @@ -0,0 +1,7 @@ +// generated by codegen, do not edit +import codeql.rust.elements +import TestUtils + +from RecordField x +where toBeTested(x) and not x.isUnknown() +select x, x.getExpr() diff --git a/rust/schema/ast.py b/rust/schema/ast.py index d987cbb26a6f..6617749258cf 100644 --- a/rust/schema/ast.py +++ b/rust/schema/ast.py @@ -535,6 +535,7 @@ class RecordExprFieldList(AstNode, ): class RecordField(AstNode, ): attrs: list["Attr"] | child + expr: optional["Expr"] | child name: optional["Name"] | child type_repr: optional["TypeRepr"] | child visibility: optional["Visibility"] | child From bfcf9ea606f07259c5c8c6c17d9749e2623395a8 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:37:00 +0100 Subject: [PATCH 09/14] Rust: fix compilation errors after `rust-anlyzer` update --- rust/extractor/src/config.rs | 4 ++-- rust/extractor/src/rust_analyzer.rs | 1 + rust/extractor/src/translate/base.rs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rust/extractor/src/config.rs b/rust/extractor/src/config.rs index 24fef22cff08..f8094c07a6c9 100644 --- a/rust/extractor/src/config.rs +++ b/rust/extractor/src/config.rs @@ -106,7 +106,7 @@ impl Config { let sysroot_src_input = self.sysroot_src.as_ref().map(|p| join_path_buf(dir, p)); match (sysroot_input, sysroot_src_input) { (None, None) => Sysroot::discover(dir, &self.cargo_extra_env), - (Some(sysroot), None) => Sysroot::discover_sysroot_src_dir(sysroot), + (Some(sysroot), None) => Sysroot::discover_rust_lib_src_dir(sysroot), (None, Some(sysroot_src)) => { Sysroot::discover_with_src_override(dir, &self.cargo_extra_env, sysroot_src) } @@ -130,7 +130,7 @@ impl Config { ( CargoConfig { all_targets: self.cargo_all_targets, - sysroot_src: sysroot.src_root().map(ToOwned::to_owned), + sysroot_src: sysroot.rust_lib_src_root().map(ToOwned::to_owned), rustc_source: self .rustc_src .as_ref() diff --git a/rust/extractor/src/rust_analyzer.rs b/rust/extractor/src/rust_analyzer.rs index f0ca9a223207..ee509c6fae78 100644 --- a/rust/extractor/src/rust_analyzer.rs +++ b/rust/extractor/src/rust_analyzer.rs @@ -297,4 +297,5 @@ pub(crate) fn path_to_file_id(path: &Path, vfs: &Vfs) -> Option { .and_then(|x| AbsPathBuf::try_from(x).ok()) .map(VfsPath::from) .and_then(|x| vfs.file_id(&x)) + .map(|(id, _excluded)| id) } diff --git a/rust/extractor/src/translate/base.rs b/rust/extractor/src/translate/base.rs index 6618feae4c20..2faeb12ea835 100644 --- a/rust/extractor/src/translate/base.rs +++ b/rust/extractor/src/translate/base.rs @@ -417,7 +417,7 @@ impl<'a> Translator<'a> { } } ItemContainer::Module(it) => self.canonical_path_from_hir_module(it), - ItemContainer::ExternBlock() | ItemContainer::Crate(_) => Some("".to_owned()), + ItemContainer::ExternBlock(..) | ItemContainer::Crate(..) => Some("".to_owned()), }?; Some(format!("{prefix}::{name}")) } From d9ecb6255e8fc199a43cf1f9ad1e65aea2bc5b01 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 25 Feb 2025 13:41:34 +0100 Subject: [PATCH 10/14] Shared: fix clippy warning --- shared/tree-sitter-extractor/src/generator/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/tree-sitter-extractor/src/generator/mod.rs b/shared/tree-sitter-extractor/src/generator/mod.rs index ea41f3190e61..d972e9fb128d 100644 --- a/shared/tree-sitter-extractor/src/generator/mod.rs +++ b/shared/tree-sitter-extractor/src/generator/mod.rs @@ -234,7 +234,7 @@ fn add_field_for_column_storage<'a>( /// 1. A vector of dbscheme entries. /// 2. A set of names of the members of the `_ast_node` union. /// 3. A map where the keys are the dbscheme names for token kinds, and the -/// values are their integer representations. +/// values are their integer representations. fn convert_nodes( nodes: &node_types::NodeTypeMap, ) -> (Vec, Set<&str>, Map<&str, usize>) { From bb90b678a4979ef1c328bb6cd6448ed260f374ed Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Fri, 28 Feb 2025 10:43:48 +0100 Subject: [PATCH 11/14] Rust: update rust-specific toolchain --- rust/rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/rust-toolchain.toml b/rust/rust-toolchain.toml index 60bdd6fbd0d8..1b61371a926c 100644 --- a/rust/rust-toolchain.toml +++ b/rust/rust-toolchain.toml @@ -3,6 +3,6 @@ # IMPORTANT: this can also have an impact on QL test results [toolchain] -channel = "1.84" +channel = "1.85" profile = "minimal" components = [ "clippy", "rustfmt", "rust-src" ] From e0d4e5ea7f577046021e81e5c5c73c932c4b316f Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Fri, 28 Feb 2025 11:36:27 +0100 Subject: [PATCH 12/14] Rust: remove missing flow in test --- .../strings/inline-taint-flow.expected | 61 +++++++++++-------- .../library-tests/dataflow/strings/main.rs | 12 ++-- 2 files changed, 43 insertions(+), 30 deletions(-) diff --git a/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected b/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected index ee15de985dcd..c3f9e94239a5 100644 --- a/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected +++ b/rust/ql/test/library-tests/dataflow/strings/inline-taint-flow.expected @@ -1,8 +1,9 @@ models -| 1 | Summary: lang:alloc; ::from; Argument[0]; ReturnValue; value | -| 2 | Summary: lang:alloc; ::as_str; Argument[self]; ReturnValue; taint | -| 3 | Summary: lang:alloc; crate::fmt::format; Argument[0]; ReturnValue; taint | -| 4 | Summary: lang:core; crate::hint::must_use; Argument[0]; ReturnValue; value | +| 1 | Summary: lang:alloc; <_ as crate::string::ToString>::to_string; Argument[self]; ReturnValue; taint | +| 2 | Summary: lang:alloc; ::from; Argument[0]; ReturnValue; value | +| 3 | Summary: lang:alloc; ::as_str; Argument[self]; ReturnValue; taint | +| 4 | Summary: lang:alloc; crate::fmt::format; Argument[0]; ReturnValue; taint | +| 5 | Summary: lang:core; crate::hint::must_use; Argument[0]; ReturnValue; value | edges | main.rs:26:9:26:9 | s | main.rs:27:19:27:25 | s[...] | provenance | | | main.rs:26:13:26:22 | source(...) | main.rs:26:9:26:9 | s | provenance | | @@ -12,41 +13,46 @@ edges | main.rs:32:9:32:10 | s1 | main.rs:35:9:35:10 | s4 | provenance | | | main.rs:32:14:32:23 | source(...) | main.rs:32:9:32:10 | s1 | provenance | | | main.rs:35:9:35:10 | s4 | main.rs:38:10:38:11 | s4 | provenance | | -| main.rs:51:9:51:10 | s1 | main.rs:52:27:52:28 | s1 | provenance | | -| main.rs:51:14:51:29 | source_slice(...) | main.rs:51:9:51:10 | s1 | provenance | | -| main.rs:52:9:52:10 | s2 | main.rs:53:10:53:11 | s2 | provenance | | -| main.rs:52:14:52:29 | ...::from(...) | main.rs:52:9:52:10 | s2 | provenance | | -| main.rs:52:27:52:28 | s1 | main.rs:52:14:52:29 | ...::from(...) | provenance | MaD:1 | +| main.rs:51:6:51:7 | s1 | main.rs:52:24:52:25 | s1 | provenance | | +| main.rs:51:11:51:26 | source_slice(...) | main.rs:51:6:51:7 | s1 | provenance | | +| main.rs:52:6:52:7 | s2 | main.rs:53:7:53:8 | s2 | provenance | | +| main.rs:52:11:52:26 | ...::from(...) | main.rs:52:6:52:7 | s2 | provenance | | +| main.rs:52:24:52:25 | s1 | main.rs:52:11:52:26 | ...::from(...) | provenance | MaD:2 | +| main.rs:57:6:57:7 | s1 | main.rs:58:11:58:12 | s1 | provenance | | +| main.rs:57:11:57:26 | source_slice(...) | main.rs:57:6:57:7 | s1 | provenance | | +| main.rs:58:6:58:7 | s2 | main.rs:59:7:59:8 | s2 | provenance | | +| main.rs:58:11:58:12 | s1 | main.rs:58:11:58:24 | s1.to_string(...) | provenance | MaD:1 | +| main.rs:58:11:58:24 | s1.to_string(...) | main.rs:58:6:58:7 | s2 | provenance | | | main.rs:63:9:63:9 | s | main.rs:64:16:64:16 | s | provenance | | | main.rs:63:13:63:22 | source(...) | main.rs:63:9:63:9 | s | provenance | | -| main.rs:64:16:64:16 | s | main.rs:64:16:64:25 | s.as_str(...) | provenance | MaD:2 | +| main.rs:64:16:64:16 | s | main.rs:64:16:64:25 | s.as_str(...) | provenance | MaD:3 | | main.rs:68:9:68:9 | s | main.rs:70:34:70:61 | MacroExpr | provenance | | | main.rs:68:9:68:9 | s | main.rs:73:34:73:59 | MacroExpr | provenance | | | main.rs:68:13:68:22 | source(...) | main.rs:68:9:68:9 | s | provenance | | | main.rs:70:9:70:18 | formatted1 | main.rs:71:10:71:19 | formatted1 | provenance | | | main.rs:70:22:70:62 | ...::format(...) | main.rs:70:9:70:18 | formatted1 | provenance | | -| main.rs:70:34:70:61 | MacroExpr | main.rs:70:22:70:62 | ...::format(...) | provenance | MaD:3 | +| main.rs:70:34:70:61 | MacroExpr | main.rs:70:22:70:62 | ...::format(...) | provenance | MaD:4 | | main.rs:73:9:73:18 | formatted2 | main.rs:74:10:74:19 | formatted2 | provenance | | | main.rs:73:22:73:60 | ...::format(...) | main.rs:73:9:73:18 | formatted2 | provenance | | -| main.rs:73:34:73:59 | MacroExpr | main.rs:73:22:73:60 | ...::format(...) | provenance | MaD:3 | +| main.rs:73:34:73:59 | MacroExpr | main.rs:73:22:73:60 | ...::format(...) | provenance | MaD:4 | | main.rs:76:9:76:13 | width | main.rs:77:34:77:74 | MacroExpr | provenance | | | main.rs:76:17:76:32 | source_usize(...) | main.rs:76:9:76:13 | width | provenance | | | main.rs:77:9:77:18 | formatted3 | main.rs:78:10:78:19 | formatted3 | provenance | | | main.rs:77:22:77:75 | ...::format(...) | main.rs:77:9:77:18 | formatted3 | provenance | | -| main.rs:77:34:77:74 | MacroExpr | main.rs:77:22:77:75 | ...::format(...) | provenance | MaD:3 | +| main.rs:77:34:77:74 | MacroExpr | main.rs:77:22:77:75 | ...::format(...) | provenance | MaD:4 | | main.rs:82:9:82:10 | s1 | main.rs:86:18:86:25 | MacroExpr | provenance | | | main.rs:82:9:82:10 | s1 | main.rs:87:18:87:32 | MacroExpr | provenance | | | main.rs:82:14:82:23 | source(...) | main.rs:82:9:82:10 | s1 | provenance | | | main.rs:86:10:86:26 | res | main.rs:86:18:86:25 | { ... } | provenance | | | main.rs:86:18:86:25 | ...::format(...) | main.rs:86:10:86:26 | res | provenance | | | main.rs:86:18:86:25 | ...::must_use(...) | main.rs:86:10:86:26 | MacroExpr | provenance | | -| main.rs:86:18:86:25 | MacroExpr | main.rs:86:18:86:25 | ...::format(...) | provenance | MaD:3 | -| main.rs:86:18:86:25 | { ... } | main.rs:86:18:86:25 | ...::must_use(...) | provenance | MaD:4 | +| main.rs:86:18:86:25 | MacroExpr | main.rs:86:18:86:25 | ...::format(...) | provenance | MaD:4 | +| main.rs:86:18:86:25 | { ... } | main.rs:86:18:86:25 | ...::must_use(...) | provenance | MaD:5 | | main.rs:87:10:87:33 | res | main.rs:87:18:87:32 | { ... } | provenance | | | main.rs:87:18:87:32 | ...::format(...) | main.rs:87:10:87:33 | res | provenance | | | main.rs:87:18:87:32 | ...::must_use(...) | main.rs:87:10:87:33 | MacroExpr | provenance | | -| main.rs:87:18:87:32 | MacroExpr | main.rs:87:18:87:32 | ...::format(...) | provenance | MaD:3 | -| main.rs:87:18:87:32 | { ... } | main.rs:87:18:87:32 | ...::must_use(...) | provenance | MaD:4 | +| main.rs:87:18:87:32 | MacroExpr | main.rs:87:18:87:32 | ...::format(...) | provenance | MaD:4 | +| main.rs:87:18:87:32 | { ... } | main.rs:87:18:87:32 | ...::must_use(...) | provenance | MaD:5 | nodes | main.rs:26:9:26:9 | s | semmle.label | s | | main.rs:26:13:26:22 | source(...) | semmle.label | source(...) | @@ -58,12 +64,18 @@ nodes | main.rs:32:14:32:23 | source(...) | semmle.label | source(...) | | main.rs:35:9:35:10 | s4 | semmle.label | s4 | | main.rs:38:10:38:11 | s4 | semmle.label | s4 | -| main.rs:51:9:51:10 | s1 | semmle.label | s1 | -| main.rs:51:14:51:29 | source_slice(...) | semmle.label | source_slice(...) | -| main.rs:52:9:52:10 | s2 | semmle.label | s2 | -| main.rs:52:14:52:29 | ...::from(...) | semmle.label | ...::from(...) | -| main.rs:52:27:52:28 | s1 | semmle.label | s1 | -| main.rs:53:10:53:11 | s2 | semmle.label | s2 | +| main.rs:51:6:51:7 | s1 | semmle.label | s1 | +| main.rs:51:11:51:26 | source_slice(...) | semmle.label | source_slice(...) | +| main.rs:52:6:52:7 | s2 | semmle.label | s2 | +| main.rs:52:11:52:26 | ...::from(...) | semmle.label | ...::from(...) | +| main.rs:52:24:52:25 | s1 | semmle.label | s1 | +| main.rs:53:7:53:8 | s2 | semmle.label | s2 | +| main.rs:57:6:57:7 | s1 | semmle.label | s1 | +| main.rs:57:11:57:26 | source_slice(...) | semmle.label | source_slice(...) | +| main.rs:58:6:58:7 | s2 | semmle.label | s2 | +| main.rs:58:11:58:12 | s1 | semmle.label | s1 | +| main.rs:58:11:58:24 | s1.to_string(...) | semmle.label | s1.to_string(...) | +| main.rs:59:7:59:8 | s2 | semmle.label | s2 | | main.rs:63:9:63:9 | s | semmle.label | s | | main.rs:63:13:63:22 | source(...) | semmle.label | source(...) | | main.rs:64:16:64:16 | s | semmle.label | s | @@ -103,7 +115,8 @@ testFailures #select | main.rs:28:16:28:21 | sliced | main.rs:26:13:26:22 | source(...) | main.rs:28:16:28:21 | sliced | $@ | main.rs:26:13:26:22 | source(...) | source(...) | | main.rs:38:10:38:11 | s4 | main.rs:32:14:32:23 | source(...) | main.rs:38:10:38:11 | s4 | $@ | main.rs:32:14:32:23 | source(...) | source(...) | -| main.rs:53:10:53:11 | s2 | main.rs:51:14:51:29 | source_slice(...) | main.rs:53:10:53:11 | s2 | $@ | main.rs:51:14:51:29 | source_slice(...) | source_slice(...) | +| main.rs:53:7:53:8 | s2 | main.rs:51:11:51:26 | source_slice(...) | main.rs:53:7:53:8 | s2 | $@ | main.rs:51:11:51:26 | source_slice(...) | source_slice(...) | +| main.rs:59:7:59:8 | s2 | main.rs:57:11:57:26 | source_slice(...) | main.rs:59:7:59:8 | s2 | $@ | main.rs:57:11:57:26 | source_slice(...) | source_slice(...) | | main.rs:64:16:64:25 | s.as_str(...) | main.rs:63:13:63:22 | source(...) | main.rs:64:16:64:25 | s.as_str(...) | $@ | main.rs:63:13:63:22 | source(...) | source(...) | | main.rs:71:10:71:19 | formatted1 | main.rs:68:13:68:22 | source(...) | main.rs:71:10:71:19 | formatted1 | $@ | main.rs:68:13:68:22 | source(...) | source(...) | | main.rs:74:10:74:19 | formatted2 | main.rs:68:13:68:22 | source(...) | main.rs:74:10:74:19 | formatted2 | $@ | main.rs:68:13:68:22 | source(...) | source(...) | diff --git a/rust/ql/test/library-tests/dataflow/strings/main.rs b/rust/ql/test/library-tests/dataflow/strings/main.rs index e34b0cdab4c1..01041e3df463 100644 --- a/rust/ql/test/library-tests/dataflow/strings/main.rs +++ b/rust/ql/test/library-tests/dataflow/strings/main.rs @@ -48,15 +48,15 @@ fn string_add_reference() { } fn string_from() { - let s1 = source_slice(36); - let s2 = String::from(s1); - sink(s2); // $ hasValueFlow=36 + let s1 = source_slice(36); + let s2 = String::from(s1); + sink(s2); // $ hasValueFlow=36 } fn string_to_string() { - let s1 = source_slice(22); - let s2 = s1.to_string(); - sink(s2); // $ MISSING: hasTaintFlow=22 + let s1 = source_slice(22); + let s2 = s1.to_string(); + sink(s2); // $ hasTaintFlow=22 } fn as_str() { From 6b34d3f4805a2f44684882d0a037b7e0e721cb2a Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Fri, 28 Feb 2025 12:26:03 +0100 Subject: [PATCH 13/14] Rust: add missing empty expected file --- .../generated/RecordField/RecordField_getExpr.expected | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.expected diff --git a/rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.expected b/rust/ql/test/extractor-tests/generated/RecordField/RecordField_getExpr.expected new file mode 100644 index 000000000000..e69de29bb2d1 From 0445d886c76f0179d5731199d5d7bcfe1e30984a Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Fri, 28 Feb 2025 12:39:37 +0100 Subject: [PATCH 14/14] QL for QL: update toolchain --- ql/Cargo.lock | 38 ++++++++++++++++++++++---------------- ql/Cargo.toml | 1 + ql/rust-toolchain.toml | 7 ------- 3 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 ql/rust-toolchain.toml diff --git a/ql/Cargo.lock b/ql/Cargo.lock index 853271e24e64..6632bf162eec 100644 --- a/ql/Cargo.lock +++ b/ql/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "adler2" @@ -130,9 +130,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" dependencies = [ "android-tzdata", "iana-time-zone", @@ -140,7 +140,7 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets", + "windows-link", ] [[package]] @@ -337,9 +337,9 @@ checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" [[package]] name = "flate2" -version = "1.0.34" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" +checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc" dependencies = [ "crc32fast", "miniz_oxide", @@ -449,9 +449,9 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "miniz_oxide" -version = "0.8.0" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5" dependencies = [ "adler2", ] @@ -679,9 +679,9 @@ dependencies = [ [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "pin-project-lite", "tracing-attributes", @@ -690,9 +690,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", @@ -701,9 +701,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", "valuable", @@ -722,9 +722,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" dependencies = [ "matchers", "nu-ansi-term", @@ -897,6 +897,12 @@ dependencies = [ "windows-targets", ] +[[package]] +name = "windows-link" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3" + [[package]] name = "windows-sys" version = "0.59.0" diff --git a/ql/Cargo.toml b/ql/Cargo.toml index 5e42fc8d5e50..3dca1c9fbca6 100644 --- a/ql/Cargo.toml +++ b/ql/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "extractor", "buramu", diff --git a/ql/rust-toolchain.toml b/ql/rust-toolchain.toml deleted file mode 100644 index 699a593039b0..000000000000 --- a/ql/rust-toolchain.toml +++ /dev/null @@ -1,7 +0,0 @@ -# This file specifies the Rust version used to develop and test the QL -# extractor. It is set to the lowest version of Rust we want to support. - -[toolchain] -channel = "1.74" -profile = "minimal" -components = [ "rustfmt" ] \ No newline at end of file