mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
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:
parent
a639048a6b
commit
cf2613e869
167 changed files with 1524 additions and 2866 deletions
567
Cargo.lock
generated
567
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,19 +1,13 @@
|
|||
"""
|
||||
We currently need to manually maintain this file, so we can use
|
||||
ring on Linux, and native-tls on other platforms. We use ring on
|
||||
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.
|
||||
@generated
|
||||
cargo-raze crate build file.
|
||||
|
||||
Building openssl statically ourselves and linking it in would be
|
||||
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.
|
||||
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",
|
||||
|
@ -22,9 +16,6 @@ load(
|
|||
"rust_test",
|
||||
)
|
||||
|
||||
# buildifier: disable=load
|
||||
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||||
|
||||
package(default_visibility = [
|
||||
# Public for visibility by "@raze__crate__version//" targets.
|
||||
#
|
||||
|
@ -54,49 +45,27 @@ licenses([
|
|||
rust_library(
|
||||
name = "reqwest",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = selects.with_or({
|
||||
# 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",
|
||||
},
|
||||
}),
|
||||
aliases = {
|
||||
"@raze__native_tls__0_2_7//:native_tls": "native_tls_crate",
|
||||
},
|
||||
crate_features = [
|
||||
"__tls",
|
||||
"default-tls",
|
||||
"hyper-tls",
|
||||
"json",
|
||||
"mime_guess",
|
||||
"multipart",
|
||||
"native-tls",
|
||||
"native-tls-crate",
|
||||
"serde_json",
|
||||
"socks",
|
||||
"stream",
|
||||
"tokio-native-tls",
|
||||
"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_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
|
@ -105,16 +74,16 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.8",
|
||||
version = "0.11.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__http__0_2_3//:http",
|
||||
"@raze__hyper_timeout__0_3_1//:hyper_timeout",
|
||||
"@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_6_1//:serde_urlencoded",
|
||||
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
|
||||
"@raze__url__2_2_1//:url",
|
||||
] + selects.with_or({
|
||||
# cfg(not(target_arch = "wasm32"))
|
||||
|
@ -128,18 +97,21 @@ rust_library(
|
|||
): [
|
||||
"@raze__base64__0_13_0//:base64",
|
||||
"@raze__encoding_rs__0_8_28//:encoding_rs",
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_util__0_3_13//:futures_util",
|
||||
"@raze__http_body__0_3_1//:http_body",
|
||||
"@raze__hyper__0_13_10//:hyper",
|
||||
"@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_tls__0_5_0//:hyper_tls",
|
||||
"@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__native_tls__0_2_7//:native_tls",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__pin_project_lite__0_1_12//:pin_project_lite",
|
||||
"@raze__tokio__0_2_25//:tokio",
|
||||
"@raze__tokio_socks__0_3_0//:tokio_socks",
|
||||
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
"@raze__tokio_native_tls__0_3_0//:tokio_native_tls",
|
||||
"@raze__tokio_socks__0_5_1//:tokio_socks",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
|
@ -150,23 +122,6 @@ rust_library(
|
|||
"@raze__winreg__0_7_0//:winreg",
|
||||
],
|
||||
"//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 "timeouts" with type "test" omitted
|
||||
|
||||
# Unsupported target "wasm_simple" with type "test" omitted
|
150
cargo/BUILD.reqwest.rustls.bazel
Normal file
150
cargo/BUILD.reqwest.rustls.bazel
Normal 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
|
|
@ -1,10 +1,15 @@
|
|||
This folder integrates Rust crates.io fetching into Bazel.
|
||||
|
||||
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
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
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.
|
||||
|
||||
## 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.
|
||||
|
|
854
cargo/crates.bzl
854
cargo/crates.bzl
File diff suppressed because it is too large
Load diff
|
@ -154,7 +154,7 @@
|
|||
},
|
||||
{
|
||||
"name": "async-compression",
|
||||
"version": "0.3.7",
|
||||
"version": "0.3.8",
|
||||
"authors": "Wim Looman <wim@nemo157.com>|Allen Bui <fairingrey@gmail.com>",
|
||||
"repository": "https://github.com/Nemo157/async-compression",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -163,7 +163,7 @@
|
|||
},
|
||||
{
|
||||
"name": "async-trait",
|
||||
"version": "0.1.48",
|
||||
"version": "0.1.50",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/async-trait",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -188,15 +188,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.13.0",
|
||||
|
@ -224,15 +215,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.3.7",
|
||||
|
@ -260,24 +242,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "1.0.1",
|
||||
|
@ -370,7 +334,7 @@
|
|||
},
|
||||
{
|
||||
"name": "crossbeam-channel",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"authors": "The Crossbeam Project Developers",
|
||||
"repository": "https://github.com/crossbeam-rs/crossbeam",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -433,22 +397,13 @@
|
|||
},
|
||||
{
|
||||
"name": "dirs-sys",
|
||||
"version": "0.3.5",
|
||||
"version": "0.3.6",
|
||||
"authors": "Simon Ochsenreither <simon@ochsenreither.de>",
|
||||
"repository": "https://github.com/dirs-dev/dirs-sys-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"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",
|
||||
"version": "1.6.1",
|
||||
|
@ -523,7 +478,7 @@
|
|||
},
|
||||
{
|
||||
"name": "fluent-bundle",
|
||||
"version": "0.15.0",
|
||||
"version": "0.15.1",
|
||||
"authors": "Zibi Braniecki <gandalf@mozilla.com>|Staś Małolepszy <stas@mozilla.com>",
|
||||
"repository": "https://github.com/projectfluent/fluent-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -584,24 +539,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "1.1.0",
|
||||
|
@ -622,7 +559,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -631,7 +568,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-channel",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -640,7 +577,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-core",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -649,7 +586,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-executor",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -658,7 +595,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-io",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -667,7 +604,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-macro",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Taylor Cramer <cramertj@google.com>|Taiki Endo <te316e89@gmail.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -676,7 +613,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-sink",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -685,7 +622,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-task",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -694,7 +631,7 @@
|
|||
},
|
||||
{
|
||||
"name": "futures-util",
|
||||
"version": "0.3.13",
|
||||
"version": "0.3.14",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/rust-lang/futures-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -748,7 +685,7 @@
|
|||
},
|
||||
{
|
||||
"name": "h2",
|
||||
"version": "0.2.7",
|
||||
"version": "0.3.2",
|
||||
"authors": "Carl Lerche <me@carllerche.com>|Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/hyperium/h2",
|
||||
"license": "MIT",
|
||||
|
@ -820,7 +757,7 @@
|
|||
},
|
||||
{
|
||||
"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>",
|
||||
"repository": "https://github.com/hyperium/http",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -829,7 +766,7 @@
|
|||
},
|
||||
{
|
||||
"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>",
|
||||
"repository": "https://github.com/hyperium/http-body",
|
||||
"license": "MIT",
|
||||
|
@ -838,7 +775,7 @@
|
|||
},
|
||||
{
|
||||
"name": "httparse",
|
||||
"version": "1.3.5",
|
||||
"version": "1.4.0",
|
||||
"authors": "Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/seanmonstar/httparse",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -847,8 +784,8 @@
|
|||
},
|
||||
{
|
||||
"name": "httpdate",
|
||||
"version": "0.3.2",
|
||||
"authors": "Pyfisch <pyfisch@gmail.com>",
|
||||
"version": "1.0.0",
|
||||
"authors": "Pyfisch <pyfisch@posteo.org>",
|
||||
"repository": "https://github.com/pyfisch/httpdate",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
|
@ -874,7 +811,7 @@
|
|||
},
|
||||
{
|
||||
"name": "hyper",
|
||||
"version": "0.13.10",
|
||||
"version": "0.14.7",
|
||||
"authors": "Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/hyperium/hyper",
|
||||
"license": "MIT",
|
||||
|
@ -883,7 +820,7 @@
|
|||
},
|
||||
{
|
||||
"name": "hyper-rustls",
|
||||
"version": "0.21.0",
|
||||
"version": "0.22.1",
|
||||
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
|
||||
"repository": "https://github.com/ctz/hyper-rustls",
|
||||
"license": "Apache-2.0 OR ISC OR MIT",
|
||||
|
@ -892,7 +829,7 @@
|
|||
},
|
||||
{
|
||||
"name": "hyper-timeout",
|
||||
"version": "0.3.1",
|
||||
"version": "0.4.1",
|
||||
"authors": "Herman J. Radtke III <herman@hermanradtke.com>",
|
||||
"repository": "https://github.com/hjr3/hyper-timeout",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -901,7 +838,7 @@
|
|||
},
|
||||
{
|
||||
"name": "hyper-tls",
|
||||
"version": "0.4.3",
|
||||
"version": "0.5.0",
|
||||
"authors": "Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/hyperium/hyper-tls",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -910,7 +847,7 @@
|
|||
},
|
||||
{
|
||||
"name": "idna",
|
||||
"version": "0.2.2",
|
||||
"version": "0.2.3",
|
||||
"authors": "The rust-url developers",
|
||||
"repository": "https://github.com/servo/rust-url/",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -998,15 +935,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "2.3.0",
|
||||
|
@ -1036,22 +964,13 @@
|
|||
},
|
||||
{
|
||||
"name": "js-sys",
|
||||
"version": "0.3.49",
|
||||
"version": "0.3.50",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"version": "1.4.0",
|
||||
|
@ -1063,7 +982,7 @@
|
|||
},
|
||||
{
|
||||
"name": "lexical-core",
|
||||
"version": "0.7.5",
|
||||
"version": "0.7.6",
|
||||
"authors": "Alex Huszagh <ahuszagh@gmail.com>",
|
||||
"repository": "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1072,7 +991,7 @@
|
|||
},
|
||||
{
|
||||
"name": "libc",
|
||||
"version": "0.2.91",
|
||||
"version": "0.2.94",
|
||||
"authors": "The Rust Project Developers",
|
||||
"repository": "https://github.com/rust-lang/libc",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1090,7 +1009,7 @@
|
|||
},
|
||||
{
|
||||
"name": "lock_api",
|
||||
"version": "0.4.2",
|
||||
"version": "0.4.3",
|
||||
"authors": "Amanieu d'Antras <amanieu@gmail.com>",
|
||||
"repository": "https://github.com/Amanieu/parking_lot",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1126,7 +1045,7 @@
|
|||
},
|
||||
{
|
||||
"name": "markup5ever",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"authors": "The html5ever Project Developers",
|
||||
"repository": "https://github.com/servo/html5ever",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1189,8 +1108,8 @@
|
|||
},
|
||||
{
|
||||
"name": "mio",
|
||||
"version": "0.6.23",
|
||||
"authors": "Carl Lerche <me@carllerche.com>",
|
||||
"version": "0.7.11",
|
||||
"authors": "Carl Lerche <me@carllerche.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>|Tokio Contributors <team@tokio.rs>",
|
||||
"repository": "https://github.com/tokio-rs/mio",
|
||||
"license": "MIT",
|
||||
"license_file": null,
|
||||
|
@ -1198,9 +1117,9 @@
|
|||
},
|
||||
{
|
||||
"name": "miow",
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.7",
|
||||
"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_file": null,
|
||||
"description": "A zero overhead I/O library for Windows, focusing on IOCP and Async I/O abstractions."
|
||||
|
@ -1223,15 +1142,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "1.0.4",
|
||||
|
@ -1259,6 +1169,15 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.4.0",
|
||||
|
@ -1351,7 +1270,7 @@
|
|||
},
|
||||
{
|
||||
"name": "ouroboros",
|
||||
"version": "0.8.3",
|
||||
"version": "0.9.1",
|
||||
"authors": "Joshua Maros <joshua-maros@github.com>",
|
||||
"repository": "https://github.com/joshua-maros/ouroboros",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1360,7 +1279,7 @@
|
|||
},
|
||||
{
|
||||
"name": "ouroboros_macro",
|
||||
"version": "0.8.3",
|
||||
"version": "0.9.1",
|
||||
"authors": "Joshua Maros <joshua-maros@github.com>",
|
||||
"repository": "https://github.com/joshua-maros/ouroboros",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1468,7 +1387,7 @@
|
|||
},
|
||||
{
|
||||
"name": "pin-project",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"authors": "Taiki Endo <te316e89@gmail.com>",
|
||||
"repository": "https://github.com/taiki-e/pin-project",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1477,22 +1396,13 @@
|
|||
},
|
||||
{
|
||||
"name": "pin-project-internal",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"authors": "Taiki Endo <te316e89@gmail.com>",
|
||||
"repository": "https://github.com/taiki-e/pin-project",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.2.6",
|
||||
|
@ -1520,15 +1430,6 @@
|
|||
"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."
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"version": "0.2.10",
|
||||
|
@ -1594,7 +1495,7 @@
|
|||
},
|
||||
{
|
||||
"name": "proc-macro2",
|
||||
"version": "1.0.24",
|
||||
"version": "1.0.26",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>|David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/alexcrichton/proc-macro2",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1774,16 +1675,7 @@
|
|||
},
|
||||
{
|
||||
"name": "redox_syscall",
|
||||
"version": "0.1.57",
|
||||
"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",
|
||||
"version": "0.2.6",
|
||||
"authors": "Jeremy Soller <jackpot51@gmail.com>",
|
||||
"repository": "https://gitlab.redox-os.org/redox-os/syscall",
|
||||
"license": "MIT",
|
||||
|
@ -1792,7 +1684,7 @@
|
|||
},
|
||||
{
|
||||
"name": "redox_users",
|
||||
"version": "0.3.5",
|
||||
"version": "0.4.0",
|
||||
"authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>",
|
||||
"repository": "https://gitlab.redox-os.org/redox-os/users",
|
||||
"license": "MIT",
|
||||
|
@ -1801,7 +1693,7 @@
|
|||
},
|
||||
{
|
||||
"name": "regex",
|
||||
"version": "1.4.5",
|
||||
"version": "1.4.6",
|
||||
"authors": "The Rust Project Developers",
|
||||
"repository": "https://github.com/rust-lang/regex",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1828,7 +1720,7 @@
|
|||
},
|
||||
{
|
||||
"name": "reqwest",
|
||||
"version": "0.10.8",
|
||||
"version": "0.11.3",
|
||||
"authors": "Sean McArthur <sean@seanmonstar.com>",
|
||||
"repository": "https://github.com/seanmonstar/reqwest",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -1862,15 +1754,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "1.1.0",
|
||||
|
@ -1882,7 +1765,7 @@
|
|||
},
|
||||
{
|
||||
"name": "rustls",
|
||||
"version": "0.18.1",
|
||||
"version": "0.19.1",
|
||||
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
|
||||
"repository": "https://github.com/ctz/rustls",
|
||||
"license": "Apache-2.0 OR ISC OR MIT",
|
||||
|
@ -1918,7 +1801,7 @@
|
|||
},
|
||||
{
|
||||
"name": "sct",
|
||||
"version": "0.6.0",
|
||||
"version": "0.6.1",
|
||||
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
|
||||
"repository": "https://github.com/ctz/sct.rs",
|
||||
"license": "Apache-2.0 OR ISC OR MIT",
|
||||
|
@ -2008,7 +1891,7 @@
|
|||
},
|
||||
{
|
||||
"name": "serde_urlencoded",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.0",
|
||||
"authors": "Anthony Ramine <n.oxyde@gmail.com>",
|
||||
"repository": "https://github.com/nox/serde_urlencoded",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2035,9 +1918,9 @@
|
|||
},
|
||||
{
|
||||
"name": "slab",
|
||||
"version": "0.4.2",
|
||||
"version": "0.4.3",
|
||||
"authors": "Carl Lerche <me@carllerche.com>",
|
||||
"repository": "https://github.com/carllerche/slab",
|
||||
"repository": "https://github.com/tokio-rs/slab",
|
||||
"license": "MIT",
|
||||
"license_file": null,
|
||||
"description": "Pre-allocated storage for a uniform data type"
|
||||
|
@ -2107,9 +1990,9 @@
|
|||
},
|
||||
{
|
||||
"name": "socket2",
|
||||
"version": "0.3.19",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>",
|
||||
"repository": "https://github.com/alexcrichton/socket2-rs",
|
||||
"version": "0.4.0",
|
||||
"authors": "Alex Crichton <alex@alexcrichton.com>|Thomas de Zeeuw <thomasdezeeuw@gmail.com>",
|
||||
"repository": "https://github.com/rust-lang/socket2",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended."
|
||||
|
@ -2188,7 +2071,7 @@
|
|||
},
|
||||
{
|
||||
"name": "syn",
|
||||
"version": "1.0.65",
|
||||
"version": "1.0.70",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/syn",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2296,7 +2179,7 @@
|
|||
},
|
||||
{
|
||||
"name": "tinyvec",
|
||||
"version": "1.1.1",
|
||||
"version": "1.2.0",
|
||||
"authors": "Lokathor <zefria@gmail.com>",
|
||||
"repository": "https://github.com/Lokathor/tinyvec",
|
||||
"license": "Apache-2.0 OR MIT OR Zlib",
|
||||
|
@ -2314,7 +2197,7 @@
|
|||
},
|
||||
{
|
||||
"name": "tokio",
|
||||
"version": "0.2.25",
|
||||
"version": "1.5.0",
|
||||
"authors": "Tokio Contributors <team@tokio.rs>",
|
||||
"repository": "https://github.com/tokio-rs/tokio",
|
||||
"license": "MIT",
|
||||
|
@ -2323,16 +2206,25 @@
|
|||
},
|
||||
{
|
||||
"name": "tokio-io-timeout",
|
||||
"version": "0.4.0",
|
||||
"version": "1.1.1",
|
||||
"authors": "Steven Fackler <sfackler@gmail.com>",
|
||||
"repository": "https://github.com/sfackler/tokio-io-timeout",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.14.1",
|
||||
"version": "0.22.0",
|
||||
"authors": "quininer kel <quininer@live.com>",
|
||||
"repository": "https://github.com/tokio-rs/tls",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2341,25 +2233,16 @@
|
|||
},
|
||||
{
|
||||
"name": "tokio-socks",
|
||||
"version": "0.3.0",
|
||||
"version": "0.5.1",
|
||||
"authors": "Yilin Chen <sticnarf@gmail.com>",
|
||||
"repository": "https://github.com/sticnarf/tokio-socks",
|
||||
"license": "MIT",
|
||||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.3.1",
|
||||
"version": "0.6.6",
|
||||
"authors": "Tokio Contributors <team@tokio.rs>",
|
||||
"repository": "https://github.com/tokio-rs/tokio",
|
||||
"license": "MIT",
|
||||
|
@ -2402,15 +2285,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.2.3",
|
||||
|
@ -2485,7 +2359,7 @@
|
|||
},
|
||||
{
|
||||
"name": "unicode-bidi",
|
||||
"version": "0.3.4",
|
||||
"version": "0.3.5",
|
||||
"authors": "The Servo Project Developers",
|
||||
"repository": "https://github.com/servo/unicode-bidi",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2557,7 +2431,7 @@
|
|||
},
|
||||
{
|
||||
"name": "utf-8",
|
||||
"version": "0.7.5",
|
||||
"version": "0.7.6",
|
||||
"authors": "Simon Sapin <simon.sapin@exyr.org>",
|
||||
"repository": "https://github.com/SimonSapin/rust-utf8",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2575,7 +2449,7 @@
|
|||
},
|
||||
{
|
||||
"name": "vcpkg",
|
||||
"version": "0.2.11",
|
||||
"version": "0.2.12",
|
||||
"authors": "Jim McGrath <jimmc2@gmail.com>",
|
||||
"repository": "https://github.com/mcgoo/vcpkg-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2620,7 +2494,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-bindgen",
|
||||
"version": "0.2.72",
|
||||
"version": "0.2.73",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2629,7 +2503,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-bindgen-backend",
|
||||
"version": "0.2.72",
|
||||
"version": "0.2.73",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2638,7 +2512,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-bindgen-futures",
|
||||
"version": "0.4.22",
|
||||
"version": "0.4.23",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2647,7 +2521,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-bindgen-macro",
|
||||
"version": "0.2.72",
|
||||
"version": "0.2.73",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2656,7 +2530,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-bindgen-macro-support",
|
||||
"version": "0.2.72",
|
||||
"version": "0.2.73",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2665,7 +2539,7 @@
|
|||
},
|
||||
{
|
||||
"name": "wasm-bindgen-shared",
|
||||
"version": "0.2.72",
|
||||
"version": "0.2.73",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2674,7 +2548,7 @@
|
|||
},
|
||||
{
|
||||
"name": "web-sys",
|
||||
"version": "0.3.49",
|
||||
"version": "0.3.50",
|
||||
"authors": "The wasm-bindgen Developers",
|
||||
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2692,7 +2566,7 @@
|
|||
},
|
||||
{
|
||||
"name": "webpki-roots",
|
||||
"version": "0.20.0",
|
||||
"version": "0.21.1",
|
||||
"authors": "Joseph Birr-Pixton <jpixton@gmail.com>",
|
||||
"repository": "https://github.com/ctz/webpki-roots",
|
||||
"license": "MPL-2.0",
|
||||
|
@ -2701,22 +2575,13 @@
|
|||
},
|
||||
{
|
||||
"name": "which",
|
||||
"version": "4.0.2",
|
||||
"version": "4.1.0",
|
||||
"authors": "Harry Fei <tiziyuanfang@gmail.com>",
|
||||
"repository": "https://github.com/harryfei/which-rs.git",
|
||||
"license": "MIT",
|
||||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.3.9",
|
||||
|
@ -2726,15 +2591,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.4.0",
|
||||
|
@ -2771,15 +2627,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.2.0",
|
||||
|
@ -2800,9 +2647,9 @@
|
|||
},
|
||||
{
|
||||
"name": "zip",
|
||||
"version": "0.5.6",
|
||||
"authors": "Mathijs van de Nes <git@mathijs.vd-nes.nl>",
|
||||
"repository": "https://github.com/mvdnes/zip-rs.git",
|
||||
"version": "0.5.12",
|
||||
"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/zip-rs/zip.git",
|
||||
"license": "MIT",
|
||||
"license_file": null,
|
||||
"description": "Library to support the reading and writing of zip files."
|
||||
|
|
2
cargo/remote/BUILD.Inflector-0.11.4.bazel
vendored
2
cargo/remote/BUILD.Inflector-0.11.4.bazel
vendored
|
@ -63,7 +63,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
"@raze__regex__1_4_5//:regex",
|
||||
"@raze__regex__1_4_6//:regex",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
2
cargo/remote/BUILD.arrayvec-0.5.2.bazel
vendored
2
cargo/remote/BUILD.arrayvec-0.5.2.bazel
vendored
|
@ -39,8 +39,6 @@ rust_library(
|
|||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"array-sizes-33-128",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
|
|
|
@ -50,7 +50,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__askama_shared__0_11_1//:askama_shared",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -60,10 +60,10 @@ rust_library(
|
|||
"@raze__nom__6_1_2//:nom",
|
||||
"@raze__num_traits__0_2_14//:num_traits",
|
||||
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__serde__1_0_125//:serde",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
"@raze__toml__0_5_8//:toml",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -37,15 +37,11 @@ licenses([
|
|||
rust_library(
|
||||
name = "async_compression",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
"@raze__bytes__0_5_6//:bytes": "bytes_05",
|
||||
},
|
||||
crate_features = [
|
||||
"bytes-05",
|
||||
"default",
|
||||
"flate2",
|
||||
"gzip",
|
||||
"stream",
|
||||
"tokio",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
|
@ -58,14 +54,14 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.7",
|
||||
version = "0.3.8",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@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__pin_project_lite__0_2_6//:pin_project_lite",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
],
|
||||
)
|
||||
|
|
@ -53,7 +53,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.48",
|
||||
version = "0.1.50",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -75,13 +75,13 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.48",
|
||||
version = "0.1.50",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":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__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
2
cargo/remote/BUILD.atty-0.2.14.bazel
vendored
2
cargo/remote/BUILD.atty-0.2.14.bazel
vendored
|
@ -62,7 +62,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
|
|
67
cargo/remote/BUILD.base64-0.12.3.bazel
vendored
67
cargo/remote/BUILD.base64-0.12.3.bazel
vendored
|
@ -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
|
58
cargo/remote/BUILD.blake2b_simd-0.5.11.bazel
vendored
58
cargo/remote/BUILD.blake2b_simd-0.5.11.bazel
vendored
|
@ -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",
|
||||
],
|
||||
)
|
77
cargo/remote/BUILD.bytes-0.4.12.bazel
vendored
77
cargo/remote/BUILD.bytes-0.4.12.bazel
vendored
|
@ -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
|
83
cargo/remote/BUILD.bytes-0.5.6.bazel
vendored
83
cargo/remote/BUILD.bytes-0.5.6.bazel
vendored
|
@ -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
|
2
cargo/remote/BUILD.chrono-0.4.19.bazel
vendored
2
cargo/remote/BUILD.chrono-0.4.19.bazel
vendored
|
@ -62,7 +62,7 @@ rust_library(
|
|||
version = "0.4.19",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
"@raze__num_integer__0_1_44//:num_integer",
|
||||
"@raze__num_traits__0_2_14//:num_traits",
|
||||
"@raze__time__0_1_43//:time",
|
||||
|
|
2
cargo/remote/BUILD.coarsetime-0.1.18.bazel
vendored
2
cargo/remote/BUILD.coarsetime-0.1.18.bazel
vendored
|
@ -62,7 +62,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
|
|
@ -50,7 +50,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__core_foundation_sys__0_8_2//:core_foundation_sys",
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.5.0",
|
||||
version = "0.5.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
|
@ -42,7 +42,6 @@ cargo_build_script(
|
|||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
|
@ -69,7 +68,6 @@ rust_library(
|
|||
name = "crossbeam_utils",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
|
|
2
cargo/remote/BUILD.ctor-0.1.20.bazel
vendored
2
cargo/remote/BUILD.ctor-0.1.20.bazel
vendored
|
@ -52,6 +52,6 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
4
cargo/remote/BUILD.derivative-2.2.0.bazel
vendored
4
cargo/remote/BUILD.derivative-2.2.0.bazel
vendored
|
@ -50,9 +50,9 @@ rust_library(
|
|||
version = "2.2.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
2
cargo/remote/BUILD.dirs-2.0.2.bazel
vendored
2
cargo/remote/BUILD.dirs-2.0.2.bazel
vendored
|
@ -50,6 +50,6 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__dirs_sys__0_3_5//:dirs_sys",
|
||||
"@raze__dirs_sys__0_3_6//:dirs_sys",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -48,7 +48,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.5",
|
||||
version = "0.3.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
] + selects.with_or({
|
||||
|
@ -60,7 +60,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
57
cargo/remote/BUILD.dtoa-0.4.7.bazel
vendored
57
cargo/remote/BUILD.dtoa-0.4.7.bazel
vendored
|
@ -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
|
2
cargo/remote/BUILD.env_logger-0.8.3.bazel
vendored
2
cargo/remote/BUILD.env_logger-0.8.3.bazel
vendored
|
@ -57,7 +57,7 @@ rust_library(
|
|||
"@raze__atty__0_2_14//:atty",
|
||||
"@raze__humantime__2_1_0//:humantime",
|
||||
"@raze__log__0_4_14//:log",
|
||||
"@raze__regex__1_4_5//:regex",
|
||||
"@raze__regex__1_4_6//:regex",
|
||||
"@raze__termcolor__1_1_2//:termcolor",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.flate2-1.0.20.bazel
vendored
2
cargo/remote/BUILD.flate2-1.0.20.bazel
vendored
|
@ -98,7 +98,7 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.fluent-0.15.0.bazel
vendored
2
cargo/remote/BUILD.fluent-0.15.0.bazel
vendored
|
@ -49,7 +49,7 @@ rust_library(
|
|||
version = "0.15.0",
|
||||
# buildifier: leave-alone
|
||||
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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -51,14 +51,14 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.15.0",
|
||||
version = "0.15.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__fluent_langneg__0_13_0//:fluent_langneg",
|
||||
"@raze__fluent_syntax__0_11_0//:fluent_syntax",
|
||||
"@raze__intl_memoizer__0_5_1//:intl_memoizer",
|
||||
"@raze__intl_pluralrules__7_0_1//:intl_pluralrules",
|
||||
"@raze__ouroboros__0_8_3//:ouroboros",
|
||||
"@raze__ouroboros__0_9_1//:ouroboros",
|
||||
"@raze__rustc_hash__1_1_0//:rustc_hash",
|
||||
"@raze__smallvec__1_6_1//:smallvec",
|
||||
"@raze__unic_langid__0_9_0//:unic_langid",
|
55
cargo/remote/BUILD.fuchsia-zircon-0.3.3.bazel
vendored
55
cargo/remote/BUILD.fuchsia-zircon-0.3.3.bazel
vendored
|
@ -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",
|
||||
],
|
||||
)
|
|
@ -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 = [
|
||||
],
|
||||
)
|
|
@ -52,52 +52,52 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_13//:futures_channel",
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_executor__0_3_13//:futures_executor",
|
||||
"@raze__futures_io__0_3_13//:futures_io",
|
||||
"@raze__futures_sink__0_3_13//:futures_sink",
|
||||
"@raze__futures_task__0_3_13//:futures_task",
|
||||
"@raze__futures_util__0_3_13//:futures_util",
|
||||
"@raze__futures_channel__0_3_14//:futures_channel",
|
||||
"@raze__futures_core__0_3_14//:futures_core",
|
||||
"@raze__futures_executor__0_3_14//:futures_executor",
|
||||
"@raze__futures_io__0_3_14//:futures_io",
|
||||
"@raze__futures_sink__0_3_14//:futures_sink",
|
||||
"@raze__futures_task__0_3_14//:futures_task",
|
||||
"@raze__futures_util__0_3_14//:futures_util",
|
||||
],
|
||||
)
|
||||
|
||||
# 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 "atomic_waker" 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 "eager_drop" 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_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 "futures_ordered" with type "test" omitted
|
||||
|
||||
# Unsupported target "futures_unordered" with type "test" omitted
|
||||
|
||||
# Unsupported target "inspect" with type "test" omitted
|
||||
# Unsupported target "future_try_join_all" 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 "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 "mutex" with type "test" omitted
|
||||
|
||||
# Unsupported target "object_safety" 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 "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_fanout" with type "test" omitted
|
||||
|
||||
# Unsupported target "split" 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_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_peekable" with type "test" omitted
|
||||
|
@ -161,10 +157,14 @@ rust_library(
|
|||
|
||||
# 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_all" with type "test" omitted
|
||||
|
||||
# Unsupported target "try_stream" with type "test" omitted
|
||||
|
||||
# Unsupported target "unfold" with type "test" omitted
|
|
@ -53,11 +53,11 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_sink__0_3_13//:futures_sink",
|
||||
"@raze__futures_core__0_3_14//:futures_core",
|
||||
"@raze__futures_sink__0_3_14//:futures_sink",
|
||||
],
|
||||
)
|
||||
|
|
@ -49,7 +49,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
|
@ -49,12 +49,12 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_task__0_3_13//:futures_task",
|
||||
"@raze__futures_util__0_3_13//:futures_util",
|
||||
"@raze__futures_core__0_3_14//:futures_core",
|
||||
"@raze__futures_task__0_3_14//:futures_task",
|
||||
"@raze__futures_util__0_3_14//:futures_util",
|
||||
],
|
||||
)
|
||||
|
|
@ -47,7 +47,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
|
@ -49,11 +49,11 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
|
@ -49,7 +49,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
|
@ -48,7 +48,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
|
@ -58,7 +58,7 @@ rust_library(
|
|||
data = [],
|
||||
edition = "2018",
|
||||
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",
|
||||
],
|
||||
rustc_flags = [
|
||||
|
@ -68,18 +68,18 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.13",
|
||||
version = "0.3.14",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__futures_channel__0_3_13//:futures_channel",
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_io__0_3_13//:futures_io",
|
||||
"@raze__futures_sink__0_3_13//:futures_sink",
|
||||
"@raze__futures_task__0_3_13//:futures_task",
|
||||
"@raze__futures_channel__0_3_14//:futures_channel",
|
||||
"@raze__futures_core__0_3_14//:futures_core",
|
||||
"@raze__futures_io__0_3_14//:futures_io",
|
||||
"@raze__futures_sink__0_3_14//:futures_sink",
|
||||
"@raze__futures_task__0_3_14//:futures_task",
|
||||
"@raze__memchr__2_3_4//:memchr",
|
||||
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
|
||||
"@raze__pin_utils__0_1_0//:pin_utils",
|
||||
"@raze__proc_macro_nested__0_1_6//:proc_macro_nested",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
"@raze__slab__0_4_3//:slab",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.getrandom-0.1.16.bazel
vendored
2
cargo/remote/BUILD.getrandom-0.1.16.bazel
vendored
|
@ -106,7 +106,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
|
2
cargo/remote/BUILD.getrandom-0.2.2.bazel
vendored
2
cargo/remote/BUILD.getrandom-0.2.2.bazel
vendored
|
@ -106,7 +106,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
|
4
cargo/remote/BUILD.ghost-0.1.2.bazel
vendored
4
cargo/remote/BUILD.ghost-0.1.2.bazel
vendored
|
@ -49,8 +49,8 @@ rust_library(
|
|||
version = "0.1.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -52,20 +52,19 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.7",
|
||||
version = "0.3.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__bytes__1_0_1//:bytes",
|
||||
"@raze__fnv__1_0_7//:fnv",
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_sink__0_3_13//:futures_sink",
|
||||
"@raze__futures_util__0_3_13//:futures_util",
|
||||
"@raze__http__0_2_3//:http",
|
||||
"@raze__futures_core__0_3_14//:futures_core",
|
||||
"@raze__futures_sink__0_3_14//:futures_sink",
|
||||
"@raze__futures_util__0_3_14//:futures_util",
|
||||
"@raze__http__0_2_4//:http",
|
||||
"@raze__indexmap__1_6_2//:indexmap",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
"@raze__tokio__0_2_25//:tokio",
|
||||
"@raze__tokio_util__0_3_1//:tokio_util",
|
||||
"@raze__slab__0_4_3//:slab",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
"@raze__tokio_util__0_6_6//:tokio_util",
|
||||
"@raze__tracing__0_1_25//:tracing",
|
||||
"@raze__tracing_futures__0_2_5//:tracing_futures",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.hermit-abi-0.1.18.bazel
vendored
2
cargo/remote/BUILD.hermit-abi-0.1.18.bazel
vendored
|
@ -50,6 +50,6 @@ rust_library(
|
|||
version = "0.1.18",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
)
|
||||
|
|
6
cargo/remote/BUILD.html5ever-0.25.1.bazel
vendored
6
cargo/remote/BUILD.html5ever-0.25.1.bazel
vendored
|
@ -56,9 +56,9 @@ cargo_build_script(
|
|||
version = "0.25.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@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",
|
||||
"@raze__log__0_4_14//:log",
|
||||
"@raze__mac__0_1_1//:mac",
|
||||
"@raze__markup5ever__0_10_0//:markup5ever",
|
||||
"@raze__markup5ever__0_10_1//:markup5ever",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -36,6 +36,8 @@ licenses([
|
|||
|
||||
# Unsupported target "header_value" with type "bench" omitted
|
||||
|
||||
# Unsupported target "method" with type "bench" omitted
|
||||
|
||||
# Unsupported target "uri" with type "bench" omitted
|
||||
|
||||
rust_library(
|
||||
|
@ -54,7 +56,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.3",
|
||||
version = "0.2.4",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__1_0_1//:bytes",
|
|
@ -46,11 +46,12 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.1",
|
||||
version = "0.4.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__http__0_2_3//:http",
|
||||
"@raze__bytes__1_0_1//:bytes",
|
||||
"@raze__http__0_2_4//:http",
|
||||
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
|
||||
],
|
||||
)
|
||||
|
|
@ -55,7 +55,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.3.5",
|
||||
version = "1.4.0",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -81,7 +81,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.3.5",
|
||||
version = "1.4.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":httparse_build_script",
|
|
@ -38,7 +38,7 @@ rust_library(
|
|||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -46,7 +46,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.2",
|
||||
version = "1.0.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
|
@ -40,6 +40,8 @@ licenses([
|
|||
|
||||
# Unsupported target "server" with type "bench" omitted
|
||||
|
||||
# Unsupported target "hyper" with type "cdylib" omitted
|
||||
|
||||
# Unsupported target "client" with type "example" omitted
|
||||
|
||||
# Unsupported target "client_json" with type "example" omitted
|
||||
|
@ -78,6 +80,12 @@ rust_library(
|
|||
aliases = {
|
||||
},
|
||||
crate_features = [
|
||||
"client",
|
||||
"default",
|
||||
"h2",
|
||||
"http1",
|
||||
"http2",
|
||||
"runtime",
|
||||
"socket2",
|
||||
"tcp",
|
||||
],
|
||||
|
@ -92,22 +100,22 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.13.10",
|
||||
version = "0.14.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__futures_channel__0_3_13//:futures_channel",
|
||||
"@raze__futures_core__0_3_13//:futures_core",
|
||||
"@raze__futures_util__0_3_13//:futures_util",
|
||||
"@raze__h2__0_2_7//:h2",
|
||||
"@raze__http__0_2_3//:http",
|
||||
"@raze__http_body__0_3_1//:http_body",
|
||||
"@raze__httparse__1_3_5//:httparse",
|
||||
"@raze__httpdate__0_3_2//:httpdate",
|
||||
"@raze__bytes__1_0_1//:bytes",
|
||||
"@raze__futures_channel__0_3_14//:futures_channel",
|
||||
"@raze__futures_core__0_3_14//:futures_core",
|
||||
"@raze__futures_util__0_3_14//:futures_util",
|
||||
"@raze__h2__0_3_2//:h2",
|
||||
"@raze__http__0_2_4//:http",
|
||||
"@raze__http_body__0_4_1//:http_body",
|
||||
"@raze__httparse__1_4_0//:httparse",
|
||||
"@raze__httpdate__1_0_0//:httpdate",
|
||||
"@raze__itoa__0_4_7//:itoa",
|
||||
"@raze__pin_project__1_0_6//:pin_project",
|
||||
"@raze__socket2__0_3_19//:socket2",
|
||||
"@raze__tokio__0_2_25//:tokio",
|
||||
"@raze__pin_project__1_0_7//:pin_project",
|
||||
"@raze__socket2__0_4_0//:socket2",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
"@raze__tower_service__0_3_1//:tower_service",
|
||||
"@raze__tracing__0_1_25//:tracing",
|
||||
"@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 "integration" with type "test" omitted
|
|
@ -50,16 +50,15 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.21.0",
|
||||
version = "0.22.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__futures_util__0_3_13//:futures_util",
|
||||
"@raze__hyper__0_13_10//:hyper",
|
||||
"@raze__futures_util__0_3_14//:futures_util",
|
||||
"@raze__hyper__0_14_7//:hyper",
|
||||
"@raze__log__0_4_14//:log",
|
||||
"@raze__rustls__0_18_1//:rustls",
|
||||
"@raze__tokio__0_2_25//:tokio",
|
||||
"@raze__tokio_rustls__0_14_1//:tokio_rustls",
|
||||
"@raze__rustls__0_19_1//:rustls",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
"@raze__tokio_rustls__0_22_0//:tokio_rustls",
|
||||
"@raze__webpki__0_21_4//:webpki",
|
||||
],
|
||||
)
|
|
@ -48,12 +48,12 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.1",
|
||||
version = "0.4.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__hyper__0_13_10//:hyper",
|
||||
"@raze__tokio__0_2_25//:tokio",
|
||||
"@raze__tokio_io_timeout__0_4_0//:tokio_io_timeout",
|
||||
"@raze__hyper__0_14_7//:hyper",
|
||||
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
"@raze__tokio_io_timeout__1_1_1//:tokio_io_timeout",
|
||||
],
|
||||
)
|
|
@ -48,13 +48,13 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.3",
|
||||
version = "0.5.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bytes__0_5_6//:bytes",
|
||||
"@raze__hyper__0_13_10//:hyper",
|
||||
"@raze__bytes__1_0_1//:bytes",
|
||||
"@raze__hyper__0_14_7//:hyper",
|
||||
"@raze__native_tls__0_2_7//:native_tls",
|
||||
"@raze__tokio__0_2_25//:tokio",
|
||||
"@raze__tokio_tls__0_3_1//:tokio_tls",
|
||||
"@raze__tokio__1_5_0//:tokio",
|
||||
"@raze__tokio_native_tls__0_3_0//:tokio_native_tls",
|
||||
],
|
||||
)
|
|
@ -48,11 +48,11 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.2",
|
||||
version = "0.2.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@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",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.indexmap-1.6.2.bazel
vendored
2
cargo/remote/BUILD.indexmap-1.6.2.bazel
vendored
|
@ -42,6 +42,7 @@ cargo_build_script(
|
|||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
|
@ -68,6 +69,7 @@ rust_library(
|
|||
name = "indexmap",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"std",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
|
|
4
cargo/remote/BUILD.indoc-impl-0.3.6.bazel
vendored
4
cargo/remote/BUILD.indoc-impl-0.3.6.bazel
vendored
|
@ -52,9 +52,9 @@ rust_library(
|
|||
version = "0.3.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
"@raze__unindent__0_1_7//:unindent",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -49,8 +49,8 @@ rust_library(
|
|||
version = "0.1.10",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
67
cargo/remote/BUILD.iovec-0.1.4.bazel
vendored
67
cargo/remote/BUILD.iovec-0.1.4.bazel
vendored
|
@ -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": [],
|
||||
}),
|
||||
)
|
|
@ -46,10 +46,10 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.3.49",
|
||||
version = "0.3.50",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__wasm_bindgen__0_2_72//:wasm_bindgen",
|
||||
"@raze__wasm_bindgen__0_2_73//:wasm_bindgen",
|
||||
],
|
||||
)
|
||||
|
94
cargo/remote/BUILD.kernel32-sys-0.2.2.bazel
vendored
94
cargo/remote/BUILD.kernel32-sys-0.2.2.bazel
vendored
|
@ -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",
|
||||
],
|
||||
)
|
|
@ -60,7 +60,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.5",
|
||||
version = "0.7.6",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -89,7 +89,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.5",
|
||||
version = "0.7.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":lexical_core_build_script",
|
|
@ -42,7 +42,6 @@ cargo_build_script(
|
|||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"align",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
|
@ -56,7 +55,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.91",
|
||||
version = "0.2.94",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -66,7 +65,6 @@ rust_library(
|
|||
name = "libc",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"align",
|
||||
"default",
|
||||
"std",
|
||||
],
|
||||
|
@ -81,7 +79,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.91",
|
||||
version = "0.2.94",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":libc_build_script",
|
|
@ -73,7 +73,7 @@ cargo_build_script(
|
|||
(
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
"@raze__vcpkg__0_2_11//:vcpkg",
|
||||
"@raze__vcpkg__0_2_12//:vcpkg",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
|
|
@ -46,7 +46,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.2",
|
||||
version = "0.4.3",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__scopeguard__1_1_0//:scopeguard",
|
|
@ -46,9 +46,6 @@ cargo_build_script(
|
|||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__serde_derive__1_0_125//:serde_derive",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -56,12 +53,10 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.0",
|
||||
version = "0.10.1",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
@ -82,7 +77,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.10.0",
|
||||
version = "0.10.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":markup5ever_build_script",
|
|
@ -58,7 +58,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@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__xml5ever__0_16_1//:xml5ever",
|
||||
],
|
||||
|
|
4
cargo/remote/BUILD.mime_guess-2.0.3.bazel
vendored
4
cargo/remote/BUILD.mime_guess-2.0.3.bazel
vendored
|
@ -42,8 +42,6 @@ cargo_build_script(
|
|||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"rev-mappings",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
|
@ -70,8 +68,6 @@ rust_library(
|
|||
name = "mime_guess",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"rev-mappings",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
|
|
|
@ -30,6 +30,10 @@ licenses([
|
|||
|
||||
# Generated Targets
|
||||
|
||||
# Unsupported target "tcp_server" with type "example" omitted
|
||||
|
||||
# Unsupported target "udp_server" with type "example" omitted
|
||||
|
||||
rust_library(
|
||||
name = "mio",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
|
@ -37,12 +41,18 @@ rust_library(
|
|||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"with-deprecated",
|
||||
"net",
|
||||
"os-ext",
|
||||
"os-poll",
|
||||
"os-util",
|
||||
"tcp",
|
||||
"udp",
|
||||
"uds",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -50,14 +60,10 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.6.23",
|
||||
version = "0.7.11",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__iovec__0_1_4//:iovec",
|
||||
"@raze__log__0_4_14//:log",
|
||||
"@raze__net2__0_2_37//:net2",
|
||||
"@raze__slab__0_4_2//:slab",
|
||||
] + selects.with_or({
|
||||
# cfg(unix)
|
||||
(
|
||||
|
@ -67,7 +73,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
|
@ -75,12 +81,10 @@ rust_library(
|
|||
(
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
"@raze__kernel32_sys__0_2_2//:kernel32_sys",
|
||||
"@raze__miow__0_2_2//:miow",
|
||||
"@raze__winapi__0_2_8//:winapi",
|
||||
"@raze__miow__0_3_7//:miow",
|
||||
"@raze__ntapi__0_3_6//:ntapi",
|
||||
"@raze__winapi__0_3_9//:winapi",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
|
||||
# Unsupported target "test" with type "test" omitted
|
57
cargo/remote/BUILD.miow-0.2.2.bazel
vendored
57
cargo/remote/BUILD.miow-0.2.2.bazel
vendored
|
@ -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
54
cargo/remote/BUILD.miow-0.3.7.bazel
vendored
Normal 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",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.native-tls-0.2.7.bazel
vendored
2
cargo/remote/BUILD.native-tls-0.2.7.bazel
vendored
|
@ -119,7 +119,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
): [
|
||||
"@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_sys__2_2_0//:security_framework_sys",
|
||||
"@raze__tempfile__3_2_0//:tempfile",
|
||||
|
|
78
cargo/remote/BUILD.net2-0.2.37.bazel
vendored
78
cargo/remote/BUILD.net2-0.2.37.bazel
vendored
|
@ -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": [],
|
||||
}),
|
||||
)
|
2
cargo/remote/BUILD.nom-6.1.2.bazel
vendored
2
cargo/remote/BUILD.nom-6.1.2.bazel
vendored
|
@ -116,7 +116,7 @@ rust_library(
|
|||
":nom_build_script",
|
||||
"@raze__bitvec__0_19_5//:bitvec",
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -25,7 +25,7 @@ package(default_visibility = [
|
|||
])
|
||||
|
||||
licenses([
|
||||
"notice", # MIT from expression "MIT"
|
||||
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
|
||||
])
|
||||
|
||||
# Generated Targets
|
||||
|
@ -37,15 +37,17 @@ load(
|
|||
)
|
||||
|
||||
cargo_build_script(
|
||||
name = "ws2_32_sys_build_script",
|
||||
name = "ntapi_build_script",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"user",
|
||||
],
|
||||
crate_root = "build.rs",
|
||||
data = glob(["**"]),
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -53,31 +55,23 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.1",
|
||||
version = "0.3.6",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@raze__winapi_build__0_1_1//:winapi_build",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "ws2_32_sys",
|
||||
actual = ":ws2_32",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "ws2_32",
|
||||
name = "ntapi",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"user",
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2015",
|
||||
edition = "2018",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -85,10 +79,10 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.2.1",
|
||||
version = "0.3.6",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":ws2_32_sys_build_script",
|
||||
"@raze__winapi__0_2_8//:winapi",
|
||||
":ntapi_build_script",
|
||||
"@raze__winapi__0_3_9//:winapi",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.num_cpus-1.13.0.bazel
vendored
2
cargo/remote/BUILD.num_cpus-1.13.0.bazel
vendored
|
@ -51,6 +51,6 @@ rust_library(
|
|||
version = "1.13.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -51,9 +51,9 @@ rust_library(
|
|||
version = "0.5.1",
|
||||
# buildifier: leave-alone
|
||||
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__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.openssl-0.10.33.bazel
vendored
2
cargo/remote/BUILD.openssl-0.10.33.bazel
vendored
|
@ -88,7 +88,7 @@ rust_library(
|
|||
"@raze__bitflags__1_2_1//:bitflags",
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@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__openssl_sys__0_9_61//:openssl_sys",
|
||||
],
|
||||
|
|
4
cargo/remote/BUILD.openssl-sys-0.9.61.bazel
vendored
4
cargo/remote/BUILD.openssl-sys-0.9.61.bazel
vendored
|
@ -65,7 +65,7 @@ cargo_build_script(
|
|||
(
|
||||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
|
||||
): [
|
||||
"@raze__vcpkg__0_2_11//:vcpkg",
|
||||
"@raze__vcpkg__0_2_12//:vcpkg",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
@ -93,7 +93,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":openssl_sys_build_script",
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
] + selects.with_or({
|
||||
# cfg(target_env = "msvc")
|
||||
(
|
||||
|
|
|
@ -40,7 +40,7 @@ rust_library(
|
|||
data = [],
|
||||
edition = "2018",
|
||||
proc_macro_deps = [
|
||||
"@raze__ouroboros_macro__0_8_3//:ouroboros_macro",
|
||||
"@raze__ouroboros_macro__0_9_1//:ouroboros_macro",
|
||||
],
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
|
@ -49,7 +49,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.3",
|
||||
version = "0.9.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__stable_deref_trait__1_2_0//:stable_deref_trait",
|
|
@ -46,13 +46,13 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.8.3",
|
||||
version = "0.9.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@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__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.parking_lot-0.11.1.bazel
vendored
2
cargo/remote/BUILD.parking_lot-0.11.1.bazel
vendored
|
@ -51,7 +51,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -63,7 +63,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}) + selects.with_or({
|
||||
|
|
4
cargo/remote/BUILD.phf_macros-0.8.0.bazel
vendored
4
cargo/remote/BUILD.phf_macros-0.8.0.bazel
vendored
|
@ -56,9 +56,9 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__phf_generator__0_8_0//:phf_generator",
|
||||
"@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__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ rust_library(
|
|||
data = [],
|
||||
edition = "2018",
|
||||
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 = [
|
||||
"--cap-lints=allow",
|
||||
|
@ -73,7 +73,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.6",
|
||||
version = "1.0.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
],
|
|
@ -46,11 +46,11 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.6",
|
||||
version = "1.0.7",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
61
cargo/remote/BUILD.pin-project-lite-0.1.12.bazel
vendored
61
cargo/remote/BUILD.pin-project-lite-0.1.12.bazel
vendored
|
@ -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
|
59
cargo/remote/BUILD.podio-0.1.7.bazel
vendored
59
cargo/remote/BUILD.podio-0.1.7.bazel
vendored
|
@ -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
|
|
@ -89,9 +89,9 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":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__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -55,7 +55,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.24",
|
||||
version = "1.0.26",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -79,7 +79,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.24",
|
||||
version = "1.0.26",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":proc_macro2_build_script",
|
2
cargo/remote/BUILD.prost-build-0.7.0.bazel
vendored
2
cargo/remote/BUILD.prost-build-0.7.0.bazel
vendored
|
@ -56,7 +56,7 @@ cargo_build_script(
|
|||
version = "0.7.0",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@raze__which__4_0_2//:which",
|
||||
"@raze__which__4_1_0//:which",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
4
cargo/remote/BUILD.prost-derive-0.7.0.bazel
vendored
4
cargo/remote/BUILD.prost-derive-0.7.0.bazel
vendored
|
@ -51,8 +51,8 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__anyhow__1_0_40//:anyhow",
|
||||
"@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__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.pyo3-0.13.2.bazel
vendored
2
cargo/remote/BUILD.pyo3-0.13.2.bazel
vendored
|
@ -121,7 +121,7 @@ rust_library(
|
|||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@raze__indoc__0_3_6//:indoc",
|
||||
"@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__paste__0_1_18//:paste",
|
||||
"@raze__unindent__0_1_7//:unindent",
|
||||
|
|
2
cargo/remote/BUILD.pyo3-macros-0.13.2.bazel
vendored
2
cargo/remote/BUILD.pyo3-macros-0.13.2.bazel
vendored
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__pyo3_macros_backend__0_13_2//:pyo3_macros_backend",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -49,8 +49,8 @@ rust_library(
|
|||
version = "0.13.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_65//:syn",
|
||||
"@raze__syn__1_0_70//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.quote-1.0.9.bazel
vendored
2
cargo/remote/BUILD.quote-1.0.9.bazel
vendored
|
@ -51,7 +51,7 @@ rust_library(
|
|||
version = "1.0.9",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro2__1_0_26//:proc_macro2",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
2
cargo/remote/BUILD.rand-0.7.3.bazel
vendored
2
cargo/remote/BUILD.rand-0.7.3.bazel
vendored
|
@ -85,7 +85,7 @@ rust_library(
|
|||
"@rules_rust//rust/platform:x86_64-apple-ios",
|
||||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
|
||||
): [
|
||||
"@raze__libc__0_2_91//:libc",
|
||||
"@raze__libc__0_2_94//:libc",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue