mirror of
https://github.com/github/codeql.git
synced 2026-05-14 11:19:27 +02:00
Cargo/bazel: Per-extractor cargo setup.
This commit is contained in:
12
Cargo.toml
12
Cargo.toml
@@ -1,12 +0,0 @@
|
||||
# This is the shared workspace file for extractor using shared/tree-sitter/extractor
|
||||
[workspace]
|
||||
|
||||
resolver = "2"
|
||||
members = [
|
||||
"shared/tree-sitter-extractor",
|
||||
"ruby/extractor",
|
||||
"rust/extractor",
|
||||
"rust/extractor/macros",
|
||||
"rust/ast-generator",
|
||||
"rust/autobuild",
|
||||
]
|
||||
139
MODULE.bazel
139
MODULE.bazel
@@ -93,65 +93,90 @@ use_repo(
|
||||
"vendor_py__tree-sitter-graph-0.12.0",
|
||||
)
|
||||
|
||||
# deps for ruby+rust
|
||||
# deps for ruby extractor
|
||||
# keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh`
|
||||
tree_sitter_extractors_deps = use_extension("//misc/bazel/3rdparty:tree_sitter_extractors_extension.bzl", "r")
|
||||
ruby_deps = use_extension("//misc/bazel/3rdparty:ruby_deps_extension.bzl", "ruby")
|
||||
use_repo(
|
||||
tree_sitter_extractors_deps,
|
||||
"vendor_ts__anyhow-1.0.100",
|
||||
"vendor_ts__argfile-0.2.1",
|
||||
"vendor_ts__chalk-ir-0.104.0",
|
||||
"vendor_ts__chrono-0.4.42",
|
||||
"vendor_ts__clap-4.5.48",
|
||||
"vendor_ts__dunce-1.0.5",
|
||||
"vendor_ts__either-1.15.0",
|
||||
"vendor_ts__encoding-0.2.33",
|
||||
"vendor_ts__figment-0.10.19",
|
||||
"vendor_ts__flate2-1.1.2",
|
||||
"vendor_ts__glob-0.3.3",
|
||||
"vendor_ts__globset-0.4.16",
|
||||
"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.17.0",
|
||||
"vendor_ts__proc-macro2-1.0.101",
|
||||
"vendor_ts__quote-1.0.41",
|
||||
"vendor_ts__ra_ap_base_db-0.0.301",
|
||||
"vendor_ts__ra_ap_cfg-0.0.301",
|
||||
"vendor_ts__ra_ap_hir-0.0.301",
|
||||
"vendor_ts__ra_ap_hir_def-0.0.301",
|
||||
"vendor_ts__ra_ap_hir_expand-0.0.301",
|
||||
"vendor_ts__ra_ap_hir_ty-0.0.301",
|
||||
"vendor_ts__ra_ap_ide_db-0.0.301",
|
||||
"vendor_ts__ra_ap_intern-0.0.301",
|
||||
"vendor_ts__ra_ap_load-cargo-0.0.301",
|
||||
"vendor_ts__ra_ap_parser-0.0.301",
|
||||
"vendor_ts__ra_ap_paths-0.0.301",
|
||||
"vendor_ts__ra_ap_project_model-0.0.301",
|
||||
"vendor_ts__ra_ap_span-0.0.301",
|
||||
"vendor_ts__ra_ap_stdx-0.0.301",
|
||||
"vendor_ts__ra_ap_syntax-0.0.301",
|
||||
"vendor_ts__ra_ap_vfs-0.0.301",
|
||||
"vendor_ts__rand-0.9.2",
|
||||
"vendor_ts__rayon-1.11.0",
|
||||
"vendor_ts__regex-1.11.3",
|
||||
"vendor_ts__serde-1.0.228",
|
||||
"vendor_ts__serde_json-1.0.145",
|
||||
"vendor_ts__serde_with-3.14.1",
|
||||
"vendor_ts__syn-2.0.106",
|
||||
"vendor_ts__toml-0.9.7",
|
||||
"vendor_ts__tracing-0.1.41",
|
||||
"vendor_ts__tracing-flame-0.2.0",
|
||||
"vendor_ts__tracing-subscriber-0.3.20",
|
||||
"vendor_ts__tree-sitter-0.25.9",
|
||||
"vendor_ts__tree-sitter-embedded-template-0.25.0",
|
||||
"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",
|
||||
"vendor_ts__zstd-0.13.3",
|
||||
ruby_deps,
|
||||
"vendor_ruby__chrono-0.4.43",
|
||||
"vendor_ruby__clap-4.5.54",
|
||||
"vendor_ruby__encoding-0.2.33",
|
||||
"vendor_ruby__flate2-1.1.8",
|
||||
"vendor_ruby__globset-0.4.18",
|
||||
"vendor_ruby__lazy_static-1.5.0",
|
||||
"vendor_ruby__num_cpus-1.17.0",
|
||||
"vendor_ruby__rand-0.9.2",
|
||||
"vendor_ruby__rayon-1.11.0",
|
||||
"vendor_ruby__regex-1.12.2",
|
||||
"vendor_ruby__serde-1.0.228",
|
||||
"vendor_ruby__serde_json-1.0.149",
|
||||
"vendor_ruby__tracing-0.1.44",
|
||||
"vendor_ruby__tracing-subscriber-0.3.22",
|
||||
"vendor_ruby__tree-sitter-0.26.3",
|
||||
"vendor_ruby__tree-sitter-embedded-template-0.25.0",
|
||||
"vendor_ruby__tree-sitter-json-0.24.8",
|
||||
"vendor_ruby__tree-sitter-ql-0.23.1",
|
||||
"vendor_ruby__tree-sitter-ruby-0.23.1",
|
||||
"vendor_ruby__zstd-0.13.3",
|
||||
)
|
||||
|
||||
# deps for rust extractor
|
||||
# keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh`
|
||||
rust_deps = use_extension("//misc/bazel/3rdparty:rust_deps_extension.bzl", "rust")
|
||||
use_repo(
|
||||
rust_deps,
|
||||
"vendor_rust__anyhow-1.0.100",
|
||||
"vendor_rust__argfile-0.2.1",
|
||||
"vendor_rust__chalk-ir-0.104.0",
|
||||
"vendor_rust__chrono-0.4.43",
|
||||
"vendor_rust__clap-4.5.54",
|
||||
"vendor_rust__dunce-1.0.5",
|
||||
"vendor_rust__either-1.15.0",
|
||||
"vendor_rust__encoding-0.2.33",
|
||||
"vendor_rust__figment-0.10.19",
|
||||
"vendor_rust__flate2-1.1.8",
|
||||
"vendor_rust__glob-0.3.3",
|
||||
"vendor_rust__globset-0.4.18",
|
||||
"vendor_rust__itertools-0.14.0",
|
||||
"vendor_rust__lazy_static-1.5.0",
|
||||
"vendor_rust__mustache-0.9.0",
|
||||
"vendor_rust__num-traits-0.2.19",
|
||||
"vendor_rust__num_cpus-1.17.0",
|
||||
"vendor_rust__proc-macro2-1.0.105",
|
||||
"vendor_rust__quote-1.0.43",
|
||||
"vendor_rust__ra_ap_base_db-0.0.301",
|
||||
"vendor_rust__ra_ap_cfg-0.0.301",
|
||||
"vendor_rust__ra_ap_hir-0.0.301",
|
||||
"vendor_rust__ra_ap_hir_def-0.0.301",
|
||||
"vendor_rust__ra_ap_hir_expand-0.0.301",
|
||||
"vendor_rust__ra_ap_hir_ty-0.0.301",
|
||||
"vendor_rust__ra_ap_ide_db-0.0.301",
|
||||
"vendor_rust__ra_ap_intern-0.0.301",
|
||||
"vendor_rust__ra_ap_load-cargo-0.0.301",
|
||||
"vendor_rust__ra_ap_parser-0.0.301",
|
||||
"vendor_rust__ra_ap_paths-0.0.301",
|
||||
"vendor_rust__ra_ap_project_model-0.0.301",
|
||||
"vendor_rust__ra_ap_span-0.0.301",
|
||||
"vendor_rust__ra_ap_stdx-0.0.301",
|
||||
"vendor_rust__ra_ap_syntax-0.0.301",
|
||||
"vendor_rust__ra_ap_vfs-0.0.301",
|
||||
"vendor_rust__rand-0.9.2",
|
||||
"vendor_rust__rayon-1.11.0",
|
||||
"vendor_rust__regex-1.12.2",
|
||||
"vendor_rust__serde-1.0.228",
|
||||
"vendor_rust__serde_json-1.0.149",
|
||||
"vendor_rust__serde_with-3.16.1",
|
||||
"vendor_rust__syn-2.0.114",
|
||||
"vendor_rust__toml-0.9.11-spec-1.1.0",
|
||||
"vendor_rust__tracing-0.1.44",
|
||||
"vendor_rust__tracing-flame-0.2.0",
|
||||
"vendor_rust__tracing-subscriber-0.3.22",
|
||||
"vendor_rust__tree-sitter-0.26.3",
|
||||
"vendor_rust__tree-sitter-json-0.24.8",
|
||||
"vendor_rust__tree-sitter-ql-0.23.1",
|
||||
"vendor_rust__triomphe-0.1.15",
|
||||
"vendor_rust__ungrammar-1.16.1",
|
||||
"vendor_rust__zstd-0.13.3",
|
||||
)
|
||||
|
||||
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||
|
||||
26
misc/bazel/3rdparty/BUILD.bazel
vendored
26
misc/bazel/3rdparty/BUILD.bazel
vendored
@@ -1,15 +1,31 @@
|
||||
load("@rules_rust//crate_universe:defs.bzl", "crates_vendor")
|
||||
|
||||
# The targets in this file re-do the vendoring of the rust cargo dependencies. Use the update_cargo_deps.sh script to run the targets, and do all the necessary work around vendoring.
|
||||
|
||||
crates_vendor(
|
||||
name = "vendor_tree_sitter_extractors",
|
||||
cargo_lockfile = "//:Cargo.lock",
|
||||
name = "vendor_ruby_deps",
|
||||
cargo_lockfile = "//ruby:Cargo.lock",
|
||||
generate_build_scripts = True,
|
||||
manifests = ["//:Cargo.toml"],
|
||||
manifests = [
|
||||
"//ruby:Cargo.toml",
|
||||
],
|
||||
mode = "remote",
|
||||
repository_name = "vendor_ts",
|
||||
repository_name = "vendor_ruby",
|
||||
tags = ["manual"],
|
||||
vendor_path = "tree_sitter_extractors_deps",
|
||||
vendor_path = "ruby_deps",
|
||||
)
|
||||
|
||||
crates_vendor(
|
||||
name = "vendor_rust_deps",
|
||||
cargo_lockfile = "//rust:Cargo.lock",
|
||||
generate_build_scripts = True,
|
||||
manifests = [
|
||||
"//rust:Cargo.toml",
|
||||
],
|
||||
mode = "remote",
|
||||
repository_name = "vendor_rust",
|
||||
tags = ["manual"],
|
||||
vendor_path = "rust_deps",
|
||||
)
|
||||
|
||||
crates_vendor(
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -97,8 +97,8 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.1.3",
|
||||
version = "1.1.4",
|
||||
deps = [
|
||||
"@vendor_ts__memchr-2.7.5//:memchr",
|
||||
"@vendor_ruby__memchr-2.7.6//:memchr",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.1.5",
|
||||
deps = [
|
||||
"@vendor_ts__libc-0.2.175//:libc",
|
||||
"@vendor_ruby__libc-0.2.180//:libc",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -97,23 +97,23 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.6.20",
|
||||
version = "0.6.21",
|
||||
deps = [
|
||||
"@vendor_ts__anstyle-1.0.11//:anstyle",
|
||||
"@vendor_ts__anstyle-parse-0.2.7//:anstyle_parse",
|
||||
"@vendor_ts__anstyle-query-1.1.4//:anstyle_query",
|
||||
"@vendor_ts__colorchoice-1.0.4//:colorchoice",
|
||||
"@vendor_ts__is_terminal_polyfill-1.70.1//:is_terminal_polyfill",
|
||||
"@vendor_ts__utf8parse-0.2.2//:utf8parse",
|
||||
"@vendor_ruby__anstyle-1.0.13//:anstyle",
|
||||
"@vendor_ruby__anstyle-parse-0.2.7//:anstyle_parse",
|
||||
"@vendor_ruby__anstyle-query-1.1.5//:anstyle_query",
|
||||
"@vendor_ruby__colorchoice-1.0.4//:colorchoice",
|
||||
"@vendor_ruby__is_terminal_polyfill-1.70.2//:is_terminal_polyfill",
|
||||
"@vendor_ruby__utf8parse-0.2.2//:utf8parse",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__anstyle-wincon-3.0.10//:anstyle_wincon", # aarch64-pc-windows-msvc
|
||||
"@vendor_ruby__anstyle-wincon-3.0.11//:anstyle_wincon", # aarch64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__anstyle-wincon-3.0.10//:anstyle_wincon", # i686-pc-windows-msvc
|
||||
"@vendor_ruby__anstyle-wincon-3.0.11//:anstyle_wincon", # i686-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__anstyle-wincon-3.0.10//:anstyle_wincon", # x86_64-pc-windows-msvc
|
||||
"@vendor_ruby__anstyle-wincon-3.0.11//:anstyle_wincon", # x86_64-pc-windows-msvc
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -96,5 +96,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.0.11",
|
||||
version = "1.0.13",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -98,6 +98,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.2.7",
|
||||
deps = [
|
||||
"@vendor_ts__utf8parse-0.2.2//:utf8parse",
|
||||
"@vendor_ruby__utf8parse-0.2.2//:utf8parse",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -92,16 +92,16 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.1.4",
|
||||
version = "1.1.5",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-sys-0.60.2//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-sys-0.60.2//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-sys-0.60.2//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -92,21 +92,21 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "3.0.10",
|
||||
version = "3.0.11",
|
||||
deps = [
|
||||
"@vendor_ts__anstyle-1.0.11//:anstyle",
|
||||
"@vendor_ruby__anstyle-1.0.13//:anstyle",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__once_cell_polyfill-1.70.1//:once_cell_polyfill", # cfg(windows)
|
||||
"@vendor_ts__windows-sys-0.60.2//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__once_cell_polyfill-1.70.2//:once_cell_polyfill", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__once_cell_polyfill-1.70.1//:once_cell_polyfill", # cfg(windows)
|
||||
"@vendor_ts__windows-sys-0.60.2//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__once_cell_polyfill-1.70.2//:once_cell_polyfill", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__once_cell_polyfill-1.70.1//:once_cell_polyfill", # cfg(windows)
|
||||
"@vendor_ts__windows-sys-0.60.2//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__once_cell_polyfill-1.70.2//:once_cell_polyfill", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
272
misc/bazel/3rdparty/ruby_deps/BUILD.bazel
vendored
Normal file
272
misc/bazel/3rdparty/ruby_deps/BUILD.bazel
vendored
Normal file
@@ -0,0 +1,272 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
exports_files(
|
||||
[
|
||||
"cargo-bazel.json",
|
||||
"crates.bzl",
|
||||
"defs.bzl",
|
||||
] + glob(
|
||||
include = ["*.bazel"],
|
||||
allow_empty = True,
|
||||
),
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "srcs",
|
||||
srcs = glob(
|
||||
include = [
|
||||
"*.bazel",
|
||||
"*.bzl",
|
||||
],
|
||||
allow_empty = True,
|
||||
),
|
||||
)
|
||||
|
||||
# Workspace Member Dependencies
|
||||
alias(
|
||||
name = "chrono-0.4.43",
|
||||
actual = "@vendor_ruby__chrono-0.4.43//:chrono",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "chrono",
|
||||
actual = "@vendor_ruby__chrono-0.4.43//:chrono",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "clap-4.5.54",
|
||||
actual = "@vendor_ruby__clap-4.5.54//:clap",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "clap",
|
||||
actual = "@vendor_ruby__clap-4.5.54//:clap",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "encoding-0.2.33",
|
||||
actual = "@vendor_ruby__encoding-0.2.33//:encoding",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "encoding",
|
||||
actual = "@vendor_ruby__encoding-0.2.33//:encoding",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "flate2-1.1.8",
|
||||
actual = "@vendor_ruby__flate2-1.1.8//:flate2",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "flate2",
|
||||
actual = "@vendor_ruby__flate2-1.1.8//:flate2",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "globset-0.4.18",
|
||||
actual = "@vendor_ruby__globset-0.4.18//:globset",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "globset",
|
||||
actual = "@vendor_ruby__globset-0.4.18//:globset",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "lazy_static-1.5.0",
|
||||
actual = "@vendor_ruby__lazy_static-1.5.0//:lazy_static",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "lazy_static",
|
||||
actual = "@vendor_ruby__lazy_static-1.5.0//:lazy_static",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num_cpus-1.17.0",
|
||||
actual = "@vendor_ruby__num_cpus-1.17.0//:num_cpus",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num_cpus",
|
||||
actual = "@vendor_ruby__num_cpus-1.17.0//:num_cpus",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "rand-0.9.2",
|
||||
actual = "@vendor_ruby__rand-0.9.2//:rand",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "rand",
|
||||
actual = "@vendor_ruby__rand-0.9.2//:rand",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "rayon-1.11.0",
|
||||
actual = "@vendor_ruby__rayon-1.11.0//:rayon",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "rayon",
|
||||
actual = "@vendor_ruby__rayon-1.11.0//:rayon",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "regex-1.12.2",
|
||||
actual = "@vendor_ruby__regex-1.12.2//:regex",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "regex",
|
||||
actual = "@vendor_ruby__regex-1.12.2//:regex",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde-1.0.228",
|
||||
actual = "@vendor_ruby__serde-1.0.228//:serde",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde",
|
||||
actual = "@vendor_ruby__serde-1.0.228//:serde",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_json-1.0.149",
|
||||
actual = "@vendor_ruby__serde_json-1.0.149//:serde_json",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_json",
|
||||
actual = "@vendor_ruby__serde_json-1.0.149//:serde_json",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tracing-0.1.44",
|
||||
actual = "@vendor_ruby__tracing-0.1.44//:tracing",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tracing",
|
||||
actual = "@vendor_ruby__tracing-0.1.44//:tracing",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tracing-subscriber-0.3.22",
|
||||
actual = "@vendor_ruby__tracing-subscriber-0.3.22//:tracing_subscriber",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tracing-subscriber",
|
||||
actual = "@vendor_ruby__tracing-subscriber-0.3.22//:tracing_subscriber",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-0.26.3",
|
||||
actual = "@vendor_ruby__tree-sitter-0.26.3//:tree_sitter",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter",
|
||||
actual = "@vendor_ruby__tree-sitter-0.26.3//:tree_sitter",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-embedded-template-0.25.0",
|
||||
actual = "@vendor_ruby__tree-sitter-embedded-template-0.25.0//:tree_sitter_embedded_template",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-embedded-template",
|
||||
actual = "@vendor_ruby__tree-sitter-embedded-template-0.25.0//:tree_sitter_embedded_template",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-json-0.24.8",
|
||||
actual = "@vendor_ruby__tree-sitter-json-0.24.8//:tree_sitter_json",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-json",
|
||||
actual = "@vendor_ruby__tree-sitter-json-0.24.8//:tree_sitter_json",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-ql-0.23.1",
|
||||
actual = "@vendor_ruby__tree-sitter-ql-0.23.1//:tree_sitter_ql",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-ql",
|
||||
actual = "@vendor_ruby__tree-sitter-ql-0.23.1//:tree_sitter_ql",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-ruby-0.23.1",
|
||||
actual = "@vendor_ruby__tree-sitter-ruby-0.23.1//:tree_sitter_ruby",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tree-sitter-ruby",
|
||||
actual = "@vendor_ruby__tree-sitter-ruby-0.23.1//:tree_sitter_ruby",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "zstd-0.13.3",
|
||||
actual = "@vendor_ruby__zstd-0.13.3//:zstd",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "zstd",
|
||||
actual = "@vendor_ruby__zstd-0.13.3//:zstd",
|
||||
tags = ["manual"],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -96,8 +96,8 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.12.0",
|
||||
version = "1.12.1",
|
||||
deps = [
|
||||
"@vendor_ts__memchr-2.7.5//:memchr",
|
||||
"@vendor_ruby__memchr-2.7.6//:memchr",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,5 +95,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "3.19.0",
|
||||
version = "3.19.1",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,47 +95,47 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.2.37",
|
||||
version = "1.2.53",
|
||||
deps = [
|
||||
"@vendor_ts__find-msvc-tools-0.1.1//:find_msvc_tools",
|
||||
"@vendor_ts__jobserver-0.1.34//:jobserver",
|
||||
"@vendor_ts__shlex-1.3.0//:shlex",
|
||||
"@vendor_ruby__find-msvc-tools-0.1.8//:find_msvc_tools",
|
||||
"@vendor_ruby__jobserver-0.1.34//:jobserver",
|
||||
"@vendor_ruby__shlex-1.3.0//:shlex",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # aarch64-apple-darwin
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # aarch64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # aarch64-unknown-linux-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # aarch64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # arm-unknown-linux-gnueabi
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # arm-unknown-linux-gnueabi
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # i686-unknown-linux-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # i686-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # powerpc-unknown-linux-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # powerpc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # riscv64gc-unknown-linux-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # riscv64gc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # s390x-unknown-linux-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # s390x-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # x86_64-apple-darwin
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # x86_64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # x86_64-unknown-freebsd
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # x86_64-unknown-freebsd
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # x86_64-unknown-linux-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # x86_64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -92,5 +92,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.0.3",
|
||||
version = "1.0.4",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -107,101 +107,101 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.4.42",
|
||||
version = "0.4.43",
|
||||
deps = [
|
||||
"@vendor_ts__num-traits-0.2.19//:num_traits",
|
||||
"@vendor_ts__serde-1.0.228//:serde",
|
||||
"@vendor_ruby__num-traits-0.2.19//:num_traits",
|
||||
"@vendor_ruby__serde-1.0.228//:serde",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-apple-darwin
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-apple-ios
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-apple-ios
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-apple-ios-sim
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-apple-ios-sim
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-linux-android
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-linux-android
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-link-0.2.0//:windows_link", # aarch64-pc-windows-msvc
|
||||
"@vendor_ruby__windows-link-0.2.1//:windows_link", # aarch64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-fuchsia": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-unknown-fuchsia
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-unknown-fuchsia
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-unknown-linux-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # aarch64-unknown-nto-qnx710
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # aarch64-unknown-nto-qnx710
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # arm-unknown-linux-gnueabi
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # arm-unknown-linux-gnueabi
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # armv7-linux-androideabi
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # armv7-linux-androideabi
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # armv7-unknown-linux-gnueabi
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # armv7-unknown-linux-gnueabi
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # i686-apple-darwin
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # i686-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # i686-linux-android
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # i686-linux-android
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-link-0.2.0//:windows_link", # i686-pc-windows-msvc
|
||||
"@vendor_ruby__windows-link-0.2.1//:windows_link", # i686-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # i686-unknown-freebsd
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # i686-unknown-freebsd
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # i686-unknown-linux-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # i686-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # powerpc-unknown-linux-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # powerpc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # riscv64gc-unknown-linux-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # riscv64gc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # s390x-unknown-linux-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # s390x-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-emscripten": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # wasm32-unknown-emscripten
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # wasm32-unknown-emscripten
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [
|
||||
"@vendor_ts__js-sys-0.3.78//:js_sys", # wasm32-unknown-unknown
|
||||
"@vendor_ts__wasm-bindgen-0.2.101//:wasm_bindgen", # wasm32-unknown-unknown
|
||||
"@vendor_ruby__js-sys-0.3.85//:js_sys", # wasm32-unknown-unknown
|
||||
"@vendor_ruby__wasm-bindgen-0.2.108//:wasm_bindgen", # wasm32-unknown-unknown
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-apple-darwin
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-apple-ios
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-apple-ios
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-linux-android
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-linux-android
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-link-0.2.0//:windows_link", # x86_64-pc-windows-msvc
|
||||
"@vendor_ruby__windows-link-0.2.1//:windows_link", # x86_64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-unknown-freebsd
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-unknown-freebsd
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-fuchsia": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-unknown-fuchsia
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-unknown-fuchsia
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-unknown-linux-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__iana-time-zone-0.1.63//:iana_time_zone", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
"@vendor_ruby__iana-time-zone-0.1.64//:iana_time_zone", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -47,7 +47,7 @@ rust_library(
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@vendor_ts__clap_derive-4.5.47//:clap_derive",
|
||||
"@vendor_ruby__clap_derive-4.5.49//:clap_derive",
|
||||
],
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -105,8 +105,8 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "4.5.48",
|
||||
version = "4.5.54",
|
||||
deps = [
|
||||
"@vendor_ts__clap_builder-4.5.48//:clap_builder",
|
||||
"@vendor_ruby__clap_builder-4.5.54//:clap_builder",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -100,11 +100,11 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "4.5.48",
|
||||
version = "4.5.54",
|
||||
deps = [
|
||||
"@vendor_ts__anstream-0.6.20//:anstream",
|
||||
"@vendor_ts__anstyle-1.0.11//:anstyle",
|
||||
"@vendor_ts__clap_lex-0.7.5//:clap_lex",
|
||||
"@vendor_ts__strsim-0.11.1//:strsim",
|
||||
"@vendor_ruby__anstream-0.6.21//:anstream",
|
||||
"@vendor_ruby__anstyle-1.0.13//:anstyle",
|
||||
"@vendor_ruby__clap_lex-0.7.7//:clap_lex",
|
||||
"@vendor_ruby__strsim-0.11.1//:strsim",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,11 +95,11 @@ rust_proc_macro(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "4.5.47",
|
||||
version = "4.5.49",
|
||||
deps = [
|
||||
"@vendor_ts__heck-0.5.0//:heck",
|
||||
"@vendor_ts__proc-macro2-1.0.101//:proc_macro2",
|
||||
"@vendor_ts__quote-1.0.41//:quote",
|
||||
"@vendor_ts__syn-2.0.106//:syn",
|
||||
"@vendor_ruby__heck-0.5.0//:heck",
|
||||
"@vendor_ruby__proc-macro2-1.0.105//:proc_macro2",
|
||||
"@vendor_ruby__quote-1.0.43//:quote",
|
||||
"@vendor_ruby__syn-2.0.114//:syn",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -92,5 +92,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.7.5",
|
||||
version = "0.7.7",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -102,8 +102,8 @@ rust_library(
|
||||
}),
|
||||
version = "1.5.0",
|
||||
deps = [
|
||||
"@vendor_ts__cfg-if-1.0.3//:cfg_if",
|
||||
"@vendor_ts__crc32fast-1.5.0//:build_script_build",
|
||||
"@vendor_ruby__cfg-if-1.0.4//:cfg_if",
|
||||
"@vendor_ruby__crc32fast-1.5.0//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -98,7 +98,7 @@ rust_library(
|
||||
}),
|
||||
version = "0.8.6",
|
||||
deps = [
|
||||
"@vendor_ts__crossbeam-epoch-0.9.18//:crossbeam_epoch",
|
||||
"@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils",
|
||||
"@vendor_ruby__crossbeam-epoch-0.9.18//:crossbeam_epoch",
|
||||
"@vendor_ruby__crossbeam-utils-0.8.21//:crossbeam_utils",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -98,6 +98,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.9.18",
|
||||
deps = [
|
||||
"@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils",
|
||||
"@vendor_ruby__crossbeam-utils-0.8.21//:crossbeam_utils",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -102,7 +102,7 @@ rust_library(
|
||||
}),
|
||||
version = "0.8.21",
|
||||
deps = [
|
||||
"@vendor_ts__crossbeam-utils-0.8.21//:build_script_build",
|
||||
"@vendor_ruby__crossbeam-utils-0.8.21//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
96
misc/bazel/3rdparty/ruby_deps/BUILD.either-1.15.0.bazel
vendored
Normal file
96
misc/bazel/3rdparty/ruby_deps/BUILD.either-1.15.0.bazel
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "either",
|
||||
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_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=either",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "1.15.0",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,10 +94,10 @@ rust_library(
|
||||
}),
|
||||
version = "0.2.33",
|
||||
deps = [
|
||||
"@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",
|
||||
"@vendor_ruby__encoding-index-japanese-1.20141219.5//:encoding_index_japanese",
|
||||
"@vendor_ruby__encoding-index-korean-1.20141219.5//:encoding_index_korean",
|
||||
"@vendor_ruby__encoding-index-simpchinese-1.20141219.5//:encoding_index_simpchinese",
|
||||
"@vendor_ruby__encoding-index-singlebyte-1.20141219.5//:encoding_index_singlebyte",
|
||||
"@vendor_ruby__encoding-index-tradchinese-1.20141219.5//:encoding_index_tradchinese",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "1.20141219.5",
|
||||
deps = [
|
||||
"@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
"@vendor_ruby__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "1.20141219.5",
|
||||
deps = [
|
||||
"@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
"@vendor_ruby__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "1.20141219.5",
|
||||
deps = [
|
||||
"@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
"@vendor_ruby__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "1.20141219.5",
|
||||
deps = [
|
||||
"@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
"@vendor_ruby__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "1.20141219.5",
|
||||
deps = [
|
||||
"@vendor_ts__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
"@vendor_ruby__encoding_index_tests-0.1.4//:encoding_index_tests",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -92,5 +92,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.1.1",
|
||||
version = "0.1.8",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -98,9 +98,9 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.1.2",
|
||||
version = "1.1.8",
|
||||
deps = [
|
||||
"@vendor_ts__crc32fast-1.5.0//:crc32fast",
|
||||
"@vendor_ts__miniz_oxide-0.8.9//:miniz_oxide",
|
||||
"@vendor_ruby__crc32fast-1.5.0//:crc32fast",
|
||||
"@vendor_ruby__miniz_oxide-0.8.9//:miniz_oxide",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -99,85 +99,85 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.3.3",
|
||||
version = "0.3.4",
|
||||
deps = [
|
||||
"@vendor_ts__cfg-if-1.0.3//:cfg_if",
|
||||
"@vendor_ts__getrandom-0.3.3//:build_script_build",
|
||||
"@vendor_ruby__cfg-if-1.0.4//:cfg_if",
|
||||
"@vendor_ruby__getrandom-0.3.4//:build_script_build",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "haiku", target_os = "redox", target_os = "nto", target_os = "aix"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm")))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm")))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-emscripten": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [
|
||||
"@vendor_ts__wasi-0.14.5-wasi-0.2.4//:wasi", # cfg(all(target_arch = "wasm32", target_os = "wasi", target_env = "p2"))
|
||||
"@vendor_ruby__wasip2-1.0.2-wasi-0.2.9//:wasip2", # cfg(all(target_arch = "wasm32", target_os = "wasi", target_env = "p2"))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))
|
||||
"@vendor_ruby__libc-0.2.180//: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.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm")))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", target_os = "cygwin", all(target_os = "horizon", target_arch = "arm")))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(all(target_os = "linux", target_env = ""), getrandom_backend = "custom", getrandom_backend = "linux_raw", getrandom_backend = "rdrand", getrandom_backend = "rndr"))))
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -234,7 +234,7 @@ cargo_build_script(
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.3",
|
||||
version = "0.3.4",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -39,7 +39,7 @@ rust_library(
|
||||
"log",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
edition = "2024",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
@@ -96,12 +96,12 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.4.16",
|
||||
version = "0.4.18",
|
||||
deps = [
|
||||
"@vendor_ts__aho-corasick-1.1.3//:aho_corasick",
|
||||
"@vendor_ts__bstr-1.12.0//:bstr",
|
||||
"@vendor_ts__log-0.4.28//:log",
|
||||
"@vendor_ts__regex-automata-0.4.11//:regex_automata",
|
||||
"@vendor_ts__regex-syntax-0.8.6//:regex_syntax",
|
||||
"@vendor_ruby__aho-corasick-1.1.4//:aho_corasick",
|
||||
"@vendor_ruby__bstr-1.12.1//:bstr",
|
||||
"@vendor_ruby__log-0.4.29//:log",
|
||||
"@vendor_ruby__regex-automata-0.4.13//:regex_automata",
|
||||
"@vendor_ruby__regex-syntax-0.8.8//:regex_syntax",
|
||||
],
|
||||
)
|
||||
96
misc/bazel/3rdparty/ruby_deps/BUILD.hashbrown-0.16.1.bazel
vendored
Normal file
96
misc/bazel/3rdparty/ruby_deps/BUILD.hashbrown-0.16.1.bazel
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "hashbrown",
|
||||
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_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=hashbrown",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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.16.1",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,51 +95,51 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.1.63",
|
||||
version = "0.1.64",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
"@vendor_ruby__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
"@vendor_ruby__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
"@vendor_ruby__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
"@vendor_ruby__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-core-0.61.2//:windows_core", # cfg(target_os = "windows")
|
||||
"@vendor_ruby__windows-core-0.62.2//:windows_core", # cfg(target_os = "windows")
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
"@vendor_ruby__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
"@vendor_ruby__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
"@vendor_ruby__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-core-0.61.2//:windows_core", # cfg(target_os = "windows")
|
||||
"@vendor_ruby__windows-core-0.62.2//:windows_core", # cfg(target_os = "windows")
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [
|
||||
"@vendor_ts__js-sys-0.3.78//:js_sys", # cfg(all(target_arch = "wasm32", target_os = "unknown"))
|
||||
"@vendor_ts__log-0.4.28//:log", # cfg(all(target_arch = "wasm32", target_os = "unknown"))
|
||||
"@vendor_ts__wasm-bindgen-0.2.101//:wasm_bindgen", # cfg(all(target_arch = "wasm32", target_os = "unknown"))
|
||||
"@vendor_ruby__js-sys-0.3.85//:js_sys", # cfg(all(target_arch = "wasm32", target_os = "unknown"))
|
||||
"@vendor_ruby__log-0.4.29//:log", # cfg(all(target_arch = "wasm32", target_os = "unknown"))
|
||||
"@vendor_ruby__wasm-bindgen-0.2.108//:wasm_bindgen", # cfg(all(target_arch = "wasm32", target_os = "unknown"))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
"@vendor_ruby__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@vendor_ts__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
"@vendor_ruby__core-foundation-sys-0.8.7//:core_foundation_sys", # cfg(target_vendor = "apple")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@vendor_ts__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
"@vendor_ruby__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-core-0.61.2//:windows_core", # cfg(target_os = "windows")
|
||||
"@vendor_ruby__windows-core-0.62.2//:windows_core", # cfg(target_os = "windows")
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,7 +98,7 @@ rust_library(
|
||||
}),
|
||||
version = "0.1.2",
|
||||
deps = [
|
||||
"@vendor_ts__iana-time-zone-haiku-0.1.2//:build_script_build",
|
||||
"@vendor_ruby__iana-time-zone-haiku-0.1.2//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -153,7 +153,7 @@ cargo_build_script(
|
||||
version = "0.1.2",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ts__cc-1.2.37//:cc",
|
||||
"@vendor_ruby__cc-1.2.53//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
104
misc/bazel/3rdparty/ruby_deps/BUILD.indexmap-2.13.0.bazel
vendored
Normal file
104
misc/bazel/3rdparty/ruby_deps/BUILD.indexmap-2.13.0.bazel
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "indexmap",
|
||||
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",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=indexmap",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "2.13.0",
|
||||
deps = [
|
||||
"@vendor_ruby__equivalent-1.0.2//:equivalent",
|
||||
"@vendor_ruby__hashbrown-0.16.1//:hashbrown",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,5 +95,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.70.1",
|
||||
version = "1.70.2",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -35,7 +35,7 @@ rust_library(
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
@@ -92,5 +92,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.0.15",
|
||||
version = "1.0.17",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,91 +95,91 @@ rust_library(
|
||||
version = "0.1.34",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__getrandom-0.3.3//:getrandom", # cfg(windows)
|
||||
"@vendor_ruby__getrandom-0.3.4//:getrandom", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-fuchsia": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__getrandom-0.3.3//:getrandom", # cfg(windows)
|
||||
"@vendor_ruby__getrandom-0.3.4//:getrandom", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-emscripten": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__getrandom-0.3.3//:getrandom", # cfg(windows)
|
||||
"@vendor_ruby__getrandom-0.3.4//:getrandom", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-fuchsia": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(unix)
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(unix)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -96,9 +96,9 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.3.78",
|
||||
version = "0.3.85",
|
||||
deps = [
|
||||
"@vendor_ts__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ts__wasm-bindgen-0.2.101//:wasm_bindgen",
|
||||
"@vendor_ruby__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ruby__wasm-bindgen-0.2.108//:wasm_bindgen",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -100,9 +100,9 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.2.175",
|
||||
version = "0.2.180",
|
||||
deps = [
|
||||
"@vendor_ts__libc-0.2.175//:build_script_build",
|
||||
"@vendor_ruby__libc-0.2.180//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -158,7 +158,7 @@ cargo_build_script(
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.175",
|
||||
version = "0.2.180",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,5 +95,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.4.28",
|
||||
version = "0.4.29",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.2.0",
|
||||
deps = [
|
||||
"@vendor_ts__regex-automata-0.4.11//:regex_automata",
|
||||
"@vendor_ruby__regex-automata-0.4.13//:regex_automata",
|
||||
],
|
||||
)
|
||||
100
misc/bazel/3rdparty/ruby_deps/BUILD.memchr-2.7.6.bazel
vendored
Normal file
100
misc/bazel/3rdparty/ruby_deps/BUILD.memchr-2.7.6.bazel
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "memchr",
|
||||
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",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=memchr",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "2.7.6",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -35,6 +35,8 @@ rust_library(
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"simd",
|
||||
"simd-adler32",
|
||||
"with-alloc",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
@@ -97,6 +99,7 @@ rust_library(
|
||||
}),
|
||||
version = "0.8.9",
|
||||
deps = [
|
||||
"@vendor_ts__adler2-2.0.1//:adler2",
|
||||
"@vendor_ruby__adler2-2.0.1//:adler2",
|
||||
"@vendor_ruby__simd-adler32-0.3.8//:simd_adler32",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -24,13 +24,13 @@ rust_library(
|
||||
),
|
||||
aliases = select({
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": {
|
||||
"@vendor_ts__windows-sys-0.52.0//:windows_sys": "windows", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys": "windows", # cfg(windows)
|
||||
},
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": {
|
||||
"@vendor_ts__windows-sys-0.52.0//:windows_sys": "windows", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys": "windows", # cfg(windows)
|
||||
},
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": {
|
||||
"@vendor_ts__windows-sys-0.52.0//:windows_sys": "windows", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys": "windows", # cfg(windows)
|
||||
},
|
||||
"//conditions:default": {},
|
||||
}),
|
||||
@@ -46,6 +46,10 @@ rust_library(
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
@@ -104,16 +108,16 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.50.1",
|
||||
version = "0.50.3",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-sys-0.52.0//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-sys-0.52.0//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ts__windows-sys-0.52.0//:windows_sys", # cfg(windows)
|
||||
"@vendor_ruby__windows-sys-0.61.2//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
164
misc/bazel/3rdparty/ruby_deps/BUILD.num-traits-0.2.19.bazel
vendored
Normal file
164
misc/bazel/3rdparty/ruby_deps/BUILD.num-traits-0.2.19.bazel
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//cargo:defs.bzl",
|
||||
"cargo_build_script",
|
||||
"cargo_toml_env_vars",
|
||||
)
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "num_traits",
|
||||
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_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=num-traits",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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.19",
|
||||
deps = [
|
||||
"@vendor_ruby__num-traits-0.2.19//: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 = "num-traits",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=num-traits",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.19",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ruby__autocfg-1.5.0//:autocfg",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = ":_bs",
|
||||
tags = ["manual"],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,115 +95,115 @@ rust_library(
|
||||
version = "1.17.0",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-fuchsia": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-uefi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:thumbv7em-none-eabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-emscripten": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-fuchsia": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-none": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [
|
||||
"@vendor_ts__libc-0.2.175//:libc", # cfg(not(windows))
|
||||
"@vendor_ruby__libc-0.2.180//:libc", # cfg(not(windows))
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -95,5 +95,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.70.1",
|
||||
version = "1.70.2",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -98,6 +98,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.2.21",
|
||||
deps = [
|
||||
"@vendor_ts__zerocopy-0.8.27//:zerocopy",
|
||||
"@vendor_ruby__zerocopy-0.8.33//:zerocopy",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -100,10 +100,10 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.0.101",
|
||||
version = "1.0.105",
|
||||
deps = [
|
||||
"@vendor_ts__proc-macro2-1.0.101//:build_script_build",
|
||||
"@vendor_ts__unicode-ident-1.0.19//:unicode_ident",
|
||||
"@vendor_ruby__proc-macro2-1.0.105//:build_script_build",
|
||||
"@vendor_ruby__unicode-ident-1.0.22//:unicode_ident",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -159,7 +159,7 @@ cargo_build_script(
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.101",
|
||||
version = "1.0.105",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -43,7 +43,7 @@ rust_library(
|
||||
"proc-macro",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
@@ -100,10 +100,10 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.0.41",
|
||||
version = "1.0.43",
|
||||
deps = [
|
||||
"@vendor_ts__proc-macro2-1.0.101//:proc_macro2",
|
||||
"@vendor_ts__quote-1.0.41//:build_script_build",
|
||||
"@vendor_ruby__proc-macro2-1.0.105//:proc_macro2",
|
||||
"@vendor_ruby__quote-1.0.43//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -144,7 +144,7 @@ cargo_build_script(
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
edition = "2021",
|
||||
pkg_name = "quote",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -159,7 +159,7 @@ cargo_build_script(
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.41",
|
||||
version = "1.0.43",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -103,7 +103,7 @@ rust_library(
|
||||
}),
|
||||
version = "0.9.2",
|
||||
deps = [
|
||||
"@vendor_ts__rand_chacha-0.9.0//:rand_chacha",
|
||||
"@vendor_ts__rand_core-0.9.3//:rand_core",
|
||||
"@vendor_ruby__rand_chacha-0.9.0//:rand_chacha",
|
||||
"@vendor_ruby__rand_core-0.9.5//:rand_core",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -97,7 +97,7 @@ rust_library(
|
||||
}),
|
||||
version = "0.9.0",
|
||||
deps = [
|
||||
"@vendor_ts__ppv-lite86-0.2.21//:ppv_lite86",
|
||||
"@vendor_ts__rand_core-0.9.3//:rand_core",
|
||||
"@vendor_ruby__ppv-lite86-0.2.21//:ppv_lite86",
|
||||
"@vendor_ruby__rand_core-0.9.5//:rand_core",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -96,8 +96,8 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.9.3",
|
||||
version = "0.9.5",
|
||||
deps = [
|
||||
"@vendor_ts__getrandom-0.3.3//:getrandom",
|
||||
"@vendor_ruby__getrandom-0.3.4//:getrandom",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,7 +94,7 @@ rust_library(
|
||||
}),
|
||||
version = "1.11.0",
|
||||
deps = [
|
||||
"@vendor_ts__either-1.15.0//:either",
|
||||
"@vendor_ts__rayon-core-1.13.0//:rayon_core",
|
||||
"@vendor_ruby__either-1.15.0//:either",
|
||||
"@vendor_ruby__rayon-core-1.13.0//:rayon_core",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,9 +98,9 @@ rust_library(
|
||||
}),
|
||||
version = "1.13.0",
|
||||
deps = [
|
||||
"@vendor_ts__crossbeam-deque-0.8.6//:crossbeam_deque",
|
||||
"@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils",
|
||||
"@vendor_ts__rayon-core-1.13.0//:build_script_build",
|
||||
"@vendor_ruby__crossbeam-deque-0.8.6//:crossbeam_deque",
|
||||
"@vendor_ruby__crossbeam-utils-0.8.21//:crossbeam_utils",
|
||||
"@vendor_ruby__rayon-core-1.13.0//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -111,11 +111,11 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "1.11.3",
|
||||
version = "1.12.2",
|
||||
deps = [
|
||||
"@vendor_ts__aho-corasick-1.1.3//:aho_corasick",
|
||||
"@vendor_ts__memchr-2.7.5//:memchr",
|
||||
"@vendor_ts__regex-automata-0.4.11//:regex_automata",
|
||||
"@vendor_ts__regex-syntax-0.8.6//:regex_syntax",
|
||||
"@vendor_ruby__aho-corasick-1.1.4//:aho_corasick",
|
||||
"@vendor_ruby__memchr-2.7.6//:memchr",
|
||||
"@vendor_ruby__regex-automata-0.4.13//:regex_automata",
|
||||
"@vendor_ruby__regex-syntax-0.8.8//:regex_syntax",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -120,10 +120,10 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.4.11",
|
||||
version = "0.4.13",
|
||||
deps = [
|
||||
"@vendor_ts__aho-corasick-1.1.3//:aho_corasick",
|
||||
"@vendor_ts__memchr-2.7.5//:memchr",
|
||||
"@vendor_ts__regex-syntax-0.8.6//:regex_syntax",
|
||||
"@vendor_ruby__aho-corasick-1.1.4//:aho_corasick",
|
||||
"@vendor_ruby__memchr-2.7.6//:memchr",
|
||||
"@vendor_ruby__regex-syntax-0.8.8//:regex_syntax",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -104,5 +104,5 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.8.6",
|
||||
version = "0.8.8",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,7 +98,7 @@ rust_proc_macro(
|
||||
}),
|
||||
version = "1.0.22",
|
||||
deps = [
|
||||
"@vendor_ts__rustversion-1.0.22//:build_script_build",
|
||||
"@vendor_ruby__rustversion-1.0.22//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -39,7 +39,6 @@ rust_library(
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"derive",
|
||||
"serde_derive",
|
||||
@@ -48,7 +47,7 @@ rust_library(
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@vendor_ts__serde_derive-1.0.228//:serde_derive",
|
||||
"@vendor_ruby__serde_derive-1.0.228//:serde_derive",
|
||||
],
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -108,8 +107,8 @@ rust_library(
|
||||
}),
|
||||
version = "1.0.228",
|
||||
deps = [
|
||||
"@vendor_ts__serde-1.0.228//:build_script_build",
|
||||
"@vendor_ts__serde_core-1.0.228//:serde_core",
|
||||
"@vendor_ruby__serde-1.0.228//:build_script_build",
|
||||
"@vendor_ruby__serde_core-1.0.228//:serde_core",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -133,7 +132,6 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"derive",
|
||||
"serde_derive",
|
||||
169
misc/bazel/3rdparty/ruby_deps/BUILD.serde_core-1.0.228.bazel
vendored
Normal file
169
misc/bazel/3rdparty/ruby_deps/BUILD.serde_core-1.0.228.bazel
vendored
Normal file
@@ -0,0 +1,169 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//cargo:defs.bzl",
|
||||
"cargo_build_script",
|
||||
"cargo_toml_env_vars",
|
||||
)
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "serde_core",
|
||||
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 = [
|
||||
"result",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=serde_core",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "1.0.228",
|
||||
deps = [
|
||||
"@vendor_ruby__serde_core-1.0.228//: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 = [
|
||||
"result",
|
||||
"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 = "serde_core",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=serde_core",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.228",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = ":_bs",
|
||||
tags = ["manual"],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -97,8 +97,8 @@ rust_proc_macro(
|
||||
}),
|
||||
version = "1.0.228",
|
||||
deps = [
|
||||
"@vendor_ts__proc-macro2-1.0.101//:proc_macro2",
|
||||
"@vendor_ts__quote-1.0.41//:quote",
|
||||
"@vendor_ts__syn-2.0.106//:syn",
|
||||
"@vendor_ruby__proc-macro2-1.0.105//:proc_macro2",
|
||||
"@vendor_ruby__quote-1.0.43//:quote",
|
||||
"@vendor_ruby__syn-2.0.114//:syn",
|
||||
],
|
||||
)
|
||||
344
misc/bazel/3rdparty/ruby_deps/BUILD.serde_json-1.0.149.bazel
vendored
Normal file
344
misc/bazel/3rdparty/ruby_deps/BUILD.serde_json-1.0.149.bazel
vendored
Normal file
@@ -0,0 +1,344 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//cargo:defs.bzl",
|
||||
"cargo_build_script",
|
||||
"cargo_toml_env_vars",
|
||||
)
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "serde_json",
|
||||
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",
|
||||
"std",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"indexmap", # aarch64-apple-darwin
|
||||
"preserve_order", # aarch64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"indexmap", # aarch64-pc-windows-msvc
|
||||
"preserve_order", # aarch64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"indexmap", # aarch64-unknown-linux-gnu
|
||||
"preserve_order", # aarch64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"indexmap", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
"preserve_order", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"indexmap", # arm-unknown-linux-gnueabi
|
||||
"preserve_order", # arm-unknown-linux-gnueabi
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"indexmap", # i686-pc-windows-msvc
|
||||
"preserve_order", # i686-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"indexmap", # i686-unknown-linux-gnu
|
||||
"preserve_order", # i686-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"indexmap", # powerpc-unknown-linux-gnu
|
||||
"preserve_order", # powerpc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"indexmap", # riscv64gc-unknown-linux-gnu
|
||||
"preserve_order", # riscv64gc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"indexmap", # s390x-unknown-linux-gnu
|
||||
"preserve_order", # s390x-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"indexmap", # x86_64-apple-darwin
|
||||
"preserve_order", # x86_64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"indexmap", # x86_64-pc-windows-msvc
|
||||
"preserve_order", # x86_64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"indexmap", # x86_64-unknown-freebsd
|
||||
"preserve_order", # x86_64-unknown-freebsd
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"indexmap", # x86_64-unknown-linux-gnu
|
||||
"preserve_order", # x86_64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"indexmap", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
"preserve_order", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=serde_json",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "1.0.149",
|
||||
deps = [
|
||||
"@vendor_ruby__itoa-1.0.17//:itoa",
|
||||
"@vendor_ruby__memchr-2.7.6//:memchr",
|
||||
"@vendor_ruby__serde_core-1.0.228//:serde_core",
|
||||
"@vendor_ruby__serde_json-1.0.149//:build_script_build",
|
||||
"@vendor_ruby__zmij-1.0.15//:zmij",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # aarch64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # aarch64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # aarch64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # arm-unknown-linux-gnueabi
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # i686-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # i686-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # powerpc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # riscv64gc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # s390x-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # x86_64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # x86_64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # x86_64-unknown-freebsd
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # x86_64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"@vendor_ruby__indexmap-2.13.0//:indexmap", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
],
|
||||
"//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 = [
|
||||
"default",
|
||||
"std",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"indexmap", # aarch64-apple-darwin
|
||||
"preserve_order", # aarch64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
|
||||
"indexmap", # aarch64-pc-windows-msvc
|
||||
"preserve_order", # aarch64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"indexmap", # aarch64-unknown-linux-gnu
|
||||
"preserve_order", # aarch64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
|
||||
"indexmap", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
"preserve_order", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"indexmap", # arm-unknown-linux-gnueabi
|
||||
"preserve_order", # arm-unknown-linux-gnueabi
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"indexmap", # i686-pc-windows-msvc
|
||||
"preserve_order", # i686-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"indexmap", # i686-unknown-linux-gnu
|
||||
"preserve_order", # i686-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"indexmap", # powerpc-unknown-linux-gnu
|
||||
"preserve_order", # powerpc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [
|
||||
"indexmap", # riscv64gc-unknown-linux-gnu
|
||||
"preserve_order", # riscv64gc-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"indexmap", # s390x-unknown-linux-gnu
|
||||
"preserve_order", # s390x-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"indexmap", # x86_64-apple-darwin
|
||||
"preserve_order", # x86_64-apple-darwin
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"indexmap", # x86_64-pc-windows-msvc
|
||||
"preserve_order", # x86_64-pc-windows-msvc
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"indexmap", # x86_64-unknown-freebsd
|
||||
"preserve_order", # x86_64-unknown-freebsd
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"indexmap", # x86_64-unknown-linux-gnu
|
||||
"preserve_order", # x86_64-unknown-linux-gnu
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
|
||||
"indexmap", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
"preserve_order", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
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 = "serde_json",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=serde_json",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.149",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = ":_bs",
|
||||
tags = ["manual"],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "0.1.7",
|
||||
deps = [
|
||||
"@vendor_ts__lazy_static-1.5.0//:lazy_static",
|
||||
"@vendor_ruby__lazy_static-1.5.0//:lazy_static",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
96
misc/bazel/3rdparty/ruby_deps/BUILD.simd-adler32-0.3.8.bazel
vendored
Normal file
96
misc/bazel/3rdparty/ruby_deps/BUILD.simd-adler32-0.3.8.bazel
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "simd_adler32",
|
||||
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 = "2018",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=simd-adler32",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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.8",
|
||||
)
|
||||
96
misc/bazel/3rdparty/ruby_deps/BUILD.smallvec-1.15.1.bazel
vendored
Normal file
96
misc/bazel/3rdparty/ruby_deps/BUILD.smallvec-1.15.1.bazel
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "smallvec",
|
||||
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 = "2018",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=smallvec",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "1.15.1",
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
113
misc/bazel/3rdparty/ruby_deps/BUILD.syn-2.0.114.bazel
vendored
Normal file
113
misc/bazel/3rdparty/ruby_deps/BUILD.syn-2.0.114.bazel
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
###############################################################################
|
||||
# @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_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cargo_toml_env_vars(
|
||||
name = "cargo_toml_env_vars",
|
||||
src = "Cargo.toml",
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "syn",
|
||||
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 = [
|
||||
"clone-impls",
|
||||
"default",
|
||||
"derive",
|
||||
"extra-traits",
|
||||
"full",
|
||||
"parsing",
|
||||
"printing",
|
||||
"proc-macro",
|
||||
"visit",
|
||||
"visit-mut",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=syn",
|
||||
"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-linux-gnu": [],
|
||||
"@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-emscripten": [],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip1-threads": [],
|
||||
"@rules_rust//rust/platform:wasm32-wasip2": [],
|
||||
"@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 = "2.0.114",
|
||||
deps = [
|
||||
"@vendor_ruby__proc-macro2-1.0.105//:proc_macro2",
|
||||
"@vendor_ruby__quote-1.0.43//:quote",
|
||||
"@vendor_ruby__unicode-ident-1.0.22//:unicode_ident",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -94,6 +94,6 @@ rust_library(
|
||||
}),
|
||||
version = "1.1.9",
|
||||
deps = [
|
||||
"@vendor_ts__cfg-if-1.0.3//:cfg_if",
|
||||
"@vendor_ruby__cfg-if-1.0.4//:cfg_if",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -43,7 +43,7 @@ rust_library(
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@vendor_ts__tracing-attributes-0.1.30//:tracing_attributes",
|
||||
"@vendor_ruby__tracing-attributes-0.1.31//:tracing_attributes",
|
||||
],
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -101,9 +101,9 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.1.41",
|
||||
version = "0.1.44",
|
||||
deps = [
|
||||
"@vendor_ts__pin-project-lite-0.2.16//:pin_project_lite",
|
||||
"@vendor_ts__tracing-core-0.1.34//:tracing_core",
|
||||
"@vendor_ruby__pin-project-lite-0.2.16//:pin_project_lite",
|
||||
"@vendor_ruby__tracing-core-0.1.36//:tracing_core",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -92,10 +92,10 @@ rust_proc_macro(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.1.30",
|
||||
version = "0.1.31",
|
||||
deps = [
|
||||
"@vendor_ts__proc-macro2-1.0.101//:proc_macro2",
|
||||
"@vendor_ts__quote-1.0.41//:quote",
|
||||
"@vendor_ts__syn-2.0.106//:syn",
|
||||
"@vendor_ruby__proc-macro2-1.0.105//:proc_macro2",
|
||||
"@vendor_ruby__quote-1.0.43//:quote",
|
||||
"@vendor_ruby__syn-2.0.114//:syn",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -97,8 +97,8 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.1.34",
|
||||
version = "0.1.36",
|
||||
deps = [
|
||||
"@vendor_ts__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ruby__once_cell-1.21.3//:once_cell",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -98,8 +98,8 @@ rust_library(
|
||||
}),
|
||||
version = "0.2.0",
|
||||
deps = [
|
||||
"@vendor_ts__log-0.4.28//:log",
|
||||
"@vendor_ts__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ts__tracing-core-0.1.34//:tracing_core",
|
||||
"@vendor_ruby__log-0.4.29//:log",
|
||||
"@vendor_ruby__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ruby__tracing-core-0.1.36//:tracing_core",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
|
||||
@@ -109,17 +109,17 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.3.20",
|
||||
version = "0.3.22",
|
||||
deps = [
|
||||
"@vendor_ts__matchers-0.2.0//:matchers",
|
||||
"@vendor_ts__nu-ansi-term-0.50.1//:nu_ansi_term",
|
||||
"@vendor_ts__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ts__regex-automata-0.4.11//:regex_automata",
|
||||
"@vendor_ts__sharded-slab-0.1.7//:sharded_slab",
|
||||
"@vendor_ts__smallvec-1.15.1//:smallvec",
|
||||
"@vendor_ts__thread_local-1.1.9//:thread_local",
|
||||
"@vendor_ts__tracing-0.1.41//:tracing",
|
||||
"@vendor_ts__tracing-core-0.1.34//:tracing_core",
|
||||
"@vendor_ts__tracing-log-0.2.0//:tracing_log",
|
||||
"@vendor_ruby__matchers-0.2.0//:matchers",
|
||||
"@vendor_ruby__nu-ansi-term-0.50.3//:nu_ansi_term",
|
||||
"@vendor_ruby__once_cell-1.21.3//:once_cell",
|
||||
"@vendor_ruby__regex-automata-0.4.13//:regex_automata",
|
||||
"@vendor_ruby__sharded-slab-0.1.7//:sharded_slab",
|
||||
"@vendor_ruby__smallvec-1.15.1//:smallvec",
|
||||
"@vendor_ruby__thread_local-1.1.9//:thread_local",
|
||||
"@vendor_ruby__tracing-0.1.44//:tracing",
|
||||
"@vendor_ruby__tracing-core-0.1.36//:tracing_core",
|
||||
"@vendor_ruby__tracing-log-0.2.0//:tracing_log",
|
||||
],
|
||||
)
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -100,13 +100,13 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.25.9",
|
||||
version = "0.26.3",
|
||||
deps = [
|
||||
"@vendor_ts__regex-1.11.3//:regex",
|
||||
"@vendor_ts__regex-syntax-0.8.6//:regex_syntax",
|
||||
"@vendor_ts__streaming-iterator-0.1.9//:streaming_iterator",
|
||||
"@vendor_ts__tree-sitter-0.25.9//:build_script_build",
|
||||
"@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language",
|
||||
"@vendor_ruby__regex-1.12.2//:regex",
|
||||
"@vendor_ruby__regex-syntax-0.8.8//:regex_syntax",
|
||||
"@vendor_ruby__streaming-iterator-0.1.9//:streaming_iterator",
|
||||
"@vendor_ruby__tree-sitter-0.26.3//:build_script_build",
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -148,6 +148,9 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
link_deps = [
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
links = "tree-sitter",
|
||||
pkg_name = "tree-sitter",
|
||||
rustc_env_files = [
|
||||
@@ -163,11 +166,11 @@ cargo_build_script(
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.25.9",
|
||||
version = "0.26.3",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ts__cc-1.2.37//:cc",
|
||||
"@vendor_ts__serde_json-1.0.145//:serde_json",
|
||||
"@vendor_ruby__cc-1.2.53//:cc",
|
||||
"@vendor_ruby__serde_json-1.0.149//:serde_json",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,8 +98,8 @@ rust_library(
|
||||
}),
|
||||
version = "0.25.0",
|
||||
deps = [
|
||||
"@vendor_ts__tree-sitter-embedded-template-0.25.0//:build_script_build",
|
||||
"@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language",
|
||||
"@vendor_ruby__tree-sitter-embedded-template-0.25.0//:build_script_build",
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -137,6 +137,9 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
link_deps = [
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
pkg_name = "tree-sitter-embedded-template",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -154,7 +157,7 @@ cargo_build_script(
|
||||
version = "0.25.0",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ts__cc-1.2.37//:cc",
|
||||
"@vendor_ruby__cc-1.2.53//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,8 +98,8 @@ rust_library(
|
||||
}),
|
||||
version = "0.24.8",
|
||||
deps = [
|
||||
"@vendor_ts__tree-sitter-json-0.24.8//:build_script_build",
|
||||
"@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language",
|
||||
"@vendor_ruby__tree-sitter-json-0.24.8//:build_script_build",
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -137,6 +137,9 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
link_deps = [
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
pkg_name = "tree-sitter-json",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -154,7 +157,7 @@ cargo_build_script(
|
||||
version = "0.24.8",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ts__cc-1.2.37//:cc",
|
||||
"@vendor_ruby__cc-1.2.53//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -21,7 +21,7 @@ cargo_toml_env_vars(
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "windows_aarch64_gnullvm",
|
||||
name = "tree_sitter_language",
|
||||
srcs = glob(
|
||||
include = ["**/*.rs"],
|
||||
allow_empty = True,
|
||||
@@ -38,7 +38,7 @@ rust_library(
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
crate_root = "src/language.rs",
|
||||
edition = "2021",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -48,7 +48,7 @@ rust_library(
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=windows_aarch64_gnullvm",
|
||||
"crate-name=tree-sitter-language",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
@@ -96,9 +96,9 @@ rust_library(
|
||||
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
|
||||
"//conditions:default": ["@platforms//:incompatible"],
|
||||
}),
|
||||
version = "0.52.6",
|
||||
version = "0.1.6",
|
||||
deps = [
|
||||
"@vendor_ts__windows_aarch64_gnullvm-0.52.6//:build_script_build",
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -136,7 +136,8 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
pkg_name = "windows_aarch64_gnullvm",
|
||||
links = "tree-sitter-language",
|
||||
pkg_name = "tree-sitter-language",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
],
|
||||
@@ -145,12 +146,12 @@ cargo_build_script(
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=windows_aarch64_gnullvm",
|
||||
"crate-name=tree-sitter-language",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.52.6",
|
||||
version = "0.1.6",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,8 +98,8 @@ rust_library(
|
||||
}),
|
||||
version = "0.23.1",
|
||||
deps = [
|
||||
"@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language",
|
||||
"@vendor_ts__tree-sitter-ql-0.23.1//:build_script_build",
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
"@vendor_ruby__tree-sitter-ql-0.23.1//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -137,6 +137,9 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
link_deps = [
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
pkg_name = "tree-sitter-ql",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -154,7 +157,7 @@ cargo_build_script(
|
||||
version = "0.23.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ts__cc-1.2.37//:cc",
|
||||
"@vendor_ruby__cc-1.2.53//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# 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
|
||||
# bazel run @@//misc/bazel/3rdparty:vendor_ruby_deps
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
@@ -98,8 +98,8 @@ rust_library(
|
||||
}),
|
||||
version = "0.23.1",
|
||||
deps = [
|
||||
"@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language",
|
||||
"@vendor_ts__tree-sitter-ruby-0.23.1//:build_script_build",
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
"@vendor_ruby__tree-sitter-ruby-0.23.1//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -137,6 +137,9 @@ cargo_build_script(
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
link_deps = [
|
||||
"@vendor_ruby__tree-sitter-language-0.1.6//:tree_sitter_language",
|
||||
],
|
||||
pkg_name = "tree-sitter-ruby",
|
||||
rustc_env_files = [
|
||||
":cargo_toml_env_vars",
|
||||
@@ -154,7 +157,7 @@ cargo_build_script(
|
||||
version = "0.23.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@vendor_ts__cc-1.2.37//:cc",
|
||||
"@vendor_ruby__cc-1.2.53//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user