update Rust deps

This commit is contained in:
Damien Elmes 2020-11-15 13:31:24 +10:00
parent f8a9df2c8d
commit a0c658621b
19 changed files with 47 additions and 43 deletions

View File

@ -203,7 +203,7 @@ alias(
alias( alias(
name = "once_cell", name = "once_cell",
actual = "@raze__once_cell__1_5_1//:once_cell", actual = "@raze__once_cell__1_5_2//:once_cell",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -401,7 +401,7 @@ alias(
alias( alias(
name = "tokio", name = "tokio",
actual = "@raze__tokio__0_2_22//:tokio", actual = "@raze__tokio__0_2_23//:tokio",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",

12
cargo/Cargo.lock generated
View File

@ -1285,9 +1285,9 @@ checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397"
[[package]] [[package]]
name = "once_cell" name = "once_cell"
version = "1.5.1" version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f53cef67919d7d247eb9a2f128ca9e522789967ef1eb4ccd8c71a95a8aedf596" checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
[[package]] [[package]]
name = "openssl-probe" name = "openssl-probe"
@ -2153,9 +2153,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "0.2.22" version = "0.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd" checksum = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff"
dependencies = [ dependencies = [
"bytes 0.5.6", "bytes 0.5.6",
"fnv", "fnv",
@ -2356,9 +2356,9 @@ dependencies = [
[[package]] [[package]]
name = "unicode-segmentation" name = "unicode-segmentation"
version = "1.6.0" version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" checksum = "db8716a166f290ff49dabc18b44aa407cb7c6dbe1aa0971b44b8a24b0ca35aae"
[[package]] [[package]]
name = "unicode-xid" name = "unicode-xid"

View File

@ -1333,12 +1333,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__once_cell__1_5_1", name = "raze__once_cell__1_5_2",
url = "https://crates.io/api/v1/crates/once_cell/1.5.1/download", url = "https://crates.io/api/v1/crates/once_cell/1.5.2/download",
type = "tar.gz", type = "tar.gz",
sha256 = "f53cef67919d7d247eb9a2f128ca9e522789967ef1eb4ccd8c71a95a8aedf596", sha256 = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0",
strip_prefix = "once_cell-1.5.1", strip_prefix = "once_cell-1.5.2",
build_file = Label("//cargo/remote:BUILD.once_cell-1.5.1.bazel"), build_file = Label("//cargo/remote:BUILD.once_cell-1.5.2.bazel"),
) )
maybe( maybe(
@ -2213,12 +2213,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__tokio__0_2_22", name = "raze__tokio__0_2_23",
url = "https://crates.io/api/v1/crates/tokio/0.2.22/download", url = "https://crates.io/api/v1/crates/tokio/0.2.23/download",
type = "tar.gz", type = "tar.gz",
sha256 = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd", sha256 = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff",
strip_prefix = "tokio-0.2.22", strip_prefix = "tokio-0.2.23",
build_file = Label("//cargo/remote:BUILD.tokio-0.2.22.bazel"), build_file = Label("//cargo/remote:BUILD.tokio-0.2.23.bazel"),
) )
maybe( maybe(
@ -2413,12 +2413,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__unicode_segmentation__1_6_0", name = "raze__unicode_segmentation__1_7_0",
url = "https://crates.io/api/v1/crates/unicode-segmentation/1.6.0/download", url = "https://crates.io/api/v1/crates/unicode-segmentation/1.7.0/download",
type = "tar.gz", type = "tar.gz",
sha256 = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0", sha256 = "db8716a166f290ff49dabc18b44aa407cb7c6dbe1aa0971b44b8a24b0ca35aae",
strip_prefix = "unicode-segmentation-1.6.0", strip_prefix = "unicode-segmentation-1.7.0",
build_file = Label("//cargo/remote:BUILD.unicode-segmentation-1.6.0.bazel"), build_file = Label("//cargo/remote:BUILD.unicode-segmentation-1.7.0.bazel"),
) )
maybe( maybe(

View File

@ -1198,7 +1198,7 @@
}, },
{ {
"name": "once_cell", "name": "once_cell",
"version": "1.5.1", "version": "1.5.2",
"authors": "Aleksey Kladov <aleksey.kladov@gmail.com>", "authors": "Aleksey Kladov <aleksey.kladov@gmail.com>",
"repository": "https://github.com/matklad/once_cell", "repository": "https://github.com/matklad/once_cell",
"license": "MIT OR Apache-2.0", "license": "MIT OR Apache-2.0",
@ -1990,7 +1990,7 @@
}, },
{ {
"name": "tokio", "name": "tokio",
"version": "0.2.22", "version": "0.2.23",
"authors": "Tokio Contributors <team@tokio.rs>", "authors": "Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tokio", "repository": "https://github.com/tokio-rs/tokio",
"license": "MIT", "license": "MIT",
@ -2170,7 +2170,7 @@
}, },
{ {
"name": "unicode-segmentation", "name": "unicode-segmentation",
"version": "1.6.0", "version": "1.7.0",
"authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>", "authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>",
"repository": "https://github.com/unicode-rs/unicode-segmentation", "repository": "https://github.com/unicode-rs/unicode-segmentation",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",

View File

@ -51,6 +51,6 @@ rust_library(
version = "0.3.8", version = "0.3.8",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__once_cell__1_5_1//:once_cell", "@raze__once_cell__1_5_2//:once_cell",
], ],
) )

View File

@ -62,7 +62,7 @@ rust_library(
"@raze__http__0_2_1//:http", "@raze__http__0_2_1//:http",
"@raze__indexmap__1_6_0//:indexmap", "@raze__indexmap__1_6_0//:indexmap",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
"@raze__tokio_util__0_3_1//:tokio_util", "@raze__tokio_util__0_3_1//:tokio_util",
"@raze__tracing__0_1_21//:tracing", "@raze__tracing__0_1_21//:tracing",
"@raze__tracing_futures__0_2_4//:tracing_futures", "@raze__tracing_futures__0_2_4//:tracing_futures",

View File

@ -48,6 +48,6 @@ rust_library(
version = "0.3.1", version = "0.3.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__unicode_segmentation__1_6_0//:unicode_segmentation", "@raze__unicode_segmentation__1_7_0//:unicode_segmentation",
], ],
) )

View File

@ -106,7 +106,7 @@ rust_library(
"@raze__itoa__0_4_6//:itoa", "@raze__itoa__0_4_6//:itoa",
"@raze__pin_project__1_0_1//:pin_project", "@raze__pin_project__1_0_1//:pin_project",
"@raze__socket2__0_3_16//:socket2", "@raze__socket2__0_3_16//:socket2",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
"@raze__tower_service__0_3_0//:tower_service", "@raze__tower_service__0_3_0//:tower_service",
"@raze__tracing__0_1_21//:tracing", "@raze__tracing__0_1_21//:tracing",
"@raze__want__0_3_0//:want", "@raze__want__0_3_0//:want",

View File

@ -57,7 +57,7 @@ rust_library(
"@raze__hyper__0_13_9//:hyper", "@raze__hyper__0_13_9//:hyper",
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__rustls__0_18_1//:rustls", "@raze__rustls__0_18_1//:rustls",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
"@raze__tokio_rustls__0_14_1//:tokio_rustls", "@raze__tokio_rustls__0_14_1//:tokio_rustls",
"@raze__webpki__0_21_3//:webpki", "@raze__webpki__0_21_3//:webpki",
], ],

View File

@ -52,7 +52,7 @@ rust_library(
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__hyper__0_13_9//:hyper", "@raze__hyper__0_13_9//:hyper",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
"@raze__tokio_io_timeout__0_4_0//:tokio_io_timeout", "@raze__tokio_io_timeout__0_4_0//:tokio_io_timeout",
], ],
) )

View File

@ -62,7 +62,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.5.1", version = "1.5.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View File

@ -109,7 +109,7 @@ rust_library(
"@raze__pin_project_lite__0_1_11//:pin_project_lite", "@raze__pin_project_lite__0_1_11//:pin_project_lite",
"@raze__rustls__0_18_1//:rustls", "@raze__rustls__0_18_1//:rustls",
"@raze__rustls_native_certs__0_4_0//:rustls_native_certs", "@raze__rustls_native_certs__0_4_0//:rustls_native_certs",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
"@raze__tokio_rustls__0_14_1//:tokio_rustls", "@raze__tokio_rustls__0_14_1//:tokio_rustls",
"@raze__tokio_socks__0_3_0//:tokio_socks", "@raze__tokio_socks__0_3_0//:tokio_socks",
], ],

