update Rust deps

This commit is contained in:
Damien Elmes 2021-10-02 20:42:03 +10:00
parent faec7f8e3d
commit 944b064e54
208 changed files with 2074 additions and 2528 deletions

View file

@ -2,8 +2,8 @@ common --enable_platform_specific_config
common --experimental_repository_cache_hardlinks
# specify python path for pyo3 compile
build:windows --action_env="PYTHON_SYS_EXECUTABLE=c:/python/python.exe"
#build:linux --action_env="PYTHON_SYS_EXECUTABLE=/usr/local/bin/python3.8"
build:windows --action_env="PYO3_PYTHON=c:/python/python.exe"
#build:linux --action_env="PYO3_PYTHON=/usr/local/bin/python3.8"
# only affects the ankihelper library
#build:macos --macos_cpus=x86_64,arm64

628
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -46,6 +46,8 @@ compile_data_attr = "glob([\"**/*.rsv\"])"
[package.metadata.raze.crates.unic-ucd-category.'*']
compile_data_attr = "glob([\"**/*.rsv\"])"
[package.metadata.raze.crates.pyo3-build-config.'*']
buildrs_additional_environment_variables = { "PYO3_NO_PYTHON" = "1" }
[patch.crates-io]
reqwest = { git="https://github.com/ankitects/reqwest.git", rev="7591444614de02b658ddab125efba7b2bb4e2335" }

View file

@ -46,7 +46,7 @@ rust_library(
name = "reqwest",
srcs = glob(["**/*.rs"]),
aliases = {
"@raze__native_tls__0_2_7//:native_tls": "native_tls_crate",
"@raze__native_tls__0_2_8//:native_tls": "native_tls_crate",
},
crate_features = [
"__tls",
@ -77,12 +77,12 @@ rust_library(
version = "0.11.3",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_4//:http",
"@raze__bytes__1_1_0//:bytes",
"@raze__http__0_2_5//:http",
"@raze__hyper_timeout__0_4_1//:hyper_timeout",
"@raze__mime_guess__2_0_3//:mime_guess",
"@raze__serde__1_0_126//:serde",
"@raze__serde_json__1_0_64//:serde_json",
"@raze__serde__1_0_130//:serde",
"@raze__serde_json__1_0_68//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
"@raze__url__2_2_2//:url",
] + selects.with_or({
@ -97,19 +97,19 @@ rust_library(
): [
"@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__http_body__0_4_2//:http_body",
"@raze__hyper__0_14_9//:hyper",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_util__0_3_17//:futures_util",
"@raze__http_body__0_4_3//:http_body",
"@raze__hyper__0_14_13//:hyper",
"@raze__hyper_tls__0_5_0//:hyper_tls",
"@raze__ipnet__2_3_1//:ipnet",
"@raze__lazy_static__1_4_0//:lazy_static",
"@raze__log__0_4_14//:log",
"@raze__mime__0_3_16//:mime",
"@raze__native_tls__0_2_7//:native_tls",
"@raze__native_tls__0_2_8//:native_tls",
"@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__tokio__1_7_1//:tokio",
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
"@raze__tokio__1_12_0//:tokio",
"@raze__tokio_native_tls__0_3_0//:tokio_native_tls",
"@raze__tokio_socks__0_5_1//:tokio_socks",
],

View file

@ -80,12 +80,12 @@ rust_library(
version = "0.11.3",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_4//:http",
"@raze__bytes__1_1_0//:bytes",
"@raze__http__0_2_5//:http",
"@raze__hyper_timeout__0_4_1//:hyper_timeout",
"@raze__mime_guess__2_0_3//:mime_guess",
"@raze__serde__1_0_126//:serde",
"@raze__serde_json__1_0_64//:serde_json",
"@raze__serde__1_0_130//:serde",
"@raze__serde_json__1_0_68//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
"@raze__url__2_2_2//:url",
] + selects.with_or({
@ -100,20 +100,20 @@ rust_library(
): [
"@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__http_body__0_4_2//:http_body",
"@raze__hyper__0_14_9//:hyper",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_util__0_3_17//:futures_util",
"@raze__http_body__0_4_3//:http_body",
"@raze__hyper__0_14_13//:hyper",
"@raze__hyper_rustls__0_22_1//:hyper_rustls",
"@raze__ipnet__2_3_1//:ipnet",
"@raze__lazy_static__1_4_0//:lazy_static",
"@raze__log__0_4_14//:log",
"@raze__mime__0_3_16//:mime",
"@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
"@raze__rustls__0_19_1//:rustls",
"@raze__rustls_native_certs__0_5_0//:rustls_native_certs",
"@raze__tokio__1_7_1//:tokio",
"@raze__tokio__1_12_0//:tokio",
"@raze__tokio_rustls__0_22_0//:tokio_rustls",
"@raze__tokio_socks__0_5_1//:tokio_socks",
"@raze__webpki_roots__0_21_1//:webpki_roots",

View file

@ -49,10 +49,13 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.6.1",
version = "0.7.0",
proc_macro_deps = [
"@raze__rustversion__1_0_5//:rustversion",
],
# buildifier: leave-alone
deps = [
"@raze__dirs__2_0_2//:dirs",
"@raze__dirs_next__2_0_0//:dirs_next",
] + selects.with_or({
# cfg(windows)
(

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -51,6 +51,6 @@ rust_library(
version = "0.7.18",
# buildifier: leave-alone
deps = [
"@raze__memchr__2_4_0//:memchr",
"@raze__memchr__2_4_1//:memchr",
],
)

View file

@ -48,14 +48,14 @@ rust_library(
"cargo-raze",
"manual",
],
version = "3.1.1",
version = "3.1.2",
# buildifier: leave-alone
deps = [
"@raze__html5ever__0_25_1//:html5ever",
"@raze__lazy_static__1_4_0//:lazy_static",
"@raze__maplit__1_0_2//:maplit",
"@raze__markup5ever_rcdom__0_1_0//:markup5ever_rcdom",
"@raze__matches__0_1_8//:matches",
"@raze__matches__0_1_9//:matches",
"@raze__tendril__0_4_2//:tendril",
"@raze__url__2_2_2//:url",
],

View file

@ -55,7 +55,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "1.0.41",
version = "1.0.44",
visibility = ["//visibility:private"],
deps = [
],
@ -79,7 +79,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.0.41",
version = "1.0.44",
# buildifier: leave-alone
deps = [
":anyhow_build_script",

View file

@ -52,7 +52,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.3.0",
version = "1.4.0",
# buildifier: leave-alone
deps = [
],

61
cargo/remote/BUILD.arrayvec-0.7.1.bazel vendored Normal file
View file

@ -0,0 +1,61 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# Unsupported target "arraystring" with type "bench" omitted
# Unsupported target "extend" with type "bench" omitted
rust_library(
name = "arrayvec",
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.7.1",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "serde" with type "test" omitted
# Unsupported target "tests" with type "test" omitted

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__askama_shared__0_11_1//:askama_shared",
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__syn__1_0_73//:syn",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -60,10 +60,10 @@ rust_library(
"@raze__nom__6_1_2//:nom",
"@raze__num_traits__0_2_14//:num_traits",
"@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__serde__1_0_126//:serde",
"@raze__syn__1_0_73//:syn",
"@raze__serde__1_0_130//:serde",
"@raze__syn__1_0_77//:syn",
"@raze__toml__0_5_8//:toml",
],
)

View file

@ -53,7 +53,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.1.50",
version = "0.1.51",
visibility = ["//visibility:private"],
deps = [
],
@ -75,13 +75,13 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.1.50",
version = "0.1.51",
# buildifier: leave-alone
deps = [
":async_trait_build_script",
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -62,7 +62,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
"//conditions:default": [],
}) + selects.with_or({

58
cargo/remote/BUILD.bitflags-1.3.2.bazel vendored Normal file
View file

@ -0,0 +1,58 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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 = "bitflags",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.3.2",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "basic" with type "test" omitted
# Unsupported target "compile" with type "test" omitted

View file

@ -43,6 +43,7 @@ cargo_build_script(
},
crate_features = [
"default",
"digest",
"std",
],
crate_root = "build.rs",
@ -55,10 +56,10 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.3.8",
version = "1.0.0",
visibility = ["//visibility:private"],
deps = [
"@raze__cc__1_0_68//:cc",
"@raze__cc__1_0_70//:cc",
],
)
@ -69,6 +70,7 @@ rust_library(
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"digest",
"std",
],
crate_root = "src/lib.rs",
@ -82,15 +84,14 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.8",
version = "1.0.0",
# buildifier: leave-alone
deps = [
":blake3_build_script",
"@raze__arrayref__0_3_6//:arrayref",
"@raze__arrayvec__0_5_2//:arrayvec",
"@raze__cfg_if__0_1_10//:cfg_if",
"@raze__arrayvec__0_7_1//:arrayvec",
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
"@raze__crypto_mac__0_8_0//:crypto_mac",
"@raze__digest__0_9_0//:digest",
],
)

View file

@ -1,80 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# Unsupported target "benches" with type "bench" omitted
rust_library(
name = "bumpalo",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "3.7.0",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "alloc_fill" with type "test" omitted
# Unsupported target "alloc_try_with" with type "test" omitted
# Unsupported target "alloc_with" with type "test" omitted
# Unsupported target "allocator_api" with type "test" omitted
# Unsupported target "quickchecks" with type "test" omitted
# Unsupported target "readme_up_to_date" with type "test" omitted
# Unsupported target "string" with type "test" omitted
# Unsupported target "tests" with type "test" omitted
# Unsupported target "try_alloc" with type "test" omitted
# Unsupported target "try_alloc_try_with" with type "test" omitted
# Unsupported target "try_alloc_with" with type "test" omitted
# Unsupported target "vec" with type "test" omitted

58
cargo/remote/BUILD.bumpalo-3.7.1.bazel vendored Normal file
View file

@ -0,0 +1,58 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# Unsupported target "benches" with type "bench" omitted
rust_library(
name = "bumpalo",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "3.7.1",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "try_alloc" with type "test" omitted

View file

@ -54,7 +54,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.0.1",
version = "1.1.0",
# buildifier: leave-alone
deps = [
],

View file

@ -47,7 +47,7 @@ rust_binary(
"cargo-raze",
"manual",
],
version = "1.0.68",
version = "1.0.70",
# buildifier: leave-alone
deps = [
":cc",
@ -70,7 +70,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.0.68",
version = "1.0.70",
# buildifier: leave-alone
deps = [
],

View file

@ -62,7 +62,7 @@ rust_library(
version = "0.4.19",
# buildifier: leave-alone
deps = [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
"@raze__num_integer__0_1_44//:num_integer",
"@raze__num_traits__0_2_14//:num_traits",
"@raze__time__0_1_44//:time",

View file

@ -62,7 +62,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
"//conditions:default": [],
}),

View file

@ -52,6 +52,6 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__codespan_reporting__0_11_1//:codespan_reporting",
"@raze__serde__1_0_126//:serde",
"@raze__serde__1_0_130//:serde",
],
)

View file

@ -61,9 +61,9 @@ rust_library(
version = "0.11.1",
# buildifier: leave-alone
deps = [
"@raze__serde__1_0_126//:serde",
"@raze__serde__1_0_130//:serde",
"@raze__termcolor__1_1_2//:termcolor",
"@raze__unicode_width__0_1_8//:unicode_width",
"@raze__unicode_width__0_1_9//:unicode_width",
],
)

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__core_foundation_sys__0_8_2//:core_foundation_sys",
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
)

View file

@ -1,55 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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.8.0",
# buildifier: leave-alone
deps = [
"@raze__generic_array__0_14_4//:generic_array",
"@raze__subtle__2_4_0//:subtle",
],
)

View file

@ -56,9 +56,9 @@ cargo_build_script(
version = "0.27.2",
visibility = ["//visibility:private"],
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)
@ -86,9 +86,9 @@ rust_library(
deps = [
":cssparser_build_script",
"@raze__dtoa_short__0_3_3//:dtoa_short",
"@raze__itoa__0_4_7//:itoa",
"@raze__matches__0_1_8//:matches",
"@raze__itoa__0_4_8//:itoa",
"@raze__matches__0_1_9//:matches",
"@raze__phf__0_8_0//:phf",
"@raze__smallvec__1_6_1//:smallvec",
"@raze__smallvec__1_7_0//:smallvec",
],
)

View file

@ -50,6 +50,6 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -1,57 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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
# Unsupported target "example" with type "example" omitted
rust_library(
name = "ctor",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.20",
# buildifier: leave-alone
deps = [
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
],
)

View file

@ -50,9 +50,9 @@ rust_library(
version = "2.2.0",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -78,9 +78,9 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__convert_case__0_4_0//:convert_case",
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -1,55 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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 = "dirs",
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.2",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__0_1_10//:cfg_if",
"@raze__dirs_sys__0_3_6//:dirs_sys",
],
)

View file

@ -31,7 +31,7 @@ licenses([
# Generated Targets
rust_library(
name = "cfg_if",
name = "dirs_next",
srcs = glob(["**/*.rs"]),
crate_features = [
],
@ -46,10 +46,10 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.1.10",
version = "2.0.0",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__dirs_sys_next__0_1_2//:dirs_sys_next",
],
)
# Unsupported target "xcrate" with type "test" omitted

View file

@ -31,7 +31,7 @@ licenses([
# Generated Targets
rust_library(
name = "dirs_sys",
name = "dirs_sys_next",
srcs = glob(["**/*.rs"]),
aliases = {
},
@ -40,7 +40,7 @@ rust_library(
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2015",
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
@ -48,7 +48,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.6",
version = "0.1.2",
# buildifier: leave-alone
deps = [
] + selects.with_or({
@ -60,7 +60,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
"//conditions:default": [],
}) + selects.with_or({

View file

@ -51,7 +51,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.8.4",
version = "0.9.0",
# buildifier: leave-alone
deps = [
"@raze__atty__0_2_14//:atty",

View file

@ -93,12 +93,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.0.20",
version = "1.0.22",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__crc32fast__1_2_1//:crc32fast",
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
"@raze__miniz_oxide__0_4_4//:miniz_oxide",
],
)

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.15.0",
version = "0.16.0",
# buildifier: leave-alone
deps = [
"@raze__fluent_bundle__0_15_1//:fluent_bundle",

View file

@ -58,9 +58,9 @@ rust_library(
"@raze__fluent_syntax__0_11_0//:fluent_syntax",
"@raze__intl_memoizer__0_5_1//:intl_memoizer",
"@raze__intl_pluralrules__7_0_1//:intl_pluralrules",
"@raze__ouroboros__0_9_3//:ouroboros",
"@raze__ouroboros__0_9_5//:ouroboros",
"@raze__rustc_hash__1_1_0//:rustc_hash",
"@raze__smallvec__1_6_1//:smallvec",
"@raze__smallvec__1_7_0//:smallvec",
"@raze__unic_langid__0_9_0//:unic_langid",
],
)

View file

@ -56,7 +56,7 @@ rust_binary(
# buildifier: leave-alone
deps = [
":fluent_syntax",
"@raze__thiserror__1_0_25//:thiserror",
"@raze__thiserror__1_0_29//:thiserror",
],
)
@ -82,7 +82,7 @@ rust_binary(
# buildifier: leave-alone
deps = [
":fluent_syntax",
"@raze__thiserror__1_0_25//:thiserror",
"@raze__thiserror__1_0_29//:thiserror",
],
)
@ -106,7 +106,7 @@ rust_library(
version = "0.11.0",
# buildifier: leave-alone
deps = [
"@raze__thiserror__1_0_25//:thiserror",
"@raze__thiserror__1_0_29//:thiserror",
],
)

View file

@ -49,7 +49,7 @@ rust_library(
version = "1.0.1",
# buildifier: leave-alone
deps = [
"@raze__matches__0_1_8//:matches",
"@raze__matches__0_1_9//:matches",
"@raze__percent_encoding__2_1_0//:percent_encoding",
],
)

View file

@ -52,16 +52,16 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
"@raze__futures_channel__0_3_15//:futures_channel",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_executor__0_3_15//:futures_executor",
"@raze__futures_io__0_3_15//:futures_io",
"@raze__futures_sink__0_3_15//:futures_sink",
"@raze__futures_task__0_3_15//:futures_task",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__futures_channel__0_3_17//:futures_channel",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_executor__0_3_17//:futures_executor",
"@raze__futures_io__0_3_17//:futures_io",
"@raze__futures_sink__0_3_17//:futures_sink",
"@raze__futures_task__0_3_17//:futures_task",
"@raze__futures_util__0_3_17//:futures_util",
],
)

View file

@ -58,7 +58,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
visibility = ["//visibility:private"],
deps = [
],
@ -87,12 +87,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
":futures_channel_build_script",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_sink__0_3_15//:futures_sink",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_sink__0_3_17//:futures_sink",
],
)

View file

@ -56,7 +56,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
visibility = ["//visibility:private"],
deps = [
],
@ -81,7 +81,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
":futures_core_build_script",

View file

@ -49,12 +49,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_task__0_3_15//:futures_task",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_task__0_3_17//:futures_task",
"@raze__futures_util__0_3_17//:futures_util",
],
)

View file

@ -47,7 +47,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
],

View file

@ -53,7 +53,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
visibility = ["//visibility:private"],
deps = [
"@raze__autocfg__1_0_1//:autocfg",
@ -79,12 +79,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
":futures_macro_build_script",
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -49,7 +49,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
],

View file

@ -55,7 +55,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
visibility = ["//visibility:private"],
deps = [
],
@ -79,7 +79,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
":futures_task_build_script",

View file

@ -69,7 +69,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
visibility = ["//visibility:private"],
deps = [
"@raze__autocfg__1_0_1//:autocfg",
@ -104,7 +104,7 @@ rust_library(
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__futures_macro__0_3_15//:futures_macro",
"@raze__futures_macro__0_3_17//:futures_macro",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [
@ -114,19 +114,19 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.15",
version = "0.3.17",
# buildifier: leave-alone
deps = [
":futures_util_build_script",
"@raze__futures_channel__0_3_15//:futures_channel",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_io__0_3_15//:futures_io",
"@raze__futures_sink__0_3_15//:futures_sink",
"@raze__futures_task__0_3_15//:futures_task",
"@raze__memchr__2_4_0//:memchr",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__futures_channel__0_3_17//:futures_channel",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_io__0_3_17//:futures_io",
"@raze__futures_sink__0_3_17//:futures_sink",
"@raze__futures_task__0_3_17//:futures_task",
"@raze__memchr__2_4_1//:memchr",
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
"@raze__pin_utils__0_1_0//:pin_utils",
"@raze__proc_macro_nested__0_1_6//:proc_macro_nested",
"@raze__slab__0_4_3//:slab",
"@raze__proc_macro_nested__0_1_7//:proc_macro_nested",
"@raze__slab__0_4_4//:slab",
],
)

View file

@ -80,7 +80,7 @@ rust_library(
# buildifier: leave-alone
deps = [
":generic_array_build_script",
"@raze__typenum__1_13_0//:typenum",
"@raze__typenum__1_14_0//:typenum",
],
)

View file

@ -49,7 +49,7 @@ rust_library(
version = "0.2.21",
# buildifier: leave-alone
deps = [
"@raze__unicode_width__0_1_8//:unicode_width",
"@raze__unicode_width__0_1_9//:unicode_width",
],
)

View file

@ -106,7 +106,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
"//conditions:default": [],
}),

View file

@ -64,7 +64,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
"//conditions:default": [],
}),

View file

@ -1,56 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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 = "ghost",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.2",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
],
)

View file

@ -52,19 +52,19 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.3",
version = "0.3.6",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__bytes__1_1_0//:bytes",
"@raze__fnv__1_0_7//:fnv",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_sink__0_3_15//:futures_sink",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__http__0_2_4//:http",
"@raze__indexmap__1_6_2//:indexmap",
"@raze__slab__0_4_3//:slab",
"@raze__tokio__1_7_1//:tokio",
"@raze__tokio_util__0_6_7//:tokio_util",
"@raze__tracing__0_1_26//:tracing",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_sink__0_3_17//:futures_sink",
"@raze__futures_util__0_3_17//:futures_util",
"@raze__http__0_2_5//:http",
"@raze__indexmap__1_7_0//:indexmap",
"@raze__slab__0_4_4//:slab",
"@raze__tokio__1_12_0//:tokio",
"@raze__tokio_util__0_6_8//:tokio_util",
"@raze__tracing__0_1_28//:tracing",
],
)

