roll back slog-term due to Windows breakage

This commit is contained in:
Damien Elmes 2021-03-10 12:14:48 +10:00
parent bb65d7bfda
commit 77accb458f
44 changed files with 425 additions and 248 deletions

88
Cargo.lock generated
View file

@ -97,6 +97,7 @@ dependencies = [
"slog-term", "slog-term",
"strum", "strum",
"tempfile", "tempfile",
"term",
"tokio", "tokio",
"unic-langid", "unic-langid",
"unicase", "unicase",
@ -203,9 +204,9 @@ dependencies = [
[[package]] [[package]]
name = "async-trait" name = "async-trait"
version = "0.1.47" version = "0.1.48"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e098e9c493fdf92832223594d9a164f96bdf17ba81a42aff86f85c76768726a" checksum = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -273,6 +274,17 @@ dependencies = [
"wyz", "wyz",
] ]
[[package]]
name = "blake2b_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
dependencies = [
"arrayref",
"arrayvec 0.5.2",
"constant_time_eq",
]
[[package]] [[package]]
name = "blake3" name = "blake3"
version = "0.3.7" version = "0.3.7"
@ -458,20 +470,20 @@ dependencies = [
] ]
[[package]] [[package]]
name = "dirs-next" name = "dirs"
version = "2.0.0" version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 0.1.10",
"dirs-sys-next", "dirs-sys",
] ]
[[package]] [[package]]
name = "dirs-sys-next" name = "dirs-sys"
version = "0.1.2" version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
dependencies = [ dependencies = [
"libc", "libc",
"redox_users", "redox_users",
@ -1502,7 +1514,7 @@ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"instant", "instant",
"libc", "libc",
"redox_syscall", "redox_syscall 0.2.5",
"smallvec", "smallvec",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@ -1880,6 +1892,12 @@ dependencies = [
"rand_core 0.5.1", "rand_core 0.5.1",
] ]
[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.2.5" version = "0.2.5"
@ -1891,12 +1909,13 @@ dependencies = [
[[package]] [[package]]
name = "redox_users" name = "redox_users"
version = "0.4.0" version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
dependencies = [ dependencies = [
"getrandom 0.2.2", "getrandom 0.1.16",
"redox_syscall", "redox_syscall 0.1.57",
"rust-argon2",
] ]
[[package]] [[package]]
@ -2026,6 +2045,18 @@ dependencies = [
"smallvec", "smallvec",
] ]
[[package]]
name = "rust-argon2"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
dependencies = [
"base64 0.13.0",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
]
[[package]] [[package]]
name = "rustc-demangle" name = "rustc-demangle"
version = "0.1.18" version = "0.1.18"
@ -2051,12 +2082,6 @@ dependencies = [
"webpki", "webpki",
] ]
[[package]]
name = "rustversion"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd"
[[package]] [[package]]
name = "ryu" name = "ryu"
version = "1.0.5" version = "1.0.5"
@ -2091,9 +2116,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework" name = "security-framework"
version = "2.1.1" version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166" checksum = "d493c5f39e02dfb062cd8f33301f90f9b13b650e8c1b1d0fd75c19dd64bff69d"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"core-foundation", "core-foundation",
@ -2274,9 +2299,9 @@ dependencies = [
[[package]] [[package]]
name = "slog-term" name = "slog-term"
version = "2.8.0" version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95c1e7e5aab61ced6006149ea772770b84a0d16ce0f7885def313e4829946d76" checksum = "bab1d807cf71129b05ce36914e1dbb6fbfbdecaf686301cb457f4fa967f9f5b6"
dependencies = [ dependencies = [
"atty", "atty",
"chrono", "chrono",
@ -2374,9 +2399,9 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
[[package]] [[package]]
name = "syn" name = "syn"
version = "1.0.62" version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "123a78a3596b24fee53a6464ce52d8ecbf62241e6294c7e7fe12086cd161f512" checksum = "8fd9bc7ccc2688b3344c2f48b9b546648b25ce0b20fc717ee7fa7981a8ca9717"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2416,7 +2441,7 @@ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"libc", "libc",
"rand 0.8.3", "rand 0.8.3",
"redox_syscall", "redox_syscall 0.2.5",
"remove_dir_all", "remove_dir_all",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@ -2434,12 +2459,11 @@ dependencies = [
[[package]] [[package]]
name = "term" name = "term"
version = "0.7.0" version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" checksum = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5"
dependencies = [ dependencies = [
"dirs-next", "dirs",
"rustversion",
"winapi 0.3.9", "winapi 0.3.9",
] ]

View file

@ -163,12 +163,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__async_trait__0_1_47", name = "raze__async_trait__0_1_48",
url = "https://crates.io/api/v1/crates/async-trait/0.1.47/download", url = "https://crates.io/api/v1/crates/async-trait/0.1.48/download",
type = "tar.gz", type = "tar.gz",
sha256 = "7e098e9c493fdf92832223594d9a164f96bdf17ba81a42aff86f85c76768726a", sha256 = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf",
strip_prefix = "async-trait-0.1.47", strip_prefix = "async-trait-0.1.48",
build_file = Label("//cargo/remote:BUILD.async-trait-0.1.47.bazel"), build_file = Label("//cargo/remote:BUILD.async-trait-0.1.48.bazel"),
) )
maybe( maybe(
@ -241,6 +241,16 @@ def raze_fetch_remote_crates():
build_file = Label("//cargo/remote:BUILD.bitvec-0.19.5.bazel"), build_file = Label("//cargo/remote:BUILD.bitvec-0.19.5.bazel"),
) )
maybe(
http_archive,
name = "raze__blake2b_simd__0_5_11",
url = "https://crates.io/api/v1/crates/blake2b_simd/0.5.11/download",
type = "tar.gz",
sha256 = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587",
strip_prefix = "blake2b_simd-0.5.11",
build_file = Label("//cargo/remote:BUILD.blake2b_simd-0.5.11.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__blake3__0_3_7", name = "raze__blake3__0_3_7",
@ -453,22 +463,22 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__dirs_next__2_0_0", name = "raze__dirs__2_0_2",
url = "https://crates.io/api/v1/crates/dirs-next/2.0.0/download", url = "https://crates.io/api/v1/crates/dirs/2.0.2/download",
type = "tar.gz", type = "tar.gz",
sha256 = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1", sha256 = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3",
strip_prefix = "dirs-next-2.0.0", strip_prefix = "dirs-2.0.2",
build_file = Label("//cargo/remote:BUILD.dirs-next-2.0.0.bazel"), build_file = Label("//cargo/remote:BUILD.dirs-2.0.2.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__dirs_sys_next__0_1_2", name = "raze__dirs_sys__0_3_5",
url = "https://crates.io/api/v1/crates/dirs-sys-next/0.1.2/download", url = "https://crates.io/api/v1/crates/dirs-sys/0.3.5/download",
type = "tar.gz", type = "tar.gz",
sha256 = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d", sha256 = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a",
strip_prefix = "dirs-sys-next-0.1.2", strip_prefix = "dirs-sys-0.3.5",
build_file = Label("//cargo/remote:BUILD.dirs-sys-next-0.1.2.bazel"), build_file = Label("//cargo/remote:BUILD.dirs-sys-0.3.5.bazel"),
) )
maybe( maybe(
@ -1931,6 +1941,16 @@ def raze_fetch_remote_crates():
build_file = Label("//cargo/remote:BUILD.rand_pcg-0.2.1.bazel"), build_file = Label("//cargo/remote:BUILD.rand_pcg-0.2.1.bazel"),
) )
maybe(
http_archive,
name = "raze__redox_syscall__0_1_57",
url = "https://crates.io/api/v1/crates/redox_syscall/0.1.57/download",
type = "tar.gz",
sha256 = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce",
strip_prefix = "redox_syscall-0.1.57",
build_file = Label("//cargo/remote:BUILD.redox_syscall-0.1.57.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__redox_syscall__0_2_5", name = "raze__redox_syscall__0_2_5",
@ -1943,12 +1963,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__redox_users__0_4_0", name = "raze__redox_users__0_3_5",
url = "https://crates.io/api/v1/crates/redox_users/0.4.0/download", url = "https://crates.io/api/v1/crates/redox_users/0.3.5/download",
type = "tar.gz", type = "tar.gz",
sha256 = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64", sha256 = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d",
strip_prefix = "redox_users-0.4.0", strip_prefix = "redox_users-0.3.5",
build_file = Label("//cargo/remote:BUILD.redox_users-0.4.0.bazel"), build_file = Label("//cargo/remote:BUILD.redox_users-0.3.5.bazel"),
) )
maybe( maybe(
@ -2031,6 +2051,16 @@ def raze_fetch_remote_crates():
build_file = Label("//cargo/remote:BUILD.rusqlite-0.24.2.bazel"), build_file = Label("//cargo/remote:BUILD.rusqlite-0.24.2.bazel"),
) )
maybe(
http_archive,
name = "raze__rust_argon2__0_8_3",
url = "https://crates.io/api/v1/crates/rust-argon2/0.8.3/download",
type = "tar.gz",
sha256 = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb",
strip_prefix = "rust-argon2-0.8.3",
build_file = Label("//cargo/remote:BUILD.rust-argon2-0.8.3.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__rustc_demangle__0_1_18", name = "raze__rustc_demangle__0_1_18",
@ -2061,16 +2091,6 @@ def raze_fetch_remote_crates():
build_file = Label("//cargo/remote:BUILD.rustls-0.18.1.bazel"), build_file = Label("//cargo/remote:BUILD.rustls-0.18.1.bazel"),
) )
maybe(
http_archive,
name = "raze__rustversion__1_0_4",
url = "https://crates.io/api/v1/crates/rustversion/1.0.4/download",
type = "tar.gz",
sha256 = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd",
strip_prefix = "rustversion-1.0.4",
build_file = Label("//cargo/remote:BUILD.rustversion-1.0.4.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__ryu__1_0_5", name = "raze__ryu__1_0_5",
@ -2113,12 +2133,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__security_framework__2_1_1", name = "raze__security_framework__2_1_2",
url = "https://crates.io/api/v1/crates/security-framework/2.1.1/download", url = "https://crates.io/api/v1/crates/security-framework/2.1.2/download",
type = "tar.gz", type = "tar.gz",
sha256 = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166", sha256 = "d493c5f39e02dfb062cd8f33301f90f9b13b650e8c1b1d0fd75c19dd64bff69d",
strip_prefix = "security-framework-2.1.1", strip_prefix = "security-framework-2.1.2",
build_file = Label("//cargo/remote:BUILD.security-framework-2.1.1.bazel"), build_file = Label("//cargo/remote:BUILD.security-framework-2.1.2.bazel"),
) )
maybe( maybe(
@ -2293,12 +2313,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__slog_term__2_8_0", name = "raze__slog_term__2_6_0",
url = "https://crates.io/api/v1/crates/slog-term/2.8.0/download", url = "https://crates.io/api/v1/crates/slog-term/2.6.0/download",
type = "tar.gz", type = "tar.gz",
sha256 = "95c1e7e5aab61ced6006149ea772770b84a0d16ce0f7885def313e4829946d76", sha256 = "bab1d807cf71129b05ce36914e1dbb6fbfbdecaf686301cb457f4fa967f9f5b6",
strip_prefix = "slog-term-2.8.0", strip_prefix = "slog-term-2.6.0",
build_file = Label("//cargo/remote:BUILD.slog-term-2.8.0.bazel"), build_file = Label("//cargo/remote:BUILD.slog-term-2.6.0.bazel"),
) )
maybe( maybe(
@ -2403,12 +2423,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__syn__1_0_62", name = "raze__syn__1_0_63",
url = "https://crates.io/api/v1/crates/syn/1.0.62/download", url = "https://crates.io/api/v1/crates/syn/1.0.63/download",
type = "tar.gz", type = "tar.gz",
sha256 = "123a78a3596b24fee53a6464ce52d8ecbf62241e6294c7e7fe12086cd161f512", sha256 = "8fd9bc7ccc2688b3344c2f48b9b546648b25ce0b20fc717ee7fa7981a8ca9717",
strip_prefix = "syn-1.0.62", strip_prefix = "syn-1.0.63",
build_file = Label("//cargo/remote:BUILD.syn-1.0.62.bazel"), build_file = Label("//cargo/remote:BUILD.syn-1.0.63.bazel"),
) )
maybe( maybe(
@ -2463,12 +2483,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__term__0_7_0", name = "raze__term__0_6_1",
url = "https://crates.io/api/v1/crates/term/0.7.0/download", url = "https://crates.io/api/v1/crates/term/0.6.1/download",
type = "tar.gz", type = "tar.gz",
sha256 = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f", sha256 = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5",
strip_prefix = "term-0.7.0", strip_prefix = "term-0.6.1",
build_file = Label("//cargo/remote:BUILD.term-0.7.0.bazel"), build_file = Label("//cargo/remote:BUILD.term-0.6.1.bazel"),
) )
maybe( maybe(

View file

@ -154,7 +154,7 @@
}, },
{ {
"name": "async-trait", "name": "async-trait",
"version": "0.1.47", "version": "0.1.48",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/async-trait", "repository": "https://github.com/dtolnay/async-trait",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -224,6 +224,15 @@
"license_file": null, "license_file": null,
"description": "A crate for manipulating memory, bit by bit" "description": "A crate for manipulating memory, bit by bit"
}, },
{
"name": "blake2b_simd",
"version": "0.5.11",
"authors": "Jack O'Connor",
"repository": "https://github.com/oconnor663/blake2_simd",
"license": "MIT",
"license_file": null,
"description": "a pure Rust BLAKE2b implementation with dynamic SIMD"
},
{ {
"name": "blake3", "name": "blake3",
"version": "0.3.7", "version": "0.3.7",
@ -414,22 +423,22 @@
"description": "Traits for cryptographic hash functions" "description": "Traits for cryptographic hash functions"
}, },
{ {
"name": "dirs-next", "name": "dirs",
"version": "2.0.0", "version": "2.0.2",
"authors": "The @xdg-rs members", "authors": "Simon Ochsenreither <simon@ochsenreither.de>",
"repository": "https://github.com/xdg-rs/dirs", "repository": "https://github.com/soc/dirs-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS." "description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS."
}, },
{ {
"name": "dirs-sys-next", "name": "dirs-sys",
"version": "0.1.2", "version": "0.3.5",
"authors": "The @xdg-rs members", "authors": "Simon Ochsenreither <simon@ochsenreither.de>",
"repository": "https://github.com/xdg-rs/dirs/tree/master/dirs-sys", "repository": "https://github.com/dirs-dev/dirs-sys-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "system-level helper functions for the dirs and directories crates" "description": "System-level helper functions for the dirs and directories crates."
}, },
{ {
"name": "dtoa", "name": "dtoa",
@ -1745,6 +1754,15 @@
"license_file": null, "license_file": null,
"description": "Selected PCG random number generators" "description": "Selected PCG random number generators"
}, },
{
"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", "name": "redox_syscall",
"version": "0.2.5", "version": "0.2.5",
@ -1756,7 +1774,7 @@
}, },
{ {
"name": "redox_users", "name": "redox_users",
"version": "0.4.0", "version": "0.3.5",
"authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>", "authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/users", "repository": "https://gitlab.redox-os.org/redox-os/users",
"license": "MIT", "license": "MIT",
@ -1844,6 +1862,15 @@
"license_file": null, "license_file": null,
"description": "Ergonomic wrapper for SQLite" "description": "Ergonomic wrapper for SQLite"
}, },
{
"name": "rust-argon2",
"version": "0.8.3",
"authors": "Martijn Rijkeboer <mrr@sru-systems.com>",
"repository": "https://github.com/sru-systems/rust-argon2",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Rust implementation of the Argon2 password hashing function."
},
{ {
"name": "rustc-demangle", "name": "rustc-demangle",
"version": "0.1.18", "version": "0.1.18",
@ -1871,15 +1898,6 @@
"license_file": null, "license_file": null,
"description": "Rustls is a modern TLS library written in Rust." "description": "Rustls is a modern TLS library written in Rust."
}, },
{
"name": "rustversion",
"version": "1.0.4",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/rustversion",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Conditional compilation according to rustc compiler version"
},
{ {
"name": "ryu", "name": "ryu",
"version": "1.0.5", "version": "1.0.5",
@ -1918,7 +1936,7 @@
}, },
{ {
"name": "security-framework", "name": "security-framework",
"version": "2.1.1", "version": "2.1.2",
"authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>", "authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>",
"repository": "https://github.com/kornelski/rust-security-framework", "repository": "https://github.com/kornelski/rust-security-framework",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2080,7 +2098,7 @@
}, },
{ {
"name": "slog-term", "name": "slog-term",
"version": "2.8.0", "version": "2.6.0",
"authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>", "authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>",
"repository": "https://github.com/slog-rs/term", "repository": "https://github.com/slog-rs/term",
"license": "Apache-2.0 OR MIT OR MPL-2.0", "license": "Apache-2.0 OR MIT OR MPL-2.0",
@ -2179,7 +2197,7 @@
}, },
{ {
"name": "syn", "name": "syn",
"version": "1.0.62", "version": "1.0.63",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/syn", "repository": "https://github.com/dtolnay/syn",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2233,7 +2251,7 @@
}, },
{ {
"name": "term", "name": "term",
"version": "0.7.0", "version": "0.6.1",
"authors": "The Rust Project Developers|Steven Allen", "authors": "The Rust Project Developers|Steven Allen",
"repository": "https://github.com/Stebalien/term", "repository": "https://github.com/Stebalien/term",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__askama_shared__0_11_1//:askama_shared", "@raze__askama_shared__0_11_1//:askama_shared",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -63,7 +63,7 @@ rust_library(
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__serde__1_0_124//:serde", "@raze__serde__1_0_124//:serde",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__toml__0_5_8//:toml", "@raze__toml__0_5_8//:toml",
], ],
) )

View file

@ -52,7 +52,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.47", version = "0.1.48",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -74,13 +74,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.47", version = "0.1.48",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":async_trait_build_script", ":async_trait_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -0,0 +1,58 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
rust_library(
name = "blake2b_simd",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.5.11",
# buildifier: leave-alone
deps = [
"@raze__arrayref__0_3_6//:arrayref",
"@raze__arrayvec__0_5_2//:arrayvec",
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
],
)

View file

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

View file

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

View file

@ -52,7 +52,7 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -31,14 +31,14 @@ licenses([
# Generated Targets # Generated Targets
rust_library( rust_library(
name = "dirs_next", name = "dirs",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2018", edition = "2015",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -46,10 +46,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "2.0.0", version = "2.0.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__0_1_10//:cfg_if",
"@raze__dirs_sys_next__0_1_2//:dirs_sys_next", "@raze__dirs_sys__0_3_5//:dirs_sys",
], ],
) )

View file

@ -31,7 +31,7 @@ licenses([
# Generated Targets # Generated Targets
rust_library( rust_library(
name = "dirs_sys_next", name = "dirs_sys",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
aliases = { aliases = {
}, },
@ -40,7 +40,7 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2018", edition = "2015",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.2", version = "0.3.5",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
] + selects.with_or({ ] + selects.with_or({

View file

@ -80,7 +80,7 @@ rust_library(
":failure_derive_build_script", ":failure_derive_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__synstructure__0_12_4//:synstructure", "@raze__synstructure__0_12_4//:synstructure",
], ],
) )

View file

@ -54,6 +54,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -57,7 +57,7 @@ cargo_build_script(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -54,7 +54,7 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__unindent__0_1_7//:unindent", "@raze__unindent__0_1_7//:unindent",
], ],
) )

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -119,7 +119,7 @@ rust_library(
): [ ): [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__libc__0_2_88//:libc", "@raze__libc__0_2_88//:libc",
"@raze__security_framework__2_1_1//:security_framework", "@raze__security_framework__2_1_2//:security_framework",
"@raze__security_framework_sys__2_1_1//:security_framework_sys", "@raze__security_framework_sys__2_1_1//:security_framework_sys",
"@raze__tempfile__3_2_0//:tempfile", "@raze__tempfile__3_2_0//:tempfile",
], ],

