update Rust deps

- tokio 1.0
- updated reqwest, thanks to Rumo
- other minor dep updates

the reqwest build file has been split into two, as it was awkward
to manually update the combined file, and the platform gate is now
on the target in rslib/
This commit is contained in:
Damien Elmes 2021-04-27 22:18:12 +10:00
parent a639048a6b
commit cf2613e869
167 changed files with 1524 additions and 2866 deletions

567
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,19 +1,13 @@
""" """
We currently need to manually maintain this file, so we can use @generated
ring on Linux, and native-tls on other platforms. We use ring on cargo-raze crate build file.
Linux because the wheels need the SSL library statically linked in,
and native-tls-vendored is broken in Bazel due to sandboxing. We
prefer native-tls on other platforms because it reduces the resulting
binary size, and we get free updates from the OS.
Building openssl statically ourselves and linking it in would be DO NOT EDIT! Replaced on runs of cargo-raze
another valid solution, but we would need to ensure we keep it up
to date.
update.py takes care of keeping the referenced versions
up to date for us.
""" """
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load # buildifier: disable=load
load( load(
"@rules_rust//rust:rust.bzl", "@rules_rust//rust:rust.bzl",
@ -22,9 +16,6 @@ load(
"rust_test", "rust_test",
) )
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [ package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets. # Public for visibility by "@raze__crate__version//" targets.
# #
@ -54,49 +45,27 @@ licenses([
rust_library( rust_library(
name = "reqwest", name = "reqwest",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
aliases = selects.with_or({ aliases = {
# ring on Linux
(
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): {},
"//conditions:default": {
# native-tls
"@raze__native_tls__0_2_7//:native_tls": "native_tls_crate", "@raze__native_tls__0_2_7//:native_tls": "native_tls_crate",
}, },
}),
crate_features = [ crate_features = [
"__tls", "__tls",
"default-tls",
"hyper-tls",
"json", "json",
"mime_guess",
"multipart",
"native-tls",
"native-tls-crate",
"serde_json", "serde_json",
"socks", "socks",
"stream", "stream",
"tokio-native-tls",
"tokio-socks", "tokio-socks",
] + selects.with_or({
# ring on Linux
(
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"__rustls",
"hyper-rustls",
"rustls",
"rustls-tls",
"rustls-tls-webpki-roots",
"tokio-rustls",
"webpki-roots",
], ],
# native-tls on other platforms
"//conditions:default": [
"default-tls",
"hyper-tls",
"native-tls",
"native-tls-crate",
"tokio-tls",
],
}),
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [],
edition = "2018", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -105,16 +74,16 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.10.8", version = "0.11.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_3//:http", "@raze__http__0_2_4//:http",
"@raze__hyper_timeout__0_3_1//:hyper_timeout", "@raze__hyper_timeout__0_4_1//:hyper_timeout",
"@raze__mime_guess__2_0_3//:mime_guess", "@raze__mime_guess__2_0_3//:mime_guess",
"@raze__serde__1_0_125//:serde", "@raze__serde__1_0_125//:serde",
"@raze__serde_json__1_0_64//:serde_json", "@raze__serde_json__1_0_64//:serde_json",
"@raze__serde_urlencoded__0_6_1//:serde_urlencoded", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
"@raze__url__2_2_1//:url", "@raze__url__2_2_1//:url",
] + selects.with_or({ ] + selects.with_or({
# cfg(not(target_arch = "wasm32")) # cfg(not(target_arch = "wasm32"))
@ -128,18 +97,21 @@ rust_library(
): [ ): [
"@raze__base64__0_13_0//:base64", "@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs", "@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_util__0_3_13//:futures_util", "@raze__futures_util__0_3_14//:futures_util",
"@raze__http_body__0_3_1//:http_body", "@raze__http_body__0_4_1//:http_body",
"@raze__hyper__0_13_10//:hyper", "@raze__hyper__0_14_7//:hyper",
"@raze__hyper_tls__0_5_0//:hyper_tls",
"@raze__ipnet__2_3_0//:ipnet", "@raze__ipnet__2_3_0//:ipnet",
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__mime__0_3_16//:mime", "@raze__mime__0_3_16//:mime",
"@raze__native_tls__0_2_7//:native_tls",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__pin_project_lite__0_1_12//:pin_project_lite", "@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__1_5_0//:tokio",
"@raze__tokio_socks__0_3_0//:tokio_socks", "@raze__tokio_native_tls__0_3_0//:tokio_native_tls",
"@raze__tokio_socks__0_5_1//:tokio_socks",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({
@ -150,23 +122,6 @@ rust_library(
"@raze__winreg__0_7_0//:winreg", "@raze__winreg__0_7_0//:winreg",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({
# ring on Linux
(
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
): [
"@raze__hyper_rustls__0_21_0//:hyper_rustls",
"@raze__rustls__0_18_1//:rustls",
"@raze__tokio_rustls__0_14_1//:tokio_rustls",
"@raze__webpki_roots__0_20_0//:webpki_roots",
],
# native-tls on other platforms
"//conditions:default": [
"@raze__hyper_tls__0_4_3//:hyper_tls",
"@raze__native_tls__0_2_7//:native_tls",
"@raze__tokio_tls__0_3_1//:tokio_tls",
],
}), }),
) )
@ -189,3 +144,5 @@ rust_library(
# Unsupported target "redirect" with type "test" omitted # Unsupported target "redirect" with type "test" omitted
# Unsupported target "timeouts" with type "test" omitted # Unsupported target "timeouts" with type "test" omitted
# Unsupported target "wasm_simple" with type "test" omitted

View file

@ -0,0 +1,150 @@
"""
@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 "blocking" with type "example" omitted
# Unsupported target "form" with type "example" omitted
# Unsupported target "json_dynamic" with type "example" omitted
# Unsupported target "json_typed" with type "example" omitted
# Unsupported target "simple" with type "example" omitted
# Unsupported target "tor_socks" with type "example" omitted
rust_library(
name = "reqwest",
srcs = glob(["**/*.rs"]),
aliases = {
},
crate_features = [
"__rustls",
"__tls",
"hyper-rustls",
"json",
"mime_guess",
"multipart",
"rustls",
"rustls-tls",
"rustls-tls-webpki-roots",
"serde_json",
"socks",
"stream",
"tokio-rustls",
"tokio-socks",
"webpki-roots",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.11.3",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_4//:http",
"@raze__hyper_timeout__0_4_1//:hyper_timeout",
"@raze__mime_guess__2_0_3//:mime_guess",
"@raze__serde__1_0_125//:serde",
"@raze__serde_json__1_0_64//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
"@raze__url__2_2_1//:url",
] + selects.with_or({
# cfg(not(target_arch = "wasm32"))
(
"@rules_rust//rust/platform:aarch64-apple-ios",
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-apple-darwin",
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_util__0_3_14//:futures_util",
"@raze__http_body__0_4_1//:http_body",
"@raze__hyper__0_14_7//:hyper",
"@raze__hyper_rustls__0_22_1//:hyper_rustls",
"@raze__ipnet__2_3_0//: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__rustls__0_19_1//:rustls",
"@raze__tokio__1_5_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",
],
"//conditions:default": [],
}) + selects.with_or({
# cfg(windows)
(
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [
"@raze__winreg__0_7_0//:winreg",
],
"//conditions:default": [],
}),
)
# Unsupported target "badssl" with type "test" omitted
# Unsupported target "blocking" with type "test" omitted
# Unsupported target "brotli" with type "test" omitted
# Unsupported target "client" with type "test" omitted
# Unsupported target "cookie" with type "test" omitted
# Unsupported target "gzip" with type "test" omitted
# Unsupported target "multipart" with type "test" omitted
# Unsupported target "proxy" with type "test" omitted
# Unsupported target "redirect" with type "test" omitted
# Unsupported target "timeouts" with type "test" omitted
# Unsupported target "wasm_simple" with type "test" omitted

View file

@ -1,10 +1,15 @@
This folder integrates Rust crates.io fetching into Bazel. This folder integrates Rust crates.io fetching into Bazel.
To update dependencies, ensure a local Rust environment is available To update dependencies, ensure a local Rust environment is available
(eg install rustup), then run: (eg install rustup), then fetch this commit of cargo raze:
https://github.com/google/cargo-raze/commit/1edfb5366d7a6a59c3f9e354a3818a649146548c
then from the folder:
``` ```
cargo install cargo-raze --version 0.8.0 cd impl
cargo install --path .
cargo install cargo-license cargo install cargo-license
``` ```
@ -28,3 +33,20 @@ review in a PR, and the changes can sometimes break platforms like Windows. For
this reason, please don't submit PRs that do minor version bumps - those will this reason, please don't submit PRs that do minor version bumps - those will
typically be done after stable releases. If you need a new crate for a feature typically be done after stable releases. If you need a new crate for a feature
you're working on, please raise it in an issue first. you're working on, please raise it in an issue first.
## Reqwest
Things are complicated with reqwest at the moment, because:
- we're using a fork to implement better timeouts for syncing
- we want to build it with different features on Linux (where we can't build a
wheel that links to OpenSSL), and on other platforms.
For minor version bumps, update.py should take care of updating the versions of
reqwest dependencies.
After making a big update to reqwest via an updated fork, the vendored
BUILD.reqwest.\* files may need updating. To do that, comment native-tls from
the features in rslib/Cargo.toml and run update.py, and copy the file in remote/
over the old vendored file. Then comment the other two deps out, add native-tls
back, and repeat the process.

File diff suppressed because it is too large Load diff

View file

@ -154,7 +154,7 @@
}, },
{ {
"name": "async-compression", "name": "async-compression",
"version": "0.3.7", "version": "0.3.8",
"authors": "Wim Looman <wim@nemo157.com>|Allen Bui <fairingrey@gmail.com>", "authors": "Wim Looman <wim@nemo157.com>|Allen Bui <fairingrey@gmail.com>",
"repository": "https://github.com/Nemo157/async-compression", "repository": "https://github.com/Nemo157/async-compression",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -163,7 +163,7 @@
}, },
{ {
"name": "async-trait", "name": "async-trait",
"version": "0.1.48", "version": "0.1.50",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/async-trait", "repository": "https://github.com/dtolnay/async-trait",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -188,15 +188,6 @@
"license_file": null, "license_file": null,
"description": "Automatic cfg for Rust compiler features" "description": "Automatic cfg for Rust compiler features"
}, },
{
"name": "base64",
"version": "0.12.3",
"authors": "Alice Maz <alice@alicemaz.com>|Marshall Pierce <marshall@mpierce.org>",
"repository": "https://github.com/marshallpierce/rust-base64",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "encodes and decodes base64 as bytes or utf8"
},
{ {
"name": "base64", "name": "base64",
"version": "0.13.0", "version": "0.13.0",
@ -224,15 +215,6 @@
"license_file": null, "license_file": null,
"description": "A crate for manipulating memory, bit by bit" "description": "A crate for manipulating memory, bit by bit"
}, },
{
"name": "blake2b_simd",
"version": "0.5.11",
"authors": "Jack O'Connor",
"repository": "https://github.com/oconnor663/blake2_simd",
"license": "MIT",
"license_file": null,
"description": "a pure Rust BLAKE2b implementation with dynamic SIMD"
},
{ {
"name": "blake3", "name": "blake3",
"version": "0.3.7", "version": "0.3.7",
@ -260,24 +242,6 @@
"license_file": null, "license_file": null,
"description": "Library for reading/writing numbers in big-endian and little-endian." "description": "Library for reading/writing numbers in big-endian and little-endian."
}, },
{
"name": "bytes",
"version": "0.4.12",
"authors": "Carl Lerche <me@carllerche.com>",
"repository": "https://github.com/carllerche/bytes",
"license": "MIT",
"license_file": null,
"description": "Types and traits for working with bytes"
},
{
"name": "bytes",
"version": "0.5.6",
"authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/tokio-rs/bytes",
"license": "MIT",
"license_file": null,
"description": "Types and traits for working with bytes"
},
{ {
"name": "bytes", "name": "bytes",
"version": "1.0.1", "version": "1.0.1",
@ -370,7 +334,7 @@
}, },
{ {
"name": "crossbeam-channel", "name": "crossbeam-channel",
"version": "0.5.0", "version": "0.5.1",
"authors": "The Crossbeam Project Developers", "authors": "The Crossbeam Project Developers",
"repository": "https://github.com/crossbeam-rs/crossbeam", "repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -433,22 +397,13 @@
}, },
{ {
"name": "dirs-sys", "name": "dirs-sys",
"version": "0.3.5", "version": "0.3.6",
"authors": "Simon Ochsenreither <simon@ochsenreither.de>", "authors": "Simon Ochsenreither <simon@ochsenreither.de>",
"repository": "https://github.com/dirs-dev/dirs-sys-rs", "repository": "https://github.com/dirs-dev/dirs-sys-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "System-level helper functions for the dirs and directories crates." "description": "System-level helper functions for the dirs and directories crates."
}, },
{
"name": "dtoa",
"version": "0.4.7",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/dtoa",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Fast functions for printing floating-point primitives to an io::Write"
},
{ {
"name": "either", "name": "either",
"version": "1.6.1", "version": "1.6.1",
@ -523,7 +478,7 @@
}, },
{ {
"name": "fluent-bundle", "name": "fluent-bundle",
"version": "0.15.0", "version": "0.15.1",
"authors": "Zibi Braniecki <gandalf@mozilla.com>|Staś Małolepszy <stas@mozilla.com>", "authors": "Zibi Braniecki <gandalf@mozilla.com>|Staś Małolepszy <stas@mozilla.com>",
"repository": "https://github.com/projectfluent/fluent-rs", "repository": "https://github.com/projectfluent/fluent-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -584,24 +539,6 @@
"license_file": null, "license_file": null,
"description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms." "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
}, },
{
"name": "fuchsia-zircon",
"version": "0.3.3",
"authors": "Raph Levien <raph@google.com>",
"repository": "https://fuchsia.googlesource.com/garnet/",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Rust bindings for the Zircon kernel"
},
{
"name": "fuchsia-zircon-sys",
"version": "0.3.3",
"authors": "Raph Levien <raph@google.com>",
"repository": "https://fuchsia.googlesource.com/garnet/",
"license": "BSD-3-Clause",
"license_file": null,
"description": "Low-level Rust bindings for the Zircon kernel"
},
{ {
"name": "funty", "name": "funty",
"version": "1.1.0", "version": "1.1.0",
@ -622,7 +559,7 @@
}, },
{ {
"name": "futures", "name": "futures",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -631,7 +568,7 @@
}, },
{ {
"name": "futures-channel", "name": "futures-channel",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -640,7 +577,7 @@
}, },
{ {
"name": "futures-core", "name": "futures-core",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -649,7 +586,7 @@
}, },
{ {
"name": "futures-executor", "name": "futures-executor",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -658,7 +595,7 @@
}, },
{ {
"name": "futures-io", "name": "futures-io",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -667,7 +604,7 @@
}, },
{ {
"name": "futures-macro", "name": "futures-macro",
"version": "0.3.13", "version": "0.3.14",
"authors": "Taylor Cramer <cramertj@google.com>|Taiki Endo <te316e89@gmail.com>", "authors": "Taylor Cramer <cramertj@google.com>|Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -676,7 +613,7 @@
}, },
{ {
"name": "futures-sink", "name": "futures-sink",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -685,7 +622,7 @@
}, },
{ {
"name": "futures-task", "name": "futures-task",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -694,7 +631,7 @@
}, },
{ {
"name": "futures-util", "name": "futures-util",
"version": "0.3.13", "version": "0.3.14",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -748,7 +685,7 @@
}, },
{ {
"name": "h2", "name": "h2",
"version": "0.2.7", "version": "0.3.2",
"authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>", "authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/h2", "repository": "https://github.com/hyperium/h2",
"license": "MIT", "license": "MIT",
@ -820,7 +757,7 @@
}, },
{ {
"name": "http", "name": "http",
"version": "0.2.3", "version": "0.2.4",
"authors": "Alex Crichton <alex@alexcrichton.com>|Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>", "authors": "Alex Crichton <alex@alexcrichton.com>|Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/http", "repository": "https://github.com/hyperium/http",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -829,7 +766,7 @@
}, },
{ {
"name": "http-body", "name": "http-body",
"version": "0.3.1", "version": "0.4.1",
"authors": "Carl Lerche <me@carllerche.com>|Lucio Franco <luciofranco14@gmail.com>|Sean McArthur <sean@seanmonstar.com>", "authors": "Carl Lerche <me@carllerche.com>|Lucio Franco <luciofranco14@gmail.com>|Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/http-body", "repository": "https://github.com/hyperium/http-body",
"license": "MIT", "license": "MIT",
@ -838,7 +775,7 @@
}, },
{ {
"name": "httparse", "name": "httparse",
"version": "1.3.5", "version": "1.4.0",
"authors": "Sean McArthur <sean@seanmonstar.com>", "authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/seanmonstar/httparse", "repository": "https://github.com/seanmonstar/httparse",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -847,8 +784,8 @@
}, },
{ {
"name": "httpdate", "name": "httpdate",
"version": "0.3.2", "version": "1.0.0",
"authors": "Pyfisch <pyfisch@gmail.com>", "authors": "Pyfisch <pyfisch@posteo.org>",
"repository": "https://github.com/pyfisch/httpdate", "repository": "https://github.com/pyfisch/httpdate",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
@ -874,7 +811,7 @@
}, },
{ {
"name": "hyper", "name": "hyper",
"version": "0.13.10", "version": "0.14.7",
"authors": "Sean McArthur <sean@seanmonstar.com>", "authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/hyper", "repository": "https://github.com/hyperium/hyper",
"license": "MIT", "license": "MIT",
@ -883,7 +820,7 @@
}, },
{ {
"name": "hyper-rustls", "name": "hyper-rustls",
"version": "0.21.0", "version": "0.22.1",
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>", "authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
"repository": "https://github.com/ctz/hyper-rustls", "repository": "https://github.com/ctz/hyper-rustls",
"license": "Apache-2.0 OR ISC OR MIT", "license": "Apache-2.0 OR ISC OR MIT",
@ -892,7 +829,7 @@
}, },
{ {
"name": "hyper-timeout", "name": "hyper-timeout",
"version": "0.3.1", "version": "0.4.1",
"authors": "Herman J. Radtke III <herman@hermanradtke.com>", "authors": "Herman J. Radtke III <herman@hermanradtke.com>",
"repository": "https://github.com/hjr3/hyper-timeout", "repository": "https://github.com/hjr3/hyper-timeout",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -901,7 +838,7 @@
}, },
{ {
"name": "hyper-tls", "name": "hyper-tls",
"version": "0.4.3", "version": "0.5.0",
"authors": "Sean McArthur <sean@seanmonstar.com>", "authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/hyperium/hyper-tls", "repository": "https://github.com/hyperium/hyper-tls",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -910,7 +847,7 @@
}, },
{ {
"name": "idna", "name": "idna",
"version": "0.2.2", "version": "0.2.3",
"authors": "The rust-url developers", "authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url/", "repository": "https://github.com/servo/rust-url/",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -998,15 +935,6 @@
"license_file": null, "license_file": null,
"description": "Implementation of macros for the `inventory` crate" "description": "Implementation of macros for the `inventory` crate"
}, },
{
"name": "iovec",
"version": "0.1.4",
"authors": "Carl Lerche <me@carllerche.com>",
"repository": "https://github.com/carllerche/iovec",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Portable buffer type for scatter/gather I/O operations"
},
{ {
"name": "ipnet", "name": "ipnet",
"version": "2.3.0", "version": "2.3.0",
@ -1036,22 +964,13 @@
}, },
{ {
"name": "js-sys", "name": "js-sys",
"version": "0.3.49", "version": "0.3.50",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate." "description": "Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate."
}, },
{
"name": "kernel32-sys",
"version": "0.2.2",
"authors": "Peter Atashian <retep998@gmail.com>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Contains function definitions for the Windows API library kernel32. See winapi for types and constants."
},
{ {
"name": "lazy_static", "name": "lazy_static",
"version": "1.4.0", "version": "1.4.0",
@ -1063,7 +982,7 @@
}, },
{ {
"name": "lexical-core", "name": "lexical-core",
"version": "0.7.5", "version": "0.7.6",
"authors": "Alex Huszagh <ahuszagh@gmail.com>", "authors": "Alex Huszagh <ahuszagh@gmail.com>",
"repository": "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core", "repository": "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1072,7 +991,7 @@
}, },
{ {
"name": "libc", "name": "libc",
"version": "0.2.91", "version": "0.2.94",
"authors": "The Rust Project Developers", "authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/libc", "repository": "https://github.com/rust-lang/libc",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1090,7 +1009,7 @@
}, },
{ {
"name": "lock_api", "name": "lock_api",
"version": "0.4.2", "version": "0.4.3",
"authors": "Amanieu d'Antras <amanieu@gmail.com>", "authors": "Amanieu d'Antras <amanieu@gmail.com>",
"repository": "https://github.com/Amanieu/parking_lot", "repository": "https://github.com/Amanieu/parking_lot",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1126,7 +1045,7 @@
}, },
{ {
"name": "markup5ever", "name": "markup5ever",
"version": "0.10.0", "version": "0.10.1",
"authors": "The html5ever Project Developers", "authors": "The html5ever Project Developers",
"repository": "https://github.com/servo/html5ever", "repository": "https://github.com/servo/html5ever",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1189,8 +1108,8 @@
}, },
{ {
"name": "mio", "name": "mio",
"version": "0.6.23", "version": "0.7.11",
"authors": "Carl Lerche <me@carllerche.com>", "authors": "Carl Lerche <me@carllerche.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>|Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/mio", "repository": "https://github.com/tokio-rs/mio",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
@ -1198,9 +1117,9 @@
}, },
{ {
"name": "miow", "name": "miow",
"version": "0.2.2", "version": "0.3.7",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/alexcrichton/miow", "repository": "https://github.com/yoshuawuyts/miow",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "A zero overhead I/O library for Windows, focusing on IOCP and Async I/O abstractions." "description": "A zero overhead I/O library for Windows, focusing on IOCP and Async I/O abstractions."
@ -1223,15 +1142,6 @@
"license_file": null, "license_file": null,
"description": "A wrapper over a platform's native TLS implementation" "description": "A wrapper over a platform's native TLS implementation"
}, },
{
"name": "net2",
"version": "0.2.37",
"authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/deprecrated/net2-rs",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Extensions to the standard library's networking types as proposed in RFC 1158."
},
{ {
"name": "new_debug_unreachable", "name": "new_debug_unreachable",
"version": "1.0.4", "version": "1.0.4",
@ -1259,6 +1169,15 @@
"license_file": null, "license_file": null,
"description": "A byte-oriented, zero-copy, parser combinators library" "description": "A byte-oriented, zero-copy, parser combinators library"
}, },
{
"name": "ntapi",
"version": "0.3.6",
"authors": "MSxDOS <melcodos@gmail.com>",
"repository": "https://github.com/MSxDOS/ntapi",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "FFI bindings for Native API"
},
{ {
"name": "num-format", "name": "num-format",
"version": "0.4.0", "version": "0.4.0",
@ -1351,7 +1270,7 @@
}, },
{ {
"name": "ouroboros", "name": "ouroboros",
"version": "0.8.3", "version": "0.9.1",
"authors": "Joshua Maros <joshua-maros@github.com>", "authors": "Joshua Maros <joshua-maros@github.com>",
"repository": "https://github.com/joshua-maros/ouroboros", "repository": "https://github.com/joshua-maros/ouroboros",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1360,7 +1279,7 @@
}, },
{ {
"name": "ouroboros_macro", "name": "ouroboros_macro",
"version": "0.8.3", "version": "0.9.1",
"authors": "Joshua Maros <joshua-maros@github.com>", "authors": "Joshua Maros <joshua-maros@github.com>",
"repository": "https://github.com/joshua-maros/ouroboros", "repository": "https://github.com/joshua-maros/ouroboros",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1468,7 +1387,7 @@
}, },
{ {
"name": "pin-project", "name": "pin-project",
"version": "1.0.6", "version": "1.0.7",
"authors": "Taiki Endo <te316e89@gmail.com>", "authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project", "repository": "https://github.com/taiki-e/pin-project",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1477,22 +1396,13 @@
}, },
{ {
"name": "pin-project-internal", "name": "pin-project-internal",
"version": "1.0.6", "version": "1.0.7",
"authors": "Taiki Endo <te316e89@gmail.com>", "authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project", "repository": "https://github.com/taiki-e/pin-project",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Implementation detail of the `pin-project` crate." "description": "Implementation detail of the `pin-project` crate."
}, },
{
"name": "pin-project-lite",
"version": "0.1.12",
"authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project-lite",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A lightweight version of pin-project written with declarative macros."
},
{ {
"name": "pin-project-lite", "name": "pin-project-lite",
"version": "0.2.6", "version": "0.2.6",
@ -1520,15 +1430,6 @@
"license_file": null, "license_file": null,
"description": "A library to run the pkg-config system tool at build time in order to be used in Cargo build scripts." "description": "A library to run the pkg-config system tool at build time in order to be used in Cargo build scripts."
}, },
{
"name": "podio",
"version": "0.1.7",
"authors": "Mathijs van de Nes <git@mathijs.vd-nes.nl>",
"repository": "https://github.com/mvdnes/podio.git",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Additional trait for Read and Write to read and write Plain Old Data"
},
{ {
"name": "ppv-lite86", "name": "ppv-lite86",
"version": "0.2.10", "version": "0.2.10",
@ -1594,7 +1495,7 @@
}, },
{ {
"name": "proc-macro2", "name": "proc-macro2",
"version": "1.0.24", "version": "1.0.26",
"authors": "Alex Crichton <alex@alexcrichton.com>|David Tolnay <dtolnay@gmail.com>", "authors": "Alex Crichton <alex@alexcrichton.com>|David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/alexcrichton/proc-macro2", "repository": "https://github.com/alexcrichton/proc-macro2",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1774,16 +1675,7 @@
}, },
{ {
"name": "redox_syscall", "name": "redox_syscall",
"version": "0.1.57", "version": "0.2.6",
"authors": "Jeremy Soller <jackpot51@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/syscall",
"license": "MIT",
"license_file": null,
"description": "A Rust library to access raw Redox system calls"
},
{
"name": "redox_syscall",
"version": "0.2.5",
"authors": "Jeremy Soller <jackpot51@gmail.com>", "authors": "Jeremy Soller <jackpot51@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/syscall", "repository": "https://gitlab.redox-os.org/redox-os/syscall",
"license": "MIT", "license": "MIT",
@ -1792,7 +1684,7 @@
}, },
{ {
"name": "redox_users", "name": "redox_users",
"version": "0.3.5", "version": "0.4.0",
"authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>", "authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/users", "repository": "https://gitlab.redox-os.org/redox-os/users",
"license": "MIT", "license": "MIT",
@ -1801,7 +1693,7 @@
}, },
{ {
"name": "regex", "name": "regex",
"version": "1.4.5", "version": "1.4.6",
"authors": "The Rust Project Developers", "authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/regex", "repository": "https://github.com/rust-lang/regex",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1828,7 +1720,7 @@
}, },
{ {
"name": "reqwest", "name": "reqwest",
"version": "0.10.8", "version": "0.11.3",
"authors": "Sean McArthur <sean@seanmonstar.com>", "authors": "Sean McArthur <sean@seanmonstar.com>",
"repository": "https://github.com/seanmonstar/reqwest", "repository": "https://github.com/seanmonstar/reqwest",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1862,15 +1754,6 @@
"license_file": null, "license_file": null,
"description": "Ergonomic wrapper for SQLite" "description": "Ergonomic wrapper for SQLite"
}, },
{
"name": "rust-argon2",
"version": "0.8.3",
"authors": "Martijn Rijkeboer <mrr@sru-systems.com>",
"repository": "https://github.com/sru-systems/rust-argon2",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Rust implementation of the Argon2 password hashing function."
},
{ {
"name": "rustc-hash", "name": "rustc-hash",
"version": "1.1.0", "version": "1.1.0",
@ -1882,7 +1765,7 @@
}, },
{ {
"name": "rustls", "name": "rustls",
"version": "0.18.1", "version": "0.19.1",
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>", "authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
"repository": "https://github.com/ctz/rustls", "repository": "https://github.com/ctz/rustls",
"license": "Apache-2.0 OR ISC OR MIT", "license": "Apache-2.0 OR ISC OR MIT",
@ -1918,7 +1801,7 @@
}, },
{ {
"name": "sct", "name": "sct",
"version": "0.6.0", "version": "0.6.1",
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>", "authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
"repository": "https://github.com/ctz/sct.rs", "repository": "https://github.com/ctz/sct.rs",
"license": "Apache-2.0 OR ISC OR MIT", "license": "Apache-2.0 OR ISC OR MIT",
@ -2008,7 +1891,7 @@
}, },
{ {
"name": "serde_urlencoded", "name": "serde_urlencoded",
"version": "0.6.1", "version": "0.7.0",
"authors": "Anthony Ramine <n.oxyde@gmail.com>", "authors": "Anthony Ramine <n.oxyde@gmail.com>",
"repository": "https://github.com/nox/serde_urlencoded", "repository": "https://github.com/nox/serde_urlencoded",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2035,9 +1918,9 @@
}, },
{ {
"name": "slab", "name": "slab",
"version": "0.4.2", "version": "0.4.3",
"authors": "Carl Lerche <me@carllerche.com>", "authors": "Carl Lerche <me@carllerche.com>",
"repository": "https://github.com/carllerche/slab", "repository": "https://github.com/tokio-rs/slab",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "Pre-allocated storage for a uniform data type" "description": "Pre-allocated storage for a uniform data type"
@ -2107,9 +1990,9 @@
}, },
{ {
"name": "socket2", "name": "socket2",
"version": "0.3.19", "version": "0.4.0",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>",
"repository": "https://github.com/alexcrichton/socket2-rs", "repository": "https://github.com/rust-lang/socket2",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended." "description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended."
@ -2188,7 +2071,7 @@
}, },
{ {
"name": "syn", "name": "syn",
"version": "1.0.65", "version": "1.0.70",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/syn", "repository": "https://github.com/dtolnay/syn",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2296,7 +2179,7 @@
}, },
{ {
"name": "tinyvec", "name": "tinyvec",
"version": "1.1.1", "version": "1.2.0",
"authors": "Lokathor <zefria@gmail.com>", "authors": "Lokathor <zefria@gmail.com>",
"repository": "https://github.com/Lokathor/tinyvec", "repository": "https://github.com/Lokathor/tinyvec",
"license": "Apache-2.0 OR MIT OR Zlib", "license": "Apache-2.0 OR MIT OR Zlib",
@ -2314,7 +2197,7 @@
}, },
{ {
"name": "tokio", "name": "tokio",
"version": "0.2.25", "version": "1.5.0",
"authors": "Tokio Contributors <team@tokio.rs>", "authors": "Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tokio", "repository": "https://github.com/tokio-rs/tokio",
"license": "MIT", "license": "MIT",
@ -2323,16 +2206,25 @@
}, },
{ {
"name": "tokio-io-timeout", "name": "tokio-io-timeout",
"version": "0.4.0", "version": "1.1.1",
"authors": "Steven Fackler <sfackler@gmail.com>", "authors": "Steven Fackler <sfackler@gmail.com>",
"repository": "https://github.com/sfackler/tokio-io-timeout", "repository": "https://github.com/sfackler/tokio-io-timeout",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Tokio wrappers which apply timeouts to IO operations" "description": "Tokio wrappers which apply timeouts to IO operations"
}, },
{
"name": "tokio-native-tls",
"version": "0.3.0",
"authors": "Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tls",
"license": "MIT",
"license_file": null,
"description": "An implementation of TLS/SSL streams for Tokio using native-tls giving an implementation of TLS for nonblocking I/O streams."
},
{ {
"name": "tokio-rustls", "name": "tokio-rustls",
"version": "0.14.1", "version": "0.22.0",
"authors": "quininer kel <quininer@live.com>", "authors": "quininer kel <quininer@live.com>",
"repository": "https://github.com/tokio-rs/tls", "repository": "https://github.com/tokio-rs/tls",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2341,25 +2233,16 @@
}, },
{ {
"name": "tokio-socks", "name": "tokio-socks",
"version": "0.3.0", "version": "0.5.1",
"authors": "Yilin Chen <sticnarf@gmail.com>", "authors": "Yilin Chen <sticnarf@gmail.com>",
"repository": "https://github.com/sticnarf/tokio-socks", "repository": "https://github.com/sticnarf/tokio-socks",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "Asynchronous SOCKS proxy support for Rust." "description": "Asynchronous SOCKS proxy support for Rust."
}, },
{
"name": "tokio-tls",
"version": "0.3.1",
"authors": "Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tokio",
"license": "MIT",
"license_file": null,
"description": "Deprecated in favor of `tokio-naitve-tls`. An implementation of TLS/SSL streams for Tokio giving an implementation of TLS for nonblocking I/O streams."
},
{ {
"name": "tokio-util", "name": "tokio-util",
"version": "0.3.1", "version": "0.6.6",
"authors": "Tokio Contributors <team@tokio.rs>", "authors": "Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tokio", "repository": "https://github.com/tokio-rs/tokio",
"license": "MIT", "license": "MIT",
@ -2402,15 +2285,6 @@
"license_file": null, "license_file": null,
"description": "Core primitives for application-level tracing." "description": "Core primitives for application-level tracing."
}, },
{
"name": "tracing-futures",
"version": "0.2.5",
"authors": "Eliza Weisman <eliza@buoyant.io>|Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tracing",
"license": "MIT",
"license_file": null,
"description": "Utilities for instrumenting `futures` with `tracing`."
},
{ {
"name": "try-lock", "name": "try-lock",
"version": "0.2.3", "version": "0.2.3",
@ -2485,7 +2359,7 @@
}, },
{ {
"name": "unicode-bidi", "name": "unicode-bidi",
"version": "0.3.4", "version": "0.3.5",
"authors": "The Servo Project Developers", "authors": "The Servo Project Developers",
"repository": "https://github.com/servo/unicode-bidi", "repository": "https://github.com/servo/unicode-bidi",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2557,7 +2431,7 @@
}, },
{ {
"name": "utf-8", "name": "utf-8",
"version": "0.7.5", "version": "0.7.6",
"authors": "Simon Sapin <simon.sapin@exyr.org>", "authors": "Simon Sapin <simon.sapin@exyr.org>",
"repository": "https://github.com/SimonSapin/rust-utf8", "repository": "https://github.com/SimonSapin/rust-utf8",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2575,7 +2449,7 @@
}, },
{ {
"name": "vcpkg", "name": "vcpkg",
"version": "0.2.11", "version": "0.2.12",
"authors": "Jim McGrath <jimmc2@gmail.com>", "authors": "Jim McGrath <jimmc2@gmail.com>",
"repository": "https://github.com/mcgoo/vcpkg-rs", "repository": "https://github.com/mcgoo/vcpkg-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2620,7 +2494,7 @@
}, },
{ {
"name": "wasm-bindgen", "name": "wasm-bindgen",
"version": "0.2.72", "version": "0.2.73",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen", "repository": "https://github.com/rustwasm/wasm-bindgen",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2629,7 +2503,7 @@
}, },
{ {
"name": "wasm-bindgen-backend", "name": "wasm-bindgen-backend",
"version": "0.2.72", "version": "0.2.73",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2638,7 +2512,7 @@
}, },
{ {
"name": "wasm-bindgen-futures", "name": "wasm-bindgen-futures",
"version": "0.4.22", "version": "0.4.23",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2647,7 +2521,7 @@
}, },
{ {
"name": "wasm-bindgen-macro", "name": "wasm-bindgen-macro",
"version": "0.2.72", "version": "0.2.73",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2656,7 +2530,7 @@
}, },
{ {
"name": "wasm-bindgen-macro-support", "name": "wasm-bindgen-macro-support",
"version": "0.2.72", "version": "0.2.73",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2665,7 +2539,7 @@
}, },
{ {
"name": "wasm-bindgen-shared", "name": "wasm-bindgen-shared",
"version": "0.2.72", "version": "0.2.73",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2674,7 +2548,7 @@
}, },
{ {
"name": "web-sys", "name": "web-sys",
"version": "0.3.49", "version": "0.3.50",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2692,7 +2566,7 @@
}, },
{ {
"name": "webpki-roots", "name": "webpki-roots",
"version": "0.20.0", "version": "0.21.1",
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>", "authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
"repository": "https://github.com/ctz/webpki-roots", "repository": "https://github.com/ctz/webpki-roots",
"license": "MPL-2.0", "license": "MPL-2.0",
@ -2701,22 +2575,13 @@
}, },
{ {
"name": "which", "name": "which",
"version": "4.0.2", "version": "4.1.0",
"authors": "Harry Fei <tiziyuanfang@gmail.com>", "authors": "Harry Fei <tiziyuanfang@gmail.com>",
"repository": "https://github.com/harryfei/which-rs.git", "repository": "https://github.com/harryfei/which-rs.git",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms." "description": "A Rust equivalent of Unix command \"which\". Locate installed executable in cross platforms."
}, },
{
"name": "winapi",
"version": "0.2.8",
"authors": "Peter Atashian <retep998@gmail.com>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Types and constants for WinAPI bindings. See README for list of crates providing function bindings."
},
{ {
"name": "winapi", "name": "winapi",
"version": "0.3.9", "version": "0.3.9",
@ -2726,15 +2591,6 @@
"license_file": null, "license_file": null,
"description": "Raw FFI bindings for all of Windows API." "description": "Raw FFI bindings for all of Windows API."
}, },
{
"name": "winapi-build",
"version": "0.1.1",
"authors": "Peter Atashian <retep998@gmail.com>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Common code for build.rs in WinAPI -sys crates."
},
{ {
"name": "winapi-i686-pc-windows-gnu", "name": "winapi-i686-pc-windows-gnu",
"version": "0.4.0", "version": "0.4.0",
@ -2771,15 +2627,6 @@
"license_file": null, "license_file": null,
"description": "Rust bindings to MS Windows Registry API" "description": "Rust bindings to MS Windows Registry API"
}, },
{
"name": "ws2_32-sys",
"version": "0.2.1",
"authors": "Peter Atashian <retep998@gmail.com>",
"repository": "https://github.com/retep998/winapi-rs",
"license": "MIT",
"license_file": null,
"description": "Contains function definitions for the Windows API library ws2_32. See winapi for types and constants."
},
{ {
"name": "wyz", "name": "wyz",
"version": "0.2.0", "version": "0.2.0",
@ -2800,9 +2647,9 @@
}, },
{ {
"name": "zip", "name": "zip",
"version": "0.5.6", "version": "0.5.12",
"authors": "Mathijs van de Nes <git@mathijs.vd-nes.nl>", "authors": "Mathijs van de Nes <git@mathijs.vd-nes.nl>|Marli Frost <marli@frost.red>|Ryan Levick <ryan.levick@gmail.com>",
"repository": "https://github.com/mvdnes/zip-rs.git", "repository": "https://github.com/zip-rs/zip.git",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "Library to support the reading and writing of zip files." "description": "Library to support the reading and writing of zip files."

View file

@ -63,7 +63,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__regex__1_4_5//:regex", "@raze__regex__1_4_6//:regex",
], ],
) )

View file

@ -39,8 +39,6 @@ rust_library(
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"array-sizes-33-128", "array-sizes-33-128",
"default",
"std",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__askama_shared__0_11_1//:askama_shared", "@raze__askama_shared__0_11_1//:askama_shared",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -60,10 +60,10 @@ rust_library(
"@raze__nom__6_1_2//:nom", "@raze__nom__6_1_2//:nom",
"@raze__num_traits__0_2_14//:num_traits", "@raze__num_traits__0_2_14//:num_traits",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__serde__1_0_125//:serde", "@raze__serde__1_0_125//:serde",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
"@raze__toml__0_5_8//:toml", "@raze__toml__0_5_8//:toml",
], ],
) )

View file

@ -37,15 +37,11 @@ licenses([
rust_library( rust_library(
name = "async_compression", name = "async_compression",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
aliases = {
"@raze__bytes__0_5_6//:bytes": "bytes_05",
},
crate_features = [ crate_features = [
"bytes-05",
"default", "default",
"flate2", "flate2",
"gzip", "gzip",
"stream", "tokio",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
@ -58,14 +54,14 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.7", version = "0.3.8",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes",
"@raze__flate2__1_0_20//:flate2", "@raze__flate2__1_0_20//:flate2",
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
"@raze__pin_project_lite__0_2_6//:pin_project_lite", "@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__tokio__1_5_0//:tokio",
], ],
) )

View file

@ -53,7 +53,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.48", version = "0.1.50",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -75,13 +75,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.48", version = "0.1.50",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":async_trait_build_script", ":async_trait_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

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

View file

@ -1,67 +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 "benchmarks" with type "bench" omitted
# Unsupported target "make_tables" with type "example" omitted
rust_library(
name = "base64",
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.12.3",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "decode" with type "test" omitted
# Unsupported target "encode" with type "test" omitted
# Unsupported target "helpers" with type "test" omitted
# Unsupported target "tests" with type "test" omitted

View file

@ -1,58 +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"
])
# Generated Targets
rust_library(
name = "blake2b_simd",
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.5.11",
# buildifier: leave-alone
deps = [
"@raze__arrayref__0_3_6//:arrayref",
"@raze__arrayvec__0_5_2//:arrayvec",
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
],
)

View file

@ -1,77 +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"
])
# Generated Targets
# Unsupported target "bytes" with type "bench" omitted
rust_library(
name = "bytes",
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.12",
# buildifier: leave-alone
deps = [
"@raze__byteorder__1_4_3//:byteorder",
"@raze__iovec__0_1_4//:iovec",
],
)
# Unsupported target "test_buf" with type "test" omitted
# Unsupported target "test_buf_mut" with type "test" omitted
# Unsupported target "test_bytes" with type "test" omitted
# Unsupported target "test_chain" with type "test" omitted
# Unsupported target "test_debug" with type "test" omitted
# Unsupported target "test_from_buf" with type "test" omitted
# Unsupported target "test_iter" with type "test" omitted
# Unsupported target "test_reader" with type "test" omitted
# Unsupported target "test_serde" with type "test" omitted
# Unsupported target "test_take" with type "test" omitted

View file

@ -1,83 +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"
])
# Generated Targets
# Unsupported target "buf" with type "bench" omitted
# Unsupported target "bytes" with type "bench" omitted
# Unsupported target "bytes_mut" with type "bench" omitted
rust_library(
name = "bytes",
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.5.6",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "test_buf" with type "test" omitted
# Unsupported target "test_buf_mut" with type "test" omitted
# Unsupported target "test_bytes" with type "test" omitted
# Unsupported target "test_bytes_odd_alloc" with type "test" omitted
# Unsupported target "test_bytes_vec_alloc" with type "test" omitted
# Unsupported target "test_chain" with type "test" omitted
# Unsupported target "test_debug" with type "test" omitted
# Unsupported target "test_iter" with type "test" omitted
# Unsupported target "test_reader" with type "test" omitted
# Unsupported target "test_serde" with type "test" omitted
# Unsupported target "test_take" with type "test" omitted

View file

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

View file

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

View file

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

View file

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

View file

@ -42,7 +42,6 @@ cargo_build_script(
build_script_env = { build_script_env = {
}, },
crate_features = [ crate_features = [
"default",
"lazy_static", "lazy_static",
"std", "std",
], ],
@ -69,7 +68,6 @@ rust_library(
name = "crossbeam_utils", name = "crossbeam_utils",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"default",
"lazy_static", "lazy_static",
"std", "std",
], ],

View file

@ -52,6 +52,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -50,9 +50,9 @@ rust_library(
version = "2.2.0", version = "2.2.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -50,6 +50,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__0_1_10//:cfg_if",
"@raze__dirs_sys__0_3_5//:dirs_sys", "@raze__dirs_sys__0_3_6//:dirs_sys",
], ],
) )

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.5", version = "0.3.6",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
] + selects.with_or({ ] + selects.with_or({
@ -60,7 +60,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

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", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# Unsupported target "bench" with type "bench" omitted
rust_library(
name = "dtoa",
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.7",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "test" with type "test" omitted

View file

@ -57,7 +57,7 @@ rust_library(
"@raze__atty__0_2_14//:atty", "@raze__atty__0_2_14//:atty",
"@raze__humantime__2_1_0//:humantime", "@raze__humantime__2_1_0//:humantime",
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__regex__1_4_5//:regex", "@raze__regex__1_4_6//:regex",
"@raze__termcolor__1_1_2//:termcolor", "@raze__termcolor__1_1_2//:termcolor",
], ],
) )

View file

@ -98,7 +98,7 @@ rust_library(
deps = [ deps = [
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__crc32fast__1_2_1//:crc32fast", "@raze__crc32fast__1_2_1//:crc32fast",
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
"@raze__miniz_oxide__0_4_4//:miniz_oxide", "@raze__miniz_oxide__0_4_4//:miniz_oxide",
], ],
) )

View file

@ -49,7 +49,7 @@ rust_library(
version = "0.15.0", version = "0.15.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__fluent_bundle__0_15_0//:fluent_bundle", "@raze__fluent_bundle__0_15_1//:fluent_bundle",
"@raze__unic_langid__0_9_0//:unic_langid", "@raze__unic_langid__0_9_0//:unic_langid",
], ],
) )

View file

@ -51,14 +51,14 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.15.0", version = "0.15.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__fluent_langneg__0_13_0//:fluent_langneg", "@raze__fluent_langneg__0_13_0//:fluent_langneg",
"@raze__fluent_syntax__0_11_0//:fluent_syntax", "@raze__fluent_syntax__0_11_0//:fluent_syntax",
"@raze__intl_memoizer__0_5_1//:intl_memoizer", "@raze__intl_memoizer__0_5_1//:intl_memoizer",
"@raze__intl_pluralrules__7_0_1//:intl_pluralrules", "@raze__intl_pluralrules__7_0_1//:intl_pluralrules",
"@raze__ouroboros__0_8_3//:ouroboros", "@raze__ouroboros__0_9_1//:ouroboros",
"@raze__rustc_hash__1_1_0//:rustc_hash", "@raze__rustc_hash__1_1_0//:rustc_hash",
"@raze__smallvec__1_6_1//:smallvec", "@raze__smallvec__1_6_1//:smallvec",
"@raze__unic_langid__0_9_0//:unic_langid", "@raze__unic_langid__0_9_0//:unic_langid",

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", # BSD-3-Clause from expression "BSD-3-Clause"
])
# Generated Targets
rust_library(
name = "fuchsia_zircon",
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.3.3",
# buildifier: leave-alone
deps = [
"@raze__bitflags__1_2_1//:bitflags",
"@raze__fuchsia_zircon_sys__0_3_3//:fuchsia_zircon_sys",
],
)

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", # BSD-3-Clause from expression "BSD-3-Clause"
])
# Generated Targets
# Unsupported target "hello" with type "example" omitted
rust_library(
name = "fuchsia_zircon_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.3.3",
# buildifier: leave-alone
deps = [
],
)

View file

@ -52,52 +52,52 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.13", version = "0.3.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_13//:futures_channel", "@raze__futures_channel__0_3_14//:futures_channel",
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_executor__0_3_13//:futures_executor", "@raze__futures_executor__0_3_14//:futures_executor",
"@raze__futures_io__0_3_13//:futures_io", "@raze__futures_io__0_3_14//:futures_io",
"@raze__futures_sink__0_3_13//:futures_sink", "@raze__futures_sink__0_3_14//:futures_sink",
"@raze__futures_task__0_3_13//:futures_task", "@raze__futures_task__0_3_14//:futures_task",
"@raze__futures_util__0_3_13//:futures_util", "@raze__futures_util__0_3_14//:futures_util",
], ],
) )
# Unsupported target "_require_features" with type "test" omitted # Unsupported target "_require_features" with type "test" omitted
# Unsupported target "abortable" with type "test" omitted
# Unsupported target "arc_wake" with type "test" omitted
# Unsupported target "async_await_macros" with type "test" omitted # Unsupported target "async_await_macros" with type "test" omitted
# Unsupported target "atomic_waker" with type "test" omitted
# Unsupported target "auto_traits" with type "test" omitted # Unsupported target "auto_traits" with type "test" omitted
# Unsupported target "basic_combinators" with type "test" omitted
# Unsupported target "buffer_unordered" with type "test" omitted
# Unsupported target "compat" with type "test" omitted # Unsupported target "compat" with type "test" omitted
# Unsupported target "eager_drop" with type "test" omitted # Unsupported target "eager_drop" with type "test" omitted
# Unsupported target "eventual" with type "test" omitted # Unsupported target "eventual" with type "test" omitted
# Unsupported target "fuse" with type "test" omitted # Unsupported target "future_abortable" with type "test" omitted
# Unsupported target "future_basic_combinators" with type "test" omitted
# Unsupported target "future_fuse" with type "test" omitted
# Unsupported target "future_inspect" with type "test" omitted
# Unsupported target "future_join_all" with type "test" omitted
# Unsupported target "future_obj" with type "test" omitted # Unsupported target "future_obj" with type "test" omitted
# Unsupported target "future_select_all" with type "test" omitted
# Unsupported target "future_select_ok" with type "test" omitted
# Unsupported target "future_shared" with type "test" omitted
# Unsupported target "future_try_flatten_stream" with type "test" omitted # Unsupported target "future_try_flatten_stream" with type "test" omitted
# Unsupported target "futures_ordered" with type "test" omitted # Unsupported target "future_try_join_all" with type "test" omitted
# Unsupported target "futures_unordered" with type "test" omitted
# Unsupported target "inspect" with type "test" omitted
# Unsupported target "io_buf_reader" with type "test" omitted # Unsupported target "io_buf_reader" with type "test" omitted
@ -123,12 +123,10 @@ rust_library(
# Unsupported target "io_write" with type "test" omitted # Unsupported target "io_write" with type "test" omitted
# Unsupported target "join_all" with type "test" omitted # Unsupported target "lock_mutex" with type "test" omitted
# Unsupported target "macro_comma_support" with type "test" omitted # Unsupported target "macro_comma_support" with type "test" omitted
# Unsupported target "mutex" with type "test" omitted
# Unsupported target "object_safety" with type "test" omitted # Unsupported target "object_safety" with type "test" omitted
# Unsupported target "oneshot" with type "test" omitted # Unsupported target "oneshot" with type "test" omitted
@ -137,22 +135,20 @@ rust_library(
# Unsupported target "recurse" with type "test" omitted # Unsupported target "recurse" with type "test" omitted
# Unsupported target "select_all" with type "test" omitted
# Unsupported target "select_ok" with type "test" omitted
# Unsupported target "shared" with type "test" omitted
# Unsupported target "sink" with type "test" omitted # Unsupported target "sink" with type "test" omitted
# Unsupported target "sink_fanout" with type "test" omitted # Unsupported target "sink_fanout" with type "test" omitted
# Unsupported target "split" with type "test" omitted
# Unsupported target "stream" with type "test" omitted # Unsupported target "stream" with type "test" omitted
# Unsupported target "stream_buffer_unordered" with type "test" omitted
# Unsupported target "stream_catch_unwind" with type "test" omitted # Unsupported target "stream_catch_unwind" with type "test" omitted
# Unsupported target "stream_futures_ordered" with type "test" omitted
# Unsupported target "stream_futures_unordered" with type "test" omitted
# Unsupported target "stream_into_async_read" with type "test" omitted # Unsupported target "stream_into_async_read" with type "test" omitted
# Unsupported target "stream_peekable" with type "test" omitted # Unsupported target "stream_peekable" with type "test" omitted
@ -161,10 +157,14 @@ rust_library(
# Unsupported target "stream_select_next_some" with type "test" omitted # Unsupported target "stream_select_next_some" with type "test" omitted
# Unsupported target "stream_split" with type "test" omitted
# Unsupported target "stream_try_stream" with type "test" omitted
# Unsupported target "stream_unfold" with type "test" omitted
# Unsupported target "task_arc_wake" with type "test" omitted
# Unsupported target "task_atomic_waker" with type "test" omitted
# Unsupported target "try_join" with type "test" omitted # Unsupported target "try_join" with type "test" omitted
# Unsupported target "try_join_all" with type "test" omitted
# Unsupported target "try_stream" with type "test" omitted
# Unsupported target "unfold" with type "test" omitted

View file

@ -53,11 +53,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.13", version = "0.3.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_sink__0_3_13//:futures_sink", "@raze__futures_sink__0_3_14//:futures_sink",
], ],
) )

View file

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

View file

@ -49,12 +49,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.13", version = "0.3.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_task__0_3_13//:futures_task", "@raze__futures_task__0_3_14//:futures_task",
"@raze__futures_util__0_3_13//:futures_util", "@raze__futures_util__0_3_14//:futures_util",
], ],
) )

View file

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

View file

@ -49,11 +49,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.13", version = "0.3.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

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

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.13", version = "0.3.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -58,7 +58,7 @@ rust_library(
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__futures_macro__0_3_13//:futures_macro", "@raze__futures_macro__0_3_14//:futures_macro",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack", "@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
], ],
rustc_flags = [ rustc_flags = [
@ -68,18 +68,18 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.13", version = "0.3.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_13//:futures_channel", "@raze__futures_channel__0_3_14//:futures_channel",
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_io__0_3_13//:futures_io", "@raze__futures_io__0_3_14//:futures_io",
"@raze__futures_sink__0_3_13//:futures_sink", "@raze__futures_sink__0_3_14//:futures_sink",
"@raze__futures_task__0_3_13//:futures_task", "@raze__futures_task__0_3_14//:futures_task",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
"@raze__pin_project_lite__0_2_6//:pin_project_lite", "@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__pin_utils__0_1_0//:pin_utils", "@raze__pin_utils__0_1_0//:pin_utils",
"@raze__proc_macro_nested__0_1_6//:proc_macro_nested", "@raze__proc_macro_nested__0_1_6//:proc_macro_nested",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_3//:slab",
], ],
) )

View file

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

View file

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

View file

@ -49,8 +49,8 @@ rust_library(
version = "0.1.2", version = "0.1.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -52,20 +52,19 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.7", version = "0.3.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__1_0_1//:bytes",
"@raze__fnv__1_0_7//:fnv", "@raze__fnv__1_0_7//:fnv",
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_sink__0_3_13//:futures_sink", "@raze__futures_sink__0_3_14//:futures_sink",
"@raze__futures_util__0_3_13//:futures_util", "@raze__futures_util__0_3_14//:futures_util",
"@raze__http__0_2_3//:http", "@raze__http__0_2_4//:http",
"@raze__indexmap__1_6_2//:indexmap", "@raze__indexmap__1_6_2//:indexmap",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_3//:slab",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__1_5_0//:tokio",
"@raze__tokio_util__0_3_1//:tokio_util", "@raze__tokio_util__0_6_6//:tokio_util",
"@raze__tracing__0_1_25//:tracing", "@raze__tracing__0_1_25//:tracing",
"@raze__tracing_futures__0_2_5//:tracing_futures",
], ],
) )

View file

@ -50,6 +50,6 @@ rust_library(
version = "0.1.18", version = "0.1.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
], ],
) )

View file

@ -56,9 +56,9 @@ cargo_build_script(
version = "0.25.1", version = "0.25.1",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )
@ -96,6 +96,6 @@ rust_library(
":html5ever_build_script", ":html5ever_build_script",
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__mac__0_1_1//:mac", "@raze__mac__0_1_1//:mac",
"@raze__markup5ever__0_10_0//:markup5ever", "@raze__markup5ever__0_10_1//:markup5ever",
], ],
) )

View file

@ -36,6 +36,8 @@ licenses([
# Unsupported target "header_value" with type "bench" omitted # Unsupported target "header_value" with type "bench" omitted
# Unsupported target "method" with type "bench" omitted
# Unsupported target "uri" with type "bench" omitted # Unsupported target "uri" with type "bench" omitted
rust_library( rust_library(
@ -54,7 +56,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.3", version = "0.2.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__1_0_1//:bytes", "@raze__bytes__1_0_1//:bytes",

View file

@ -46,11 +46,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.1", version = "0.4.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_3//:http", "@raze__http__0_2_4//:http",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
], ],
) )

View file

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

View file

@ -38,7 +38,7 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -46,7 +46,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.2", version = "1.0.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -40,6 +40,8 @@ licenses([
# Unsupported target "server" with type "bench" omitted # Unsupported target "server" with type "bench" omitted
# Unsupported target "hyper" with type "cdylib" omitted
# Unsupported target "client" with type "example" omitted # Unsupported target "client" with type "example" omitted
# Unsupported target "client_json" with type "example" omitted # Unsupported target "client_json" with type "example" omitted
@ -78,6 +80,12 @@ rust_library(
aliases = { aliases = {
}, },
crate_features = [ crate_features = [
"client",
"default",
"h2",
"http1",
"http2",
"runtime",
"socket2", "socket2",
"tcp", "tcp",
], ],
@ -92,22 +100,22 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.13.10", version = "0.14.7",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__1_0_1//:bytes",
"@raze__futures_channel__0_3_13//:futures_channel", "@raze__futures_channel__0_3_14//:futures_channel",
"@raze__futures_core__0_3_13//:futures_core", "@raze__futures_core__0_3_14//:futures_core",
"@raze__futures_util__0_3_13//:futures_util", "@raze__futures_util__0_3_14//:futures_util",
"@raze__h2__0_2_7//:h2", "@raze__h2__0_3_2//:h2",
"@raze__http__0_2_3//:http", "@raze__http__0_2_4//:http",
"@raze__http_body__0_3_1//:http_body", "@raze__http_body__0_4_1//:http_body",
"@raze__httparse__1_3_5//:httparse", "@raze__httparse__1_4_0//:httparse",
"@raze__httpdate__0_3_2//:httpdate", "@raze__httpdate__1_0_0//:httpdate",
"@raze__itoa__0_4_7//:itoa", "@raze__itoa__0_4_7//:itoa",
"@raze__pin_project__1_0_6//:pin_project", "@raze__pin_project__1_0_7//:pin_project",
"@raze__socket2__0_3_19//:socket2", "@raze__socket2__0_4_0//:socket2",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__1_5_0//:tokio",
"@raze__tower_service__0_3_1//:tower_service", "@raze__tower_service__0_3_1//:tower_service",
"@raze__tracing__0_1_25//:tracing", "@raze__tracing__0_1_25//:tracing",
"@raze__want__0_3_0//:want", "@raze__want__0_3_0//:want",
@ -123,6 +131,8 @@ rust_library(
}), }),
) )
# Unsupported target "hyper" with type "staticlib" omitted
# Unsupported target "client" with type "test" omitted # Unsupported target "client" with type "test" omitted
# Unsupported target "integration" with type "test" omitted # Unsupported target "integration" with type "test" omitted

View file

@ -50,16 +50,15 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.21.0", version = "0.22.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__futures_util__0_3_14//:futures_util",
"@raze__futures_util__0_3_13//:futures_util", "@raze__hyper__0_14_7//:hyper",
"@raze__hyper__0_13_10//:hyper",
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__rustls__0_18_1//:rustls", "@raze__rustls__0_19_1//:rustls",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__1_5_0//:tokio",
"@raze__tokio_rustls__0_14_1//:tokio_rustls", "@raze__tokio_rustls__0_22_0//:tokio_rustls",
"@raze__webpki__0_21_4//:webpki", "@raze__webpki__0_21_4//:webpki",
], ],
) )

View file

@ -48,12 +48,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.1", version = "0.4.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__hyper__0_14_7//:hyper",
"@raze__hyper__0_13_10//:hyper", "@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__1_5_0//:tokio",
"@raze__tokio_io_timeout__0_4_0//:tokio_io_timeout", "@raze__tokio_io_timeout__1_1_1//:tokio_io_timeout",
], ],
) )

View file

@ -48,13 +48,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.3", version = "0.5.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__1_0_1//:bytes",
"@raze__hyper__0_13_10//:hyper", "@raze__hyper__0_14_7//:hyper",
"@raze__native_tls__0_2_7//:native_tls", "@raze__native_tls__0_2_7//:native_tls",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__1_5_0//:tokio",
"@raze__tokio_tls__0_3_1//:tokio_tls", "@raze__tokio_native_tls__0_3_0//:tokio_native_tls",
], ],
) )

View file

@ -48,11 +48,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.2", version = "0.2.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__matches__0_1_8//:matches", "@raze__matches__0_1_8//:matches",
"@raze__unicode_bidi__0_3_4//:unicode_bidi", "@raze__unicode_bidi__0_3_5//:unicode_bidi",
"@raze__unicode_normalization__0_1_17//:unicode_normalization", "@raze__unicode_normalization__0_1_17//:unicode_normalization",
], ],
) )

View file

@ -42,6 +42,7 @@ cargo_build_script(
build_script_env = { build_script_env = {
}, },
crate_features = [ crate_features = [
"std",
], ],
crate_root = "build.rs", crate_root = "build.rs",
data = glob(["**"]), data = glob(["**"]),
@ -68,6 +69,7 @@ rust_library(
name = "indexmap", name = "indexmap",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"std",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",

View file

@ -52,9 +52,9 @@ rust_library(
version = "0.3.6", version = "0.3.6",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
"@raze__unindent__0_1_7//:unindent", "@raze__unindent__0_1_7//:unindent",
], ],
) )

View file

@ -49,8 +49,8 @@ rust_library(
version = "0.1.10", version = "0.1.10",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -1,67 +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 = "iovec",
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 = "0.1.4",
# buildifier: leave-alone
deps = [
] + selects.with_or({
# cfg(unix)
(
"@rules_rust//rust/platform:aarch64-apple-ios",
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-apple-darwin",
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_91//:libc",
],
"//conditions:default": [],
}),
)

View file

@ -46,10 +46,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.49", version = "0.3.50",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__wasm_bindgen__0_2_72//:wasm_bindgen", "@raze__wasm_bindgen__0_2_73//:wasm_bindgen",
], ],
) )

View file

@ -1,94 +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"
])
# Generated Targets
# buildifier: disable=out-of-order-load
# buildifier: disable=load-on-top
load(
"@rules_rust//cargo:cargo_build_script.bzl",
"cargo_build_script",
)
cargo_build_script(
name = "kernel32_sys_build_script",
srcs = glob(["**/*.rs"]),
build_script_env = {
},
crate_features = [
],
crate_root = "build.rs",
data = glob(["**"]),
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.2.2",
visibility = ["//visibility:private"],
deps = [
"@raze__winapi_build__0_1_1//:winapi_build",
],
)
alias(
name = "kernel32_sys",
actual = ":kernel32",
tags = [
"cargo-raze",
"manual",
],
)
rust_library(
name = "kernel32",
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.2.2",
# buildifier: leave-alone
deps = [
":kernel32_sys_build_script",
"@raze__winapi__0_2_8//:winapi",
],
)

View file

@ -60,7 +60,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.7.5", version = "0.7.6",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -89,7 +89,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.7.5", version = "0.7.6",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":lexical_core_build_script", ":lexical_core_build_script",

View file

@ -42,7 +42,6 @@ cargo_build_script(
build_script_env = { build_script_env = {
}, },
crate_features = [ crate_features = [
"align",
"default", "default",
"std", "std",
], ],
@ -56,7 +55,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.91", version = "0.2.94",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -66,7 +65,6 @@ rust_library(
name = "libc", name = "libc",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"align",
"default", "default",
"std", "std",
], ],
@ -81,7 +79,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.91", version = "0.2.94",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":libc_build_script", ":libc_build_script",

View file

@ -73,7 +73,7 @@ cargo_build_script(
( (
"@rules_rust//rust/platform:x86_64-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [ ): [
"@raze__vcpkg__0_2_11//:vcpkg", "@raze__vcpkg__0_2_12//:vcpkg",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

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

View file

@ -46,9 +46,6 @@ cargo_build_script(
crate_root = "build.rs", crate_root = "build.rs",
data = glob(["**"]), data = glob(["**"]),
edition = "2018", edition = "2018",
proc_macro_deps = [
"@raze__serde_derive__1_0_125//:serde_derive",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -56,12 +53,10 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.10.0", version = "0.10.1",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__phf_codegen__0_8_0//:phf_codegen", "@raze__phf_codegen__0_8_0//:phf_codegen",
"@raze__serde__1_0_125//:serde",
"@raze__serde_json__1_0_64//:serde_json",
"@raze__string_cache_codegen__0_5_1//:string_cache_codegen", "@raze__string_cache_codegen__0_5_1//:string_cache_codegen",
], ],
) )
@ -82,7 +77,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.10.0", version = "0.10.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":markup5ever_build_script", ":markup5ever_build_script",

View file

@ -58,7 +58,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__html5ever__0_25_1//:html5ever", "@raze__html5ever__0_25_1//:html5ever",
"@raze__markup5ever__0_10_0//:markup5ever", "@raze__markup5ever__0_10_1//:markup5ever",
"@raze__tendril__0_4_2//:tendril", "@raze__tendril__0_4_2//:tendril",
"@raze__xml5ever__0_16_1//:xml5ever", "@raze__xml5ever__0_16_1//:xml5ever",
], ],

View file

@ -42,8 +42,6 @@ cargo_build_script(
build_script_env = { build_script_env = {
}, },
crate_features = [ crate_features = [
"default",
"rev-mappings",
], ],
crate_root = "build.rs", crate_root = "build.rs",
data = glob(["**"]), data = glob(["**"]),
@ -70,8 +68,6 @@ rust_library(
name = "mime_guess", name = "mime_guess",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"default",
"rev-mappings",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",

View file

@ -30,6 +30,10 @@ licenses([
# Generated Targets # Generated Targets
# Unsupported target "tcp_server" with type "example" omitted
# Unsupported target "udp_server" with type "example" omitted
rust_library( rust_library(
name = "mio", name = "mio",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
@ -37,12 +41,18 @@ rust_library(
}, },
crate_features = [ crate_features = [
"default", "default",
"with-deprecated", "net",
"os-ext",
"os-poll",
"os-util",
"tcp",
"udp",
"uds",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -50,14 +60,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.6.23", version = "0.7.11",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__0_1_10//:cfg_if",
"@raze__iovec__0_1_4//:iovec",
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__net2__0_2_37//:net2",
"@raze__slab__0_4_2//:slab",
] + selects.with_or({ ] + selects.with_or({
# cfg(unix) # cfg(unix)
( (
@ -67,7 +73,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({
@ -75,12 +81,10 @@ rust_library(
( (
"@rules_rust//rust/platform:x86_64-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [ ): [
"@raze__kernel32_sys__0_2_2//:kernel32_sys", "@raze__miow__0_3_7//:miow",
"@raze__miow__0_2_2//:miow", "@raze__ntapi__0_3_6//:ntapi",
"@raze__winapi__0_2_8//:winapi", "@raze__winapi__0_3_9//:winapi",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),
) )
# Unsupported target "test" with type "test" omitted

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", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "miow",
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.2.2",
# buildifier: leave-alone
deps = [
"@raze__kernel32_sys__0_2_2//:kernel32_sys",
"@raze__net2__0_2_37//:net2",
"@raze__winapi__0_2_8//:winapi",
"@raze__ws2_32_sys__0_2_1//:ws2_32_sys",
],
)

54
cargo/remote/BUILD.miow-0.3.7.bazel vendored Normal file
View file

@ -0,0 +1,54 @@
"""
@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 = "miow",
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.3.7",
# buildifier: leave-alone
deps = [
"@raze__winapi__0_3_9//:winapi",
],
)

View file

@ -119,7 +119,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-apple-ios",
): [ ): [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
"@raze__security_framework__2_2_0//:security_framework", "@raze__security_framework__2_2_0//:security_framework",
"@raze__security_framework_sys__2_2_0//:security_framework_sys", "@raze__security_framework_sys__2_2_0//:security_framework_sys",
"@raze__tempfile__3_2_0//:tempfile", "@raze__tempfile__3_2_0//:tempfile",

View file

@ -1,78 +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 = "net2",
srcs = glob(["**/*.rs"]),
aliases = {
},
crate_features = [
"default",
"duration",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.2.37",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__0_1_10//:cfg_if",
] + selects.with_or({
# cfg(any(target_os = "redox", unix, target_os = "wasi"))
(
"@rules_rust//rust/platform:aarch64-apple-ios",
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-apple-darwin",
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__libc__0_2_91//:libc",
],
"//conditions:default": [],
}) + selects.with_or({
# cfg(windows)
(
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [
"@raze__winapi__0_3_9//:winapi",
],
"//conditions:default": [],
}),
)

View file

@ -116,7 +116,7 @@ rust_library(
":nom_build_script", ":nom_build_script",
"@raze__bitvec__0_19_5//:bitvec", "@raze__bitvec__0_19_5//:bitvec",
"@raze__funty__1_1_0//:funty", "@raze__funty__1_1_0//:funty",
"@raze__lexical_core__0_7_5//:lexical_core", "@raze__lexical_core__0_7_6//:lexical_core",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
], ],
) )

View file

@ -25,7 +25,7 @@ package(default_visibility = [
]) ])
licenses([ licenses([
"notice", # MIT from expression "MIT" "notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
]) ])
# Generated Targets # Generated Targets
@ -37,15 +37,17 @@ load(
) )
cargo_build_script( cargo_build_script(
name = "ws2_32_sys_build_script", name = "ntapi_build_script",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
build_script_env = { build_script_env = {
}, },
crate_features = [ crate_features = [
"default",
"user",
], ],
crate_root = "build.rs", crate_root = "build.rs",
data = glob(["**"]), data = glob(["**"]),
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -53,31 +55,23 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.1", version = "0.3.6",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__winapi_build__0_1_1//:winapi_build",
],
)
alias(
name = "ws2_32_sys",
actual = ":ws2_32",
tags = [
"cargo-raze",
"manual",
], ],
) )
rust_library( rust_library(
name = "ws2_32", name = "ntapi",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"default",
"user",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -85,10 +79,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.1", version = "0.3.6",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":ws2_32_sys_build_script", ":ntapi_build_script",
"@raze__winapi__0_2_8//:winapi", "@raze__winapi__0_3_9//:winapi",
], ],
) )

