update Rust deps

This commit is contained in:
Damien Elmes 2021-06-18 18:12:06 +10:00
parent 039be57499
commit e6a7b8fba1
8 changed files with 21 additions and 21 deletions

8
Cargo.lock generated
View file

@ -1831,9 +1831,9 @@ dependencies = [
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.2.8" version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc" checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
dependencies = [ dependencies = [
"bitflags", "bitflags",
] ]
@ -2671,9 +2671,9 @@ dependencies = [
[[package]] [[package]]
name = "vcpkg" name = "vcpkg"
version = "0.2.13" version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "025ce40a007e1907e58d5bc1a594def78e5573bb0b1160bc389634e8f12e4faa" checksum = "70455df2fdf4e9bf580a92e443f1eb0303c390d682e2ea817312c9e81f8c3399"
[[package]] [[package]]
name = "version_check" name = "version_check"

View file

@ -1843,12 +1843,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__redox_syscall__0_2_8", name = "raze__redox_syscall__0_2_9",
url = "https://crates.io/api/v1/crates/redox_syscall/0.2.8/download", url = "https://crates.io/api/v1/crates/redox_syscall/0.2.9/download",
type = "tar.gz", type = "tar.gz",
sha256 = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc", sha256 = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee",
strip_prefix = "redox_syscall-0.2.8", strip_prefix = "redox_syscall-0.2.9",
build_file = Label("//cargo/remote:BUILD.redox_syscall-0.2.8.bazel"), build_file = Label("//cargo/remote:BUILD.redox_syscall-0.2.9.bazel"),
) )
maybe( maybe(
@ -2693,12 +2693,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__vcpkg__0_2_13", name = "raze__vcpkg__0_2_14",
url = "https://crates.io/api/v1/crates/vcpkg/0.2.13/download", url = "https://crates.io/api/v1/crates/vcpkg/0.2.14/download",
type = "tar.gz", type = "tar.gz",
sha256 = "025ce40a007e1907e58d5bc1a594def78e5573bb0b1160bc389634e8f12e4faa", sha256 = "70455df2fdf4e9bf580a92e443f1eb0303c390d682e2ea817312c9e81f8c3399",
strip_prefix = "vcpkg-0.2.13", strip_prefix = "vcpkg-0.2.14",
build_file = Label("//cargo/remote:BUILD.vcpkg-0.2.13.bazel"), build_file = Label("//cargo/remote:BUILD.vcpkg-0.2.14.bazel"),
) )
maybe( maybe(

View file

@ -1675,7 +1675,7 @@
}, },
{ {
"name": "redox_syscall", "name": "redox_syscall",
"version": "0.2.8", "version": "0.2.9",
"authors": "Jeremy Soller <jackpot51@gmail.com>", "authors": "Jeremy Soller <jackpot51@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/syscall", "repository": "https://gitlab.redox-os.org/redox-os/syscall",
"license": "MIT", "license": "MIT",
@ -2449,7 +2449,7 @@
}, },
{ {
"name": "vcpkg", "name": "vcpkg",
"version": "0.2.13", "version": "0.2.14",
"authors": "Jim McGrath <jimmc2@gmail.com>", "authors": "Jim McGrath <jimmc2@gmail.com>",
"repository": "https://github.com/mcgoo/vcpkg-rs", "repository": "https://github.com/mcgoo/vcpkg-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",

View file

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

View file

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

View file

@ -55,7 +55,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.8", version = "0.2.9",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",

View file

@ -50,6 +50,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__getrandom__0_2_3//:getrandom", "@raze__getrandom__0_2_3//:getrandom",
"@raze__redox_syscall__0_2_8//:redox_syscall", "@raze__redox_syscall__0_2_9//:redox_syscall",
], ],
) )

View file

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