View file

@ -39,6 +39,7 @@ rust_library(
"ahash",
"default",
"inline-more",
"raw",
],
crate_root = "src/lib.rs",
crate_type = "lib",

View file

@ -1,64 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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
# Unsupported target "bench" with type "bench" omitted
rust_library(
name = "hashbrown",
srcs = glob(["**/*.rs"]),
crate_features = [
"raw",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.9.1",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "hasher" with type "test" omitted
# Unsupported target "rayon" with type "test" omitted
# Unsupported target "serde" with type "test" omitted
# Unsupported target "set" with type "test" omitted

View file

@ -49,6 +49,6 @@ rust_library(
version = "0.3.3",
# buildifier: leave-alone
deps = [
"@raze__unicode_segmentation__1_7_1//:unicode_segmentation",
"@raze__unicode_segmentation__1_8_0//:unicode_segmentation",
],
)

View file

@ -50,6 +50,6 @@ rust_library(
version = "0.1.19",
# buildifier: leave-alone
deps = [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
)

View file

@ -56,9 +56,9 @@ cargo_build_script(
version = "0.25.1",
visibility = ["//visibility:private"],
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -56,12 +56,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.2.4",
version = "0.2.5",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__bytes__1_1_0//:bytes",
"@raze__fnv__1_0_7//:fnv",
"@raze__itoa__0_4_7//:itoa",
"@raze__itoa__0_4_8//:itoa",
],
)

View file

@ -46,12 +46,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.4.2",
version = "0.4.3",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_4//:http",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__bytes__1_1_0//:bytes",
"@raze__http__0_2_5//:http",
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
],
)

