Use tonic for rust proto and grpc. Updates to handle dependency chains.
This commit is contained in:
parent
978b48d7ff
commit
5e60e62762
4
.bazelrc
4
.bazelrc
|
@ -1,4 +0,0 @@
|
|||
build --compilation_mode=opt
|
||||
build --strip=never
|
||||
|
||||
build --experimental_proto_descriptor_sets_include_source_info
|
|
@ -1 +0,0 @@
|
|||
6.0.0
|
|
@ -281,7 +281,7 @@ load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencie
|
|||
|
||||
crate_universe_dependencies(bootstrap = True)
|
||||
|
||||
load("//rust/crates:crates.bzl", "crate_repositories")
|
||||
load("//rust:crate_deps.bzl", "crate_repositories")
|
||||
|
||||
crate_repositories()
|
||||
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_grpc_compile")
|
||||
|
||||
rust_grpc_compile(
|
||||
name = "thing_rust_grpc",
|
||||
protos = ["@rules_proto_grpc//example/proto:thing_proto"],
|
||||
)
|
||||
|
||||
rust_grpc_compile(
|
||||
name = "greeter_rust_grpc",
|
||||
protos = ["@rules_proto_grpc//example/proto:greeter_grpc"],
|
||||
)
|
|
@ -1,30 +0,0 @@
|
|||
local_repository(
|
||||
name = "rules_proto_grpc",
|
||||
path = "../../../",
|
||||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
|
@ -1,9 +0,0 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_grpc_library")
|
||||
|
||||
rust_grpc_library(
|
||||
name = "greeter_rust_grpc",
|
||||
protos = [
|
||||
"@rules_proto_grpc//example/proto:greeter_grpc",
|
||||
"@rules_proto_grpc//example/proto:thing_proto",
|
||||
],
|
||||
)
|
|
@ -1,30 +0,0 @@
|
|||
local_repository(
|
||||
name = "rules_proto_grpc",
|
||||
path = "../../../",
|
||||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
|
@ -1,16 +1,31 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_prost_proto_compile")
|
||||
|
||||
rust_prost_proto_compile(
|
||||
name = "person_rust_proto",
|
||||
name = "person_prost",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
options = {
|
||||
"//rust:rust_prost_plugin": ["type_attribute=.other.space.Person=#[derive(Eq\\,Hash)]"],
|
||||
},
|
||||
protos = ["@rules_proto_grpc//example/proto:person_proto"],
|
||||
)
|
||||
|
||||
rust_prost_proto_compile(
|
||||
name = "place_rust_proto",
|
||||
name = "place_prost",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
options = {
|
||||
"//rust:rust_prost_plugin": ["type_attribute=.other.space.Place=#[derive(Eq\\,Hash)]"],
|
||||
},
|
||||
protos = ["@rules_proto_grpc//example/proto:place_proto"],
|
||||
|
||||
prost_proto_deps = []
|
||||
)
|
||||
|
||||
rust_prost_proto_compile(
|
||||
name = "thing_rust_proto",
|
||||
name = "thing_prost",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
options = {
|
||||
# Known limitation, can't derive if the type contains a pbjson type.
|
||||
# "//rust:rust_prost_plugin": ["type_attribute=.other.space.Thing=#[derive(Eq\\,Hash)]"],
|
||||
},
|
||||
protos = ["@rules_proto_grpc//example/proto:thing_proto"],
|
||||
)
|
||||
)
|
|
@ -4,27 +4,24 @@ local_repository(
|
|||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", "rust_repos")
|
||||
rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
||||
|
||||
load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")
|
||||
crate_universe_dependencies(bootstrap = True)
|
||||
load("@rules_proto_grpc//rust:crate_deps.bzl", "crate_repositories")
|
||||
crate_repositories()
|
|
@ -1,10 +1,32 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_prost_proto_library")
|
||||
|
||||
|
||||
rust_prost_proto_library(
|
||||
name = "proto_rust_prost_proto",
|
||||
name = "personplace_prost",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
protos = [
|
||||
"@rules_proto_grpc//example/proto:person_proto",
|
||||
"@rules_proto_grpc//example/proto:place_proto",
|
||||
],
|
||||
options = {
|
||||
"//rust:rust_prost_plugin": [
|
||||
"type_attribute=.example.proto.Person=#[derive(Eq\\,Hash)]",
|
||||
"type_attribute=.example.proto.Place=#[derive(Eq\\,Hash)]",
|
||||
]},
|
||||
prost_proto_deps = [
|
||||
":thing_prost"
|
||||
]
|
||||
)
|
||||
|
||||
rust_prost_proto_library(
|
||||
name = "thing_prost",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
protos = [
|
||||
"@rules_proto_grpc//example/proto:thing_proto",
|
||||
],
|
||||
)
|
||||
options = {
|
||||
"//rust:rust_prost_plugin": [
|
||||
# Intentionally Ommitted.
|
||||
# "type_attribute=.example.proto.Thing=#[derive(Eq\\,Hash)]",
|
||||
]}
|
||||
)
|
|
@ -4,27 +4,24 @@ local_repository(
|
|||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", "rust_repos")
|
||||
rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
||||
|
||||
load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")
|
||||
crate_universe_dependencies(bootstrap = True)
|
||||
load("@rules_proto_grpc//rust:crate_deps.bzl", "crate_repositories")
|
||||
crate_repositories()
|
|
@ -1,10 +0,0 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_proto_library")
|
||||
|
||||
rust_proto_library(
|
||||
name = "proto_rust_proto",
|
||||
protos = [
|
||||
"@rules_proto_grpc//example/proto:person_proto",
|
||||
"@rules_proto_grpc//example/proto:place_proto",
|
||||
"@rules_proto_grpc//example/proto:thing_proto",
|
||||
],
|
||||
)
|
|
@ -1,30 +0,0 @@
|
|||
local_repository(
|
||||
name = "rules_proto_grpc",
|
||||
path = "../../../",
|
||||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
|
@ -1,11 +1,12 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_tonic_grpc_compile")
|
||||
load("@rules_proto_grpc//rust:defs.bzl", "rust_tonic_grpc_compile", )
|
||||
|
||||
rust_tonic_grpc_compile(
|
||||
name = "thing_rust_grpc",
|
||||
protos = ["@rules_proto_grpc//example/proto:thing_proto"],
|
||||
)
|
||||
|
||||
rust_tonic_grpc_compile(
|
||||
name = "greeter_rust_grpc",
|
||||
protos = ["@rules_proto_grpc//example/proto:greeter_grpc"],
|
||||
)
|
||||
name = "greeter_tonic",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
protos = [
|
||||
"@rules_proto_grpc//example/proto:greeter_grpc",
|
||||
"@rules_proto_grpc//example/proto:person_proto",
|
||||
"@rules_proto_grpc//example/proto:place_proto",
|
||||
"@rules_proto_grpc//example/proto:thing_proto",
|
||||
]
|
||||
)
|
|
@ -4,27 +4,24 @@ local_repository(
|
|||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", "rust_repos")
|
||||
rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
||||
|
||||
load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")
|
||||
crate_universe_dependencies(bootstrap = True)
|
||||
load("@rules_proto_grpc//rust:crate_deps.bzl", "crate_repositories")
|
||||
crate_repositories()
|
|
@ -1,9 +1,25 @@
|
|||
load("@rules_proto_grpc//rust:defs.bzl", "rust_tonic_grpc_library")
|
||||
load("@rules_proto_grpc//rust:defs.bzl", "rust_tonic_grpc_library", "rust_prost_proto_library")
|
||||
|
||||
|
||||
rust_tonic_grpc_library(
|
||||
name = "greeter_rust_tonic_grpc",
|
||||
name = "greeter_tonic",
|
||||
declared_proto_packages = ["example.proto"],
|
||||
protos = [
|
||||
"@rules_proto_grpc//example/proto:greeter_grpc",
|
||||
"@rules_proto_grpc//example/proto:person_proto",
|
||||
"@rules_proto_grpc//example/proto:place_proto",
|
||||
"@rules_proto_grpc//example/proto:thing_proto",
|
||||
],
|
||||
options = {
|
||||
"//rust:rust_prost_plugin": [
|
||||
"type_attribute=.example.proto.Person=#[derive(Eq\\,Hash)]",
|
||||
"type_attribute=.example.proto.Place=#[derive(Eq\\,Hash)]",
|
||||
]},
|
||||
)
|
||||
# rust_prost_proto_library(
|
||||
# name = "thing_prost",
|
||||
# declared_proto_packages = ["example.proto"],
|
||||
# protos = [
|
||||
# "@rules_proto_grpc//example/proto:thing_proto",
|
||||
# ],
|
||||
# )
|
||||
|
|
|
@ -4,27 +4,24 @@ local_repository(
|
|||
)
|
||||
|
||||
load("@rules_proto_grpc//:repositories.bzl", "rules_proto_grpc_repos", "rules_proto_grpc_toolchains")
|
||||
|
||||
rules_proto_grpc_toolchains()
|
||||
|
||||
rules_proto_grpc_repos()
|
||||
|
||||
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
|
||||
|
||||
rules_proto_dependencies()
|
||||
|
||||
rules_proto_toolchains()
|
||||
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", rules_proto_grpc_rust_repos = "rust_repos")
|
||||
|
||||
rules_proto_grpc_rust_repos()
|
||||
load("@rules_proto_grpc//rust:repositories.bzl", "rust_repos")
|
||||
rust_repos()
|
||||
|
||||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||||
|
||||
grpc_deps()
|
||||
|
||||
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
|
||||
|
||||
rules_rust_dependencies()
|
||||
|
||||
rust_register_toolchains(edition = "2021")
|
||||
|
||||
load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")
|
||||
crate_universe_dependencies(bootstrap = True)
|
||||
load("@rules_proto_grpc//rust:crate_deps.bzl", "crate_repositories")
|
||||
crate_repositories()
|
|
@ -263,8 +263,8 @@ VERSIONS = {
|
|||
# Rust
|
||||
"rules_rust": {
|
||||
"type": "http",
|
||||
"urls": ["https://github.com/bazelbuild/rules_rust/releases/download/0.16.1/rules_rust-v0.16.1.tar.gz"],
|
||||
"sha256": "aaaa4b9591a5dad8d8907ae2dbe6e0eb49e6314946ce4c7149241648e56a1277",
|
||||
"urls": ["https://github.com/bazelbuild/rules_rust/releases/download/0.22.0/rules_rust-v0.22.0.tar.gz"],
|
||||
"sha256": "50272c39f20a3a3507cb56dcb5c3b348bda697a7d868708449e2fa6fb893444c",
|
||||
},
|
||||
|
||||
# Scala
|
||||
|
|
|
@ -0,0 +1,110 @@
|
|||
# Third party crates/deps for rules_proto_grpc_rust.
|
||||
|
||||
load("@rules_rust//crate_universe:defs.bzl", "crate", "crates_vendor")
|
||||
crates_vendor(
|
||||
name = "crates_vendor",
|
||||
annotations = {
|
||||
"prost-build": [crate.annotation(
|
||||
build_script_env = {
|
||||
"PROTOC_NO_VENDOR": "true",
|
||||
"PROTOC": "$(execpath @com_google_protobuf//:protoc)",
|
||||
"PROTOC_INCLUDE": ".",
|
||||
},
|
||||
build_script_tools = ["@com_google_protobuf//:protoc"],
|
||||
)],
|
||||
},
|
||||
generate_binaries = True,
|
||||
mode = "remote",
|
||||
packages = {
|
||||
"protoc-gen-prost": crate.spec(
|
||||
version = "0.2.1",
|
||||
),
|
||||
# See https://github.com/neoeinstein/protoc-gen-prost/issues/62
|
||||
"protoc-gen-prost-crate": crate.spec(
|
||||
git = "https://github.com/neoeinstein/protoc-gen-prost",
|
||||
rev = "038cd342677dfa869f8c3a2a2787a139fc561df8"
|
||||
),
|
||||
"protoc-gen-tonic": crate.spec(
|
||||
version = "0.2.1",
|
||||
),
|
||||
"protoc-gen-prost-serde": crate.spec(
|
||||
version = "0.2.1",
|
||||
),
|
||||
"prost": crate.spec(
|
||||
version = "0.11.6",
|
||||
),
|
||||
"prost-derive": crate.spec(
|
||||
version = "0.11.6",
|
||||
),
|
||||
"prost-types": crate.spec(
|
||||
version = "0.11.6",
|
||||
),
|
||||
"tonic": crate.spec(
|
||||
version = "0.8.2",
|
||||
),
|
||||
"tonic-build": crate.spec(
|
||||
version = "0.8.2",
|
||||
),
|
||||
|
||||
# routeguide example deps
|
||||
"serde": crate.spec(
|
||||
features = ["derive"],
|
||||
version = "1.0.152",
|
||||
),
|
||||
"serde_json": crate.spec(
|
||||
version = "1.0.91",
|
||||
),
|
||||
"rand": crate.spec(
|
||||
version = "0.8.5",
|
||||
),
|
||||
"tokio": crate.spec(
|
||||
version = "1.24.2",
|
||||
),
|
||||
"tokio-stream": crate.spec(
|
||||
version = "0.1.11",
|
||||
),
|
||||
"async-stream": crate.spec(
|
||||
version = "0.3.3",
|
||||
),
|
||||
"futures": crate.spec(
|
||||
version = "0.3.25",
|
||||
),
|
||||
# See: https://github.com/influxdata/pbjson/pull/90
|
||||
"pbjson-types": crate.spec(
|
||||
git = 'https://github.com/echochamber/pbjson',
|
||||
rev = 'a4f760e5d53086d989f28dc9d1d0adcc22fe37c4'
|
||||
),
|
||||
"pbjson": crate.spec(
|
||||
version = "0.5.1",
|
||||
),
|
||||
},
|
||||
repository_name = "rules_proto_grpc_rust",
|
||||
supported_platform_triples = [
|
||||
"i686-apple-darwin",
|
||||
"i686-pc-windows-msvc",
|
||||
"i686-unknown-linux-gnu",
|
||||
"x86_64-apple-darwin",
|
||||
"x86_64-pc-windows-msvc",
|
||||
"x86_64-unknown-linux-gnu",
|
||||
"aarch64-apple-darwin",
|
||||
"aarch64-apple-ios",
|
||||
"aarch64-apple-ios-sim",
|
||||
"aarch64-linux-android",
|
||||
"aarch64-unknown-linux-gnu",
|
||||
"arm-unknown-linux-gnueabi",
|
||||
"armv7-unknown-linux-gnueabi",
|
||||
"armv7-linux-androideabi",
|
||||
"i686-linux-android",
|
||||
"i686-unknown-freebsd",
|
||||
"powerpc-unknown-linux-gnu",
|
||||
"s390x-unknown-linux-gnu",
|
||||
"wasm32-unknown-unknown",
|
||||
"wasm32-wasi",
|
||||
"x86_64-apple-ios",
|
||||
"x86_64-linux-android",
|
||||
"x86_64-unknown-freebsd",
|
||||
# "riscv32imc-unknown-none-elf", # disabled as @platforms doesn't have //cpu:riscv32 in the version embedded in Bazel 5.x
|
||||
],
|
||||
tags = ["manual"],
|
||||
vendor_path = "crates",
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "android_tzdata",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=android-tzdata",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.1",
|
||||
)
|
|
@ -0,0 +1,89 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "anyhow",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=anyhow",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.71",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__anyhow-1.0.71//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "anyhow_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=anyhow",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.71",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "anyhow_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "async_stream",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__async-stream-impl-0.3.5//:async_stream_impl",
|
||||
],
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=async-stream",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.5",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__pin-project-lite-0.2.9//:pin_project_lite",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_proc_macro(
|
||||
name = "async_stream_impl",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=async-stream-impl",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.5",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__quote-1.0.28//:quote",
|
||||
"@rules_proto_grpc_rust__syn-2.0.18//:syn",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,84 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_proc_macro(
|
||||
name = "async_trait",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=async-trait",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.68",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__async-trait-0.1.68//:build_script_build",
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__quote-1.0.28//:quote",
|
||||
"@rules_proto_grpc_rust__syn-2.0.18//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "async-trait_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=async-trait",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.68",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "async-trait_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "autocfg",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=autocfg",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.1.0",
|
||||
)
|
|
@ -0,0 +1,105 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "axum",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__async-trait-0.1.68//:async_trait",
|
||||
],
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=axum",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.6.18",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__axum-0.6.18//:build_script_build",
|
||||
"@rules_proto_grpc_rust__axum-core-0.3.4//:axum_core",
|
||||
"@rules_proto_grpc_rust__bitflags-1.3.2//:bitflags",
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:futures_util",
|
||||
"@rules_proto_grpc_rust__http-0.2.9//:http",
|
||||
"@rules_proto_grpc_rust__http-body-0.4.5//:http_body",
|
||||
"@rules_proto_grpc_rust__hyper-0.14.26//:hyper",
|
||||
"@rules_proto_grpc_rust__itoa-1.0.6//:itoa",
|
||||
"@rules_proto_grpc_rust__matchit-0.7.0//:matchit",
|
||||
"@rules_proto_grpc_rust__memchr-2.5.0//:memchr",
|
||||
"@rules_proto_grpc_rust__mime-0.3.17//:mime",
|
||||
"@rules_proto_grpc_rust__percent-encoding-2.3.0//:percent_encoding",
|
||||
"@rules_proto_grpc_rust__pin-project-lite-0.2.9//:pin_project_lite",
|
||||
"@rules_proto_grpc_rust__serde-1.0.163//:serde",
|
||||
"@rules_proto_grpc_rust__sync_wrapper-0.1.2//:sync_wrapper",
|
||||
"@rules_proto_grpc_rust__tower-0.4.13//:tower",
|
||||
"@rules_proto_grpc_rust__tower-layer-0.3.2//:tower_layer",
|
||||
"@rules_proto_grpc_rust__tower-service-0.3.2//:tower_service",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "axum_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__rustversion-1.0.12//:rustversion",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=axum",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.6.18",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "axum_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,94 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "axum_core",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__async-trait-0.1.68//:async_trait",
|
||||
],
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=axum-core",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.4",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__axum-core-0.3.4//:build_script_build",
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:futures_util",
|
||||
"@rules_proto_grpc_rust__http-0.2.9//:http",
|
||||
"@rules_proto_grpc_rust__http-body-0.4.5//:http_body",
|
||||
"@rules_proto_grpc_rust__mime-0.3.17//:mime",
|
||||
"@rules_proto_grpc_rust__tower-layer-0.3.2//:tower_layer",
|
||||
"@rules_proto_grpc_rust__tower-service-0.3.2//:tower_service",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "axum-core_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__rustversion-1.0.12//:rustversion",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=axum-core",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.4",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "axum-core_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "base64",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=base64",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.13.1",
|
||||
)
|
|
@ -3,7 +3,7 @@
|
|||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run //rust:crates_vendor
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
@ -11,11 +11,9 @@ package(default_visibility = ["//visibility:public"])
|
|||
exports_files(
|
||||
[
|
||||
"cargo-bazel.json",
|
||||
"defs.bzl",
|
||||
"crates.bzl",
|
||||
] + glob([
|
||||
"*.bazel",
|
||||
]),
|
||||
"defs.bzl",
|
||||
] + glob(["*.bazel"]),
|
||||
)
|
||||
|
||||
filegroup(
|
||||
|
@ -29,37 +27,49 @@ filegroup(
|
|||
# Workspace Member Dependencies
|
||||
alias(
|
||||
name = "async-stream",
|
||||
actual = "@rules_proto_grpc_rust__async-stream-0.3.3//:async_stream",
|
||||
actual = "@rules_proto_grpc_rust__async-stream-0.3.5//:async_stream",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "futures",
|
||||
actual = "@rules_proto_grpc_rust__futures-0.3.25//:futures",
|
||||
actual = "@rules_proto_grpc_rust__futures-0.3.28//:futures",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "pbjson",
|
||||
actual = "@rules_proto_grpc_rust__pbjson-0.5.1//:pbjson",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "pbjson-types",
|
||||
actual = "@rules_proto_grpc_rust__pbjson-types-0.5.1//:pbjson_types",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "prost",
|
||||
actual = "@rules_proto_grpc_rust__prost-0.11.6//:prost",
|
||||
actual = "@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "prost-derive",
|
||||
actual = "@rules_proto_grpc_rust__prost-derive-0.11.6//:prost_derive",
|
||||
actual = "@rules_proto_grpc_rust__prost-derive-0.11.9//:prost_derive",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "prost-types",
|
||||
actual = "@rules_proto_grpc_rust__prost-types-0.11.6//:prost_types",
|
||||
actual = "@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-prost",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-0.2.1//:protoc_gen_prost",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-0.2.2//:protoc_gen_prost",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
|
@ -69,9 +79,15 @@ alias(
|
|||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-prost-serde",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-serde-0.2.3//:protoc_gen_prost_serde",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-tonic",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-tonic-0.2.1//:protoc_gen_tonic",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-tonic-0.2.2//:protoc_gen_tonic",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
|
@ -83,25 +99,25 @@ alias(
|
|||
|
||||
alias(
|
||||
name = "serde",
|
||||
actual = "@rules_proto_grpc_rust__serde-1.0.152//:serde",
|
||||
actual = "@rules_proto_grpc_rust__serde-1.0.163//:serde",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "serde_json",
|
||||
actual = "@rules_proto_grpc_rust__serde_json-1.0.91//:serde_json",
|
||||
actual = "@rules_proto_grpc_rust__serde_json-1.0.96//:serde_json",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tokio",
|
||||
actual = "@rules_proto_grpc_rust__tokio-1.24.2//:tokio",
|
||||
actual = "@rules_proto_grpc_rust__tokio-1.28.2//:tokio",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tokio-stream",
|
||||
actual = "@rules_proto_grpc_rust__tokio-stream-0.1.11//:tokio_stream",
|
||||
actual = "@rules_proto_grpc_rust__tokio-stream-0.1.14//:tokio_stream",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
|
@ -113,17 +129,29 @@ alias(
|
|||
|
||||
alias(
|
||||
name = "tonic-build",
|
||||
actual = "@rules_proto_grpc_rust__tonic-build-0.8.2//:tonic_build",
|
||||
actual = "@rules_proto_grpc_rust__tonic-build-0.8.4//:tonic_build",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
# Binaries
|
||||
alias(
|
||||
name = "protoc-gen-prost__protoc-gen-prost",
|
||||
name = "cc__gcc-shim",
|
||||
actual = "@rules_proto_grpc_rust__cc-1.0.79//:gcc-shim__bin",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-prost-0.2.1__protoc-gen-prost",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-0.2.1//:protoc-gen-prost__bin",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-prost-0.2.2__protoc-gen-prost",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-0.2.2//:protoc-gen-prost__bin",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-prost-crate__protoc-gen-prost-crate",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-crate-0.3.1//:protoc-gen-prost-crate__bin",
|
||||
|
@ -131,7 +159,13 @@ alias(
|
|||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-tonic__protoc-gen-tonic",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-tonic-0.2.1//:protoc-gen-tonic__bin",
|
||||
name = "protoc-gen-prost-serde__protoc-gen-prost-serde",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-prost-serde-0.2.3//:protoc-gen-prost-serde__bin",
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "protoc-gen-tonic__protoc-gen-tonic",
|
||||
actual = "@rules_proto_grpc_rust__protoc-gen-tonic-0.2.2//:protoc-gen-tonic__bin",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "bitflags",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=bitflags",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.3.2",
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "bytes",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=bytes",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.4.0",
|
||||
)
|
|
@ -0,0 +1,74 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//rust:defs.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
)
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "cc",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=cc",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.79",
|
||||
)
|
||||
|
||||
rust_binary(
|
||||
name = "gcc-shim__bin",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/bin/gcc-shim.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=cc",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.79",
|
||||
deps = [
|
||||
":cc",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "cfg_if",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=cfg-if",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.0",
|
||||
)
|
|
@ -0,0 +1,61 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "chrono",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=chrono",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.26",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__num-traits-0.2.15//:num_traits",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@rules_proto_grpc_rust__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@rules_proto_grpc_rust__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@rules_proto_grpc_rust__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@rules_proto_grpc_rust__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android")
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "either",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"use_std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=either",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.8.1",
|
||||
)
|
|
@ -0,0 +1,110 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "errno",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=errno",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.1",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@rules_proto_grpc_rust__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(target_os = "wasi")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@rules_proto_grpc_rust__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
|
@ -0,0 +1,85 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "errno_dragonfly",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=errno-dragonfly",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.2",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__errno-dragonfly-0.1.2//:build_script_build",
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "errno-dragonfly_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=errno-dragonfly",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.2",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__cc-1.0.79//:cc",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "errno-dragonfly_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,47 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "fastrand",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=fastrand",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.9.0",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [
|
||||
"@rules_proto_grpc_rust__instant-0.1.12//:instant", # cfg(all(target_arch = "wasm32", not(target_os = "wasi")))
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "fixedbitset",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=fixedbitset",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.2",
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 / MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "fnv",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=fnv",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.7",
|
||||
)
|
|
@ -0,0 +1,58 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
"default",
|
||||
"executor",
|
||||
"futures-executor",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-channel-0.3.28//:futures_channel",
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__futures-executor-0.3.28//:futures_executor",
|
||||
"@rules_proto_grpc_rust__futures-io-0.3.28//:futures_io",
|
||||
"@rules_proto_grpc_rust__futures-sink-0.3.28//:futures_sink",
|
||||
"@rules_proto_grpc_rust__futures-task-0.3.28//:futures_task",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:futures_util",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,97 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_channel",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"futures-sink",
|
||||
"sink",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-channel",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-channel-0.3.28//:build_script_build",
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__futures-sink-0.3.28//:futures_sink",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "futures-channel_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"futures-sink",
|
||||
"sink",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-channel",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "futures-channel_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,91 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_core",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-core",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "futures-core_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-core",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "futures-core_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,49 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_executor",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-executor",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__futures-task-0.3.28//:futures_task",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:futures_util",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_io",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-io",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_proc_macro(
|
||||
name = "futures_macro",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-macro",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__quote-1.0.28//:quote",
|
||||
"@rules_proto_grpc_rust__syn-2.0.18//:syn",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_sink",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-sink",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
)
|
|
@ -0,0 +1,89 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_task",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-task",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-task-0.3.28//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "futures-task_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-task",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "futures-task_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,123 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "futures_util",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
"async-await-macro",
|
||||
"channel",
|
||||
"futures-channel",
|
||||
"futures-io",
|
||||
"futures-macro",
|
||||
"futures-sink",
|
||||
"io",
|
||||
"memchr",
|
||||
"sink",
|
||||
"slab",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__futures-macro-0.3.28//:futures_macro",
|
||||
],
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-util",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__futures-channel-0.3.28//:futures_channel",
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__futures-io-0.3.28//:futures_io",
|
||||
"@rules_proto_grpc_rust__futures-sink-0.3.28//:futures_sink",
|
||||
"@rules_proto_grpc_rust__futures-task-0.3.28//:futures_task",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:build_script_build",
|
||||
"@rules_proto_grpc_rust__memchr-2.5.0//:memchr",
|
||||
"@rules_proto_grpc_rust__pin-project-lite-0.2.9//:pin_project_lite",
|
||||
"@rules_proto_grpc_rust__pin-utils-0.1.0//:pin_utils",
|
||||
"@rules_proto_grpc_rust__slab-0.4.8//:slab",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "futures-util_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"async-await",
|
||||
"async-await-macro",
|
||||
"channel",
|
||||
"futures-channel",
|
||||
"futures-io",
|
||||
"futures-macro",
|
||||
"futures-sink",
|
||||
"io",
|
||||
"memchr",
|
||||
"sink",
|
||||
"slab",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=futures-util",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.28",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "futures-util_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,109 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "getrandom",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=getrandom",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.9",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__cfg-if-1.0.0//:cfg_if",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasi": [
|
||||
"@rules_proto_grpc_rust__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
|
@ -0,0 +1,54 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "h2",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=h2",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.19",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__fnv-1.0.7//:fnv",
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__futures-sink-0.3.28//:futures_sink",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:futures_util",
|
||||
"@rules_proto_grpc_rust__http-0.2.9//:http",
|
||||
"@rules_proto_grpc_rust__indexmap-1.9.3//:indexmap",
|
||||
"@rules_proto_grpc_rust__slab-0.4.8//:slab",
|
||||
"@rules_proto_grpc_rust__tokio-1.28.2//:tokio",
|
||||
"@rules_proto_grpc_rust__tokio-util-0.7.8//:tokio_util",
|
||||
"@rules_proto_grpc_rust__tracing-0.1.37//:tracing",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "hashbrown",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"raw",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=hashbrown",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.12.3",
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "heck",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=heck",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.1",
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "hermit_abi",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=hermit-abi",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.1",
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "http",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=http",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.9",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__fnv-1.0.7//:fnv",
|
||||
"@rules_proto_grpc_rust__itoa-1.0.6//:itoa",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "http_body",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=http-body",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.5",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__http-0.2.9//:http",
|
||||
"@rules_proto_grpc_rust__pin-project-lite-0.2.9//:pin_project_lite",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,89 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "httparse",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=httparse",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.8.0",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__httparse-1.8.0//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "httparse_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=httparse",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.8.0",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "httparse_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "httpdate",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=httpdate",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.2",
|
||||
)
|
|
@ -0,0 +1,72 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "hyper",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"client",
|
||||
"default",
|
||||
"full",
|
||||
"h2",
|
||||
"http1",
|
||||
"http2",
|
||||
"runtime",
|
||||
"server",
|
||||
"socket2",
|
||||
"stream",
|
||||
"tcp",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=hyper",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.14.26",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__futures-channel-0.3.28//:futures_channel",
|
||||
"@rules_proto_grpc_rust__futures-core-0.3.28//:futures_core",
|
||||
"@rules_proto_grpc_rust__futures-util-0.3.28//:futures_util",
|
||||
"@rules_proto_grpc_rust__h2-0.3.19//:h2",
|
||||
"@rules_proto_grpc_rust__http-0.2.9//:http",
|
||||
"@rules_proto_grpc_rust__http-body-0.4.5//:http_body",
|
||||
"@rules_proto_grpc_rust__httparse-1.8.0//:httparse",
|
||||
"@rules_proto_grpc_rust__httpdate-1.0.2//:httpdate",
|
||||
"@rules_proto_grpc_rust__itoa-1.0.6//:itoa",
|
||||
"@rules_proto_grpc_rust__pin-project-lite-0.2.9//:pin_project_lite",
|
||||
"@rules_proto_grpc_rust__socket2-0.4.9//:socket2",
|
||||
"@rules_proto_grpc_rust__tokio-1.28.2//:tokio",
|
||||
"@rules_proto_grpc_rust__tower-service-0.3.2//:tower_service",
|
||||
"@rules_proto_grpc_rust__tracing-0.1.37//:tracing",
|
||||
"@rules_proto_grpc_rust__want-0.3.0//:want",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,47 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "hyper_timeout",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=hyper-timeout",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__hyper-0.14.26//:hyper",
|
||||
"@rules_proto_grpc_rust__pin-project-lite-0.2.9//:pin_project_lite",
|
||||
"@rules_proto_grpc_rust__tokio-1.28.2//:tokio",
|
||||
"@rules_proto_grpc_rust__tokio-io-timeout-1.2.0//:tokio_io_timeout",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,91 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "indexmap",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=indexmap",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.9.3",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__hashbrown-0.12.3//:hashbrown",
|
||||
"@rules_proto_grpc_rust__indexmap-1.9.3//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "indexmap_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=indexmap",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.9.3",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__autocfg-1.1.0//:autocfg",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "indexmap_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # BSD-3-Clause
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "instant",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=instant",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.12",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__cfg-if-1.0.0//:cfg_if",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,164 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "io_lifetimes",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"close",
|
||||
"hermit-abi",
|
||||
"libc",
|
||||
"windows-sys",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=io-lifetimes",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.11",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__io-lifetimes-1.0.11//:build_script_build",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@rules_proto_grpc_rust__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-unknown-unknown": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@rules_proto_grpc_rust__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(not(windows))
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "io-lifetimes_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"close",
|
||||
"hermit-abi",
|
||||
"libc",
|
||||
"windows-sys",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=io-lifetimes",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.11",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "io-lifetimes_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,49 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "itertools",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"use_alloc",
|
||||
"use_std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=itertools",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.10.5",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__either-1.8.1//:either",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "itoa",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=itoa",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.6",
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "lazy_static",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=lazy_static",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.4.0",
|
||||
)
|
|
@ -0,0 +1,91 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "libc",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"extra_traits",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=libc",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.145",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "libc_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"extra_traits",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=libc",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.145",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "libc_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,47 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "linux_raw_sys",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"errno",
|
||||
"general",
|
||||
"ioctl",
|
||||
"no_std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=linux-raw-sys",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.8",
|
||||
)
|
|
@ -0,0 +1,81 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "log",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=log",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.18",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__log-0.4.18//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "log_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=log",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.4.18",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "log_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "matchit",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=matchit",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.7.0",
|
||||
)
|
|
@ -0,0 +1,89 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Unlicense/MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "memchr",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=memchr",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "2.5.0",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__memchr-2.5.0//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "memchr_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=memchr",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "2.5.0",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "memchr_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "mime",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=mime",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.17",
|
||||
)
|
|
@ -0,0 +1,116 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "mio",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"net",
|
||||
"os-ext",
|
||||
"os-poll",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=mio",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.8.8",
|
||||
deps = select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
|
||||
"@rules_proto_grpc_rust__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:wasm32-wasi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(target_os = "wasi")
|
||||
"@rules_proto_grpc_rust__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi")
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
|
||||
"@rules_proto_grpc_rust__windows-sys-0.48.0//:windows_sys", # cfg(windows)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "multimap",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=multimap",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.8.3",
|
||||
)
|
|
@ -0,0 +1,84 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "num_traits",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2015",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=num-traits",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.15",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__num-traits-0.2.15//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "num-traits_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=num-traits",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.15",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__autocfg-1.1.0//:autocfg",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "num-traits_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,47 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "once_cell",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"race",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=once_cell",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.18.0",
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "pbjson",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pbjson",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.5.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__base64-0.13.1//:base64",
|
||||
"@rules_proto_grpc_rust__serde-1.0.163//:serde",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,47 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "pbjson_build",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pbjson-build",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.5.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__heck-0.4.1//:heck",
|
||||
"@rules_proto_grpc_rust__itertools-0.10.5//:itertools",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,90 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "pbjson_types",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pbjson-types",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.5.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__chrono-0.4.26//:chrono",
|
||||
"@rules_proto_grpc_rust__pbjson-0.5.1//:pbjson",
|
||||
"@rules_proto_grpc_rust__pbjson-types-0.5.1//:build_script_build",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__serde-1.0.163//:serde",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "pbjson-types_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pbjson-types",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.5.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__pbjson-build-0.5.1//:pbjson_build",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "pbjson-types_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "percent_encoding",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=percent-encoding",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "2.3.0",
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "petgraph",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=petgraph",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.6.3",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__fixedbitset-0.4.2//:fixedbitset",
|
||||
"@rules_proto_grpc_rust__indexmap-1.9.3//:indexmap",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "pin_project",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__pin-project-internal-1.1.0//:pin_project_internal",
|
||||
],
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pin-project",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.1.0",
|
||||
)
|
|
@ -0,0 +1,46 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_proc_macro(
|
||||
name = "pin_project_internal",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pin-project-internal",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.1.0",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__quote-1.0.28//:quote",
|
||||
"@rules_proto_grpc_rust__syn-2.0.18//:syn",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0 OR MIT
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "pin_project_lite",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pin-project-lite",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.9",
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "pin_utils",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=pin-utils",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.0",
|
||||
)
|
|
@ -0,0 +1,45 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT/Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "ppv_lite86",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"simd",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=ppv-lite86",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.17",
|
||||
)
|
|
@ -0,0 +1,84 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "prettyplease",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=prettyplease",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.25",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__prettyplease-0.1.25//:build_script_build",
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__syn-1.0.109//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "prettyplease_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2021",
|
||||
links = "prettyplease01",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=prettyplease",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.1.25",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "prettyplease_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,90 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "proc_macro2",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"proc-macro",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=proc-macro2",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.59",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:build_script_build",
|
||||
"@rules_proto_grpc_rust__unicode-ident-1.0.9//:unicode_ident",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "proc-macro2_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"proc-macro",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=proc-macro2",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.59",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "proc-macro2_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,52 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "prost",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"prost-derive",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
proc_macro_deps = [
|
||||
"@rules_proto_grpc_rust__prost-derive-0.11.9//:prost_derive",
|
||||
],
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=prost",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.11.9",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,63 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "prost_build",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"format",
|
||||
"prettyplease",
|
||||
"syn",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=prost-build",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.11.9",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__bytes-1.4.0//:bytes",
|
||||
"@rules_proto_grpc_rust__heck-0.4.1//:heck",
|
||||
"@rules_proto_grpc_rust__itertools-0.10.5//:itertools",
|
||||
"@rules_proto_grpc_rust__lazy_static-1.4.0//:lazy_static",
|
||||
"@rules_proto_grpc_rust__log-0.4.18//:log",
|
||||
"@rules_proto_grpc_rust__multimap-0.8.3//:multimap",
|
||||
"@rules_proto_grpc_rust__petgraph-0.6.3//:petgraph",
|
||||
"@rules_proto_grpc_rust__prettyplease-0.1.25//:prettyplease",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
"@rules_proto_grpc_rust__syn-1.0.109//:syn",
|
||||
"@rules_proto_grpc_rust__tempfile-3.5.0//:tempfile",
|
||||
"@rules_proto_grpc_rust__which-4.4.0//:which",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_proc_macro(
|
||||
name = "prost_derive",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=prost-derive",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.11.9",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__anyhow-1.0.71//:anyhow",
|
||||
"@rules_proto_grpc_rust__itertools-0.10.5//:itertools",
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__quote-1.0.28//:quote",
|
||||
"@rules_proto_grpc_rust__syn-1.0.109//:syn",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "prost_types",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=prost-types",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.11.9",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,86 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//rust:defs.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
)
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "protoc_gen_prost",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__once_cell-1.18.0//:once_cell",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
||||
|
||||
rust_binary(
|
||||
name = "protoc-gen-prost__bin",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/main.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.1",
|
||||
deps = [
|
||||
":protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__once_cell-1.18.0//:once_cell",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,86 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//rust:defs.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
)
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "protoc_gen_prost",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.2",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__once_cell-1.18.0//:once_cell",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
||||
|
||||
rust_binary(
|
||||
name = "protoc-gen-prost__bin",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/main.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.2",
|
||||
deps = [
|
||||
":protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__once_cell-1.18.0//:once_cell",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,88 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//rust:defs.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
)
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "protoc_gen_prost_crate",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost-crate",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__once_cell-1.18.0//:once_cell",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__protoc-gen-prost-0.2.1//:protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
||||
|
||||
rust_binary(
|
||||
name = "protoc-gen-prost-crate__bin",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/main.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost-crate",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.1",
|
||||
deps = [
|
||||
":protoc_gen_prost_crate",
|
||||
"@rules_proto_grpc_rust__once_cell-1.18.0//:once_cell",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__protoc-gen-prost-0.2.1//:protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,88 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//rust:defs.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
)
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "protoc_gen_prost_serde",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost-serde",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.3",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__pbjson-build-0.5.1//:pbjson_build",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__protoc-gen-prost-0.2.2//:protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
||||
|
||||
rust_binary(
|
||||
name = "protoc-gen-prost-serde__bin",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/main.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-prost-serde",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.3",
|
||||
deps = [
|
||||
":protoc_gen_prost_serde",
|
||||
"@rules_proto_grpc_rust__pbjson-build-0.5.1//:pbjson_build",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__protoc-gen-prost-0.2.2//:protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,94 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load(
|
||||
"@rules_rust//rust:defs.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
)
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "protoc_gen_tonic",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-tonic",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.2",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__heck-0.4.1//:heck",
|
||||
"@rules_proto_grpc_rust__prettyplease-0.1.25//:prettyplease",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__protoc-gen-prost-0.2.2//:protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
"@rules_proto_grpc_rust__syn-1.0.109//:syn",
|
||||
"@rules_proto_grpc_rust__tonic-build-0.8.4//:tonic_build",
|
||||
],
|
||||
)
|
||||
|
||||
rust_binary(
|
||||
name = "protoc-gen-tonic__bin",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_root = "src/main.rs",
|
||||
edition = "2021",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=protoc-gen-tonic",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.2.2",
|
||||
deps = [
|
||||
":protoc_gen_tonic",
|
||||
"@rules_proto_grpc_rust__heck-0.4.1//:heck",
|
||||
"@rules_proto_grpc_rust__prettyplease-0.1.25//:prettyplease",
|
||||
"@rules_proto_grpc_rust__prost-0.11.9//:prost",
|
||||
"@rules_proto_grpc_rust__prost-build-0.11.9//:prost_build",
|
||||
"@rules_proto_grpc_rust__prost-types-0.11.9//:prost_types",
|
||||
"@rules_proto_grpc_rust__protoc-gen-prost-0.2.2//:protoc_gen_prost",
|
||||
"@rules_proto_grpc_rust__regex-1.8.4//:regex",
|
||||
"@rules_proto_grpc_rust__syn-1.0.109//:syn",
|
||||
"@rules_proto_grpc_rust__tonic-build-0.8.4//:tonic_build",
|
||||
],
|
||||
)
|
|
@ -0,0 +1,90 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "quote",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"default",
|
||||
"proc-macro",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=quote",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.28",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__proc-macro2-1.0.59//:proc_macro2",
|
||||
"@rules_proto_grpc_rust__quote-1.0.28//:build_script_build",
|
||||
],
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "quote_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"proc-macro",
|
||||
],
|
||||
crate_name = "build_script_build",
|
||||
crate_root = "build.rs",
|
||||
data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=quote",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "1.0.28",
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "build_script_build",
|
||||
actual = "quote_build_script",
|
||||
tags = ["manual"],
|
||||
)
|
|
@ -0,0 +1,114 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "rand",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"getrandom",
|
||||
"libc",
|
||||
"rand_chacha",
|
||||
"small_rng",
|
||||
"std",
|
||||
"std_rng",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=rand",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.8.5",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__rand_chacha-0.3.1//:rand_chacha",
|
||||
"@rules_proto_grpc_rust__rand_core-0.6.4//:rand_core",
|
||||
] + select({
|
||||
"@rules_rust//rust/platform:aarch64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-linux-androideabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-darwin": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-apple-ios": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-linux-android": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
|
||||
"@rules_proto_grpc_rust__libc-0.2.145//:libc", # cfg(unix)
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
###############################################################################
|
||||
# @generated
|
||||
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
|
||||
# regenerate this file, run the following:
|
||||
#
|
||||
# bazel run @//rust/3rdparty:crates_vendor
|
||||
###############################################################################
|
||||
|
||||
load("@rules_rust//rust:defs.bzl", "rust_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
# licenses([
|
||||
# "TODO", # MIT OR Apache-2.0
|
||||
# ])
|
||||
|
||||
rust_library(
|
||||
name = "rand_chacha",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
compile_data = glob(
|
||||
include = ["**"],
|
||||
exclude = [
|
||||
"**/* *",
|
||||
"BUILD",
|
||||
"BUILD.bazel",
|
||||
"WORKSPACE",
|
||||
"WORKSPACE.bazel",
|
||||
],
|
||||
),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
edition = "2018",
|
||||
rustc_flags = ["--cap-lints=allow"],
|
||||
tags = [
|
||||
"cargo-bazel",
|
||||
"crate-name=rand_chacha",
|
||||
"manual",
|
||||
"noclippy",
|
||||
"norustfmt",
|
||||
],
|
||||
version = "0.3.1",
|
||||
deps = [
|
||||
"@rules_proto_grpc_rust__ppv-lite86-0.2.17//:ppv_lite86",
|
||||
"@rules_proto_grpc_rust__rand_core-0.6.4//:rand_core",
|
||||
],
|
||||
)
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue