update Rust deps

This commit is contained in:
Damien Elmes 2020-12-18 11:56:28 +10:00
parent fd92a122a4
commit 71f742aa56
7 changed files with 21 additions and 22 deletions

9
Cargo.lock generated
View file

@ -2075,13 +2075,12 @@ checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75"
[[package]] [[package]]
name = "socket2" name = "socket2"
version = "0.3.17" version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c29947abdee2a218277abeca306f25789c938e500ea5a9d4b12a5a504466902" checksum = "97e0e9fd577458a4f61fb91fcb559ea2afecc54c934119421f9f5d3d5b1a1057"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"libc", "libc",
"redox_syscall",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@ -2105,9 +2104,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]] [[package]]
name = "subtle" name = "subtle"
version = "2.3.0" version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd" checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
[[package]] [[package]]
name = "syn" name = "syn"

View file

@ -2103,12 +2103,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__socket2__0_3_17", name = "raze__socket2__0_3_18",
url = "https://crates.io/api/v1/crates/socket2/0.3.17/download", url = "https://crates.io/api/v1/crates/socket2/0.3.18/download",
type = "tar.gz", type = "tar.gz",
sha256 = "2c29947abdee2a218277abeca306f25789c938e500ea5a9d4b12a5a504466902", sha256 = "97e0e9fd577458a4f61fb91fcb559ea2afecc54c934119421f9f5d3d5b1a1057",
strip_prefix = "socket2-0.3.17", strip_prefix = "socket2-0.3.18",
build_file = Label("//cargo/remote:BUILD.socket2-0.3.17.bazel"), build_file = Label("//cargo/remote:BUILD.socket2-0.3.18.bazel"),
) )
maybe( maybe(
@ -2143,12 +2143,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__subtle__2_3_0", name = "raze__subtle__2_4_0",
url = "https://crates.io/api/v1/crates/subtle/2.3.0/download", url = "https://crates.io/api/v1/crates/subtle/2.4.0/download",
type = "tar.gz", type = "tar.gz",
sha256 = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd", sha256 = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2",
strip_prefix = "subtle-2.3.0", strip_prefix = "subtle-2.4.0",
build_file = Label("//cargo/remote:BUILD.subtle-2.3.0.bazel"), build_file = Label("//cargo/remote:BUILD.subtle-2.4.0.bazel"),
) )
maybe( maybe(

View file

@ -1909,7 +1909,7 @@
}, },
{ {
"name": "socket2", "name": "socket2",
"version": "0.3.17", "version": "0.3.18",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/alexcrichton/socket2-rs", "repository": "https://github.com/alexcrichton/socket2-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1945,7 +1945,7 @@
}, },
{ {
"name": "subtle", "name": "subtle",
"version": "2.3.0", "version": "2.4.0",
"authors": "Isis Lovecruft <isis@patternsinthevoid.net>|Henry de Valence <hdevalence@hdevalence.ca>", "authors": "Isis Lovecruft <isis@patternsinthevoid.net>|Henry de Valence <hdevalence@hdevalence.ca>",
"repository": "https://github.com/dalek-cryptography/subtle", "repository": "https://github.com/dalek-cryptography/subtle",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",

View file

@ -50,6 +50,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__generic_array__0_14_4//:generic_array", "@raze__generic_array__0_14_4//:generic_array",
"@raze__subtle__2_3_0//:subtle", "@raze__subtle__2_4_0//:subtle",
], ],
) )

View file

@ -106,7 +106,7 @@ rust_library(
"@raze__httpdate__0_3_2//:httpdate", "@raze__httpdate__0_3_2//:httpdate",
"@raze__itoa__0_4_6//:itoa", "@raze__itoa__0_4_6//:itoa",
"@raze__pin_project__1_0_2//:pin_project", "@raze__pin_project__1_0_2//:pin_project",
"@raze__socket2__0_3_17//:socket2", "@raze__socket2__0_3_18//:socket2",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_24//:tokio",
"@raze__tower_service__0_3_0//:tower_service", "@raze__tower_service__0_3_0//:tower_service",
"@raze__tracing__0_1_22//:tracing", "@raze__tracing__0_1_22//:tracing",

View file

@ -48,11 +48,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.17", version = "0.3.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
] + selects.with_or({ ] + selects.with_or({
# cfg(any(unix, target_os = "redox")) # cfg(unix)
( (
"@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "2.3.0", version = "2.4.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],