mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
roll back slog-term due to Windows breakage
This commit is contained in:
parent
bb65d7bfda
commit
77accb458f
44 changed files with 425 additions and 248 deletions
88
Cargo.lock
generated
88
Cargo.lock
generated
|
@ -97,6 +97,7 @@ dependencies = [
|
|||
"slog-term",
|
||||
"strum",
|
||||
"tempfile",
|
||||
"term",
|
||||
"tokio",
|
||||
"unic-langid",
|
||||
"unicase",
|
||||
|
@ -203,9 +204,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "async-trait"
|
||||
version = "0.1.47"
|
||||
version = "0.1.48"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7e098e9c493fdf92832223594d9a164f96bdf17ba81a42aff86f85c76768726a"
|
||||
checksum = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -273,6 +274,17 @@ dependencies = [
|
|||
"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]]
|
||||
name = "blake3"
|
||||
version = "0.3.7"
|
||||
|
@ -458,20 +470,20 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "dirs-next"
|
||||
version = "2.0.0"
|
||||
name = "dirs"
|
||||
version = "2.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
|
||||
checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
|
||||
dependencies = [
|
||||
"cfg-if 1.0.0",
|
||||
"dirs-sys-next",
|
||||
"cfg-if 0.1.10",
|
||||
"dirs-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "dirs-sys-next"
|
||||
version = "0.1.2"
|
||||
name = "dirs-sys"
|
||||
version = "0.3.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
||||
checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"redox_users",
|
||||
|
@ -1502,7 +1514,7 @@ dependencies = [
|
|||
"cfg-if 1.0.0",
|
||||
"instant",
|
||||
"libc",
|
||||
"redox_syscall",
|
||||
"redox_syscall 0.2.5",
|
||||
"smallvec",
|
||||
"winapi 0.3.9",
|
||||
]
|
||||
|
@ -1880,6 +1892,12 @@ dependencies = [
|
|||
"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]]
|
||||
name = "redox_syscall"
|
||||
version = "0.2.5"
|
||||
|
@ -1891,12 +1909,13 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "redox_users"
|
||||
version = "0.4.0"
|
||||
version = "0.3.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
|
||||
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
|
||||
dependencies = [
|
||||
"getrandom 0.2.2",
|
||||
"redox_syscall",
|
||||
"getrandom 0.1.16",
|
||||
"redox_syscall 0.1.57",
|
||||
"rust-argon2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -2026,6 +2045,18 @@ dependencies = [
|
|||
"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]]
|
||||
name = "rustc-demangle"
|
||||
version = "0.1.18"
|
||||
|
@ -2051,12 +2082,6 @@ dependencies = [
|
|||
"webpki",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rustversion"
|
||||
version = "1.0.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd"
|
||||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "1.0.5"
|
||||
|
@ -2091,9 +2116,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "security-framework"
|
||||
version = "2.1.1"
|
||||
version = "2.1.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166"
|
||||
checksum = "d493c5f39e02dfb062cd8f33301f90f9b13b650e8c1b1d0fd75c19dd64bff69d"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"core-foundation",
|
||||
|
@ -2274,9 +2299,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "slog-term"
|
||||
version = "2.8.0"
|
||||
version = "2.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "95c1e7e5aab61ced6006149ea772770b84a0d16ce0f7885def313e4829946d76"
|
||||
checksum = "bab1d807cf71129b05ce36914e1dbb6fbfbdecaf686301cb457f4fa967f9f5b6"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"chrono",
|
||||
|
@ -2374,9 +2399,9 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
|
|||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "1.0.62"
|
||||
version = "1.0.63"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "123a78a3596b24fee53a6464ce52d8ecbf62241e6294c7e7fe12086cd161f512"
|
||||
checksum = "8fd9bc7ccc2688b3344c2f48b9b546648b25ce0b20fc717ee7fa7981a8ca9717"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -2416,7 +2441,7 @@ dependencies = [
|
|||
"cfg-if 1.0.0",
|
||||
"libc",
|
||||
"rand 0.8.3",
|
||||
"redox_syscall",
|
||||
"redox_syscall 0.2.5",
|
||||
"remove_dir_all",
|
||||
"winapi 0.3.9",
|
||||
]
|
||||
|
@ -2434,12 +2459,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "term"
|
||||
version = "0.7.0"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
|
||||
checksum = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5"
|
||||
dependencies = [
|
||||
"dirs-next",
|
||||
"rustversion",
|
||||
"dirs",
|
||||
"winapi 0.3.9",
|
||||
]
|
||||
|
||||
|
|
120
cargo/crates.bzl
120
cargo/crates.bzl
|
@ -163,12 +163,12 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__async_trait__0_1_47",
|
||||
url = "https://crates.io/api/v1/crates/async-trait/0.1.47/download",
|
||||
name = "raze__async_trait__0_1_48",
|
||||
url = "https://crates.io/api/v1/crates/async-trait/0.1.48/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "7e098e9c493fdf92832223594d9a164f96bdf17ba81a42aff86f85c76768726a",
|
||||
strip_prefix = "async-trait-0.1.47",
|
||||
build_file = Label("//cargo/remote:BUILD.async-trait-0.1.47.bazel"),
|
||||
sha256 = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf",
|
||||
strip_prefix = "async-trait-0.1.48",
|
||||
build_file = Label("//cargo/remote:BUILD.async-trait-0.1.48.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
@ -241,6 +241,16 @@ def raze_fetch_remote_crates():
|
|||
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(
|
||||
http_archive,
|
||||
name = "raze__blake3__0_3_7",
|
||||
|
@ -453,22 +463,22 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__dirs_next__2_0_0",
|
||||
url = "https://crates.io/api/v1/crates/dirs-next/2.0.0/download",
|
||||
name = "raze__dirs__2_0_2",
|
||||
url = "https://crates.io/api/v1/crates/dirs/2.0.2/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1",
|
||||
strip_prefix = "dirs-next-2.0.0",
|
||||
build_file = Label("//cargo/remote:BUILD.dirs-next-2.0.0.bazel"),
|
||||
sha256 = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3",
|
||||
strip_prefix = "dirs-2.0.2",
|
||||
build_file = Label("//cargo/remote:BUILD.dirs-2.0.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__dirs_sys_next__0_1_2",
|
||||
url = "https://crates.io/api/v1/crates/dirs-sys-next/0.1.2/download",
|
||||
name = "raze__dirs_sys__0_3_5",
|
||||
url = "https://crates.io/api/v1/crates/dirs-sys/0.3.5/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d",
|
||||
strip_prefix = "dirs-sys-next-0.1.2",
|
||||
build_file = Label("//cargo/remote:BUILD.dirs-sys-next-0.1.2.bazel"),
|
||||
sha256 = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a",
|
||||
strip_prefix = "dirs-sys-0.3.5",
|
||||
build_file = Label("//cargo/remote:BUILD.dirs-sys-0.3.5.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
@ -1931,6 +1941,16 @@ def raze_fetch_remote_crates():
|
|||
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(
|
||||
http_archive,
|
||||
name = "raze__redox_syscall__0_2_5",
|
||||
|
@ -1943,12 +1963,12 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__redox_users__0_4_0",
|
||||
url = "https://crates.io/api/v1/crates/redox_users/0.4.0/download",
|
||||
name = "raze__redox_users__0_3_5",
|
||||
url = "https://crates.io/api/v1/crates/redox_users/0.3.5/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64",
|
||||
strip_prefix = "redox_users-0.4.0",
|
||||
build_file = Label("//cargo/remote:BUILD.redox_users-0.4.0.bazel"),
|
||||
sha256 = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d",
|
||||
strip_prefix = "redox_users-0.3.5",
|
||||
build_file = Label("//cargo/remote:BUILD.redox_users-0.3.5.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
@ -2031,6 +2051,16 @@ def raze_fetch_remote_crates():
|
|||
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(
|
||||
http_archive,
|
||||
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"),
|
||||
)
|
||||
|
||||
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(
|
||||
http_archive,
|
||||
name = "raze__ryu__1_0_5",
|
||||
|
@ -2113,12 +2133,12 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__security_framework__2_1_1",
|
||||
url = "https://crates.io/api/v1/crates/security-framework/2.1.1/download",
|
||||
name = "raze__security_framework__2_1_2",
|
||||
url = "https://crates.io/api/v1/crates/security-framework/2.1.2/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166",
|
||||
strip_prefix = "security-framework-2.1.1",
|
||||
build_file = Label("//cargo/remote:BUILD.security-framework-2.1.1.bazel"),
|
||||
sha256 = "d493c5f39e02dfb062cd8f33301f90f9b13b650e8c1b1d0fd75c19dd64bff69d",
|
||||
strip_prefix = "security-framework-2.1.2",
|
||||
build_file = Label("//cargo/remote:BUILD.security-framework-2.1.2.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
@ -2293,12 +2313,12 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__slog_term__2_8_0",
|
||||
url = "https://crates.io/api/v1/crates/slog-term/2.8.0/download",
|
||||
name = "raze__slog_term__2_6_0",
|
||||
url = "https://crates.io/api/v1/crates/slog-term/2.6.0/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "95c1e7e5aab61ced6006149ea772770b84a0d16ce0f7885def313e4829946d76",
|
||||
strip_prefix = "slog-term-2.8.0",
|
||||
build_file = Label("//cargo/remote:BUILD.slog-term-2.8.0.bazel"),
|
||||
sha256 = "bab1d807cf71129b05ce36914e1dbb6fbfbdecaf686301cb457f4fa967f9f5b6",
|
||||
strip_prefix = "slog-term-2.6.0",
|
||||
build_file = Label("//cargo/remote:BUILD.slog-term-2.6.0.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
@ -2403,12 +2423,12 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__syn__1_0_62",
|
||||
url = "https://crates.io/api/v1/crates/syn/1.0.62/download",
|
||||
name = "raze__syn__1_0_63",
|
||||
url = "https://crates.io/api/v1/crates/syn/1.0.63/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "123a78a3596b24fee53a6464ce52d8ecbf62241e6294c7e7fe12086cd161f512",
|
||||
strip_prefix = "syn-1.0.62",
|
||||
build_file = Label("//cargo/remote:BUILD.syn-1.0.62.bazel"),
|
||||
sha256 = "8fd9bc7ccc2688b3344c2f48b9b546648b25ce0b20fc717ee7fa7981a8ca9717",
|
||||
strip_prefix = "syn-1.0.63",
|
||||
build_file = Label("//cargo/remote:BUILD.syn-1.0.63.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
@ -2463,12 +2483,12 @@ def raze_fetch_remote_crates():
|
|||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "raze__term__0_7_0",
|
||||
url = "https://crates.io/api/v1/crates/term/0.7.0/download",
|
||||
name = "raze__term__0_6_1",
|
||||
url = "https://crates.io/api/v1/crates/term/0.6.1/download",
|
||||
type = "tar.gz",
|
||||
sha256 = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f",
|
||||
strip_prefix = "term-0.7.0",
|
||||
build_file = Label("//cargo/remote:BUILD.term-0.7.0.bazel"),
|
||||
sha256 = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5",
|
||||
strip_prefix = "term-0.6.1",
|
||||
build_file = Label("//cargo/remote:BUILD.term-0.6.1.bazel"),
|
||||
)
|
||||
|
||||
maybe(
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
},
|
||||
{
|
||||
"name": "async-trait",
|
||||
"version": "0.1.47",
|
||||
"version": "0.1.48",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/async-trait",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -224,6 +224,15 @@
|
|||
"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",
|
||||
|
@ -414,22 +423,22 @@
|
|||
"description": "Traits for cryptographic hash functions"
|
||||
},
|
||||
{
|
||||
"name": "dirs-next",
|
||||
"version": "2.0.0",
|
||||
"authors": "The @xdg-rs members",
|
||||
"repository": "https://github.com/xdg-rs/dirs",
|
||||
"name": "dirs",
|
||||
"version": "2.0.2",
|
||||
"authors": "Simon Ochsenreither <simon@ochsenreither.de>",
|
||||
"repository": "https://github.com/soc/dirs-rs",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
"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."
|
||||
},
|
||||
{
|
||||
"name": "dirs-sys-next",
|
||||
"version": "0.1.2",
|
||||
"authors": "The @xdg-rs members",
|
||||
"repository": "https://github.com/xdg-rs/dirs/tree/master/dirs-sys",
|
||||
"name": "dirs-sys",
|
||||
"version": "0.3.5",
|
||||
"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"
|
||||
"description": "System-level helper functions for the dirs and directories crates."
|
||||
},
|
||||
{
|
||||
"name": "dtoa",
|
||||
|
@ -1745,6 +1754,15 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "0.2.5",
|
||||
|
@ -1756,7 +1774,7 @@
|
|||
},
|
||||
{
|
||||
"name": "redox_users",
|
||||
"version": "0.4.0",
|
||||
"version": "0.3.5",
|
||||
"authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>",
|
||||
"repository": "https://gitlab.redox-os.org/redox-os/users",
|
||||
"license": "MIT",
|
||||
|
@ -1844,6 +1862,15 @@
|
|||
"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-demangle",
|
||||
"version": "0.1.18",
|
||||
|
@ -1871,15 +1898,6 @@
|
|||
"license_file": null,
|
||||
"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",
|
||||
"version": "1.0.5",
|
||||
|
@ -1918,7 +1936,7 @@
|
|||
},
|
||||
{
|
||||
"name": "security-framework",
|
||||
"version": "2.1.1",
|
||||
"version": "2.1.2",
|
||||
"authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>",
|
||||
"repository": "https://github.com/kornelski/rust-security-framework",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2080,7 +2098,7 @@
|
|||
},
|
||||
{
|
||||
"name": "slog-term",
|
||||
"version": "2.8.0",
|
||||
"version": "2.6.0",
|
||||
"authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>",
|
||||
"repository": "https://github.com/slog-rs/term",
|
||||
"license": "Apache-2.0 OR MIT OR MPL-2.0",
|
||||
|
@ -2179,7 +2197,7 @@
|
|||
},
|
||||
{
|
||||
"name": "syn",
|
||||
"version": "1.0.62",
|
||||
"version": "1.0.63",
|
||||
"authors": "David Tolnay <dtolnay@gmail.com>",
|
||||
"repository": "https://github.com/dtolnay/syn",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
@ -2233,7 +2251,7 @@
|
|||
},
|
||||
{
|
||||
"name": "term",
|
||||
"version": "0.7.0",
|
||||
"version": "0.6.1",
|
||||
"authors": "The Rust Project Developers|Steven Allen",
|
||||
"repository": "https://github.com/Stebalien/term",
|
||||
"license": "Apache-2.0 OR MIT",
|
||||
|
|
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__askama_shared__0_11_1//:askama_shared",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -63,7 +63,7 @@ rust_library(
|
|||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__serde__1_0_124//:serde",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
"@raze__toml__0_5_8//:toml",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -52,7 +52,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.47",
|
||||
version = "0.1.48",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -74,13 +74,13 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.47",
|
||||
version = "0.1.48",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":async_trait_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
58
cargo/remote/BUILD.blake2b_simd-0.5.11.bazel
vendored
Normal file
58
cargo/remote/BUILD.blake2b_simd-0.5.11.bazel
vendored
Normal 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",
|
||||
],
|
||||
)
|
|
@ -41,6 +41,7 @@ cargo_build_script(
|
|||
build_script_env = {
|
||||
},
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
|
@ -67,6 +68,7 @@ rust_library(
|
|||
name = "crossbeam_utils",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
"default",
|
||||
"lazy_static",
|
||||
"std",
|
||||
],
|
||||
|
|
2
cargo/remote/BUILD.ctor-0.1.19.bazel
vendored
2
cargo/remote/BUILD.ctor-0.1.19.bazel
vendored
|
@ -52,6 +52,6 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.derivative-2.2.0.bazel
vendored
2
cargo/remote/BUILD.derivative-2.2.0.bazel
vendored
|
@ -52,7 +52,7 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -31,14 +31,14 @@ licenses([
|
|||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "dirs_next",
|
||||
name = "dirs",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -46,10 +46,10 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.0.0",
|
||||
version = "2.0.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__cfg_if__1_0_0//:cfg_if",
|
||||
"@raze__dirs_sys_next__0_1_2//:dirs_sys_next",
|
||||
"@raze__cfg_if__0_1_10//:cfg_if",
|
||||
"@raze__dirs_sys__0_3_5//:dirs_sys",
|
||||
],
|
||||
)
|
|
@ -31,7 +31,7 @@ licenses([
|
|||
# Generated Targets
|
||||
|
||||
rust_library(
|
||||
name = "dirs_sys_next",
|
||||
name = "dirs_sys",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
aliases = {
|
||||
},
|
||||
|
@ -40,7 +40,7 @@ rust_library(
|
|||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -48,7 +48,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.1.2",
|
||||
version = "0.3.5",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
] + selects.with_or({
|
|
@ -80,7 +80,7 @@ rust_library(
|
|||
":failure_derive_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
"@raze__synstructure__0_12_4//:synstructure",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -54,6 +54,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.ghost-0.1.2.bazel
vendored
2
cargo/remote/BUILD.ghost-0.1.2.bazel
vendored
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.html5ever-0.25.1.bazel
vendored
2
cargo/remote/BUILD.html5ever-0.25.1.bazel
vendored
|
@ -57,7 +57,7 @@ cargo_build_script(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
2
cargo/remote/BUILD.indoc-impl-0.3.6.bazel
vendored
2
cargo/remote/BUILD.indoc-impl-0.3.6.bazel
vendored
|
@ -54,7 +54,7 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
"@raze__unindent__0_1_7//:unindent",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
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(
|
|||
): [
|
||||
"@raze__lazy_static__1_4_0//:lazy_static",
|
||||
"@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__tempfile__3_2_0//:tempfile",
|
||||
],
|
||||
|
|
|
@ -54,6 +54,6 @@ rust_library(
|
|||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__proc_macro_crate__0_1_5//:proc_macro_crate",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.prost-derive-0.7.0.bazel
vendored
2
cargo/remote/BUILD.prost-derive-0.7.0.bazel
vendored
|
@ -53,6 +53,6 @@ rust_library(
|
|||
"@raze__itertools__0_9_0//:itertools",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
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_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -30,15 +30,24 @@ licenses([
|
|||
|
||||
# Generated Targets
|
||||
|
||||
alias(
|
||||
name = "redox_syscall",
|
||||
actual = ":syscall",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
rust_library(
|
||||
name = "redox_users",
|
||||
name = "syscall",
|
||||
srcs = glob(["**/*.rs"]),
|
||||
crate_features = [
|
||||
],
|
||||
crate_root = "src/lib.rs",
|
||||
crate_type = "lib",
|
||||
data = [],
|
||||
edition = "2018",
|
||||
edition = "2015",
|
||||
rustc_flags = [
|
||||
"--cap-lints=allow",
|
||||
],
|
||||
|
@ -46,10 +55,8 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.4.0",
|
||||
version = "0.1.57",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__getrandom__0_2_2//:getrandom",
|
||||
"@raze__redox_syscall__0_2_5//:redox_syscall",
|
||||
],
|
||||
)
|
59
cargo/remote/BUILD.redox_users-0.3.5.bazel
vendored
Normal file
59
cargo/remote/BUILD.redox_users-0.3.5.bazel
vendored
Normal 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",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.rental-impl-0.5.5.bazel
vendored
2
cargo/remote/BUILD.rental-impl-0.5.5.bazel
vendored
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
70
cargo/remote/BUILD.rust-argon2-0.8.3.bazel
vendored
Normal file
70
cargo/remote/BUILD.rust-argon2-0.8.3.bazel
vendored
Normal 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
|
90
cargo/remote/BUILD.rustversion-1.0.4.bazel
vendored
90
cargo/remote/BUILD.rustversion-1.0.4.bazel
vendored
|
@ -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
|
|
@ -54,7 +54,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.1.1",
|
||||
version = "2.1.2",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__bitflags__1_2_1//:bitflags",
|
|
@ -82,6 +82,6 @@ rust_library(
|
|||
":serde_derive_build_script",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
2
cargo/remote/BUILD.serde_repr-0.1.6.bazel
vendored
2
cargo/remote/BUILD.serde_repr-0.1.6.bazel
vendored
|
@ -51,7 +51,7 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -63,7 +63,7 @@ rust_library(
|
|||
"@raze__slog_async__2_6_0//:slog_async",
|
||||
"@raze__slog_scope__4_4_0//:slog_scope",
|
||||
"@raze__slog_stdlog__4_1_0//:slog_stdlog",
|
||||
"@raze__slog_term__2_8_0//:slog_term",
|
||||
"@raze__slog_term__2_6_0//:slog_term",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -58,13 +58,13 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "2.8.0",
|
||||
version = "2.6.0",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__atty__0_2_14//:atty",
|
||||
"@raze__chrono__0_4_19//:chrono",
|
||||
"@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",
|
||||
],
|
||||
)
|
2
cargo/remote/BUILD.strum_macros-0.20.1.bazel
vendored
2
cargo/remote/BUILD.strum_macros-0.20.1.bazel
vendored
|
@ -52,6 +52,6 @@ rust_library(
|
|||
"@raze__heck__0_3_2//:heck",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -64,7 +64,7 @@ cargo_build_script(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.62",
|
||||
version = "1.0.63",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
],
|
||||
|
@ -102,7 +102,7 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "1.0.62",
|
||||
version = "1.0.63",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
":syn_build_script",
|
2
cargo/remote/BUILD.synstructure-0.12.4.bazel
vendored
2
cargo/remote/BUILD.synstructure-0.12.4.bazel
vendored
|
@ -53,7 +53,7 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -49,10 +49,10 @@ rust_library(
|
|||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
version = "0.7.0",
|
||||
version = "0.6.1",
|
||||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@raze__dirs_next__2_0_0//:dirs_next",
|
||||
"@raze__dirs__2_0_2//:dirs",
|
||||
] + selects.with_or({
|
||||
# cfg(windows)
|
||||
(
|
|
@ -51,6 +51,6 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@raze__quote__1_0_9//:quote",
|
||||
"@raze__syn__1_0_62//:syn",
|
||||
"@raze__syn__1_0_63//:syn",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -53,7 +53,7 @@ rust_library(
|
|||
# buildifier: leave-alone
|
||||
deps = [
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -55,7 +55,7 @@ rust_library(
|
|||
"@raze__log__0_4_14//:log",
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@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",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -52,7 +52,7 @@ rust_library(
|
|||
deps = [
|
||||
"@raze__proc_macro2__1_0_24//:proc_macro2",
|
||||
"@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_shared__0_2_71//:wasm_bindgen_shared",
|
||||
],
|
||||
|
|
|
@ -41,7 +41,7 @@ alias(
|
|||
|
||||
alias(
|
||||
name = "async_trait",
|
||||
actual = "@raze__async_trait__0_1_47//:async_trait",
|
||||
actual = "@raze__async_trait__0_1_48//:async_trait",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
|
@ -419,7 +419,7 @@ alias(
|
|||
|
||||
alias(
|
||||
name = "slog_term",
|
||||
actual = "@raze__slog_term__2_8_0//:slog_term",
|
||||
actual = "@raze__slog_term__2_6_0//:slog_term",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
|
@ -444,6 +444,15 @@ alias(
|
|||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "term",
|
||||
actual = "@raze__term__0_6_1//:term",
|
||||
tags = [
|
||||
"cargo-raze",
|
||||
"manual",
|
||||
],
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "tokio",
|
||||
actual = "@raze__tokio__0_2_25//:tokio",
|
||||
|
|
Loading…
Reference in a new issue