View File

@ -158,7 +158,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__once_cell__1_5_1//:once_cell", "@raze__once_cell__1_5_2//:once_cell",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View File

@ -66,7 +66,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.22", version = "0.2.23",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
@ -132,6 +132,8 @@ rust_library(
# Unsupported target "io_lines" with type "test" omitted # Unsupported target "io_lines" with type "test" omitted
# Unsupported target "io_mem_stream" with type "test" omitted
# Unsupported target "io_read" with type "test" omitted # Unsupported target "io_read" with type "test" omitted
# Unsupported target "io_read_exact" with type "test" omitted # Unsupported target "io_read_exact" with type "test" omitted
@ -144,6 +146,8 @@ rust_library(
# Unsupported target "io_read_until" with type "test" omitted # Unsupported target "io_read_until" with type "test" omitted
# Unsupported target "io_reader_stream" with type "test" omitted
# Unsupported target "io_split" with type "test" omitted # Unsupported target "io_split" with type "test" omitted
# Unsupported target "io_take" with type "test" omitted # Unsupported target "io_take" with type "test" omitted
@ -178,8 +182,6 @@ rust_library(
# Unsupported target "process_smoke" with type "test" omitted # Unsupported target "process_smoke" with type "test" omitted
# Unsupported target "read_to_string" with type "test" omitted
# Unsupported target "rt_basic" with type "test" omitted # Unsupported target "rt_basic" with type "test" omitted
# Unsupported target "rt_common" with type "test" omitted # Unsupported target "rt_common" with type "test" omitted

View File

@ -49,6 +49,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
], ],
) )