View file

@ -55,7 +55,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "1.4.1",
version = "1.5.1",
visibility = ["//visibility:private"],
deps = [
],
@ -81,7 +81,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.4.1",
version = "1.5.1",
# buildifier: leave-alone
deps = [
":httparse_build_script",

View file

@ -100,24 +100,24 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.14.9",
version = "0.14.13",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__futures_channel__0_3_15//:futures_channel",
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__h2__0_3_3//:h2",
"@raze__http__0_2_4//:http",
"@raze__http_body__0_4_2//:http_body",
"@raze__httparse__1_4_1//:httparse",
"@raze__bytes__1_1_0//:bytes",
"@raze__futures_channel__0_3_17//:futures_channel",
"@raze__futures_core__0_3_17//:futures_core",
"@raze__futures_util__0_3_17//:futures_util",
"@raze__h2__0_3_6//:h2",
"@raze__http__0_2_5//:http",
"@raze__http_body__0_4_3//:http_body",
"@raze__httparse__1_5_1//:httparse",
"@raze__httpdate__1_0_1//:httpdate",
"@raze__itoa__0_4_7//:itoa",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__socket2__0_4_0//:socket2",
"@raze__tokio__1_7_1//:tokio",
"@raze__itoa__0_4_8//:itoa",
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
"@raze__socket2__0_4_2//:socket2",
"@raze__tokio__1_12_0//:tokio",
"@raze__tower_service__0_3_1//:tower_service",
"@raze__tracing__0_1_26//:tracing",
"@raze__tracing__0_1_28//:tracing",
"@raze__want__0_3_0//:want",
] + selects.with_or({
# cfg(any(target_os = "linux", target_os = "macos"))

View file

@ -53,11 +53,11 @@ rust_library(
version = "0.22.1",
# buildifier: leave-alone
deps = [
"@raze__futures_util__0_3_15//:futures_util",
"@raze__hyper__0_14_9//:hyper",
"@raze__futures_util__0_3_17//:futures_util",
"@raze__hyper__0_14_13//:hyper",
"@raze__log__0_4_14//:log",
"@raze__rustls__0_19_1//:rustls",
"@raze__tokio__1_7_1//:tokio",
"@raze__tokio__1_12_0//:tokio",
"@raze__tokio_rustls__0_22_0//:tokio_rustls",
"@raze__webpki__0_21_4//:webpki",
],

View file

@ -51,9 +51,9 @@ rust_library(
version = "0.4.1",
# buildifier: leave-alone
deps = [
"@raze__hyper__0_14_9//:hyper",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__tokio__1_7_1//:tokio",
"@raze__hyper__0_14_13//:hyper",
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
"@raze__tokio__1_12_0//:tokio",
"@raze__tokio_io_timeout__1_1_1//:tokio_io_timeout",
],
)

View file

@ -51,10 +51,10 @@ rust_library(
version = "0.5.0",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__hyper__0_14_9//:hyper",
"@raze__native_tls__0_2_7//:native_tls",
"@raze__tokio__1_7_1//:tokio",
"@raze__bytes__1_1_0//:bytes",
"@raze__hyper__0_14_13//:hyper",
"@raze__native_tls__0_2_8//:native_tls",
"@raze__tokio__1_12_0//:tokio",
"@raze__tokio_native_tls__0_3_0//:tokio_native_tls",
],
)

View file

@ -51,8 +51,8 @@ rust_library(
version = "0.2.3",
# buildifier: leave-alone
deps = [
"@raze__matches__0_1_8//:matches",
"@raze__unicode_bidi__0_3_5//:unicode_bidi",
"@raze__matches__0_1_9//:matches",
"@raze__unicode_bidi__0_3_6//:unicode_bidi",
"@raze__unicode_normalization__0_1_19//:unicode_normalization",
],
)

View file

@ -54,7 +54,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "1.6.2",
version = "1.7.0",
visibility = ["//visibility:private"],
deps = [
"@raze__autocfg__1_0_1//:autocfg",
@ -82,11 +82,11 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.6.2",
version = "1.7.0",
# buildifier: leave-alone
deps = [
":indexmap_build_script",
"@raze__hashbrown__0_9_1//:hashbrown",
"@raze__hashbrown__0_11_2//:hashbrown",
],
)

View file

@ -52,9 +52,9 @@ rust_library(
version = "0.3.6",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
"@raze__unindent__0_1_7//:unindent",
],
)

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.1.9",
version = "0.1.11",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__1_0_0//:cfg_if",

View file

@ -1,56 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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 = "inventory_impl",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.10",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
],
)