View file

@ -54,6 +54,6 @@ rust_library(
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__proc_macro_crate__0_1_5//:proc_macro_crate", "@raze__proc_macro_crate__0_1_5//:proc_macro_crate",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -53,6 +53,6 @@ rust_library(
"@raze__itertools__0_9_0//:itertools", "@raze__itertools__0_9_0//:itertools",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

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

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -30,15 +30,24 @@ licenses([
# Generated Targets # Generated Targets
alias(
name = "redox_syscall",
actual = ":syscall",
tags = [
"cargo-raze",
"manual",
],
)
rust_library( rust_library(
name = "redox_users", name = "syscall",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2018", edition = "2015",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -46,10 +55,8 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.0", version = "0.1.57",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__getrandom__0_2_2//:getrandom",
"@raze__redox_syscall__0_2_5//:redox_syscall",
], ],
) )

View file

@ -0,0 +1,59 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
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 = "redox_users",
srcs = glob(["**/*.rs"]),
crate_features = [
"auth",
"default",
"rust-argon2",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.3.5",
# buildifier: leave-alone
deps = [
"@raze__getrandom__0_1_16//:getrandom",
"@raze__redox_syscall__0_1_57//:redox_syscall",
"@raze__rust_argon2__0_8_3//:rust_argon2",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -0,0 +1,70 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
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
alias(
name = "rust_argon2",
actual = ":argon2",
tags = [
"cargo-raze",
"manual",
],
)
rust_library(
name = "argon2",
srcs = glob(["**/*.rs"]),
crate_features = [
"crossbeam-utils",
"default",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.8.3",
# buildifier: leave-alone
deps = [
"@raze__base64__0_13_0//:base64",
"@raze__blake2b_simd__0_5_11//:blake2b_simd",
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
"@raze__crossbeam_utils__0_8_3//:crossbeam_utils",
],
)
# Unsupported target "integration_test" with type "test" omitted

View file

@ -1,90 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
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
# buildifier: disable=load-on-top
load(
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
"cargo_build_script",
)
cargo_build_script(
name = "rustversion_build_script",
srcs = glob(["**/*.rs"]),
build_script_env = {
},
crate_features = [
],
crate_root = "build/build.rs",
data = glob(["**"]),
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.0.4",
visibility = ["//visibility:private"],
deps = [
],
)
rust_library(
name = "rustversion",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.0.4",
# buildifier: leave-alone
deps = [
":rustversion_build_script",
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test_const" with type "test" omitted
# Unsupported target "test_eval" with type "test" omitted
# Unsupported target "test_parse" with type "test" omitted

View file

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

View file

@ -82,6 +82,6 @@ rust_library(
":serde_derive_build_script", ":serde_derive_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -51,7 +51,7 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -63,7 +63,7 @@ rust_library(
"@raze__slog_async__2_6_0//:slog_async", "@raze__slog_async__2_6_0//:slog_async",
"@raze__slog_scope__4_4_0//:slog_scope", "@raze__slog_scope__4_4_0//:slog_scope",
"@raze__slog_stdlog__4_1_0//:slog_stdlog", "@raze__slog_stdlog__4_1_0//:slog_stdlog",
"@raze__slog_term__2_8_0//:slog_term", "@raze__slog_term__2_6_0//:slog_term",
], ],
) )

View file

@ -58,13 +58,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "2.8.0", version = "2.6.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__atty__0_2_14//:atty", "@raze__atty__0_2_14//:atty",
"@raze__chrono__0_4_19//:chrono", "@raze__chrono__0_4_19//:chrono",
"@raze__slog__2_7_0//:slog", "@raze__slog__2_7_0//:slog",
"@raze__term__0_7_0//:term", "@raze__term__0_6_1//:term",
"@raze__thread_local__1_1_3//:thread_local", "@raze__thread_local__1_1_3//:thread_local",
], ],
) )

