mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
Merge pull request #18429 from github/redsun82/rust-ast-generator-mustache
Rust: make ast-generator use mustache templates
This commit is contained in:
2
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.atomic-0.6.0.bazel
generated
vendored
2
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.atomic-0.6.0.bazel
generated
vendored
@@ -83,6 +83,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.6.0",
|
||||
deps = [
|
||||
"@vendor__bytemuck-1.20.0//:bytemuck",
|
||||
"@vendor__bytemuck-1.21.0//:bytemuck",
|
||||
],
|
||||
)
|
||||
|
||||
8
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel
generated
vendored
8
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel
generated
vendored
@@ -115,6 +115,12 @@ alias(
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "mustache",
|
||||
actual = "@vendor__mustache-0.9.0//:mustache",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num-traits",
|
||||
actual = "@vendor__num-traits-0.2.19//:num_traits",
|
||||
@@ -291,7 +297,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "tree-sitter",
|
||||
actual = "@vendor__tree-sitter-0.24.5//:tree_sitter",
|
||||
actual = "@vendor__tree-sitter-0.24.6//:tree_sitter",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-none": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.11.1",
|
||||
version = "1.11.3",
|
||||
deps = [
|
||||
"@vendor__memchr-2.7.4//:memchr",
|
||||
],
|
||||
@@ -77,5 +77,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-none": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.20.0",
|
||||
version = "1.21.0",
|
||||
)
|
||||
2
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.globset-0.4.15.bazel
generated
vendored
2
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.globset-0.4.15.bazel
generated
vendored
@@ -84,7 +84,7 @@ rust_library(
|
||||
version = "0.4.15",
|
||||
deps = [
|
||||
"@vendor__aho-corasick-1.1.3//:aho_corasick",
|
||||
"@vendor__bstr-1.11.1//:bstr",
|
||||
"@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",
|
||||
|
||||
88
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.3.9.bazel
generated
vendored
Normal file
88
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.log-0.3.9.bazel
generated
vendored
Normal file
@@ -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_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
rust_library(
|
||||
name = "log",
|
||||
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",
|
||||
"use_std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=log",
|
||||
"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-fuchsia": [],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
|
||||
"@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-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-wasi": [],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [],
|
||||
"@rules_rust//rust/platform:x86_64-fuchsia": [],
|
||||
"@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-linux-gnu": [],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-none": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.3.9",
|
||||
deps = [
|
||||
"@vendor__log-0.4.22//:log",
|
||||
],
|
||||
)
|
||||
85
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mustache-0.9.0.bazel
generated
vendored
Normal file
85
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.mustache-0.9.0.bazel
generated
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
###############################################################################
|
||||
# @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 = "mustache",
|
||||
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 = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=mustache",
|
||||
"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-fuchsia": [],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
|
||||
"@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-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-wasi": [],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [],
|
||||
"@rules_rust//rust/platform:x86_64-fuchsia": [],
|
||||
"@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-linux-gnu": [],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-none": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.9.0",
|
||||
deps = [
|
||||
"@vendor__log-0.3.9//:log",
|
||||
"@vendor__serde-1.0.217//:serde",
|
||||
],
|
||||
)
|
||||
@@ -82,12 +82,12 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-none": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.24.5",
|
||||
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.5//:build_script_build",
|
||||
"@vendor__tree-sitter-0.24.6//:build_script_build",
|
||||
"@vendor__tree-sitter-language-0.1.3//:tree_sitter_language",
|
||||
],
|
||||
)
|
||||
@@ -142,7 +142,7 @@ cargo_build_script(
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.24.5",
|
||||
version = "0.24.6",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor__cc-1.2.7//:cc",
|
||||
6
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-util-0.1.9.bazel
generated
vendored
6
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winapi-util-0.1.9.bazel
generated
vendored
@@ -80,13 +80,13 @@ rust_library(
|
||||
version = "0.1.9",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
"@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
"@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
"@vendor__windows-sys-0.59.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
||||
2
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.48.0.bazel
generated
vendored
2
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.48.0.bazel
generated
vendored
@@ -37,10 +37,8 @@ rust_library(
|
||||
"Win32_Storage",
|
||||
"Win32_Storage_FileSystem",
|
||||
"Win32_System",
|
||||
"Win32_System_Console",
|
||||
"Win32_System_IO",
|
||||
"Win32_System_Pipes",
|
||||
"Win32_System_SystemInformation",
|
||||
"Win32_System_Threading",
|
||||
"Win32_System_WindowsProgramming",
|
||||
"default",
|
||||
|
||||
1
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.59.0.bazel
generated
vendored
1
misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.windows-sys-0.59.0.bazel
generated
vendored
@@ -36,6 +36,7 @@ rust_library(
|
||||
"Win32_System",
|
||||
"Win32_System_Com",
|
||||
"Win32_System_Console",
|
||||
"Win32_System_SystemInformation",
|
||||
"Win32_UI",
|
||||
"Win32_UI_Shell",
|
||||
"default",
|
||||
|
||||
60
misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl
generated
vendored
60
misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl
generated
vendored
@@ -303,17 +303,20 @@ _NORMAL_DEPENDENCIES = {
|
||||
"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.5//:tree_sitter"),
|
||||
"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"),
|
||||
},
|
||||
},
|
||||
"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.92//: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.248//:ra_ap_stdx"),
|
||||
"ungrammar": Label("@vendor__ungrammar-1.16.1//:ungrammar"),
|
||||
},
|
||||
@@ -373,7 +376,7 @@ _NORMAL_DEPENDENCIES = {
|
||||
"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.5//:tree_sitter"),
|
||||
"tree-sitter": Label("@vendor__tree-sitter-0.24.6//:tree_sitter"),
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -829,12 +832,12 @@ def crate_repositories():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__bstr-1.11.1",
|
||||
sha256 = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8",
|
||||
name = "vendor__bstr-1.11.3",
|
||||
sha256 = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0",
|
||||
type = "tar.gz",
|
||||
urls = ["https://static.crates.io/crates/bstr/1.11.1/download"],
|
||||
strip_prefix = "bstr-1.11.1",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bstr-1.11.1.bazel"),
|
||||
urls = ["https://static.crates.io/crates/bstr/1.11.3/download"],
|
||||
strip_prefix = "bstr-1.11.3",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bstr-1.11.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@@ -849,12 +852,12 @@ def crate_repositories():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__bytemuck-1.20.0",
|
||||
sha256 = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a",
|
||||
name = "vendor__bytemuck-1.21.0",
|
||||
sha256 = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3",
|
||||
type = "tar.gz",
|
||||
urls = ["https://static.crates.io/crates/bytemuck/1.20.0/download"],
|
||||
strip_prefix = "bytemuck-1.20.0",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bytemuck-1.20.0.bazel"),
|
||||
urls = ["https://static.crates.io/crates/bytemuck/1.21.0/download"],
|
||||
strip_prefix = "bytemuck-1.21.0",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bytemuck-1.21.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@@ -1707,6 +1710,16 @@ def crate_repositories():
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.lock_api-0.4.12.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__log-0.3.9",
|
||||
sha256 = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b",
|
||||
type = "tar.gz",
|
||||
urls = ["https://static.crates.io/crates/log/0.3.9/download"],
|
||||
strip_prefix = "log-0.3.9",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.log-0.3.9.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__log-0.4.22",
|
||||
@@ -1787,6 +1800,16 @@ def crate_repositories():
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.miow-0.6.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__mustache-0.9.0",
|
||||
sha256 = "51956ef1c5d20a1384524d91e616fb44dfc7d8f249bf696d49c97dd3289ecab5",
|
||||
type = "tar.gz",
|
||||
urls = ["https://static.crates.io/crates/mustache/0.9.0/download"],
|
||||
strip_prefix = "mustache-0.9.0",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.mustache-0.9.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__nohash-hasher-0.2.0",
|
||||
@@ -2838,12 +2861,12 @@ def crate_repositories():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "vendor__tree-sitter-0.24.5",
|
||||
sha256 = "8ac95b18f0f727aaaa012bd5179a1916706ee3ed071920fdbda738750b0c0bf5",
|
||||
name = "vendor__tree-sitter-0.24.6",
|
||||
sha256 = "5f2434c86ba59ed15af56039cc5bf1acf8ba76ce301e32ef08827388ef285ec5",
|
||||
type = "tar.gz",
|
||||
urls = ["https://static.crates.io/crates/tree-sitter/0.24.5/download"],
|
||||
strip_prefix = "tree-sitter-0.24.5",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.tree-sitter-0.24.5.bazel"),
|
||||
urls = ["https://static.crates.io/crates/tree-sitter/0.24.6/download"],
|
||||
strip_prefix = "tree-sitter-0.24.6",
|
||||
build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.tree-sitter-0.24.6.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@@ -3371,6 +3394,7 @@ def crate_repositories():
|
||||
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__log-0.4.22", 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.92", is_dev_dep = False),
|
||||
@@ -3399,7 +3423,7 @@ def crate_repositories():
|
||||
struct(repo = "vendor__syn-2.0.95", is_dev_dep = False),
|
||||
struct(repo = "vendor__tracing-0.1.41", is_dev_dep = False),
|
||||
struct(repo = "vendor__tracing-subscriber-0.3.19", is_dev_dep = False),
|
||||
struct(repo = "vendor__tree-sitter-0.24.5", is_dev_dep = False),
|
||||
struct(repo = "vendor__tree-sitter-0.24.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),
|
||||
|
||||
Reference in New Issue
Block a user