Bazel: regenerate vendored cargo dependencies

This commit is contained in:
Paolo Tranquilli
2025-08-12 16:51:13 +02:00
parent 6ad8af0ea9
commit 0a42b7aba3
363 changed files with 4755 additions and 1037 deletions

View File

@@ -98,49 +98,49 @@ use_repo(
tree_sitter_extractors_deps = use_extension("//misc/bazel/3rdparty:tree_sitter_extractors_extension.bzl", "r") tree_sitter_extractors_deps = use_extension("//misc/bazel/3rdparty:tree_sitter_extractors_extension.bzl", "r")
use_repo( use_repo(
tree_sitter_extractors_deps, tree_sitter_extractors_deps,
"vendor_ts__anyhow-1.0.98", "vendor_ts__anyhow-1.0.99",
"vendor_ts__argfile-0.2.1", "vendor_ts__argfile-0.2.1",
"vendor_ts__chalk-ir-0.103.0", "vendor_ts__chalk-ir-0.104.0",
"vendor_ts__chrono-0.4.41", "vendor_ts__chrono-0.4.41",
"vendor_ts__clap-4.5.41", "vendor_ts__clap-4.5.44",
"vendor_ts__dunce-1.0.5", "vendor_ts__dunce-1.0.5",
"vendor_ts__either-1.15.0", "vendor_ts__either-1.15.0",
"vendor_ts__encoding-0.2.33", "vendor_ts__encoding-0.2.33",
"vendor_ts__figment-0.10.19", "vendor_ts__figment-0.10.19",
"vendor_ts__flate2-1.1.0", "vendor_ts__flate2-1.1.0",
"vendor_ts__glob-0.3.2", "vendor_ts__glob-0.3.3",
"vendor_ts__globset-0.4.15", "vendor_ts__globset-0.4.15",
"vendor_ts__itertools-0.14.0", "vendor_ts__itertools-0.14.0",
"vendor_ts__lazy_static-1.5.0", "vendor_ts__lazy_static-1.5.0",
"vendor_ts__mustache-0.9.0", "vendor_ts__mustache-0.9.0",
"vendor_ts__num-traits-0.2.19", "vendor_ts__num-traits-0.2.19",
"vendor_ts__num_cpus-1.17.0", "vendor_ts__num_cpus-1.17.0",
"vendor_ts__proc-macro2-1.0.95", "vendor_ts__proc-macro2-1.0.97",
"vendor_ts__quote-1.0.40", "vendor_ts__quote-1.0.40",
"vendor_ts__ra_ap_base_db-0.0.294", "vendor_ts__ra_ap_base_db-0.0.300",
"vendor_ts__ra_ap_cfg-0.0.294", "vendor_ts__ra_ap_cfg-0.0.300",
"vendor_ts__ra_ap_hir-0.0.294", "vendor_ts__ra_ap_hir-0.0.300",
"vendor_ts__ra_ap_hir_def-0.0.294", "vendor_ts__ra_ap_hir_def-0.0.300",
"vendor_ts__ra_ap_hir_expand-0.0.294", "vendor_ts__ra_ap_hir_expand-0.0.300",
"vendor_ts__ra_ap_hir_ty-0.0.294", "vendor_ts__ra_ap_hir_ty-0.0.300",
"vendor_ts__ra_ap_ide_db-0.0.294", "vendor_ts__ra_ap_ide_db-0.0.300",
"vendor_ts__ra_ap_intern-0.0.294", "vendor_ts__ra_ap_intern-0.0.300",
"vendor_ts__ra_ap_load-cargo-0.0.294", "vendor_ts__ra_ap_load-cargo-0.0.300",
"vendor_ts__ra_ap_parser-0.0.294", "vendor_ts__ra_ap_parser-0.0.300",
"vendor_ts__ra_ap_paths-0.0.294", "vendor_ts__ra_ap_paths-0.0.300",
"vendor_ts__ra_ap_project_model-0.0.294", "vendor_ts__ra_ap_project_model-0.0.300",
"vendor_ts__ra_ap_span-0.0.294", "vendor_ts__ra_ap_span-0.0.300",
"vendor_ts__ra_ap_stdx-0.0.294", "vendor_ts__ra_ap_stdx-0.0.300",
"vendor_ts__ra_ap_syntax-0.0.294", "vendor_ts__ra_ap_syntax-0.0.300",
"vendor_ts__ra_ap_vfs-0.0.294", "vendor_ts__ra_ap_vfs-0.0.300",
"vendor_ts__rand-0.9.1", "vendor_ts__rand-0.9.2",
"vendor_ts__rayon-1.10.0", "vendor_ts__rayon-1.10.0",
"vendor_ts__regex-1.11.1", "vendor_ts__regex-1.11.1",
"vendor_ts__serde-1.0.219", "vendor_ts__serde-1.0.219",
"vendor_ts__serde_json-1.0.140", "vendor_ts__serde_json-1.0.142",
"vendor_ts__serde_with-3.14.0", "vendor_ts__serde_with-3.14.0",
"vendor_ts__syn-2.0.104", "vendor_ts__syn-2.0.104",
"vendor_ts__toml-0.9.2", "vendor_ts__toml-0.9.5",
"vendor_ts__tracing-0.1.41", "vendor_ts__tracing-0.1.41",
"vendor_ts__tracing-flame-0.2.0", "vendor_ts__tracing-flame-0.2.0",
"vendor_ts__tracing-subscriber-0.3.19", "vendor_ts__tracing-subscriber-0.3.19",

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "adler2", name = "adler2",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "aho_corasick", name = "aho_corasick",
srcs = glob( srcs = glob(
@@ -35,6 +41,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "allocator_api2", name = "allocator_api2",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "android_tzdata", name = "android_tzdata",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "android_system_properties", name = "android_system_properties",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "anstream", name = "anstream",
srcs = glob( srcs = glob(
@@ -35,6 +41,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "anstyle", name = "anstyle",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "anstyle_parse", name = "anstyle_parse",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "anstyle_query", name = "anstyle_query",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "anstyle_wincon", name = "anstyle_wincon",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "anyhow", name = "anyhow",
srcs = glob( srcs = glob(
@@ -35,6 +44,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -84,9 +96,9 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "1.0.98", version = "1.0.99",
deps = [ deps = [
"@vendor_ts__anyhow-1.0.98//:build_script_build", "@vendor_ts__anyhow-1.0.99//:build_script_build",
], ],
) )
@@ -129,6 +141,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "anyhow", pkg_name = "anyhow",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -139,7 +154,7 @@ cargo_build_script(
"noclippy", "noclippy",
"norustfmt", "norustfmt",
], ],
version = "1.0.98", version = "1.0.99",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "argfile", name = "argfile",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "arrayvec", name = "arrayvec",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "atomic", name = "atomic",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "autocfg", name = "autocfg",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "base64", name = "base64",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -32,14 +32,14 @@ filegroup(
# Workspace Member Dependencies # Workspace Member Dependencies
alias( alias(
name = "anyhow-1.0.98", name = "anyhow-1.0.99",
actual = "@vendor_ts__anyhow-1.0.98//:anyhow", actual = "@vendor_ts__anyhow-1.0.99//:anyhow",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "anyhow", name = "anyhow",
actual = "@vendor_ts__anyhow-1.0.98//:anyhow", actual = "@vendor_ts__anyhow-1.0.99//:anyhow",
tags = ["manual"], tags = ["manual"],
) )
@@ -56,14 +56,14 @@ alias(
) )
alias( alias(
name = "chalk-ir-0.103.0", name = "chalk-ir-0.104.0",
actual = "@vendor_ts__chalk-ir-0.103.0//:chalk_ir", actual = "@vendor_ts__chalk-ir-0.104.0//:chalk_ir",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "chalk-ir", name = "chalk-ir",
actual = "@vendor_ts__chalk-ir-0.103.0//:chalk_ir", actual = "@vendor_ts__chalk-ir-0.104.0//:chalk_ir",
tags = ["manual"], tags = ["manual"],
) )
@@ -80,14 +80,14 @@ alias(
) )
alias( alias(
name = "clap-4.5.41", name = "clap-4.5.44",
actual = "@vendor_ts__clap-4.5.41//:clap", actual = "@vendor_ts__clap-4.5.44//:clap",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "clap", name = "clap",
actual = "@vendor_ts__clap-4.5.41//:clap", actual = "@vendor_ts__clap-4.5.44//:clap",
tags = ["manual"], tags = ["manual"],
) )
@@ -152,14 +152,14 @@ alias(
) )
alias( alias(
name = "glob-0.3.2", name = "glob-0.3.3",
actual = "@vendor_ts__glob-0.3.2//:glob", actual = "@vendor_ts__glob-0.3.3//:glob",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "glob", name = "glob",
actual = "@vendor_ts__glob-0.3.2//:glob", actual = "@vendor_ts__glob-0.3.3//:glob",
tags = ["manual"], tags = ["manual"],
) )
@@ -236,14 +236,14 @@ alias(
) )
alias( alias(
name = "proc-macro2-1.0.95", name = "proc-macro2-1.0.97",
actual = "@vendor_ts__proc-macro2-1.0.95//:proc_macro2", actual = "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "proc-macro2", name = "proc-macro2",
actual = "@vendor_ts__proc-macro2-1.0.95//:proc_macro2", actual = "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
tags = ["manual"], tags = ["manual"],
) )
@@ -260,212 +260,212 @@ alias(
) )
alias( alias(
name = "ra_ap_base_db-0.0.294", name = "ra_ap_base_db-0.0.300",
actual = "@vendor_ts__ra_ap_base_db-0.0.294//:ra_ap_base_db", actual = "@vendor_ts__ra_ap_base_db-0.0.300//:ra_ap_base_db",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_base_db", name = "ra_ap_base_db",
actual = "@vendor_ts__ra_ap_base_db-0.0.294//:ra_ap_base_db", actual = "@vendor_ts__ra_ap_base_db-0.0.300//:ra_ap_base_db",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_cfg-0.0.294", name = "ra_ap_cfg-0.0.300",
actual = "@vendor_ts__ra_ap_cfg-0.0.294//:ra_ap_cfg", actual = "@vendor_ts__ra_ap_cfg-0.0.300//:ra_ap_cfg",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_cfg", name = "ra_ap_cfg",
actual = "@vendor_ts__ra_ap_cfg-0.0.294//:ra_ap_cfg", actual = "@vendor_ts__ra_ap_cfg-0.0.300//:ra_ap_cfg",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir-0.0.294", name = "ra_ap_hir-0.0.300",
actual = "@vendor_ts__ra_ap_hir-0.0.294//:ra_ap_hir", actual = "@vendor_ts__ra_ap_hir-0.0.300//:ra_ap_hir",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir", name = "ra_ap_hir",
actual = "@vendor_ts__ra_ap_hir-0.0.294//:ra_ap_hir", actual = "@vendor_ts__ra_ap_hir-0.0.300//:ra_ap_hir",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir_def-0.0.294", name = "ra_ap_hir_def-0.0.300",
actual = "@vendor_ts__ra_ap_hir_def-0.0.294//:ra_ap_hir_def", actual = "@vendor_ts__ra_ap_hir_def-0.0.300//:ra_ap_hir_def",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir_def", name = "ra_ap_hir_def",
actual = "@vendor_ts__ra_ap_hir_def-0.0.294//:ra_ap_hir_def", actual = "@vendor_ts__ra_ap_hir_def-0.0.300//:ra_ap_hir_def",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir_expand-0.0.294", name = "ra_ap_hir_expand-0.0.300",
actual = "@vendor_ts__ra_ap_hir_expand-0.0.294//:ra_ap_hir_expand", actual = "@vendor_ts__ra_ap_hir_expand-0.0.300//:ra_ap_hir_expand",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir_expand", name = "ra_ap_hir_expand",
actual = "@vendor_ts__ra_ap_hir_expand-0.0.294//:ra_ap_hir_expand", actual = "@vendor_ts__ra_ap_hir_expand-0.0.300//:ra_ap_hir_expand",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir_ty-0.0.294", name = "ra_ap_hir_ty-0.0.300",
actual = "@vendor_ts__ra_ap_hir_ty-0.0.294//:ra_ap_hir_ty", actual = "@vendor_ts__ra_ap_hir_ty-0.0.300//:ra_ap_hir_ty",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_hir_ty", name = "ra_ap_hir_ty",
actual = "@vendor_ts__ra_ap_hir_ty-0.0.294//:ra_ap_hir_ty", actual = "@vendor_ts__ra_ap_hir_ty-0.0.300//:ra_ap_hir_ty",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_ide_db-0.0.294", name = "ra_ap_ide_db-0.0.300",
actual = "@vendor_ts__ra_ap_ide_db-0.0.294//:ra_ap_ide_db", actual = "@vendor_ts__ra_ap_ide_db-0.0.300//:ra_ap_ide_db",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_ide_db", name = "ra_ap_ide_db",
actual = "@vendor_ts__ra_ap_ide_db-0.0.294//:ra_ap_ide_db", actual = "@vendor_ts__ra_ap_ide_db-0.0.300//:ra_ap_ide_db",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_intern-0.0.294", name = "ra_ap_intern-0.0.300",
actual = "@vendor_ts__ra_ap_intern-0.0.294//:ra_ap_intern", actual = "@vendor_ts__ra_ap_intern-0.0.300//:ra_ap_intern",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_intern", name = "ra_ap_intern",
actual = "@vendor_ts__ra_ap_intern-0.0.294//:ra_ap_intern", actual = "@vendor_ts__ra_ap_intern-0.0.300//:ra_ap_intern",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_load-cargo-0.0.294", name = "ra_ap_load-cargo-0.0.300",
actual = "@vendor_ts__ra_ap_load-cargo-0.0.294//:ra_ap_load_cargo", actual = "@vendor_ts__ra_ap_load-cargo-0.0.300//:ra_ap_load_cargo",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_load-cargo", name = "ra_ap_load-cargo",
actual = "@vendor_ts__ra_ap_load-cargo-0.0.294//:ra_ap_load_cargo", actual = "@vendor_ts__ra_ap_load-cargo-0.0.300//:ra_ap_load_cargo",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_parser-0.0.294", name = "ra_ap_parser-0.0.300",
actual = "@vendor_ts__ra_ap_parser-0.0.294//:ra_ap_parser", actual = "@vendor_ts__ra_ap_parser-0.0.300//:ra_ap_parser",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_parser", name = "ra_ap_parser",
actual = "@vendor_ts__ra_ap_parser-0.0.294//:ra_ap_parser", actual = "@vendor_ts__ra_ap_parser-0.0.300//:ra_ap_parser",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_paths-0.0.294", name = "ra_ap_paths-0.0.300",
actual = "@vendor_ts__ra_ap_paths-0.0.294//:ra_ap_paths", actual = "@vendor_ts__ra_ap_paths-0.0.300//:ra_ap_paths",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_paths", name = "ra_ap_paths",
actual = "@vendor_ts__ra_ap_paths-0.0.294//:ra_ap_paths", actual = "@vendor_ts__ra_ap_paths-0.0.300//:ra_ap_paths",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_project_model-0.0.294", name = "ra_ap_project_model-0.0.300",
actual = "@vendor_ts__ra_ap_project_model-0.0.294//:ra_ap_project_model", actual = "@vendor_ts__ra_ap_project_model-0.0.300//:ra_ap_project_model",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_project_model", name = "ra_ap_project_model",
actual = "@vendor_ts__ra_ap_project_model-0.0.294//:ra_ap_project_model", actual = "@vendor_ts__ra_ap_project_model-0.0.300//:ra_ap_project_model",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_span-0.0.294", name = "ra_ap_span-0.0.300",
actual = "@vendor_ts__ra_ap_span-0.0.294//:ra_ap_span", actual = "@vendor_ts__ra_ap_span-0.0.300//:ra_ap_span",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_span", name = "ra_ap_span",
actual = "@vendor_ts__ra_ap_span-0.0.294//:ra_ap_span", actual = "@vendor_ts__ra_ap_span-0.0.300//:ra_ap_span",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_stdx-0.0.294", name = "ra_ap_stdx-0.0.300",
actual = "@vendor_ts__ra_ap_stdx-0.0.294//:ra_ap_stdx", actual = "@vendor_ts__ra_ap_stdx-0.0.300//:ra_ap_stdx",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "stdx-0.0.294", name = "stdx-0.0.300",
actual = "@vendor_ts__ra_ap_stdx-0.0.294//:ra_ap_stdx", actual = "@vendor_ts__ra_ap_stdx-0.0.300//:ra_ap_stdx",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "stdx", name = "stdx",
actual = "@vendor_ts__ra_ap_stdx-0.0.294//:ra_ap_stdx", actual = "@vendor_ts__ra_ap_stdx-0.0.300//:ra_ap_stdx",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_syntax-0.0.294", name = "ra_ap_syntax-0.0.300",
actual = "@vendor_ts__ra_ap_syntax-0.0.294//:ra_ap_syntax", actual = "@vendor_ts__ra_ap_syntax-0.0.300//:ra_ap_syntax",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_syntax", name = "ra_ap_syntax",
actual = "@vendor_ts__ra_ap_syntax-0.0.294//:ra_ap_syntax", actual = "@vendor_ts__ra_ap_syntax-0.0.300//:ra_ap_syntax",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_vfs-0.0.294", name = "ra_ap_vfs-0.0.300",
actual = "@vendor_ts__ra_ap_vfs-0.0.294//:ra_ap_vfs", actual = "@vendor_ts__ra_ap_vfs-0.0.300//:ra_ap_vfs",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "ra_ap_vfs", name = "ra_ap_vfs",
actual = "@vendor_ts__ra_ap_vfs-0.0.294//:ra_ap_vfs", actual = "@vendor_ts__ra_ap_vfs-0.0.300//:ra_ap_vfs",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "rand-0.9.1", name = "rand-0.9.2",
actual = "@vendor_ts__rand-0.9.1//:rand", actual = "@vendor_ts__rand-0.9.2//:rand",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "rand", name = "rand",
actual = "@vendor_ts__rand-0.9.1//:rand", actual = "@vendor_ts__rand-0.9.2//:rand",
tags = ["manual"], tags = ["manual"],
) )
@@ -506,14 +506,14 @@ alias(
) )
alias( alias(
name = "serde_json-1.0.140", name = "serde_json-1.0.142",
actual = "@vendor_ts__serde_json-1.0.140//:serde_json", actual = "@vendor_ts__serde_json-1.0.142//:serde_json",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "serde_json", name = "serde_json",
actual = "@vendor_ts__serde_json-1.0.140//:serde_json", actual = "@vendor_ts__serde_json-1.0.142//:serde_json",
tags = ["manual"], tags = ["manual"],
) )
@@ -542,14 +542,14 @@ alias(
) )
alias( alias(
name = "toml-0.9.2", name = "toml-0.9.5",
actual = "@vendor_ts__toml-0.9.2//:toml", actual = "@vendor_ts__toml-0.9.5//:toml",
tags = ["manual"], tags = ["manual"],
) )
alias( alias(
name = "toml", name = "toml",
actual = "@vendor_ts__toml-0.9.2//:toml", actual = "@vendor_ts__toml-0.9.5//:toml",
tags = ["manual"], tags = ["manual"],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "bitflags", name = "bitflags",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "bitflags", name = "bitflags",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "borsh", name = "borsh",
srcs = glob( srcs = glob(
@@ -31,6 +40,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -121,6 +133,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "borsh", pkg_name = "borsh",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "boxcar", name = "boxcar",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "bstr", name = "bstr",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "bumpalo", name = "bumpalo",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "bytemuck", name = "bytemuck",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -1,83 +0,0 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
###############################################################################
load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"])
rust_library(
name = "byteorder",
srcs = glob(
include = ["**/*.rs"],
allow_empty = True,
),
compile_data = glob(
include = ["**"],
allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2021",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-bazel",
"crate-name=byteorder",
"manual",
"noclippy",
"norustfmt",
],
target_compatible_with = select({
"@rules_rust//rust/platform:aarch64-apple-darwin": [],
"@rules_rust//rust/platform:aarch64-apple-ios": [],
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
"@rules_rust//rust/platform:aarch64-linux-android": [],
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
"@rules_rust//rust/platform:aarch64-unknown-fuchsia": [],
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [],
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [],
"@rules_rust//rust/platform:aarch64-unknown-uefi": [],
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
"@rules_rust//rust/platform:armv7-linux-androideabi": [],
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
"@rules_rust//rust/platform:i686-apple-darwin": [],
"@rules_rust//rust/platform:i686-linux-android": [],
"@rules_rust//rust/platform:i686-pc-windows-msvc": [],
"@rules_rust//rust/platform:i686-unknown-freebsd": [],
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
"@rules_rust//rust/platform:thumbv7em-none-eabi": [],
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
"@rules_rust//rust/platform:wasm32-wasip1": [],
"@rules_rust//rust/platform:x86_64-apple-darwin": [],
"@rules_rust//rust/platform:x86_64-apple-ios": [],
"@rules_rust//rust/platform:x86_64-linux-android": [],
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
"@rules_rust//rust/platform:x86_64-unknown-fuchsia": [],
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
"@rules_rust//rust/platform:x86_64-unknown-none": [],
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"],
}),
version = "1.5.0",
)

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "camino", name = "camino",
srcs = glob( srcs = glob(
@@ -35,6 +44,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -130,6 +142,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "camino", pkg_name = "camino",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cargo_platform", name = "cargo_platform",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cargo_util_schemas", name = "cargo_util_schemas",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cargo_metadata", name = "cargo_metadata",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -89,7 +98,7 @@ rust_library(
"@vendor_ts__cargo-util-schemas-0.8.2//:cargo_util_schemas", "@vendor_ts__cargo-util-schemas-0.8.2//:cargo_util_schemas",
"@vendor_ts__semver-1.0.26//:semver", "@vendor_ts__semver-1.0.26//:semver",
"@vendor_ts__serde-1.0.219//:serde", "@vendor_ts__serde-1.0.219//:serde",
"@vendor_ts__serde_json-1.0.140//:serde_json", "@vendor_ts__serde_json-1.0.142//:serde_json",
"@vendor_ts__thiserror-2.0.12//:thiserror", "@vendor_ts__thiserror-2.0.12//:thiserror",
], ],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cc", name = "cc",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cfg_if", name = "cfg_if",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cfg_aliases", name = "cfg_aliases",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_proc_macro") load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_proc_macro( rust_proc_macro(
name = "chalk_derive", name = "chalk_derive",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_proc_macro(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -81,7 +90,7 @@ rust_proc_macro(
}), }),
version = "0.103.0", version = "0.103.0",
deps = [ deps = [
"@vendor_ts__proc-macro2-1.0.95//:proc_macro2", "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
"@vendor_ts__quote-1.0.40//:quote", "@vendor_ts__quote-1.0.40//:quote",
"@vendor_ts__syn-2.0.104//:syn", "@vendor_ts__syn-2.0.104//:syn",
"@vendor_ts__synstructure-0.13.2//:synstructure", "@vendor_ts__synstructure-0.13.2//:synstructure",

View File

@@ -6,12 +6,18 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_proc_macro") load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_proc_macro( rust_proc_macro(
name = "zerocopy_derive", name = "chalk_derive",
srcs = glob( srcs = glob(
include = ["**/*.rs"], include = ["**/*.rs"],
allow_empty = True, allow_empty = True,
@@ -30,12 +36,15 @@ rust_proc_macro(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
tags = [ tags = [
"cargo-bazel", "cargo-bazel",
"crate-name=zerocopy-derive", "crate-name=chalk-derive",
"manual", "manual",
"noclippy", "noclippy",
"norustfmt", "norustfmt",
@@ -79,10 +88,11 @@ rust_proc_macro(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.7.35", version = "0.104.0",
deps = [ deps = [
"@vendor_ts__proc-macro2-1.0.95//:proc_macro2", "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
"@vendor_ts__quote-1.0.40//:quote", "@vendor_ts__quote-1.0.40//:quote",
"@vendor_ts__syn-2.0.104//:syn", "@vendor_ts__syn-2.0.104//:syn",
"@vendor_ts__synstructure-0.13.2//:synstructure",
], ],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "chalk_ir", name = "chalk_ir",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__chalk-derive-0.103.0//:chalk_derive", "@vendor_ts__chalk-derive-0.103.0//:chalk_derive",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,12 +6,18 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "zerocopy", name = "chalk_ir",
srcs = glob( srcs = glob(
include = ["**/*.rs"], include = ["**/*.rs"],
allow_empty = True, allow_empty = True,
@@ -28,24 +34,20 @@ rust_library(
"WORKSPACE.bazel", "WORKSPACE.bazel",
], ],
), ),
crate_features = [
"byteorder",
"default",
"derive",
"simd",
"zerocopy-derive",
],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__zerocopy-derive-0.7.35//:zerocopy_derive", "@vendor_ts__chalk-derive-0.104.0//:chalk_derive",
],
rustc_env_files = [
":cargo_toml_env_vars",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
tags = [ tags = [
"cargo-bazel", "cargo-bazel",
"crate-name=zerocopy", "crate-name=chalk-ir",
"manual", "manual",
"noclippy", "noclippy",
"norustfmt", "norustfmt",
@@ -89,8 +91,8 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.7.35", version = "0.104.0",
deps = [ deps = [
"@vendor_ts__byteorder-1.5.0//:byteorder", "@vendor_ts__bitflags-2.9.1//:bitflags",
], ],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "chalk_recursive", name = "chalk_recursive",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__chalk-derive-0.103.0//:chalk_derive", "@vendor_ts__chalk-derive-0.103.0//:chalk_derive",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "chalk_solve", name = "chalk_solve",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__chalk-derive-0.103.0//:chalk_derive", "@vendor_ts__chalk-derive-0.103.0//:chalk_derive",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "chrono", name = "chrono",
srcs = glob( srcs = glob(
@@ -46,6 +52,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "clap", name = "clap",
srcs = glob( srcs = glob(
@@ -43,6 +49,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__clap_derive-4.5.41//:clap_derive", "@vendor_ts__clap_derive-4.5.41//:clap_derive",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -92,8 +101,8 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "4.5.41", version = "4.5.44",
deps = [ deps = [
"@vendor_ts__clap_builder-4.5.41//:clap_builder", "@vendor_ts__clap_builder-4.5.44//:clap_builder",
], ],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "clap_builder", name = "clap_builder",
srcs = glob( srcs = glob(
@@ -38,6 +44,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -87,7 +96,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "4.5.41", version = "4.5.44",
deps = [ deps = [
"@vendor_ts__anstream-0.6.19//:anstream", "@vendor_ts__anstream-0.6.19//:anstream",
"@vendor_ts__anstyle-1.0.11//:anstyle", "@vendor_ts__anstyle-1.0.11//:anstyle",

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_proc_macro") load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_proc_macro( rust_proc_macro(
name = "clap_derive", name = "clap_derive",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_proc_macro(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -85,7 +94,7 @@ rust_proc_macro(
version = "4.5.41", version = "4.5.41",
deps = [ deps = [
"@vendor_ts__heck-0.5.0//:heck", "@vendor_ts__heck-0.5.0//:heck",
"@vendor_ts__proc-macro2-1.0.95//:proc_macro2", "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
"@vendor_ts__quote-1.0.40//:quote", "@vendor_ts__quote-1.0.40//:quote",
"@vendor_ts__syn-2.0.104//:syn", "@vendor_ts__syn-2.0.104//:syn",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "clap_lex", name = "clap_lex",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "colorchoice", name = "colorchoice",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "core_foundation_sys", name = "core_foundation_sys",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "countme", name = "countme",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "cov_mark", name = "cov_mark",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "crc32fast", name = "crc32fast",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "crossbeam_channel", name = "crossbeam_channel",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "crossbeam_deque", name = "crossbeam_deque",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "crossbeam_epoch", name = "crossbeam_epoch",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "crossbeam_queue", name = "crossbeam_queue",
srcs = glob( srcs = glob(
@@ -35,6 +41,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "crossbeam_utils", name = "crossbeam_utils",
srcs = glob( srcs = glob(
@@ -35,6 +44,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -129,6 +141,9 @@ cargo_build_script(
), ),
edition = "2021", edition = "2021",
pkg_name = "crossbeam-utils", pkg_name = "crossbeam-utils",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "darling", name = "darling",
srcs = glob( srcs = glob(
@@ -37,6 +43,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__darling_macro-0.20.11//:darling_macro", "@vendor_ts__darling_macro-0.20.11//:darling_macro",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "darling_core", name = "darling_core",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -87,7 +96,7 @@ rust_library(
deps = [ deps = [
"@vendor_ts__fnv-1.0.7//:fnv", "@vendor_ts__fnv-1.0.7//:fnv",
"@vendor_ts__ident_case-1.0.1//:ident_case", "@vendor_ts__ident_case-1.0.1//:ident_case",
"@vendor_ts__proc-macro2-1.0.95//:proc_macro2", "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
"@vendor_ts__quote-1.0.40//:quote", "@vendor_ts__quote-1.0.40//:quote",
"@vendor_ts__strsim-0.11.1//:strsim", "@vendor_ts__strsim-0.11.1//:strsim",
"@vendor_ts__syn-2.0.104//:syn", "@vendor_ts__syn-2.0.104//:syn",

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_proc_macro") load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_proc_macro( rust_proc_macro(
name = "darling_macro", name = "darling_macro",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_proc_macro(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "dashmap", name = "dashmap",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "deranged", name = "deranged",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_proc_macro") load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_proc_macro( rust_proc_macro(
name = "displaydoc", name = "displaydoc",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_proc_macro(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -81,7 +90,7 @@ rust_proc_macro(
}), }),
version = "0.2.5", version = "0.2.5",
deps = [ deps = [
"@vendor_ts__proc-macro2-1.0.95//:proc_macro2", "@vendor_ts__proc-macro2-1.0.97//:proc_macro2",
"@vendor_ts__quote-1.0.40//:quote", "@vendor_ts__quote-1.0.40//:quote",
"@vendor_ts__syn-2.0.104//:syn", "@vendor_ts__syn-2.0.104//:syn",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "drop_bomb", name = "drop_bomb",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "dunce", name = "dunce",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "dyn_clone", name = "dyn_clone",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "either", name = "either",
srcs = glob( srcs = glob(
@@ -35,6 +41,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "ena", name = "ena",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding", name = "encoding",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding_index_japanese", name = "encoding_index_japanese",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "lib.rs", crate_root = "lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding_index_korean", name = "encoding_index_korean",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "lib.rs", crate_root = "lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding_index_simpchinese", name = "encoding_index_simpchinese",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "lib.rs", crate_root = "lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding_index_singlebyte", name = "encoding_index_singlebyte",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "lib.rs", crate_root = "lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding_index_tradchinese", name = "encoding_index_tradchinese",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "lib.rs", crate_root = "lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "encoding_index_tests", name = "encoding_index_tests",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "index_tests.rs", crate_root = "index_tests.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "equivalent", name = "equivalent",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "erased_serde", name = "erased_serde",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "figment", name = "figment",
srcs = glob( srcs = glob(
@@ -38,6 +47,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -183,6 +195,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "figment", pkg_name = "figment",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "filetime", name = "filetime",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "fixedbitset", name = "fixedbitset",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "flate2", name = "flate2",
srcs = glob( srcs = glob(
@@ -36,6 +42,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "fnv", name = "fnv",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "lib.rs", crate_root = "lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "foldhash", name = "foldhash",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "form_urlencoded", name = "form_urlencoded",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "fs_err", name = "fs_err",
srcs = glob( srcs = glob(
@@ -31,6 +40,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -121,6 +133,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "fs-err", pkg_name = "fs-err",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "fsevent_sys", name = "fsevent_sys",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "fst", name = "fst",
srcs = glob( srcs = glob(
@@ -34,6 +43,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -127,6 +139,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "fst", pkg_name = "fst",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "getrandom", name = "getrandom",
srcs = glob( srcs = glob(
@@ -34,6 +43,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -83,10 +95,10 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.3.1", version = "0.3.3",
deps = [ deps = [
"@vendor_ts__cfg-if-1.0.1//:cfg_if", "@vendor_ts__cfg-if-1.0.1//:cfg_if",
"@vendor_ts__getrandom-0.3.1//:build_script_build", "@vendor_ts__getrandom-0.3.3//:build_script_build",
] + select({ ] + select({
"@rules_rust//rust/platform:aarch64-apple-darwin": [ "@rules_rust//rust/platform:aarch64-apple-darwin": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) "@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
@@ -98,49 +110,43 @@ rust_library(
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) "@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))
], ],
"@rules_rust//rust/platform:aarch64-linux-android": [ "@rules_rust//rust/platform:aarch64-linux-android": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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-pc-windows-msvc": [
"@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(all(windows, not(target_vendor = "win7")))
], ],
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "haiku", target_os = "redox", target_os = "nto", target_os = "aix")) "@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "haiku", target_os = "redox", target_os = "nto", target_os = "aix"))
], ],
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:armv7-linux-androideabi": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:i686-apple-darwin": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) "@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
], ],
"@rules_rust//rust/platform:i686-linux-android": [ "@rules_rust//rust/platform:i686-linux-android": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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-pc-windows-msvc": [
"@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(all(windows, not(target_vendor = "win7")))
], ],
"@rules_rust//rust/platform:i686-unknown-freebsd": [ "@rules_rust//rust/platform:i686-unknown-freebsd": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", all(target_os = "horizon", target_arch = "arm"))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:i686-unknown-linux-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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-apple-darwin": [ "@rules_rust//rust/platform:x86_64-apple-darwin": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten")) "@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "macos", target_os = "openbsd", target_os = "vita", target_os = "emscripten"))
@@ -149,19 +155,16 @@ rust_library(
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos")) "@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))
], ],
"@rules_rust//rust/platform:x86_64-linux-android": [ "@rules_rust//rust/platform:x86_64-linux-android": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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-pc-windows-msvc": [
"@vendor_ts__windows-targets-0.52.6//:windows_targets", # cfg(all(windows, not(target_vendor = "win7")))
], ],
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [ "@rules_rust//rust/platform:x86_64-unknown-freebsd": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "hurd", target_os = "illumos", all(target_os = "horizon", target_arch = "arm"))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [ "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
"@vendor_ts__libc-0.2.174//:libc", # cfg(all(any(target_os = "linux", target_os = "android"), not(any(getrandom_backend = "custom", getrandom_backend = "rdrand", getrandom_backend = "rndr")))) "@vendor_ts__libc-0.2.174//: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": [], "//conditions:default": [],
}), }),
@@ -205,6 +208,9 @@ cargo_build_script(
), ),
edition = "2021", edition = "2021",
pkg_name = "getrandom", pkg_name = "getrandom",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -215,7 +221,7 @@ cargo_build_script(
"noclippy", "noclippy",
"norustfmt", "norustfmt",
], ],
version = "0.3.1", version = "0.3.3",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "glob", name = "glob",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2015", edition = "2015",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -79,5 +88,5 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-uefi": [], "@rules_rust//rust/platform:x86_64-unknown-uefi": [],
"//conditions:default": ["@platforms//:incompatible"], "//conditions:default": ["@platforms//:incompatible"],
}), }),
version = "0.3.2", version = "0.3.3",
) )

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "globset", name = "globset",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "hashbrown", name = "hashbrown",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "hashbrown", name = "hashbrown",
srcs = glob( srcs = glob(
@@ -34,6 +40,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "hashbrown", name = "hashbrown",
srcs = glob( srcs = glob(
@@ -38,6 +44,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "hashlink", name = "hashlink",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "heck", name = "heck",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "hermit_abi", name = "hermit_abi",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "hex", name = "hex",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "home", name = "home",
srcs = glob( srcs = glob(
@@ -30,6 +36,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "iana_time_zone", name = "iana_time_zone",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2021", edition = "2021",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,11 +6,20 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_build_script") load(
"@rules_rust//cargo:defs.bzl",
"cargo_build_script",
"cargo_toml_env_vars",
)
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "iana_time_zone_haiku", name = "iana_time_zone_haiku",
srcs = glob( srcs = glob(
@@ -31,6 +40,9 @@ rust_library(
), ),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
edition = "2018", edition = "2018",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@@ -121,6 +133,9 @@ cargo_build_script(
), ),
edition = "2018", edition = "2018",
pkg_name = "iana-time-zone-haiku", pkg_name = "iana-time-zone-haiku",
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "icu_collections", name = "icu_collections",
srcs = glob( srcs = glob(
@@ -33,6 +39,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__displaydoc-0.2.5//:displaydoc", "@vendor_ts__displaydoc-0.2.5//:displaydoc",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "icu_locale_core", name = "icu_locale_core",
srcs = glob( srcs = glob(
@@ -36,6 +42,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__displaydoc-0.2.5//:displaydoc", "@vendor_ts__displaydoc-0.2.5//:displaydoc",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

View File

@@ -6,10 +6,16 @@
# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors # bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors
############################################################################### ###############################################################################
load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars")
load("@rules_rust//rust:defs.bzl", "rust_library") load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
cargo_toml_env_vars(
name = "cargo_toml_env_vars",
src = "Cargo.toml",
)
rust_library( rust_library(
name = "icu_normalizer", name = "icu_normalizer",
srcs = glob( srcs = glob(
@@ -36,6 +42,9 @@ rust_library(
proc_macro_deps = [ proc_macro_deps = [
"@vendor_ts__displaydoc-0.2.5//:displaydoc", "@vendor_ts__displaydoc-0.2.5//:displaydoc",
], ],
rustc_env_files = [
":cargo_toml_env_vars",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],

Some files were not shown because too many files have changed in this diff Show More