mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-19 08:07:48 +01:00
Merge pull request #2 from the-superpirate/master
- Instrumentize images with tcmalloc
This commit is contained in:
commit
21cc15bb67
@ -142,7 +142,7 @@ maven_fetch_remote_artifacts()
|
||||
|
||||
load("@io_bazel_rules_rust//rust:repositories.bzl", "rust_repository_set")
|
||||
|
||||
rust_version = "1.48.0"
|
||||
rust_version = "1.49.0"
|
||||
|
||||
rustfmt_version = "1.4.20"
|
||||
|
||||
|
@ -11,6 +11,7 @@ download_pkgs(
|
||||
"bash",
|
||||
"libev4",
|
||||
"libgomp1",
|
||||
"libgoogle-perftools-dev",
|
||||
"libprotobuf17",
|
||||
"libssl1.1",
|
||||
"python3.9",
|
||||
|
@ -13,7 +13,7 @@ LANGUAGE_TRANSLATION = {
|
||||
'Italian': 'it',
|
||||
'Spanish': 'es',
|
||||
'Portuguese': 'pt',
|
||||
'Chinese': 'cn',
|
||||
'Chinese': 'zh',
|
||||
'Polish': 'pl',
|
||||
'english': 'en',
|
||||
'Russian-Ukrainian': 'ru,uk',
|
||||
@ -32,6 +32,7 @@ LANGUAGE_TRANSLATION = {
|
||||
'Hungarian': 'hu',
|
||||
'Latin': 'la',
|
||||
'Serbian': 'sr',
|
||||
'Spanish;Castilian': 'es',
|
||||
'Spanish,Castilian': 'es',
|
||||
'German-Russian': 'de,ru',
|
||||
'Croatian': 'hr',
|
||||
@ -43,7 +44,7 @@ LANGUAGE_TRANSLATION = {
|
||||
'Swedish': 'sv',
|
||||
'Indonesian': 'id',
|
||||
'Greek(Modern)': 'el',
|
||||
'Chinese(PRC)': 'cn',
|
||||
'Chinese(PRC)': 'zh',
|
||||
'Belorussian': 'by',
|
||||
'Deutsch': 'de',
|
||||
'German-English': 'de,en',
|
||||
@ -58,7 +59,9 @@ LANGUAGE_TRANSLATION = {
|
||||
'Bengali': 'bn',
|
||||
'English-French': 'en,fr',
|
||||
'English-German': 'de,en',
|
||||
'Chinese-English': 'cn,en',
|
||||
'Chinese-English': 'en,zh',
|
||||
'chinese': 'zh',
|
||||
'Korean': 'ko',
|
||||
}
|
||||
|
||||
|
||||
|
@ -4,6 +4,4 @@ import cld3
|
||||
def detect_language(text: str) -> str:
|
||||
prediction = cld3.get_language(text)
|
||||
if prediction and prediction.is_reliable:
|
||||
if prediction.language.endswith('-Latn'):
|
||||
return prediction.language[:2]
|
||||
return prediction.language
|
||||
|
@ -10,5 +10,5 @@ search_engine:
|
||||
data_path: /summa
|
||||
default_page_size: 5
|
||||
timeout_secs: 5
|
||||
writer_memory_mb: 4096
|
||||
writer_memory_mb: 1024
|
||||
writer_threads: 4
|
||||
|
@ -25,7 +25,7 @@ def _do_work(coder, filepath, chunk_size, limit, member):
|
||||
tr = TantivyReader(data, coder=coder)
|
||||
for chunk_num, documents in enumerate(ichunks(tr.documents(), chunk_size)):
|
||||
for doc_num, document in enumerate(documents):
|
||||
if chunk_num * chunk_size + doc_num > limit:
|
||||
if limit and chunk_num * chunk_size + doc_num > limit:
|
||||
print(f'Segment {member.name} early terminated due to limits')
|
||||
return
|
||||
work(document)
|
||||
|
@ -115,7 +115,7 @@ scipy==1.5.4
|
||||
sip==5.5.0
|
||||
six==1.15.0
|
||||
spacy==2.3.5
|
||||
tantipy==0.1.2
|
||||
tantipy==0.14.0-dev0
|
||||
telethon==1.18.2
|
||||
tenacity==6.3.1
|
||||
timezonefinder==4.5.0
|
||||
|
@ -18,6 +18,7 @@ actix-web = { version = "3", default-features = false }
|
||||
actix-utils = "1"
|
||||
atomicwrites = { version = "0.2.5", optional = true }
|
||||
autocfg = "1.0.0"
|
||||
backtrace = "0.3.55"
|
||||
base64 = "0.12.3"
|
||||
bb8 = "0.4.2"
|
||||
bb8-postgres = "0.4.0"
|
||||
@ -46,7 +47,7 @@ fancy-regex = "0.3.5"
|
||||
fnv = "1.0.7"
|
||||
fs2 = { version="0.4.3", optional = true }
|
||||
fst = "0.4"
|
||||
futures = { version = "0.3.5", features = ["thread-pool"] }
|
||||
futures = { version = "0.3.5", features = ["thread-pool"] }
|
||||
grpc = "0.8.2"
|
||||
grpc-compiler = "0.8.2"
|
||||
htmlescape = "0.3.1"
|
||||
@ -65,10 +66,9 @@ maplit = "1.0.2"
|
||||
matches = "0.1.8"
|
||||
memmap = { version = "0.7.0", optional=true }
|
||||
murmurhash32 = "0.2.0"
|
||||
notify = { version = "4", optional=true }
|
||||
num-bigint = { version = "0.2", features = ["i128"] }
|
||||
num-bigint = "0.3.1"
|
||||
num_cpus = "1.13.0"
|
||||
num-traits = { version = "0.2.12", features = ["i128"] }
|
||||
num-traits = "0.2.14"
|
||||
once_cell = "1.4.0"
|
||||
owned-read = "0.4.1"
|
||||
owning_ref = "0.4.1"
|
||||
@ -82,47 +82,47 @@ r2d2 = "0.8.9"
|
||||
r2d2_postgres = "0.16.0"
|
||||
rand = "0.7.3"
|
||||
rayon = "1.3.1"
|
||||
regex = { version = "1.3.9", default-features = false, features = ["std"] }
|
||||
regex = { version = "1.4.2", default-features = false, features = ["std"] }
|
||||
reopen = { version = "1.0.1", features = ["signals"] }
|
||||
rust-stemmers = "1.2.0"
|
||||
rustc-serialize = "0.3.24"
|
||||
serde = { version = "1.0.117", features = ["derive"] }
|
||||
serde_derive = "1.0.115"
|
||||
serde_json = "1.0.57"
|
||||
serde_qs = "0.7"
|
||||
serde_yaml = "0.8.13"
|
||||
signal-hook = "0.1.16"
|
||||
slog = { version = "2.5.2", features = ["nested-values"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_derive = "1.0.118"
|
||||
serde_json = "1.0.61"
|
||||
serde_qs = "0.8.2"
|
||||
serde_yaml = "0.8.15"
|
||||
signal-hook = "0.3.2"
|
||||
slog = { version = "2.7.0", features = ["nested-values"] }
|
||||
slog-async = "2.5.0"
|
||||
slog_derive = "0.2.0"
|
||||
slog-json = "2.3.0"
|
||||
slog-stdlog = "4.0.0"
|
||||
slog-stdlog = "4.1.0"
|
||||
slog-term = "2.6.0"
|
||||
smallvec = "1.4.2"
|
||||
snap = "1.0.1"
|
||||
smallvec = "1.6.0"
|
||||
snap = "1.0.3"
|
||||
stable_deref_trait = "1.2.0"
|
||||
strum = "0.19.2"
|
||||
strum_macros = "0.19.2"
|
||||
strum = "0.20.0"
|
||||
strum_macros = "0.20.1"
|
||||
tantivy-fst = "0.3.0"
|
||||
tar = "0.4.30"
|
||||
tempdir = "0.3.7"
|
||||
tempfile = "3.1.0"
|
||||
textwrap = "0.12"
|
||||
thiserror = "1"
|
||||
textwrap = "0.13.2"
|
||||
thiserror = "1.0.23"
|
||||
time = { version = "0.2", features = ["std"] }
|
||||
tls-api = "0.4.0"
|
||||
tls-api-stub = "0.4.0"
|
||||
tokio = { version = "0.2", features = ["full", "time"] }
|
||||
tokio-pg-mapper = "0.1.8"
|
||||
tokio-pg-mapper-derive = "0.1.5"
|
||||
tokio-postgres = "0.6.0"
|
||||
tokio-pg-mapper = "0.2.0"
|
||||
tokio-pg-mapper-derive = "0.2.0"
|
||||
tokio-postgres = "0.7.0"
|
||||
typenum = { version = "1.12.0", features = ["force_unix_path_separator"] }
|
||||
urlparse = "0.7.3"
|
||||
uuid = { version = "0.8.1", features = ["v4", "serde"] }
|
||||
|
||||
[features]
|
||||
default = ["mmap"]
|
||||
mmap = ["atomicwrites", "fs2", "memmap", "notify"]
|
||||
mmap = ["atomicwrites", "fs2", "memmap"]
|
||||
failpoints = ["fail/failpoints"]
|
||||
unstable = [] # useful for benches.
|
||||
wasm-bindgen = ["uuid/wasm-bindgen"]
|
||||
@ -139,15 +139,15 @@ targets = [
|
||||
workspace_path = "//rules/rust"
|
||||
|
||||
|
||||
[raze.crates.indexmap.'1.6.0']
|
||||
[package.metadata.raze.crates.indexmap.'*']
|
||||
additional_flags = [
|
||||
"--cfg=has_std",
|
||||
]
|
||||
|
||||
[raze.crates.grpc-compiler.'0.8.2']
|
||||
[package.metadata.raze.crates.grpc-compiler.'*']
|
||||
extra_aliased_targets = ["cargo_bin_protoc_gen_rust_grpc"]
|
||||
|
||||
[raze.crates.libc.'0.2.74']
|
||||
[package.metadata.raze.crates.libc.'*']
|
||||
additional_flags = [
|
||||
"--cfg=libc_priv_mod_use",
|
||||
"--cfg=libc_union",
|
||||
@ -157,43 +157,32 @@ additional_flags = [
|
||||
"--cfg=libc_packedN",
|
||||
]
|
||||
|
||||
[raze.crates.lexical-core.'0.4.6']
|
||||
[package.metadata.raze.crates.lexical-core.'*']
|
||||
additional_flags = [
|
||||
"--cfg=limb_width_32",
|
||||
"--cfg=has_i128",
|
||||
]
|
||||
|
||||
[raze.crates.lexical-core.'0.7.4']
|
||||
additional_flags = [
|
||||
"--cfg=limb_width_32",
|
||||
"--cfg=has_i128",
|
||||
]
|
||||
|
||||
[raze.crates.log.'0.4.11']
|
||||
[package.metadata.raze.crates.log.'*']
|
||||
additional_flags = [
|
||||
"--cfg=atomic_cas"
|
||||
]
|
||||
|
||||
[raze.crates.num-traits.'0.2.12']
|
||||
additional_flags = [
|
||||
"--cfg=has_i128",
|
||||
]
|
||||
|
||||
[raze.crates.proc-macro2.'1.0.24']
|
||||
[package.metadata.raze.crates.proc-macro2.'*']
|
||||
additional_flags = [
|
||||
"--cfg=use_proc_macro",
|
||||
"--cfg=wrap_proc_macro",
|
||||
]
|
||||
|
||||
[raze.crates.protobuf-codegen.'2.18.1']
|
||||
[package.metadata.raze.crates.protobuf-codegen.'*']
|
||||
extra_aliased_targets = ["cargo_bin_protoc_gen_rust"]
|
||||
|
||||
[raze.crates.serde.'1.0.117']
|
||||
[package.metadata.raze.crates.serde.'*']
|
||||
additional_flags = [
|
||||
"--cfg=integer128",
|
||||
]
|
||||
|
||||
[raze.crates.time.'0.2.22']
|
||||
[package.metadata.raze.crates.time.'*']
|
||||
additional_flags = [
|
||||
"--cfg=std",
|
||||
]
|
||||
|
@ -102,6 +102,15 @@ alias(
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "backtrace",
|
||||
actual = "@raze__backtrace__0_3_55//:backtrace",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "base64",
|
||||
actual = "@raze__base64__0_12_3//:base64",
|
||||
@ -212,7 +221,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "combine",
|
||||
actual = "@raze__combine__4_5_0//:combine",
|
||||
actual = "@raze__combine__4_5_2//:combine",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -293,7 +302,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "erased_serde",
|
||||
actual = "@raze__erased_serde__0_3_12//:erased_serde",
|
||||
actual = "@raze__erased_serde__0_3_13//:erased_serde",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -382,6 +391,8 @@ alias(
|
||||
)
|
||||
|
||||
alias(
|
||||
# Extra aliased target, from raze configuration
|
||||
# N.B.: The exact form of this is subject to change.
|
||||
name = "cargo_bin_protoc_gen_rust_grpc",
|
||||
actual = "@raze__grpc_compiler__0_8_2//:cargo_bin_protoc_gen_rust_grpc",
|
||||
tags = [
|
||||
@ -534,18 +545,9 @@ alias(
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "notify",
|
||||
actual = "@raze__notify__4_0_15//:notify",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "num_bigint",
|
||||
actual = "@raze__num_bigint__0_2_6//:num_bigint",
|
||||
actual = "@raze__num_bigint__0_3_1//:num_bigint",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -635,7 +637,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "protobuf",
|
||||
actual = "@raze__protobuf__2_18_1//:protobuf",
|
||||
actual = "@raze__protobuf__2_20_0//:protobuf",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -644,7 +646,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "protobuf_codegen",
|
||||
actual = "@raze__protobuf_codegen__2_18_1//:protobuf_codegen",
|
||||
actual = "@raze__protobuf_codegen__2_20_0//:protobuf_codegen",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -652,8 +654,10 @@ alias(
|
||||
)
|
||||
|
||||
alias(
|
||||
# Extra aliased target, from raze configuration
|
||||
# N.B.: The exact form of this is subject to change.
|
||||
name = "cargo_bin_protoc_gen_rust",
|
||||
actual = "@raze__protobuf_codegen__2_18_1//:cargo_bin_protoc_gen_rust",
|
||||
actual = "@raze__protobuf_codegen__2_20_0//:cargo_bin_protoc_gen_rust",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -752,7 +756,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "serde_json",
|
||||
actual = "@raze__serde_json__1_0_60//:serde_json",
|
||||
actual = "@raze__serde_json__1_0_61//:serde_json",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -761,7 +765,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "serde_qs",
|
||||
actual = "@raze__serde_qs__0_7_2//:serde_qs",
|
||||
actual = "@raze__serde_qs__0_8_2//:serde_qs",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -770,7 +774,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "serde_yaml",
|
||||
actual = "@raze__serde_yaml__0_8_14//:serde_yaml",
|
||||
actual = "@raze__serde_yaml__0_8_15//:serde_yaml",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -779,7 +783,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "signal_hook",
|
||||
actual = "@raze__signal_hook__0_1_16//:signal_hook",
|
||||
actual = "@raze__signal_hook__0_3_2//:signal_hook",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -842,7 +846,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "smallvec",
|
||||
actual = "@raze__smallvec__1_5_1//:smallvec",
|
||||
actual = "@raze__smallvec__1_6_0//:smallvec",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -869,7 +873,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "strum",
|
||||
actual = "@raze__strum__0_19_5//:strum",
|
||||
actual = "@raze__strum__0_20_0//:strum",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -878,7 +882,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "strum_macros",
|
||||
actual = "@raze__strum_macros__0_19_4//:strum_macros",
|
||||
actual = "@raze__strum_macros__0_20_1//:strum_macros",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -923,7 +927,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "textwrap",
|
||||
actual = "@raze__textwrap__0_12_1//:textwrap",
|
||||
actual = "@raze__textwrap__0_13_2//:textwrap",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -932,7 +936,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "thiserror",
|
||||
actual = "@raze__thiserror__1_0_22//:thiserror",
|
||||
actual = "@raze__thiserror__1_0_23//:thiserror",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -977,7 +981,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "tokio_pg_mapper",
|
||||
actual = "@raze__tokio_pg_mapper__0_1_8//:tokio_pg_mapper",
|
||||
actual = "@raze__tokio_pg_mapper__0_2_0//:tokio_pg_mapper",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -986,7 +990,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "tokio_pg_mapper_derive",
|
||||
actual = "@raze__tokio_pg_mapper_derive__0_1_5//:tokio_pg_mapper_derive",
|
||||
actual = "@raze__tokio_pg_mapper_derive__0_2_0//:tokio_pg_mapper_derive",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
@ -995,7 +999,7 @@ alias(
|
||||
|
||||
alias(
|
||||
name = "tokio_postgres",
|
||||
actual = "@raze__tokio_postgres__0_6_0//:tokio_postgres",
|
||||
actual = "@raze__tokio_postgres__0_7_0//:tokio_postgres",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
|
@ -175,11 +175,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__addr2line__0_14_0",
|
||||
url = "https://crates.io/api/v1/crates/addr2line/0.14.0/download",
|
||||
name = "raze__addr2line__0_14_1",
|
||||
url = "https://crates.io/api/v1/crates/addr2line/0.14.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "addr2line-0.14.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.addr2line-0.14.0.bazel"),
|
||||
strip_prefix = "addr2line-0.14.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.addr2line-0.14.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -490,11 +490,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__bytes__0_6_0",
|
||||
url = "https://crates.io/api/v1/crates/bytes/0.6.0/download",
|
||||
name = "raze__bytes__1_0_0",
|
||||
url = "https://crates.io/api/v1/crates/bytes/1.0.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "bytes-0.6.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.bytes-0.6.0.bazel"),
|
||||
strip_prefix = "bytes-1.0.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.bytes-1.0.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -580,11 +580,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__combine__4_5_0",
|
||||
url = "https://crates.io/api/v1/crates/combine/4.5.0/download",
|
||||
name = "raze__combine__4_5_2",
|
||||
url = "https://crates.io/api/v1/crates/combine/4.5.2/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "combine-4.5.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.combine-4.5.0.bazel"),
|
||||
strip_prefix = "combine-4.5.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.combine-4.5.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -598,11 +598,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__const_fn__0_4_4",
|
||||
url = "https://crates.io/api/v1/crates/const_fn/0.4.4/download",
|
||||
name = "raze__const_fn__0_4_5",
|
||||
url = "https://crates.io/api/v1/crates/const_fn/0.4.5/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "const_fn-0.4.4",
|
||||
build_file = Label("//rules/rust/remote:BUILD.const_fn-0.4.4.bazel"),
|
||||
strip_prefix = "const_fn-0.4.5",
|
||||
build_file = Label("//rules/rust/remote:BUILD.const_fn-0.4.5.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -749,6 +749,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.crunchy-0.2.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__crypto_mac__0_10_0",
|
||||
url = "https://crates.io/api/v1/crates/crypto-mac/0.10.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "crypto-mac-0.10.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.crypto-mac-0.10.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__crypto_mac__0_9_1",
|
||||
@ -758,15 +767,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.crypto-mac-0.9.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__data_encoding__2_3_1",
|
||||
url = "https://crates.io/api/v1/crates/data-encoding/2.3.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "data-encoding-2.3.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.data-encoding-2.3.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__deadpool__0_5_2",
|
||||
@ -850,11 +850,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__dtoa__0_4_6",
|
||||
url = "https://crates.io/api/v1/crates/dtoa/0.4.6/download",
|
||||
name = "raze__dtoa__0_4_7",
|
||||
url = "https://crates.io/api/v1/crates/dtoa/0.4.7/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "dtoa-0.4.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.dtoa-0.4.6.bazel"),
|
||||
strip_prefix = "dtoa-0.4.7",
|
||||
build_file = Label("//rules/rust/remote:BUILD.dtoa-0.4.7.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -886,11 +886,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__erased_serde__0_3_12",
|
||||
url = "https://crates.io/api/v1/crates/erased-serde/0.3.12/download",
|
||||
name = "raze__erased_serde__0_3_13",
|
||||
url = "https://crates.io/api/v1/crates/erased-serde/0.3.13/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "erased-serde-0.3.12",
|
||||
build_file = Label("//rules/rust/remote:BUILD.erased-serde-0.3.12.bazel"),
|
||||
strip_prefix = "erased-serde-0.3.13",
|
||||
build_file = Label("//rules/rust/remote:BUILD.erased-serde-0.3.13.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -983,24 +983,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.fs2-0.4.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__fsevent__0_4_0",
|
||||
url = "https://crates.io/api/v1/crates/fsevent/0.4.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "fsevent-0.4.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.fsevent-0.4.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__fsevent_sys__2_0_1",
|
||||
url = "https://crates.io/api/v1/crates/fsevent-sys/2.0.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "fsevent-sys-2.0.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.fsevent-sys-2.0.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__fst__0_3_5",
|
||||
@ -1147,11 +1129,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__getrandom__0_1_15",
|
||||
url = "https://crates.io/api/v1/crates/getrandom/0.1.15/download",
|
||||
name = "raze__getrandom__0_1_16",
|
||||
url = "https://crates.io/api/v1/crates/getrandom/0.1.16/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "getrandom-0.1.15",
|
||||
build_file = Label("//rules/rust/remote:BUILD.getrandom-0.1.15.bazel"),
|
||||
strip_prefix = "getrandom-0.1.16",
|
||||
build_file = Label("//rules/rust/remote:BUILD.getrandom-0.1.16.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__getrandom__0_2_1",
|
||||
url = "https://crates.io/api/v1/crates/getrandom/0.2.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "getrandom-0.2.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.getrandom-0.2.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1217,6 +1208,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.hermit-abi-0.1.17.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__hmac__0_10_1",
|
||||
url = "https://crates.io/api/v1/crates/hmac/0.10.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "hmac-0.10.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.hmac-0.10.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__hmac__0_9_0",
|
||||
@ -1298,24 +1298,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.indexmap-1.6.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__inotify__0_7_1",
|
||||
url = "https://crates.io/api/v1/crates/inotify/0.7.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "inotify-0.7.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.inotify-0.7.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__inotify_sys__0_1_4",
|
||||
url = "https://crates.io/api/v1/crates/inotify-sys/0.1.4/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "inotify-sys-0.1.4",
|
||||
build_file = Label("//rules/rust/remote:BUILD.inotify-sys-0.1.4.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__instant__0_1_9",
|
||||
@ -1363,11 +1345,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__itoa__0_4_6",
|
||||
url = "https://crates.io/api/v1/crates/itoa/0.4.6/download",
|
||||
name = "raze__itoa__0_4_7",
|
||||
url = "https://crates.io/api/v1/crates/itoa/0.4.7/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "itoa-0.4.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.itoa-0.4.6.bazel"),
|
||||
strip_prefix = "itoa-0.4.7",
|
||||
build_file = Label("//rules/rust/remote:BUILD.itoa-0.4.7.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1397,15 +1379,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.lazy_static-1.4.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__lazycell__1_3_0",
|
||||
url = "https://crates.io/api/v1/crates/lazycell/1.3.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "lazycell-1.3.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.lazycell-1.3.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__levenshtein_automata__0_1_1",
|
||||
@ -1642,20 +1615,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__mio__0_7_6",
|
||||
url = "https://crates.io/api/v1/crates/mio/0.7.6/download",
|
||||
name = "raze__mio__0_7_7",
|
||||
url = "https://crates.io/api/v1/crates/mio/0.7.7/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "mio-0.7.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.mio-0.7.6.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__mio_extras__2_0_6",
|
||||
url = "https://crates.io/api/v1/crates/mio-extras/2.0.6/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "mio-extras-2.0.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.mio-extras-2.0.6.bazel"),
|
||||
strip_prefix = "mio-0.7.7",
|
||||
build_file = Label("//rules/rust/remote:BUILD.mio-0.7.7.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1730,15 +1694,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.nom-5.1.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__notify__4_0_15",
|
||||
url = "https://crates.io/api/v1/crates/notify/4.0.15/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "notify-4.0.15",
|
||||
build_file = Label("//rules/rust/remote:BUILD.notify-4.0.15.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__ntapi__0_3_6",
|
||||
@ -1750,11 +1705,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__num_bigint__0_2_6",
|
||||
url = "https://crates.io/api/v1/crates/num-bigint/0.2.6/download",
|
||||
name = "raze__num_bigint__0_3_1",
|
||||
url = "https://crates.io/api/v1/crates/num-bigint/0.3.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "num-bigint-0.2.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.num-bigint-0.2.6.bazel"),
|
||||
strip_prefix = "num-bigint-0.3.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.num-bigint-0.3.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1903,11 +1858,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__pin_project__1_0_2",
|
||||
url = "https://crates.io/api/v1/crates/pin-project/1.0.2/download",
|
||||
name = "raze__pin_project__1_0_3",
|
||||
url = "https://crates.io/api/v1/crates/pin-project/1.0.3/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "pin-project-1.0.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.pin-project-1.0.2.bazel"),
|
||||
strip_prefix = "pin-project-1.0.3",
|
||||
build_file = Label("//rules/rust/remote:BUILD.pin-project-1.0.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1921,11 +1876,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__pin_project_internal__1_0_2",
|
||||
url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.2/download",
|
||||
name = "raze__pin_project_internal__1_0_3",
|
||||
url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.3/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "pin-project-internal-1.0.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.pin-project-internal-1.0.2.bazel"),
|
||||
strip_prefix = "pin-project-internal-1.0.3",
|
||||
build_file = Label("//rules/rust/remote:BUILD.pin-project-internal-1.0.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1939,11 +1894,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__pin_project_lite__0_2_0",
|
||||
url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.0/download",
|
||||
name = "raze__pin_project_lite__0_2_1",
|
||||
url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "pin-project-lite-0.2.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.pin-project-lite-0.2.0.bazel"),
|
||||
strip_prefix = "pin-project-lite-0.2.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.pin-project-lite-0.2.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -1982,6 +1937,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.postgres-protocol-0.5.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__postgres_protocol__0_6_0",
|
||||
url = "https://crates.io/api/v1/crates/postgres-protocol/0.6.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "postgres-protocol-0.6.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.postgres-protocol-0.6.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__postgres_types__0_1_3",
|
||||
@ -1991,6 +1955,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.postgres-types-0.1.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__postgres_types__0_2_0",
|
||||
url = "https://crates.io/api/v1/crates/postgres-types/0.2.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "postgres-types-0.2.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.postgres-types-0.2.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__ppv_lite86__0_2_10",
|
||||
@ -2038,20 +2011,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__protobuf__2_18_1",
|
||||
url = "https://crates.io/api/v1/crates/protobuf/2.18.1/download",
|
||||
name = "raze__protobuf__2_20_0",
|
||||
url = "https://crates.io/api/v1/crates/protobuf/2.20.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "protobuf-2.18.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.protobuf-2.18.1.bazel"),
|
||||
strip_prefix = "protobuf-2.20.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.protobuf-2.20.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__protobuf_codegen__2_18_1",
|
||||
url = "https://crates.io/api/v1/crates/protobuf-codegen/2.18.1/download",
|
||||
name = "raze__protobuf_codegen__2_20_0",
|
||||
url = "https://crates.io/api/v1/crates/protobuf-codegen/2.20.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "protobuf-codegen-2.18.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.protobuf-codegen-2.18.1.bazel"),
|
||||
strip_prefix = "protobuf-codegen-2.20.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.protobuf-codegen-2.20.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2117,6 +2090,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand-0.7.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand__0_8_1",
|
||||
url = "https://crates.io/api/v1/crates/rand/0.8.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "rand-0.8.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand-0.8.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_chacha__0_2_2",
|
||||
@ -2126,6 +2108,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand_chacha-0.2.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_chacha__0_3_0",
|
||||
url = "https://crates.io/api/v1/crates/rand_chacha/0.3.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "rand_chacha-0.3.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand_chacha-0.3.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_core__0_3_1",
|
||||
@ -2153,6 +2144,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand_core-0.5.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_core__0_6_1",
|
||||
url = "https://crates.io/api/v1/crates/rand_core/0.6.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "rand_core-0.6.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand_core-0.6.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_hc__0_2_0",
|
||||
@ -2162,6 +2162,15 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand_hc-0.2.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_hc__0_3_0",
|
||||
url = "https://crates.io/api/v1/crates/rand_hc/0.3.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "rand_hc-0.3.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.rand_hc-0.3.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__rand_xorshift__0_2_0",
|
||||
@ -2351,15 +2360,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.safemem-0.3.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__same_file__1_0_6",
|
||||
url = "https://crates.io/api/v1/crates/same-file/1.0.6/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "same-file-1.0.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.same-file-1.0.6.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__scheduled_thread_pool__0_2_5",
|
||||
@ -2443,20 +2443,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__serde_json__1_0_60",
|
||||
url = "https://crates.io/api/v1/crates/serde_json/1.0.60/download",
|
||||
name = "raze__serde_json__1_0_61",
|
||||
url = "https://crates.io/api/v1/crates/serde_json/1.0.61/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "serde_json-1.0.60",
|
||||
build_file = Label("//rules/rust/remote:BUILD.serde_json-1.0.60.bazel"),
|
||||
strip_prefix = "serde_json-1.0.61",
|
||||
build_file = Label("//rules/rust/remote:BUILD.serde_json-1.0.61.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__serde_qs__0_7_2",
|
||||
url = "https://crates.io/api/v1/crates/serde_qs/0.7.2/download",
|
||||
name = "raze__serde_qs__0_8_2",
|
||||
url = "https://crates.io/api/v1/crates/serde_qs/0.8.2/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "serde_qs-0.7.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.serde_qs-0.7.2.bazel"),
|
||||
strip_prefix = "serde_qs-0.8.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.serde_qs-0.8.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2479,11 +2479,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__serde_yaml__0_8_14",
|
||||
url = "https://crates.io/api/v1/crates/serde_yaml/0.8.14/download",
|
||||
name = "raze__serde_yaml__0_8_15",
|
||||
url = "https://crates.io/api/v1/crates/serde_yaml/0.8.15/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "serde_yaml-0.8.14",
|
||||
build_file = Label("//rules/rust/remote:BUILD.serde_yaml-0.8.14.bazel"),
|
||||
strip_prefix = "serde_yaml-0.8.15",
|
||||
build_file = Label("//rules/rust/remote:BUILD.serde_yaml-0.8.15.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2515,29 +2515,29 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__signal_hook__0_1_16",
|
||||
url = "https://crates.io/api/v1/crates/signal-hook/0.1.16/download",
|
||||
name = "raze__signal_hook__0_2_3",
|
||||
url = "https://crates.io/api/v1/crates/signal-hook/0.2.3/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "signal-hook-0.1.16",
|
||||
build_file = Label("//rules/rust/remote:BUILD.signal-hook-0.1.16.bazel"),
|
||||
strip_prefix = "signal-hook-0.2.3",
|
||||
build_file = Label("//rules/rust/remote:BUILD.signal-hook-0.2.3.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__signal_hook__0_2_2",
|
||||
url = "https://crates.io/api/v1/crates/signal-hook/0.2.2/download",
|
||||
name = "raze__signal_hook__0_3_2",
|
||||
url = "https://crates.io/api/v1/crates/signal-hook/0.3.2/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "signal-hook-0.2.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.signal-hook-0.2.2.bazel"),
|
||||
strip_prefix = "signal-hook-0.3.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.signal-hook-0.3.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__signal_hook_registry__1_2_2",
|
||||
url = "https://crates.io/api/v1/crates/signal-hook-registry/1.2.2/download",
|
||||
name = "raze__signal_hook_registry__1_3_0",
|
||||
url = "https://crates.io/api/v1/crates/signal-hook-registry/1.3.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "signal-hook-registry-1.2.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.signal-hook-registry-1.2.2.bazel"),
|
||||
strip_prefix = "signal-hook-registry-1.3.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.signal-hook-registry-1.3.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2623,11 +2623,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__smallvec__1_5_1",
|
||||
url = "https://crates.io/api/v1/crates/smallvec/1.5.1/download",
|
||||
name = "raze__smallvec__1_6_0",
|
||||
url = "https://crates.io/api/v1/crates/smallvec/1.6.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "smallvec-1.5.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.smallvec-1.5.1.bazel"),
|
||||
strip_prefix = "smallvec-1.6.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.smallvec-1.6.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__smawk__0_3_0",
|
||||
url = "https://crates.io/api/v1/crates/smawk/0.3.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "smawk-0.3.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.smawk-0.3.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2659,11 +2668,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__standback__0_2_13",
|
||||
url = "https://crates.io/api/v1/crates/standback/0.2.13/download",
|
||||
name = "raze__standback__0_2_14",
|
||||
url = "https://crates.io/api/v1/crates/standback/0.2.14/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "standback-0.2.13",
|
||||
build_file = Label("//rules/rust/remote:BUILD.standback-0.2.13.bazel"),
|
||||
strip_prefix = "standback-0.2.14",
|
||||
build_file = Label("//rules/rust/remote:BUILD.standback-0.2.14.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2731,20 +2740,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__strum__0_19_5",
|
||||
url = "https://crates.io/api/v1/crates/strum/0.19.5/download",
|
||||
name = "raze__strum__0_20_0",
|
||||
url = "https://crates.io/api/v1/crates/strum/0.20.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "strum-0.19.5",
|
||||
build_file = Label("//rules/rust/remote:BUILD.strum-0.19.5.bazel"),
|
||||
strip_prefix = "strum-0.20.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.strum-0.20.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__strum_macros__0_19_4",
|
||||
url = "https://crates.io/api/v1/crates/strum_macros/0.19.4/download",
|
||||
name = "raze__strum_macros__0_20_1",
|
||||
url = "https://crates.io/api/v1/crates/strum_macros/0.20.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "strum_macros-0.19.4",
|
||||
build_file = Label("//rules/rust/remote:BUILD.strum_macros-0.19.4.bazel"),
|
||||
strip_prefix = "strum_macros-0.20.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.strum_macros-0.20.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2758,11 +2767,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__syn__1_0_55",
|
||||
url = "https://crates.io/api/v1/crates/syn/1.0.55/download",
|
||||
name = "raze__syn__1_0_58",
|
||||
url = "https://crates.io/api/v1/crates/syn/1.0.58/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "syn-1.0.55",
|
||||
build_file = Label("//rules/rust/remote:BUILD.syn-1.0.55.bazel"),
|
||||
strip_prefix = "syn-1.0.58",
|
||||
build_file = Label("//rules/rust/remote:BUILD.syn-1.0.58.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2839,29 +2848,29 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__textwrap__0_12_1",
|
||||
url = "https://crates.io/api/v1/crates/textwrap/0.12.1/download",
|
||||
name = "raze__textwrap__0_13_2",
|
||||
url = "https://crates.io/api/v1/crates/textwrap/0.13.2/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "textwrap-0.12.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.textwrap-0.12.1.bazel"),
|
||||
strip_prefix = "textwrap-0.13.2",
|
||||
build_file = Label("//rules/rust/remote:BUILD.textwrap-0.13.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__thiserror__1_0_22",
|
||||
url = "https://crates.io/api/v1/crates/thiserror/1.0.22/download",
|
||||
name = "raze__thiserror__1_0_23",
|
||||
url = "https://crates.io/api/v1/crates/thiserror/1.0.23/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "thiserror-1.0.22",
|
||||
build_file = Label("//rules/rust/remote:BUILD.thiserror-1.0.22.bazel"),
|
||||
strip_prefix = "thiserror-1.0.23",
|
||||
build_file = Label("//rules/rust/remote:BUILD.thiserror-1.0.23.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__thiserror_impl__1_0_22",
|
||||
url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.22/download",
|
||||
name = "raze__thiserror_impl__1_0_23",
|
||||
url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.23/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "thiserror-impl-1.0.22",
|
||||
build_file = Label("//rules/rust/remote:BUILD.thiserror-impl-1.0.22.bazel"),
|
||||
strip_prefix = "thiserror-impl-1.0.23",
|
||||
build_file = Label("//rules/rust/remote:BUILD.thiserror-impl-1.0.23.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2974,11 +2983,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__tokio__0_3_6",
|
||||
url = "https://crates.io/api/v1/crates/tokio/0.3.6/download",
|
||||
name = "raze__tokio__1_0_1",
|
||||
url = "https://crates.io/api/v1/crates/tokio/1.0.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "tokio-0.3.6",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-0.3.6.bazel"),
|
||||
strip_prefix = "tokio-1.0.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-1.0.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -2992,20 +3001,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__tokio_pg_mapper__0_1_8",
|
||||
url = "https://crates.io/api/v1/crates/tokio-pg-mapper/0.1.8/download",
|
||||
name = "raze__tokio_pg_mapper__0_2_0",
|
||||
url = "https://crates.io/api/v1/crates/tokio-pg-mapper/0.2.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "tokio-pg-mapper-0.1.8",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-pg-mapper-0.1.8.bazel"),
|
||||
strip_prefix = "tokio-pg-mapper-0.2.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-pg-mapper-0.2.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__tokio_pg_mapper_derive__0_1_5",
|
||||
url = "https://crates.io/api/v1/crates/tokio-pg-mapper-derive/0.1.5/download",
|
||||
name = "raze__tokio_pg_mapper_derive__0_2_0",
|
||||
url = "https://crates.io/api/v1/crates/tokio-pg-mapper-derive/0.2.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "tokio-pg-mapper-derive-0.1.5",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-pg-mapper-derive-0.1.5.bazel"),
|
||||
strip_prefix = "tokio-pg-mapper-derive-0.2.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-pg-mapper-derive-0.2.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -3019,11 +3028,20 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__tokio_postgres__0_6_0",
|
||||
url = "https://crates.io/api/v1/crates/tokio-postgres/0.6.0/download",
|
||||
name = "raze__tokio_postgres__0_7_0",
|
||||
url = "https://crates.io/api/v1/crates/tokio-postgres/0.7.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "tokio-postgres-0.6.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-postgres-0.6.0.bazel"),
|
||||
strip_prefix = "tokio-postgres-0.7.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-postgres-0.7.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__tokio_stream__0_1_1",
|
||||
url = "https://crates.io/api/v1/crates/tokio-stream/0.1.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "tokio-stream-0.1.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-stream-0.1.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -3046,11 +3064,11 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__tokio_util__0_4_0",
|
||||
url = "https://crates.io/api/v1/crates/tokio-util/0.4.0/download",
|
||||
name = "raze__tokio_util__0_6_0",
|
||||
url = "https://crates.io/api/v1/crates/tokio-util/0.6.0/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "tokio-util-0.4.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-util-0.4.0.bazel"),
|
||||
strip_prefix = "tokio-util-0.6.0",
|
||||
build_file = Label("//rules/rust/remote:BUILD.tokio-util-0.6.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
@ -3269,15 +3287,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.wait-timeout-0.2.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__walkdir__2_3_1",
|
||||
url = "https://crates.io/api/v1/crates/walkdir/2.3.1/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "walkdir-2.3.1",
|
||||
build_file = Label("//rules/rust/remote:BUILD.walkdir-2.3.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__wasi__0_10_0_wasi_snapshot_preview1",
|
||||
@ -3386,15 +3395,6 @@ def raze_fetch_remote_crates():
|
||||
build_file = Label("//rules/rust/remote:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__winapi_util__0_1_5",
|
||||
url = "https://crates.io/api/v1/crates/winapi-util/0.1.5/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "winapi-util-0.1.5",
|
||||
build_file = Label("//rules/rust/remote:BUILD.winapi-util-0.1.5.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__winapi_x86_64_pc_windows_gnu__0_4_0",
|
||||
@ -3433,9 +3433,9 @@ def raze_fetch_remote_crates():
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__yaml_rust__0_4_4",
|
||||
url = "https://crates.io/api/v1/crates/yaml-rust/0.4.4/download",
|
||||
name = "raze__yaml_rust__0_4_5",
|
||||
url = "https://crates.io/api/v1/crates/yaml-rust/0.4.5/download",
|
||||
type = "tar.gz",
|
||||
strip_prefix = "yaml-rust-0.4.4",
|
||||
build_file = Label("//rules/rust/remote:BUILD.yaml-rust-0.4.4.bazel"),
|
||||
strip_prefix = "yaml-rust-0.4.5",
|
||||
build_file = Label("//rules/rust/remote:BUILD.yaml-rust-0.4.5.bazel"),
|
||||
)
|
||||
|
@ -73,7 +73,7 @@ rust_library(
|
||||
"@raze__once_cell__1_5_2//:once_cell",
|
||||
"@raze__parking_lot__0_11_1//:parking_lot",
|
||||
"@raze__pin_project__0_4_27//:pin_project",
|
||||
"@raze__smallvec__1_5_1//:smallvec",
|
||||
"@raze__smallvec__1_6_0//:smallvec",
|
||||
"@raze__tokio__0_2_24//:tokio",
|
||||
"@raze__tokio_util__0_3_1//:tokio_util",
|
||||
"@raze__trust_dns_proto__0_19_6//:trust_dns_proto",
|
||||
|
@ -86,17 +86,17 @@ rust_library(
|
||||
"@raze__http__0_2_2//:http",
|
||||
"@raze__httparse__1_3_4//:httparse",
|
||||
"@raze__indexmap__1_6_1//:indexmap",
|
||||
"@raze__itoa__0_4_6//:itoa",
|
||||
"@raze__itoa__0_4_7//:itoa",
|
||||
"@raze__language_tags__0_2_2//:language_tags",
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__mime__0_3_16//:mime",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__pin_project__1_0_2//:pin_project",
|
||||
"@raze__pin_project__1_0_3//:pin_project",
|
||||
"@raze__rand__0_7_3//:rand",
|
||||
"@raze__regex__1_4_2//:regex",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
|
||||
"@raze__sha_1__0_9_2//:sha_1",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
|
@ -50,7 +50,7 @@ rust_library(
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -56,7 +56,7 @@ rust_library(
|
||||
"@raze__copyless__0_1_5//:copyless",
|
||||
"@raze__futures_channel__0_3_8//:futures_channel",
|
||||
"@raze__futures_util__0_3_8//:futures_util",
|
||||
"@raze__smallvec__1_5_1//:smallvec",
|
||||
"@raze__smallvec__1_6_0//:smallvec",
|
||||
"@raze__tokio__0_2_24//:tokio",
|
||||
],
|
||||
)
|
||||
|
@ -85,10 +85,10 @@ rust_library(
|
||||
"@raze__fxhash__0_2_1//:fxhash",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__mime__0_3_16//:mime",
|
||||
"@raze__pin_project__1_0_2//:pin_project",
|
||||
"@raze__pin_project__1_0_3//:pin_project",
|
||||
"@raze__regex__1_4_2//:regex",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
|
||||
"@raze__socket2__0_3_19//:socket2",
|
||||
"@raze__time__0_2_23//:time",
|
||||
|
@ -51,7 +51,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -51,7 +51,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -48,7 +48,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.14.0",
|
||||
version = "0.14.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__gimli__0_23_0//:gimli",
|
@ -51,7 +51,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -65,7 +65,7 @@ rust_library(
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__rand__0_7_3//:rand",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
|
||||
],
|
||||
)
|
||||
|
@ -61,7 +61,7 @@ rust_library(
|
||||
version = "0.3.55",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__addr2line__0_14_0//:addr2line",
|
||||
"@raze__addr2line__0_14_1//:addr2line",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
"@raze__miniz_oxide__0_4_3//:miniz_oxide",
|
||||
|
@ -54,7 +54,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.6.0",
|
||||
version = "1.0.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -62,7 +62,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "4.5.0",
|
||||
version = "4.5.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__memchr__2_3_4//:memchr",
|
@ -64,9 +64,9 @@ rust_library(
|
||||
"@raze__rust_ini__0_13_0//:rust_ini",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_hjson__0_9_1//:serde_hjson",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__toml__0_5_8//:toml",
|
||||
"@raze__yaml_rust__0_4_4//:yaml_rust",
|
||||
"@raze__yaml_rust__0_4_5//:yaml_rust",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -52,7 +52,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.4",
|
||||
version = "0.4.5",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
@ -74,7 +74,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.4",
|
||||
version = "0.4.5",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":const_fn_build_script",
|
@ -53,7 +53,7 @@ rust_library(
|
||||
data = [],
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__const_fn__0_4_4//:const_fn",
|
||||
"@raze__const_fn__0_4_5//:const_fn",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
|
55
rules/rust/remote/BUILD.crypto-mac-0.10.0.bazel
Normal file
55
rules/rust/remote/BUILD.crypto-mac-0.10.0.bazel
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "crypto_mac",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__generic_array__0_14_4//:generic_array",
|
||||
"@raze__subtle__2_4_0//:subtle",
|
||||
],
|
||||
)
|
@ -75,7 +75,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -48,7 +48,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.6",
|
||||
version = "0.4.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -52,7 +52,7 @@ rust_library(
|
||||
"@raze__heck__0_3_2//:heck",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -48,7 +48,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.12",
|
||||
version = "0.3.13",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__serde__1_0_118//:serde",
|
@ -80,7 +80,7 @@ rust_library(
|
||||
":failure_derive_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
"@raze__synstructure__0_12_4//:synstructure",
|
||||
],
|
||||
)
|
||||
|
@ -1,61 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "fsevent-async-demo" with type "example" omitted
|
||||
|
||||
# Unsupported target "fsevent-demo" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "fsevent",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
"@raze__fsevent_sys__2_0_1//:fsevent_sys",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "fsevent" with type "test" omitted
|
@ -1,54 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "fsevent_sys",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.0.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
],
|
||||
)
|
@ -54,6 +54,6 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -77,7 +77,7 @@ rust_library(
|
||||
"@raze__futures_sink__0_3_8//:futures_sink",
|
||||
"@raze__futures_task__0_3_8//:futures_task",
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
"@raze__pin_project__1_0_2//:pin_project",
|
||||
"@raze__pin_project__1_0_3//:pin_project",
|
||||
"@raze__pin_utils__0_1_0//:pin_utils",
|
||||
"@raze__proc_macro_nested__0_1_6//:proc_macro_nested",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
|
@ -53,7 +53,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.15",
|
||||
version = "0.1.16",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
@ -88,11 +88,11 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.15",
|
||||
version = "0.1.16",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":getrandom_build_script",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
106
rules/rust/remote/BUILD.getrandom-0.2.1.bazel
Normal file
106
rules/rust/remote/BUILD.getrandom-0.2.1.bazel
Normal file
@ -0,0 +1,106 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
# buildifier: disable=load-on-top
|
||||
load(
|
||||
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
||||
"cargo_build_script",
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "getrandom_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
|
||||
# Unsupported target "mod" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "getrandom",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":getrandom_build_script",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
@ -52,8 +52,8 @@ rust_binary(
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":grpc_compiler",
|
||||
"@raze__protobuf__2_18_1//:protobuf",
|
||||
"@raze__protobuf_codegen__2_18_1//:protobuf_codegen",
|
||||
"@raze__protobuf__2_20_0//:protobuf",
|
||||
"@raze__protobuf_codegen__2_20_0//:protobuf_codegen",
|
||||
],
|
||||
)
|
||||
|
||||
@ -76,7 +76,7 @@ rust_library(
|
||||
version = "0.8.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__protobuf__2_18_1//:protobuf",
|
||||
"@raze__protobuf_codegen__2_18_1//:protobuf_codegen",
|
||||
"@raze__protobuf__2_20_0//:protobuf",
|
||||
"@raze__protobuf_codegen__2_20_0//:protobuf_codegen",
|
||||
],
|
||||
)
|
||||
|
57
rules/rust/remote/BUILD.hmac-0.10.1.bazel
Normal file
57
rules/rust/remote/BUILD.hmac-0.10.1.bazel
Normal file
@ -0,0 +1,57 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "hmac",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__crypto_mac__0_10_0//:crypto_mac",
|
||||
"@raze__digest__0_9_0//:digest",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "lib" with type "test" omitted
|
@ -59,7 +59,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__fnv__1_0_7//:fnv",
|
||||
"@raze__itoa__0_4_6//:itoa",
|
||||
"@raze__itoa__0_4_7//:itoa",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -74,6 +74,7 @@ rust_library(
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=has_std",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -1,64 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # ISC from expression "ISC"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "issue-120-workaround" with type "example" omitted
|
||||
|
||||
# Unsupported target "stream" with type "example" omitted
|
||||
|
||||
# Unsupported target "watch" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "inotify",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
"@raze__inotify_sys__0_1_4//:inotify_sys",
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "main" with type "test" omitted
|
@ -1,54 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # ISC from expression "ISC"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "inotify_sys",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
],
|
||||
)
|
@ -50,7 +50,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.6",
|
||||
version = "0.4.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -83,6 +83,8 @@ rust_library(
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=limb_width_32",
|
||||
"--cfg=has_i128",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -75,6 +75,12 @@ rust_library(
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=libc_priv_mod_use",
|
||||
"--cfg=libc_union",
|
||||
"--cfg=libc_const_size_of",
|
||||
"--cfg=libc_core_cvoid",
|
||||
"--cfg=libc_align",
|
||||
"--cfg=libc_packedN",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -73,6 +73,7 @@ rust_library(
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=atomic_cas",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -99,9 +99,9 @@ rust_library(
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__log_mdc__0_1_0//:log_mdc",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__serde_value__0_6_0//:serde_value",
|
||||
"@raze__serde_yaml__0_8_14//:serde_yaml",
|
||||
"@raze__serde_yaml__0_8_15//:serde_yaml",
|
||||
"@raze__thread_id__3_3_0//:thread_id",
|
||||
"@raze__typemap__0_3_3//:typemap",
|
||||
] + selects.with_or({
|
||||
|
@ -60,7 +60,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.6",
|
||||
version = "0.7.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__log__0_4_11//:log",
|
@ -1,94 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"unencumbered", # CC0-1.0 from expression "CC0-1.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "monitor_debounced" with type "example" omitted
|
||||
|
||||
# Unsupported target "monitor_raw" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "notify",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "4.0.15",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
"@raze__filetime__0_2_13//:filetime",
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
"@raze__walkdir__2_3_1//:walkdir",
|
||||
] + selects.with_or({
|
||||
# cfg(target_os = "linux")
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__inotify__0_7_1//:inotify",
|
||||
"@raze__mio__0_6_23//:mio",
|
||||
"@raze__mio_extras__2_0_6//:mio_extras",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
# cfg(target_os = "macos")
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
): [
|
||||
"@raze__fsevent__0_4_0//:fsevent",
|
||||
"@raze__fsevent_sys__2_0_1//:fsevent_sys",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
|
||||
# Unsupported target "debounce" with type "test" omitted
|
||||
|
||||
# Unsupported target "event_path" with type "test" omitted
|
||||
|
||||
# Unsupported target "fsevents" with type "test" omitted
|
||||
|
||||
# Unsupported target "notify" with type "test" omitted
|
||||
|
||||
# Unsupported target "watcher" with type "test" omitted
|
||||
|
||||
# Unsupported target "windows" with type "test" omitted
|
@ -42,12 +42,11 @@ cargo_build_script(
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"i128",
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
@ -55,7 +54,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.6",
|
||||
version = "0.3.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@raze__autocfg__1_0_1//:autocfg",
|
||||
@ -77,13 +76,12 @@ rust_library(
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"i128",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
@ -91,7 +89,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.6",
|
||||
version = "0.3.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":num_bigint_build_script",
|
||||
@ -112,12 +110,4 @@ rust_library(
|
||||
|
||||
# Unsupported target "modpow" with type "test" omitted
|
||||
|
||||
# Unsupported target "quickcheck" with type "test" omitted
|
||||
|
||||
# Unsupported target "rand" with type "test" omitted
|
||||
|
||||
# Unsupported target "roots" with type "test" omitted
|
||||
|
||||
# Unsupported target "serde" with type "test" omitted
|
||||
|
||||
# Unsupported target "torture" with type "test" omitted
|
@ -53,7 +53,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@raze__instant__0_1_9//:instant",
|
||||
"@raze__smallvec__1_5_1//:smallvec",
|
||||
"@raze__smallvec__1_6_0//:smallvec",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
|
@ -64,7 +64,7 @@ rust_library(
|
||||
data = [],
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__pin_project_internal__1_0_2//:pin_project_internal",
|
||||
"@raze__pin_project_internal__1_0_3//:pin_project_internal",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
@ -73,7 +73,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.2",
|
||||
version = "1.0.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -80,6 +80,6 @@ rust_library(
|
||||
":pin_project_internal_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -46,11 +46,11 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.2",
|
||||
version = "1.0.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
@ -46,7 +46,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.0",
|
||||
version = "0.2.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -51,6 +51,6 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -31,7 +31,7 @@ licenses([
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "mio_extras",
|
||||
name = "postgres_protocol",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
@ -46,14 +46,18 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.0.6",
|
||||
version = "0.6.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__lazycell__1_3_0//:lazycell",
|
||||
"@raze__log__0_4_11//:log",
|
||||
"@raze__mio__0_6_23//:mio",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
"@raze__base64__0_13_0//:base64",
|
||||
"@raze__byteorder__1_3_4//:byteorder",
|
||||
"@raze__bytes__1_0_0//:bytes",
|
||||
"@raze__fallible_iterator__0_2_0//:fallible_iterator",
|
||||
"@raze__hmac__0_10_1//:hmac",
|
||||
"@raze__md5__0_7_0//:md5",
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
"@raze__rand__0_8_1//:rand",
|
||||
"@raze__sha2__0_9_2//:sha2",
|
||||
"@raze__stringprep__0_1_2//:stringprep",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "test" with type "test" omitted
|
@ -35,7 +35,7 @@ rust_library(
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
"@raze__serde__1_0_118//:serde": "serde_1",
|
||||
"@raze__serde_json__1_0_60//:serde_json": "serde_json_1",
|
||||
"@raze__serde_json__1_0_61//:serde_json": "serde_json_1",
|
||||
},
|
||||
crate_features = [
|
||||
"derive",
|
||||
@ -65,6 +65,6 @@ rust_library(
|
||||
"@raze__fallible_iterator__0_2_0//:fallible_iterator",
|
||||
"@raze__postgres_protocol__0_5_3//:postgres_protocol",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
],
|
||||
)
|
||||
|
56
rules/rust/remote/BUILD.postgres-types-0.2.0.bazel
Normal file
56
rules/rust/remote/BUILD.postgres-types-0.2.0.bazel
Normal file
@ -0,0 +1,56 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "postgres_types",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__1_0_0//:bytes",
|
||||
"@raze__fallible_iterator__0_2_0//:fallible_iterator",
|
||||
"@raze__postgres_protocol__0_6_0//:postgres_protocol",
|
||||
],
|
||||
)
|
@ -73,6 +73,8 @@ rust_library(
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=use_proc_macro",
|
||||
"--cfg=wrap_proc_macro",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -54,7 +54,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.18.1",
|
||||
version = "2.20.0",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
@ -82,10 +82,10 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.18.1",
|
||||
version = "2.20.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":protobuf_build_script",
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__bytes__1_0_0//:bytes",
|
||||
],
|
||||
)
|
@ -47,12 +47,12 @@ rust_binary(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.18.1",
|
||||
version = "2.20.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":protobuf_codegen",
|
||||
"@raze__protobuf__2_18_1//:protobuf",
|
||||
"@raze__protobuf__2_20_0//:protobuf",
|
||||
],
|
||||
)
|
||||
|
||||
@ -73,12 +73,12 @@ rust_binary(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.18.1",
|
||||
version = "2.20.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
# Binaries get an implicit dependency on their crate's lib
|
||||
":protobuf_codegen",
|
||||
"@raze__protobuf__2_18_1//:protobuf",
|
||||
"@raze__protobuf__2_20_0//:protobuf",
|
||||
],
|
||||
)
|
||||
|
||||
@ -98,9 +98,9 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.18.1",
|
||||
version = "2.20.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__protobuf__2_18_1//:protobuf",
|
||||
"@raze__protobuf__2_20_0//:protobuf",
|
||||
],
|
||||
)
|
@ -46,7 +46,7 @@ rust_library(
|
||||
name = "rand",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
"@raze__getrandom__0_1_15//:getrandom": "getrandom_package",
|
||||
"@raze__getrandom__0_1_16//:getrandom": "getrandom_package",
|
||||
},
|
||||
crate_features = [
|
||||
"alloc",
|
||||
@ -70,7 +70,7 @@ rust_library(
|
||||
version = "0.7.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__getrandom__0_1_15//:getrandom",
|
||||
"@raze__getrandom__0_1_16//:getrandom",
|
||||
"@raze__rand_chacha__0_2_2//:rand_chacha",
|
||||
"@raze__rand_core__0_5_1//:rand_core",
|
||||
] + selects.with_or({
|
||||
|
74
rules/rust/remote/BUILD.rand-0.8.1.bazel
Normal file
74
rules/rust/remote/BUILD.rand-0.8.1.bazel
Normal file
@ -0,0 +1,74 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "rand",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"getrandom",
|
||||
"libc",
|
||||
"rand_chacha",
|
||||
"rand_hc",
|
||||
"std",
|
||||
"std_rng",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__rand_chacha__0_3_0//:rand_chacha",
|
||||
"@raze__rand_core__0_6_1//:rand_core",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
56
rules/rust/remote/BUILD.rand_chacha-0.3.0.bazel
Normal file
56
rules/rust/remote/BUILD.rand_chacha-0.3.0.bazel
Normal file
@ -0,0 +1,56 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "rand_chacha",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__ppv_lite86__0_2_10//:ppv_lite86",
|
||||
"@raze__rand_core__0_6_1//:rand_core",
|
||||
],
|
||||
)
|
@ -52,6 +52,6 @@ rust_library(
|
||||
version = "0.5.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__getrandom__0_1_15//:getrandom",
|
||||
"@raze__getrandom__0_1_16//:getrandom",
|
||||
],
|
||||
)
|
||||
|
@ -25,17 +25,17 @@ package(default_visibility = [
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
"notice", # MIT from expression "MIT OR Apache-2.0"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "data_encoding",
|
||||
name = "rand_core",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"alloc",
|
||||
"default",
|
||||
"getrandom",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
@ -49,8 +49,9 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.3.1",
|
||||
version = "0.6.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__getrandom__0_2_1//:getrandom",
|
||||
],
|
||||
)
|
@ -31,14 +31,14 @@ licenses([
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "lazycell",
|
||||
name = "rand_hc",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
@ -46,8 +46,9 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.3.0",
|
||||
version = "0.3.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__rand_core__0_6_1//:rand_core",
|
||||
],
|
||||
)
|
@ -52,7 +52,7 @@ rust_library(
|
||||
version = "0.3.5",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__getrandom__0_1_15//:getrandom",
|
||||
"@raze__getrandom__0_1_16//:getrandom",
|
||||
"@raze__redox_syscall__0_1_57//:redox_syscall",
|
||||
"@raze__rust_argon2__0_8_3//:rust_argon2",
|
||||
],
|
||||
|
@ -88,7 +88,7 @@ rust_library(
|
||||
deps = [
|
||||
":reopen_build_script",
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
"@raze__signal_hook__0_2_2//:signal_hook",
|
||||
"@raze__signal_hook__0_2_3//:signal_hook",
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -1,57 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "is_same_file" with type "example" omitted
|
||||
|
||||
# Unsupported target "is_stderr" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "same_file",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
||||
)
|
@ -43,6 +43,7 @@ rust_library(
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=integer128",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -80,6 +80,7 @@ rust_library(
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=integer128",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
@ -82,6 +82,6 @@ rust_library(
|
||||
":serde_derive_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -54,7 +54,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.60",
|
||||
version = "1.0.61",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
@ -78,11 +78,11 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.60",
|
||||
version = "1.0.61",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":serde_json_build_script",
|
||||
"@raze__itoa__0_4_6//:itoa",
|
||||
"@raze__itoa__0_4_7//:itoa",
|
||||
"@raze__ryu__1_0_5//:ryu",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
],
|
@ -51,13 +51,12 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.2",
|
||||
version = "0.8.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__data_encoding__2_3_1//:data_encoding",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__thiserror__1_0_22//:thiserror",
|
||||
"@raze__thiserror__1_0_23//:thiserror",
|
||||
],
|
||||
)
|
||||
|
@ -50,7 +50,7 @@ rust_library(
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__form_urlencoded__1_0_0//:form_urlencoded",
|
||||
"@raze__itoa__0_4_6//:itoa",
|
||||
"@raze__itoa__0_4_7//:itoa",
|
||||
"@raze__ryu__1_0_5//:ryu",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
],
|
||||
|
@ -46,13 +46,13 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.14",
|
||||
version = "0.8.15",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__dtoa__0_4_6//:dtoa",
|
||||
"@raze__dtoa__0_4_7//:dtoa",
|
||||
"@raze__linked_hash_map__0_5_3//:linked_hash_map",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__yaml_rust__0_4_4//:yaml_rust",
|
||||
"@raze__yaml_rust__0_4_5//:yaml_rust",
|
||||
],
|
||||
)
|
||||
|
@ -1,67 +0,0 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "signal_hook",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.16",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
"@raze__signal_hook_registry__1_2_2//:signal_hook_registry",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "cleanup" with type "test" omitted
|
||||
|
||||
# Unsupported target "cleanup_indirect" with type "test" omitted
|
||||
|
||||
# Unsupported target "default" with type "test" omitted
|
||||
|
||||
# Unsupported target "iterator" with type "test" omitted
|
||||
|
||||
# Unsupported target "tokio" with type "test" omitted
|
||||
|
||||
# Unsupported target "version" with type "test" omitted
|
@ -46,11 +46,11 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.2",
|
||||
version = "0.2.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
"@raze__signal_hook_registry__1_2_2//:signal_hook_registry",
|
||||
"@raze__signal_hook_registry__1_3_0//:signal_hook_registry",
|
||||
],
|
||||
)
|
||||
|
96
rules/rust/remote/BUILD.signal-hook-0.3.2.bazel
Normal file
96
rules/rust/remote/BUILD.signal-hook-0.3.2.bazel
Normal file
@ -0,0 +1,96 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
# buildifier: disable=load-on-top
|
||||
load(
|
||||
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
|
||||
"cargo_build_script",
|
||||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "signal_hook_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"channel",
|
||||
"default",
|
||||
"iterator",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.2",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "signal_hook",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"channel",
|
||||
"default",
|
||||
"iterator",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":signal_hook_build_script",
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
"@raze__signal_hook_registry__1_3_0//:signal_hook_registry",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "default" with type "test" omitted
|
||||
|
||||
# Unsupported target "iterator" with type "test" omitted
|
||||
|
||||
# Unsupported target "shutdown" with type "test" omitted
|
@ -46,7 +46,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.2.2",
|
||||
version = "1.3.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_81//:libc",
|
||||
@ -54,5 +54,3 @@ rust_library(
|
||||
)
|
||||
|
||||
# Unsupported target "unregister_signal" with type "test" omitted
|
||||
|
||||
# Unsupported target "version" with type "test" omitted
|
@ -92,6 +92,6 @@ rust_library(
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":slog_build_script",
|
||||
"@raze__erased_serde__0_3_12//:erased_serde",
|
||||
"@raze__erased_serde__0_3_13//:erased_serde",
|
||||
],
|
||||
)
|
||||
|
@ -54,7 +54,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__chrono__0_4_19//:chrono",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__slog__2_7_0//:slog",
|
||||
],
|
||||
)
|
||||
|
@ -51,6 +51,6 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -48,7 +48,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.5.1",
|
||||
version = "1.6.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -30,16 +30,10 @@ licenses([
|
||||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "linear" with type "bench" omitted
|
||||
|
||||
# Unsupported target "hyphenation" with type "example" omitted
|
||||
|
||||
# Unsupported target "layout" with type "example" omitted
|
||||
|
||||
# Unsupported target "termwidth" with type "example" omitted
|
||||
# Unsupported target "comparison" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "textwrap",
|
||||
name = "smawk",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
@ -54,11 +48,16 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.12.1",
|
||||
version = "0.3.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__unicode_width__0_1_8//:unicode_width",
|
||||
],
|
||||
)
|
||||
|
||||
# Unsupported target "agreement" with type "test" omitted
|
||||
|
||||
# Unsupported target "complexity" with type "test" omitted
|
||||
|
||||
# Unsupported target "monge" with type "test" omitted
|
||||
|
||||
# Unsupported target "version-numbers" with type "test" omitted
|
@ -53,7 +53,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.13",
|
||||
version = "0.2.14",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@raze__version_check__0_9_2//:version_check",
|
||||
@ -77,7 +77,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.13",
|
||||
version = "0.2.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":standback_build_script",
|
@ -55,6 +55,6 @@ rust_library(
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -56,8 +56,8 @@ rust_library(
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__serde__1_0_118//:serde",
|
||||
"@raze__serde_json__1_0_60//:serde_json",
|
||||
"@raze__serde_json__1_0_61//:serde_json",
|
||||
"@raze__sha1__0_6_0//:sha1",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
||||
|
@ -46,7 +46,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.19.5",
|
||||
version = "0.20.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -46,12 +46,12 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.19.4",
|
||||
version = "0.20.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__heck__0_3_2//:heck",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
@ -63,7 +63,7 @@ cargo_build_script(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.55",
|
||||
version = "1.0.58",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
@ -100,7 +100,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.55",
|
||||
version = "1.0.58",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":syn_build_script",
|
@ -53,7 +53,7 @@ rust_library(
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
"@raze__unicode_xid__0_2_1//:unicode_xid",
|
||||
],
|
||||
)
|
||||
|
72
rules/rust/remote/BUILD.textwrap-0.13.2.bazel
Normal file
72
rules/rust/remote/BUILD.textwrap-0.13.2.bazel
Normal file
@ -0,0 +1,72 @@
|
||||
"""
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
DO NOT EDIT! Replaced on runs of cargo-raze
|
||||
"""
|
||||
|
||||
# buildifier: disable=load
|
||||
load(
|
||||
"@io_bazel_rules_rust//rust:rust.bzl",
|
||||
"rust_binary",
|
||||
"rust_library",
|
||||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
# Prefer access through "//rules/rust", which limits external
|
||||
# visibility to explicit Cargo.toml dependencies.
|
||||
"//visibility:public",
|
||||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "linear" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
name = "textwrap",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"smawk",
|
||||
"unicode-width",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.13.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__smawk__0_3_0//:smawk",
|
||||
"@raze__unicode_width__0_1_8//:unicode_width",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
|
||||
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
|
||||
# Unsupported target "version-numbers" with type "test" omitted
|
@ -40,7 +40,7 @@ rust_library(
|
||||
data = [],
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__thiserror_impl__1_0_22//:thiserror_impl",
|
||||
"@raze__thiserror_impl__1_0_23//:thiserror_impl",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
@ -49,7 +49,7 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.22",
|
||||
version = "1.0.23",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
@ -46,11 +46,11 @@ rust_library(
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.22",
|
||||
version = "1.0.23",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_8//:quote",
|
||||
"@raze__syn__1_0_55//:syn",
|
||||
"@raze__syn__1_0_58//:syn",
|
||||
],
|
||||
)
|
@ -41,6 +41,7 @@ rust_library(
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
"--cfg=std",
|
||||
],
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user