View file

@ -1,90 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# Unsupported target "bench1" with type "bench" omitted
# Unsupported target "combinations_with_replacement" with type "bench" omitted
# Unsupported target "fold_specialization" with type "bench" omitted
# Unsupported target "tree_fold1" with type "bench" omitted
# Unsupported target "tuple_combinations" with type "bench" omitted
# Unsupported target "tuples" with type "bench" omitted
# Unsupported target "iris" with type "example" omitted
rust_library(
name = "itertools",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"use_std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.9.0",
# buildifier: leave-alone
deps = [
"@raze__either__1_6_1//:either",
],
)
# Unsupported target "adaptors_no_collect" with type "test" omitted
# Unsupported target "fold_specialization" with type "test" omitted
# Unsupported target "merge_join" with type "test" omitted
# Unsupported target "peeking_take_while" with type "test" omitted
# Unsupported target "quick" with type "test" omitted
# Unsupported target "specializations" with type "test" omitted
# Unsupported target "test_core" with type "test" omitted
# Unsupported target "test_std" with type "test" omitted
# Unsupported target "tuples" with type "test" omitted
# Unsupported target "zip" with type "test" omitted

View file

@ -51,7 +51,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.4.7",
version = "0.4.8",
# buildifier: leave-alone
deps = [
],

View file

@ -46,10 +46,10 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.3.51",
version = "0.3.55",
# buildifier: leave-alone
deps = [
"@raze__wasm_bindgen__0_2_74//:wasm_bindgen",
"@raze__wasm_bindgen__0_2_78//:wasm_bindgen",
],
)

View file

@ -55,7 +55,7 @@ rust_library(
deps = [
"@raze__cssparser__0_27_2//:cssparser",
"@raze__html5ever__0_25_1//:html5ever",
"@raze__matches__0_1_8//:matches",
"@raze__matches__0_1_9//:matches",
"@raze__selectors__0_22_0//:selectors",
],
)

View file

@ -94,7 +94,7 @@ rust_library(
deps = [
":lexical_core_build_script",
"@raze__arrayvec__0_5_2//:arrayvec",
"@raze__bitflags__1_2_1//:bitflags",
"@raze__bitflags__1_3_2//:bitflags",
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__ryu__1_0_5//:ryu",
"@raze__static_assertions__1_1_0//:static_assertions",

View file

@ -55,7 +55,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.2.97",
version = "0.2.103",
visibility = ["//visibility:private"],
deps = [
],
@ -79,7 +79,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.2.97",
version = "0.2.103",
# buildifier: leave-alone
deps = [
":libc_build_script",

View file

@ -66,8 +66,8 @@ cargo_build_script(
version = "0.22.2",
visibility = ["//visibility:private"],
deps = [
"@raze__cc__1_0_68//:cc",
"@raze__pkg_config__0_3_19//:pkg_config",
"@raze__cc__1_0_70//:cc",
"@raze__pkg_config__0_3_20//:pkg_config",
] + selects.with_or({
# cfg(target_env = "msvc")
(

View file

@ -52,20 +52,20 @@ rust_library(
version = "0.4.1-alpha.0",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__bytes__1_1_0//:bytes",
"@raze__codespan__0_11_1//:codespan",
"@raze__dunce__1_0_2//:dunce",
"@raze__futures__0_3_15//:futures",
"@raze__http__0_2_4//:http",
"@raze__futures__0_3_17//:futures",
"@raze__http__0_2_5//:http",
"@raze__kuchiki__0_8_1//:kuchiki",
"@raze__lazy_static__1_4_0//:lazy_static",
"@raze__linkify__0_5_0//:linkify",
"@raze__log__0_4_14//:log",
"@raze__pulldown_cmark__0_8_0//:pulldown_cmark",
"@raze__regex__1_5_4//:regex",
"@reqwest_rustls//:reqwest",
"@raze__serde__1_0_126//:serde",
"@raze__thiserror__1_0_25//:thiserror",
"@raze__reqwest__0_11_3//:reqwest",
"@raze__serde__1_0_130//:serde",
"@raze__thiserror__1_0_29//:thiserror",
"@raze__url__2_2_2//:url",
],
)

View file

@ -51,7 +51,7 @@ rust_library(
version = "0.5.0",
# buildifier: leave-alone
deps = [
"@raze__memchr__2_4_0//:memchr",
"@raze__memchr__2_4_1//:memchr",
],
)

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.4.4",
version = "0.4.5",
# buildifier: leave-alone
deps = [
"@raze__scopeguard__1_1_0//:scopeguard",

View file

@ -46,10 +46,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.1.8",
version = "0.1.9",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "macro_use_one" with type "test" omitted
# Unsupported target "use_star" with type "test" omitted

View file

@ -56,7 +56,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "2.4.0",
version = "2.4.1",
visibility = ["//visibility:private"],
deps = [
],
@ -81,7 +81,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "2.4.0",
version = "2.4.1",
# buildifier: leave-alone
deps = [
":memchr_build_script",

View file

@ -0,0 +1,79 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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 = "minimal_lexical",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.3",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "bellerophon" with type "test" omitted
# Unsupported target "bellerophon_tests" with type "test" omitted
# Unsupported target "integration_tests" with type "test" omitted
# Unsupported target "lemire_tests" with type "test" omitted
# Unsupported target "libm_tests" with type "test" omitted
# Unsupported target "mask_tests" with type "test" omitted
# Unsupported target "number_tests" with type "test" omitted
# Unsupported target "parse_tests" with type "test" omitted
# Unsupported target "rounding_tests" with type "test" omitted
# Unsupported target "slow_tests" with type "test" omitted
# Unsupported target "stackvec" with type "test" omitted
# Unsupported target "vec_tests" with type "test" omitted

View file

@ -73,7 +73,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
"//conditions:default": [],
}) + selects.with_or({

View file

@ -53,7 +53,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.2.7",
version = "0.2.8",
visibility = ["//visibility:private"],
deps = [
] + selects.with_or({
@ -63,7 +63,7 @@ cargo_build_script(
"@rules_rust//rust/platform:x86_64-apple-darwin",
"@rules_rust//rust/platform:x86_64-apple-ios",
): [
"@raze__security_framework_sys__2_3_0//:security_framework_sys",
"@raze__security_framework_sys__2_4_2//:security_framework_sys",
],
"//conditions:default": [],
}) + selects.with_or({
@ -72,7 +72,7 @@ cargo_build_script(
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__openssl_sys__0_9_65//:openssl_sys",
"@raze__openssl_sys__0_9_67//:openssl_sys",
],
"//conditions:default": [],
}) + selects.with_or({
@ -107,7 +107,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.2.7",
version = "0.2.8",
# buildifier: leave-alone
deps = [
":native_tls_build_script",
@ -119,9 +119,9 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios",
): [
"@raze__lazy_static__1_4_0//:lazy_static",
"@raze__libc__0_2_97//:libc",
"@raze__security_framework__2_3_1//:security_framework",
"@raze__security_framework_sys__2_3_0//:security_framework_sys",
"@raze__libc__0_2_103//:libc",
"@raze__security_framework__2_4_2//:security_framework",
"@raze__security_framework_sys__2_4_2//:security_framework_sys",
"@raze__tempfile__3_2_0//:tempfile",
],
"//conditions:default": [],
@ -132,9 +132,9 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__log__0_4_14//:log",
"@raze__openssl__0_10_35//:openssl",
"@raze__openssl__0_10_36//:openssl",
"@raze__openssl_probe__0_1_4//:openssl_probe",
"@raze__openssl_sys__0_9_65//:openssl_sys",
"@raze__openssl_sys__0_9_67//:openssl_sys",
],
"//conditions:default": [],
}) + selects.with_or({

View file

@ -117,7 +117,7 @@ rust_library(
"@raze__bitvec__0_19_5//:bitvec",
"@raze__funty__1_1_0//:funty",
"@raze__lexical_core__0_7_6//:lexical_core",
"@raze__memchr__2_4_0//:memchr",
"@raze__memchr__2_4_1//:memchr",
],
)

View file

@ -44,8 +44,6 @@ cargo_build_script(
crate_features = [
"alloc",
"default",
"lexical",
"lexical-core",
"std",
],
crate_root = "build.rs",
@ -58,7 +56,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "7.0.0-alpha1",
version = "7.0.0",
visibility = ["//visibility:private"],
deps = [
"@raze__version_check__0_9_3//:version_check",
@ -71,8 +69,6 @@ cargo_build_script(
# Unsupported target "ini" with type "bench" omitted
# Unsupported target "ini_complete" with type "bench" omitted
# Unsupported target "ini_str" with type "bench" omitted
# Unsupported target "json" with type "bench" omitted
@ -91,8 +87,6 @@ rust_library(
crate_features = [
"alloc",
"default",
"lexical",
"lexical-core",
"std",
],
crate_root = "src/lib.rs",
@ -106,12 +100,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "7.0.0-alpha1",
version = "7.0.0",
# buildifier: leave-alone
deps = [
":nom_build_script",
"@raze__lexical_core__0_7_6//:lexical_core",
"@raze__memchr__2_4_0//:memchr",
"@raze__memchr__2_4_1//:memchr",
"@raze__minimal_lexical__0_1_3//:minimal_lexical",
],
)
@ -119,8 +113,6 @@ rust_library(
# Unsupported target "arithmetic_ast" with type "test" omitted
# Unsupported target "bitstream" with type "test" omitted
# Unsupported target "blockbuf-arithmetic" with type "test" omitted
# Unsupported target "css" with type "test" omitted
@ -133,8 +125,6 @@ rust_library(
# Unsupported target "fnmut" with type "test" omitted
# Unsupported target "inference" with type "test" omitted
# Unsupported target "ini" with type "test" omitted
# Unsupported target "ini_str" with type "test" omitted
@ -147,10 +137,6 @@ rust_library(
# Unsupported target "multiline" with type "test" omitted
# Unsupported target "named_args" with type "test" omitted
# Unsupported target "overflow" with type "test" omitted
# Unsupported target "reborrow_fold" with type "test" omitted
# Unsupported target "test1" with type "test" omitted

View file

@ -54,7 +54,7 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__arrayvec__0_4_12//:arrayvec",
"@raze__itoa__0_4_7//:itoa",
"@raze__itoa__0_4_8//:itoa",
] + selects.with_or({
# cfg(unix)
(

View file

@ -51,6 +51,6 @@ rust_library(
version = "1.13.0",
# buildifier: leave-alone
deps = [
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
],
)

View file

@ -43,7 +43,7 @@ rust_library(
edition = "2018",
proc_macro_deps = [
"@raze__derivative__2_2_0//:derivative",
"@raze__num_enum_derive__0_5_1//:num_enum_derive",
"@raze__num_enum_derive__0_5_4//:num_enum_derive",
],
rustc_flags = [
"--cap-lints=allow",
@ -52,12 +52,14 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.5.1",
version = "0.5.4",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "default" with type "test" omitted
# Unsupported target "from_primitive" with type "test" omitted
# Unsupported target "into_primitive" with type "test" omitted

View file

@ -48,12 +48,12 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.5.1",
version = "0.5.4",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro_crate__0_1_5//:proc_macro_crate",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__proc_macro_crate__1_1_0//:proc_macro_crate",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

View file

@ -53,10 +53,10 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.10.35",
version = "0.10.36",
visibility = ["//visibility:private"],
deps = [
"@raze__openssl_sys__0_9_65//:openssl_sys",
"@raze__openssl_sys__0_9_67//:openssl_sys",
],
)
@ -66,7 +66,7 @@ rust_library(
name = "openssl",
srcs = glob(["**/*.rs"]),
aliases = {
"@raze__openssl_sys__0_9_65//:openssl_sys": "ffi",
"@raze__openssl_sys__0_9_67//:openssl_sys": "ffi",
},
crate_features = [
],
@ -81,15 +81,15 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.10.35",
version = "0.10.36",
# buildifier: leave-alone
deps = [
":openssl_build_script",
"@raze__bitflags__1_2_1//:bitflags",
"@raze__bitflags__1_3_2//:bitflags",
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__foreign_types__0_3_2//:foreign_types",
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
"@raze__once_cell__1_8_0//:once_cell",
"@raze__openssl_sys__0_9_65//:openssl_sys",
"@raze__openssl_sys__0_9_67//:openssl_sys",
],
)

View file

@ -54,12 +54,12 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.9.65",
version = "0.9.67",
visibility = ["//visibility:private"],
deps = [
"@raze__autocfg__1_0_1//:autocfg",
"@raze__cc__1_0_68//:cc",
"@raze__pkg_config__0_3_19//:pkg_config",
"@raze__cc__1_0_70//:cc",
"@raze__pkg_config__0_3_20//:pkg_config",
] + selects.with_or({
# cfg(target_env = "msvc")
(
@ -89,11 +89,11 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.9.65",
version = "0.9.67",
# buildifier: leave-alone
deps = [
":openssl_sys_build_script",
"@raze__libc__0_2_97//:libc",
"@raze__libc__0_2_103//:libc",
] + selects.with_or({
# cfg(target_env = "msvc")
(

View file

@ -40,7 +40,7 @@ rust_library(
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__ouroboros_macro__0_9_3//:ouroboros_macro",
"@raze__ouroboros_macro__0_9_5//:ouroboros_macro",
],
rustc_flags = [
"--cap-lints=allow",
@ -49,7 +49,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.9.3",
version = "0.9.5",
# buildifier: leave-alone
deps = [
"@raze__stable_deref_trait__1_2_0//:stable_deref_trait",

View file

@ -46,13 +46,13 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.9.3",
version = "0.9.5",
# buildifier: leave-alone
deps = [
"@raze__Inflector__0_11_4//:Inflector",
"@raze__proc_macro2__1_0_27//:proc_macro2",
"@raze__proc_macro2__1_0_29//:proc_macro2",
"@raze__proc_macro_error__1_0_4//:proc_macro_error",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_73//:syn",
"@raze__syn__1_0_77//:syn",
],
)

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