View file

@ -52,6 +52,6 @@ rust_library(
"@raze__heck__0_3_2//:heck", "@raze__heck__0_3_2//:heck",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -64,7 +64,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.62", version = "1.0.63",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -102,7 +102,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.62", version = "1.0.63",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":syn_build_script", ":syn_build_script",

View file

@ -53,7 +53,7 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__unicode_xid__0_2_1//:unicode_xid", "@raze__unicode_xid__0_2_1//:unicode_xid",
], ],
) )

View file

@ -49,10 +49,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.7.0", version = "0.6.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__dirs_next__2_0_0//:dirs_next", "@raze__dirs__2_0_2//:dirs",
] + selects.with_or({ ] + selects.with_or({
# cfg(windows) # cfg(windows)
( (

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
], ],
) )

View file

@ -53,7 +53,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__unic_langid_impl__0_9_0//:unic_langid_impl", "@raze__unic_langid_impl__0_9_0//:unic_langid_impl",
], ],
) )

View file

@ -55,7 +55,7 @@ rust_library(
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__wasm_bindgen_shared__0_2_71//:wasm_bindgen_shared", "@raze__wasm_bindgen_shared__0_2_71//:wasm_bindgen_shared",
], ],
) )

View file

@ -52,7 +52,7 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn", "@raze__syn__1_0_63//:syn",
"@raze__wasm_bindgen_backend__0_2_71//:wasm_bindgen_backend", "@raze__wasm_bindgen_backend__0_2_71//:wasm_bindgen_backend",
"@raze__wasm_bindgen_shared__0_2_71//:wasm_bindgen_shared", "@raze__wasm_bindgen_shared__0_2_71//:wasm_bindgen_shared",
], ],

View file

@ -41,7 +41,7 @@ alias(
alias( alias(
name = "async_trait", name = "async_trait",
actual = "@raze__async_trait__0_1_47//:async_trait", actual = "@raze__async_trait__0_1_48//:async_trait",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -419,7 +419,7 @@ alias(
alias( alias(
name = "slog_term", name = "slog_term",
actual = "@raze__slog_term__2_8_0//:slog_term", actual = "@raze__slog_term__2_6_0//:slog_term",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -444,6 +444,15 @@ alias(
], ],
) )
alias(
name = "term",
actual = "@raze__term__0_6_1//:term",
tags = [
"cargo-raze",
"manual",
],
)
alias( alias(
name = "tokio", name = "tokio",
actual = "@raze__tokio__0_2_25//:tokio", actual = "@raze__tokio__0_2_25//:tokio",