View file

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

View file

@ -51,9 +51,9 @@ rust_library(
version = "0.5.1", version = "0.5.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__proc_macro_crate__0_1_5//:proc_macro_crate", "@raze__proc_macro_crate__0_1_5//:proc_macro_crate",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -88,7 +88,7 @@ rust_library(
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__foreign_types__0_3_2//:foreign_types", "@raze__foreign_types__0_3_2//:foreign_types",
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
"@raze__once_cell__1_7_2//:once_cell", "@raze__once_cell__1_7_2//:once_cell",
"@raze__openssl_sys__0_9_61//:openssl_sys", "@raze__openssl_sys__0_9_61//:openssl_sys",
], ],

View file

@ -65,7 +65,7 @@ cargo_build_script(
( (
"@rules_rust//rust/platform:x86_64-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [ ): [
"@raze__vcpkg__0_2_11//:vcpkg", "@raze__vcpkg__0_2_12//:vcpkg",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),
@ -93,7 +93,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":openssl_sys_build_script", ":openssl_sys_build_script",
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
] + selects.with_or({ ] + selects.with_or({
# cfg(target_env = "msvc") # cfg(target_env = "msvc")
( (

View file

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

View file

@ -46,13 +46,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.3", version = "0.9.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__Inflector__0_11_4//:Inflector", "@raze__Inflector__0_11_4//:Inflector",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__proc_macro_error__1_0_4//:proc_macro_error", "@raze__proc_macro_error__1_0_4//:proc_macro_error",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -51,7 +51,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__instant__0_1_9//:instant", "@raze__instant__0_1_9//:instant",
"@raze__lock_api__0_4_2//:lock_api", "@raze__lock_api__0_4_3//:lock_api",
"@raze__parking_lot_core__0_8_3//:parking_lot_core", "@raze__parking_lot_core__0_8_3//:parking_lot_core",
], ],
) )

View file

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

View file

@ -56,9 +56,9 @@ rust_library(
deps = [ deps = [
"@raze__phf_generator__0_8_0//:phf_generator", "@raze__phf_generator__0_8_0//:phf_generator",
"@raze__phf_shared__0_8_0//:phf_shared", "@raze__phf_shared__0_8_0//:phf_shared",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -64,7 +64,7 @@ rust_library(
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__pin_project_internal__1_0_6//:pin_project_internal", "@raze__pin_project_internal__1_0_7//:pin_project_internal",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -73,7 +73,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.6", version = "1.0.7",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -46,11 +46,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.6", version = "1.0.7",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -1,61 +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
rust_library(
name = "pin_project_lite",
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.12",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "lint" with type "test" omitted
# Unsupported target "proper_unpin" with type "test" omitted
# Unsupported target "test" with type "test" omitted

View file

@ -1,59 +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 "benchmark" with type "bench" omitted
rust_library(
name = "podio",
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.7",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "bytes" with type "test" omitted
# Unsupported target "io" with type "test" omitted

View file

@ -89,9 +89,9 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":proc_macro_error_build_script", ":proc_macro_error_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -80,7 +80,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":proc_macro_error_attr_build_script", ":proc_macro_error_attr_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
], ],
) )

View file

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

View file

@ -56,7 +56,7 @@ cargo_build_script(
version = "0.7.0", version = "0.7.0",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__which__4_0_2//:which", "@raze__which__4_1_0//:which",
], ],
) )

View file

@ -51,8 +51,8 @@ rust_library(
deps = [ deps = [
"@raze__anyhow__1_0_40//:anyhow", "@raze__anyhow__1_0_40//:anyhow",
"@raze__itertools__0_9_0//:itertools", "@raze__itertools__0_9_0//:itertools",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -121,7 +121,7 @@ rust_library(
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__indoc__0_3_6//:indoc", "@raze__indoc__0_3_6//:indoc",
"@raze__inventory__0_1_10//:inventory", "@raze__inventory__0_1_10//:inventory",
"@raze__libc__0_2_91//:libc", "@raze__libc__0_2_94//:libc",
"@raze__parking_lot__0_11_1//:parking_lot", "@raze__parking_lot__0_11_1//:parking_lot",
"@raze__paste__0_1_18//:paste", "@raze__paste__0_1_18//:paste",
"@raze__unindent__0_1_7//:unindent", "@raze__unindent__0_1_7//:unindent",

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__pyo3_macros_backend__0_13_2//:pyo3_macros_backend", "@raze__pyo3_macros_backend__0_13_2//:pyo3_macros_backend",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -49,8 +49,8 @@ rust_library(
version = "0.13.2", version = "0.13.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_65//:syn", "@raze__syn__1_0_70//:syn",
], ],
) )

View file

@ -51,7 +51,7 @@ rust_library(
version = "1.0.9", version = "1.0.9",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_26//:proc_macro2",
], ],
) )

View file

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

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