View File

@ -50,7 +50,7 @@ rust_library(
deps = [ deps = [
"@raze__futures_core__0_3_8//:futures_core", "@raze__futures_core__0_3_8//:futures_core",
"@raze__rustls__0_18_1//:rustls", "@raze__rustls__0_18_1//:rustls",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
"@raze__webpki__0_21_3//:webpki", "@raze__webpki__0_21_3//:webpki",
], ],
) )

View File

@ -56,7 +56,7 @@ rust_library(
"@raze__either__1_6_1//:either", "@raze__either__1_6_1//:either",
"@raze__futures__0_3_8//:futures", "@raze__futures__0_3_8//:futures",
"@raze__thiserror__1_0_22//:thiserror", "@raze__thiserror__1_0_22//:thiserror",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
], ],
) )

View File

@ -55,7 +55,7 @@ rust_library(
"@raze__futures_sink__0_3_8//:futures_sink", "@raze__futures_sink__0_3_8//:futures_sink",
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__pin_project_lite__0_1_11//:pin_project_lite", "@raze__pin_project_lite__0_1_11//:pin_project_lite",
"@raze__tokio__0_2_22//:tokio", "@raze__tokio__0_2_23//:tokio",
], ],
) )

View File

@ -30,6 +30,8 @@ licenses([
# Generated Targets # Generated Targets
# Unsupported target "graphemes" with type "bench" omitted
rust_library( rust_library(
name = "unicode_segmentation", name = "unicode_segmentation",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
@ -45,7 +47,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.6.0", version = "1.7.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],