update Rust deps incl. Pyo3

This includes the refcount bug fix from pyo3 0.12.4
This commit is contained in:
Damien Elmes 2020-12-01 14:49:23 +10:00
parent 715e18d587
commit 4c3577b12e
62 changed files with 427 additions and 478 deletions

142
Cargo.lock generated
View file

@ -157,7 +157,7 @@ checksum = "2582b77e0f3c506ec4838a25fa8a5f97b9bed72bb6d3d272ea1c031d8bd373bc"
dependencies = [ dependencies = [
"askama_escape", "askama_escape",
"humansize", "humansize",
"nom 6.0.0", "nom 6.0.1",
"num-traits", "num-traits",
"percent-encoding", "percent-encoding",
"proc-macro2", "proc-macro2",
@ -337,13 +337,14 @@ dependencies = [
[[package]] [[package]]
name = "coarsetime" name = "coarsetime"
version = "0.1.16" version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cbaaa2e4f75bd7eff165a3d24345a374efddbe0e90be326e62048937e56f65a" checksum = "5a6a9b6b2627cf8a70982b9c311d5bbdd62c183a19ecdb9c6344c075dfdda608"
dependencies = [ dependencies = [
"lazy_static",
"libc", "libc",
"once_cell",
"wasi 0.10.0+wasi-snapshot-preview1", "wasi 0.10.0+wasi-snapshot-preview1",
"wasm-bindgen",
] ]
[[package]] [[package]]
@ -383,7 +384,7 @@ version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
dependencies = [ dependencies = [
"crossbeam-utils", "crossbeam-utils 0.7.2",
"maybe-uninit", "maybe-uninit",
] ]
@ -398,6 +399,17 @@ dependencies = [
"lazy_static", "lazy_static",
] ]
[[package]]
name = "crossbeam-utils"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
dependencies = [
"autocfg",
"cfg-if 1.0.0",
"lazy_static",
]
[[package]] [[package]]
name = "crypto-mac" name = "crypto-mac"
version = "0.8.0" version = "0.8.0"
@ -980,24 +992,10 @@ dependencies = [
[[package]] [[package]]
name = "indoc" name = "indoc"
version = "0.3.6" version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" checksum = "e5a75aeaaef0ce18b58056d306c27b07436fbb34b8816c53094b76dd81803136"
dependencies = [ dependencies = [
"indoc-impl",
"proc-macro-hack",
]
[[package]]
name = "indoc-impl"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
"unindent", "unindent",
] ]
@ -1084,9 +1082,9 @@ checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
[[package]] [[package]]
name = "js-sys" name = "js-sys"
version = "0.3.45" version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca059e81d9486668f12d455a4ea6daa600bd408134cd17e3d3fb5a32d1f016f8" checksum = "cf3d7383929f7c9c7c2d0fa596f325832df98c3704f2c60553080f7127a58175"
dependencies = [ dependencies = [
"wasm-bindgen", "wasm-bindgen",
] ]
@ -1220,9 +1218,9 @@ dependencies = [
[[package]] [[package]]
name = "miow" name = "miow"
version = "0.2.1" version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [ dependencies = [
"kernel32-sys", "kernel32-sys",
"net2", "net2",
@ -1256,9 +1254,9 @@ dependencies = [
[[package]] [[package]]
name = "net2" name = "net2"
version = "0.2.35" version = "0.2.36"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853" checksum = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 0.1.10",
"libc", "libc",
@ -1284,9 +1282,9 @@ dependencies = [
[[package]] [[package]]
name = "nom" name = "nom"
version = "6.0.0" version = "6.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4489ccc7d668957ddf64af7cd027c081728903afa6479d35da7e99bf5728f75f" checksum = "88034cfd6b4a0d54dd14f4a507eceee36c0b70e5a02236c4e4df571102be17f0"
dependencies = [ dependencies = [
"bitvec", "bitvec",
"lexical-core", "lexical-core",
@ -1428,22 +1426,9 @@ dependencies = [
[[package]] [[package]]
name = "paste" name = "paste"
version = "0.1.18" version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" checksum = "7151b083b0664ed58ed669fcdd92f01c3d2fdbf10af4931a301474950b52bfa9"
dependencies = [
"paste-impl",
"proc-macro-hack",
]
[[package]]
name = "paste-impl"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
dependencies = [
"proc-macro-hack",
]
[[package]] [[package]]
name = "percent-encoding" name = "percent-encoding"
@ -1616,9 +1601,10 @@ dependencies = [
[[package]] [[package]]
name = "pyo3" name = "pyo3"
version = "0.12.3" version = "0.12.4"
source = "git+https://github.com/PyO3/pyo3.git?rev=3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1#3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1" source = "git+https://github.com/PyO3/pyo3.git?rev=92b7a9736c9585883df5ec5bc01004caa7f65106#92b7a9736c9585883df5ec5bc01004caa7f65106"
dependencies = [ dependencies = [
"cfg-if 1.0.0",
"ctor", "ctor",
"indoc", "indoc",
"inventory", "inventory",
@ -1631,8 +1617,8 @@ dependencies = [
[[package]] [[package]]
name = "pyo3-derive-backend" name = "pyo3-derive-backend"
version = "0.12.3" version = "0.12.4"
source = "git+https://github.com/PyO3/pyo3.git?rev=3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1#3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1" source = "git+https://github.com/PyO3/pyo3.git?rev=92b7a9736c9585883df5ec5bc01004caa7f65106#92b7a9736c9585883df5ec5bc01004caa7f65106"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -1641,8 +1627,8 @@ dependencies = [
[[package]] [[package]]
name = "pyo3cls" name = "pyo3cls"
version = "0.12.3" version = "0.12.4"
source = "git+https://github.com/PyO3/pyo3.git?rev=3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1#3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1" source = "git+https://github.com/PyO3/pyo3.git?rev=92b7a9736c9585883df5ec5bc01004caa7f65106#92b7a9736c9585883df5ec5bc01004caa7f65106"
dependencies = [ dependencies = [
"pyo3-derive-backend", "pyo3-derive-backend",
"quote", "quote",
@ -1813,9 +1799,9 @@ dependencies = [
[[package]] [[package]]
name = "ring" name = "ring"
version = "0.16.17" version = "0.16.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5911690c9b773bab7e657471afc207f3827b249a657241327e3544d79bcabdd" checksum = "70017ed5c555d79ee3538fc63ca09c70ad8f317dcadc1adc2c496b60c22bb24f"
dependencies = [ dependencies = [
"cc", "cc",
"libc", "libc",
@ -1851,14 +1837,14 @@ dependencies = [
[[package]] [[package]]
name = "rust-argon2" name = "rust-argon2"
version = "0.8.2" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dab61250775933275e84053ac235621dfb739556d5c54a2f2e9313b7cf43a19" checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
dependencies = [ dependencies = [
"base64 0.12.3", "base64 0.13.0",
"blake2b_simd", "blake2b_simd",
"constant_time_eq", "constant_time_eq",
"crossbeam-utils", "crossbeam-utils 0.8.1",
] ]
[[package]] [[package]]
@ -2036,9 +2022,9 @@ checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
[[package]] [[package]]
name = "slog" name = "slog"
version = "2.5.2" version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99" checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06"
[[package]] [[package]]
name = "slog-async" name = "slog-async"
@ -2146,9 +2132,9 @@ checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
[[package]] [[package]]
name = "syn" name = "syn"
version = "1.0.51" version = "1.0.53"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b4f34193997d92804d359ed09953e25d5138df6bcc055a71bf68ee89fdf9223" checksum = "8833e20724c24de12bbaba5ad230ea61c3eafb05b881c7c9d3cfe8638b187e68"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2488,9 +2474,9 @@ dependencies = [
[[package]] [[package]]
name = "unicode-segmentation" name = "unicode-segmentation"
version = "1.7.0" version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db8716a166f290ff49dabc18b44aa407cb7c6dbe1aa0971b44b8a24b0ca35aae" checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
[[package]] [[package]]
name = "unicode-xid" name = "unicode-xid"
@ -2568,11 +2554,11 @@ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]] [[package]]
name = "wasm-bindgen" name = "wasm-bindgen"
version = "0.2.68" version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ac64ead5ea5f05873d7c12b545865ca2b8d28adfc50a49b84770a3a97265d42" checksum = "3cd364751395ca0f68cafb17666eee36b63077fb5ecd972bbcd74c90c4bf736e"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 1.0.0",
"serde", "serde",
"serde_json", "serde_json",
"wasm-bindgen-macro", "wasm-bindgen-macro",
@ -2580,9 +2566,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-backend" name = "wasm-bindgen-backend"
version = "0.2.68" version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f22b422e2a757c35a73774860af8e112bff612ce6cb604224e8e47641a9e4f68" checksum = "1114f89ab1f4106e5b55e688b828c0ab0ea593a1ea7c094b141b14cbaaec2d62"
dependencies = [ dependencies = [
"bumpalo", "bumpalo",
"lazy_static", "lazy_static",
@ -2595,11 +2581,11 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-futures" name = "wasm-bindgen-futures"
version = "0.4.18" version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7866cab0aa01de1edf8b5d7936938a7e397ee50ce24119aef3e1eaa3b6171da" checksum = "1fe9756085a84584ee9457a002b7cdfe0bfff169f45d2591d8be1345a6780e35"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 1.0.0",
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",
"web-sys", "web-sys",
@ -2607,9 +2593,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro" name = "wasm-bindgen-macro"
version = "0.2.68" version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b13312a745c08c469f0b292dd2fcd6411dba5f7160f593da6ef69b64e407038" checksum = "7a6ac8995ead1f084a8dea1e65f194d0973800c7f571f6edd70adf06ecf77084"
dependencies = [ dependencies = [
"quote", "quote",
"wasm-bindgen-macro-support", "wasm-bindgen-macro-support",
@ -2617,9 +2603,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro-support" name = "wasm-bindgen-macro-support"
version = "0.2.68" version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f249f06ef7ee334cc3b8ff031bfc11ec99d00f34d86da7498396dc1e3b1498fe" checksum = "b5a48c72f299d80557c7c62e37e7225369ecc0c963964059509fbafe917c7549"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2630,15 +2616,15 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-shared" name = "wasm-bindgen-shared"
version = "0.2.68" version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307" checksum = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158"
[[package]] [[package]]
name = "web-sys" name = "web-sys"
version = "0.3.45" version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bf6ef87ad7ae8008e15a355ce696bed26012b7caa21605188cfd8214ab51e2d" checksum = "222b1ef9334f92a21d3fb53dc3fd80f30836959a90f9274a626d7e06315ba3c3"
dependencies = [ dependencies = [
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",

View file

@ -333,12 +333,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__coarsetime__0_1_16", name = "raze__coarsetime__0_1_18",
url = "https://crates.io/api/v1/crates/coarsetime/0.1.16/download", url = "https://crates.io/api/v1/crates/coarsetime/0.1.18/download",
type = "tar.gz", type = "tar.gz",
sha256 = "0cbaaa2e4f75bd7eff165a3d24345a374efddbe0e90be326e62048937e56f65a", sha256 = "5a6a9b6b2627cf8a70982b9c311d5bbdd62c183a19ecdb9c6344c075dfdda608",
strip_prefix = "coarsetime-0.1.16", strip_prefix = "coarsetime-0.1.18",
build_file = Label("//cargo/remote:BUILD.coarsetime-0.1.16.bazel"), build_file = Label("//cargo/remote:BUILD.coarsetime-0.1.18.bazel"),
) )
maybe( maybe(
@ -401,6 +401,16 @@ def raze_fetch_remote_crates():
build_file = Label("//cargo/remote:BUILD.crossbeam-utils-0.7.2.bazel"), build_file = Label("//cargo/remote:BUILD.crossbeam-utils-0.7.2.bazel"),
) )
maybe(
http_archive,
name = "raze__crossbeam_utils__0_8_1",
url = "https://crates.io/api/v1/crates/crossbeam-utils/0.8.1/download",
type = "tar.gz",
sha256 = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d",
strip_prefix = "crossbeam-utils-0.8.1",
build_file = Label("//cargo/remote:BUILD.crossbeam-utils-0.8.1.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__crypto_mac__0_8_0", name = "raze__crypto_mac__0_8_0",
@ -1003,22 +1013,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__indoc__0_3_6", name = "raze__indoc__1_0_3",
url = "https://crates.io/api/v1/crates/indoc/0.3.6/download", url = "https://crates.io/api/v1/crates/indoc/1.0.3/download",
type = "tar.gz", type = "tar.gz",
sha256 = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8", sha256 = "e5a75aeaaef0ce18b58056d306c27b07436fbb34b8816c53094b76dd81803136",
strip_prefix = "indoc-0.3.6", strip_prefix = "indoc-1.0.3",
build_file = Label("//cargo/remote:BUILD.indoc-0.3.6.bazel"), build_file = Label("//cargo/remote:BUILD.indoc-1.0.3.bazel"),
)
maybe(
http_archive,
name = "raze__indoc_impl__0_3_6",
url = "https://crates.io/api/v1/crates/indoc-impl/0.3.6/download",
type = "tar.gz",
sha256 = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0",
strip_prefix = "indoc-impl-0.3.6",
build_file = Label("//cargo/remote:BUILD.indoc-impl-0.3.6.bazel"),
) )
maybe( maybe(
@ -1113,12 +1113,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__js_sys__0_3_45", name = "raze__js_sys__0_3_46",
url = "https://crates.io/api/v1/crates/js-sys/0.3.45/download", url = "https://crates.io/api/v1/crates/js-sys/0.3.46/download",
type = "tar.gz", type = "tar.gz",
sha256 = "ca059e81d9486668f12d455a4ea6daa600bd408134cd17e3d3fb5a32d1f016f8", sha256 = "cf3d7383929f7c9c7c2d0fa596f325832df98c3704f2c60553080f7127a58175",
strip_prefix = "js-sys-0.3.45", strip_prefix = "js-sys-0.3.46",
build_file = Label("//cargo/remote:BUILD.js-sys-0.3.45.bazel"), build_file = Label("//cargo/remote:BUILD.js-sys-0.3.46.bazel"),
) )
maybe( maybe(
@ -1263,12 +1263,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__miow__0_2_1", name = "raze__miow__0_2_2",
url = "https://crates.io/api/v1/crates/miow/0.2.1/download", url = "https://crates.io/api/v1/crates/miow/0.2.2/download",
type = "tar.gz", type = "tar.gz",
sha256 = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919", sha256 = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d",
strip_prefix = "miow-0.2.1", strip_prefix = "miow-0.2.2",
build_file = Label("//cargo/remote:BUILD.miow-0.2.1.bazel"), build_file = Label("//cargo/remote:BUILD.miow-0.2.2.bazel"),
) )
maybe( maybe(
@ -1293,12 +1293,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__net2__0_2_35", name = "raze__net2__0_2_36",
url = "https://crates.io/api/v1/crates/net2/0.2.35/download", url = "https://crates.io/api/v1/crates/net2/0.2.36/download",
type = "tar.gz", type = "tar.gz",
sha256 = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853", sha256 = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02",
strip_prefix = "net2-0.2.35", strip_prefix = "net2-0.2.36",
build_file = Label("//cargo/remote:BUILD.net2-0.2.35.bazel"), build_file = Label("//cargo/remote:BUILD.net2-0.2.36.bazel"),
) )
maybe( maybe(
@ -1323,12 +1323,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__nom__6_0_0", name = "raze__nom__6_0_1",
url = "https://crates.io/api/v1/crates/nom/6.0.0/download", url = "https://crates.io/api/v1/crates/nom/6.0.1/download",
type = "tar.gz", type = "tar.gz",
sha256 = "4489ccc7d668957ddf64af7cd027c081728903afa6479d35da7e99bf5728f75f", sha256 = "88034cfd6b4a0d54dd14f4a507eceee36c0b70e5a02236c4e4df571102be17f0",
strip_prefix = "nom-6.0.0", strip_prefix = "nom-6.0.1",
build_file = Label("//cargo/remote:BUILD.nom-6.0.0.bazel"), build_file = Label("//cargo/remote:BUILD.nom-6.0.1.bazel"),
) )
maybe( maybe(
@ -1463,22 +1463,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__paste__0_1_18", name = "raze__paste__1_0_3",
url = "https://crates.io/api/v1/crates/paste/0.1.18/download", url = "https://crates.io/api/v1/crates/paste/1.0.3/download",
type = "tar.gz", type = "tar.gz",
sha256 = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880", sha256 = "7151b083b0664ed58ed669fcdd92f01c3d2fdbf10af4931a301474950b52bfa9",
strip_prefix = "paste-0.1.18", strip_prefix = "paste-1.0.3",
build_file = Label("//cargo/remote:BUILD.paste-0.1.18.bazel"), build_file = Label("//cargo/remote:BUILD.paste-1.0.3.bazel"),
)
maybe(
http_archive,
name = "raze__paste_impl__0_1_18",
url = "https://crates.io/api/v1/crates/paste-impl/0.1.18/download",
type = "tar.gz",
sha256 = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6",
strip_prefix = "paste-impl-0.1.18",
build_file = Label("//cargo/remote:BUILD.paste-impl-0.1.18.bazel"),
) )
maybe( maybe(
@ -1683,31 +1673,31 @@ def raze_fetch_remote_crates():
maybe( maybe(
new_git_repository, new_git_repository,
name = "raze__pyo3__0_12_3", name = "raze__pyo3__0_12_4",
remote = "https://github.com/PyO3/pyo3.git", remote = "https://github.com/PyO3/pyo3.git",
shallow_since = "1603809036 +0900", shallow_since = "1606725379 +0000",
commit = "3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1", commit = "92b7a9736c9585883df5ec5bc01004caa7f65106",
build_file = Label("//cargo/remote:BUILD.pyo3-0.12.3.bazel"), build_file = Label("//cargo/remote:BUILD.pyo3-0.12.4.bazel"),
init_submodules = True, init_submodules = True,
) )
maybe( maybe(
new_git_repository, new_git_repository,
name = "raze__pyo3_derive_backend__0_12_3", name = "raze__pyo3_derive_backend__0_12_4",
remote = "https://github.com/PyO3/pyo3.git", remote = "https://github.com/PyO3/pyo3.git",
shallow_since = "1603809036 +0900", shallow_since = "1606725379 +0000",
commit = "3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1", commit = "92b7a9736c9585883df5ec5bc01004caa7f65106",
build_file = Label("//cargo/remote:BUILD.pyo3-derive-backend-0.12.3.bazel"), build_file = Label("//cargo/remote:BUILD.pyo3-derive-backend-0.12.4.bazel"),
init_submodules = True, init_submodules = True,
) )
maybe( maybe(
new_git_repository, new_git_repository,
name = "raze__pyo3cls__0_12_3", name = "raze__pyo3cls__0_12_4",
remote = "https://github.com/PyO3/pyo3.git", remote = "https://github.com/PyO3/pyo3.git",
shallow_since = "1603809036 +0900", shallow_since = "1606725379 +0000",
commit = "3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1", commit = "92b7a9736c9585883df5ec5bc01004caa7f65106",
build_file = Label("//cargo/remote:BUILD.pyo3cls-0.12.3.bazel"), build_file = Label("//cargo/remote:BUILD.pyo3cls-0.12.4.bazel"),
init_submodules = True, init_submodules = True,
) )
@ -1853,12 +1843,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__ring__0_16_17", name = "raze__ring__0_16_18",
url = "https://crates.io/api/v1/crates/ring/0.16.17/download", url = "https://crates.io/api/v1/crates/ring/0.16.18/download",
type = "tar.gz", type = "tar.gz",
sha256 = "c5911690c9b773bab7e657471afc207f3827b249a657241327e3544d79bcabdd", sha256 = "70017ed5c555d79ee3538fc63ca09c70ad8f317dcadc1adc2c496b60c22bb24f",
strip_prefix = "ring-0.16.17", strip_prefix = "ring-0.16.18",
build_file = Label("//cargo/remote:BUILD.ring-0.16.17.bazel"), build_file = Label("//cargo/remote:BUILD.ring-0.16.18.bazel"),
) )
maybe( maybe(
@ -1873,12 +1863,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__rust_argon2__0_8_2", name = "raze__rust_argon2__0_8_3",
url = "https://crates.io/api/v1/crates/rust-argon2/0.8.2/download", url = "https://crates.io/api/v1/crates/rust-argon2/0.8.3/download",
type = "tar.gz", type = "tar.gz",
sha256 = "9dab61250775933275e84053ac235621dfb739556d5c54a2f2e9313b7cf43a19", sha256 = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb",
strip_prefix = "rust-argon2-0.8.2", strip_prefix = "rust-argon2-0.8.3",
build_file = Label("//cargo/remote:BUILD.rust-argon2-0.8.2.bazel"), build_file = Label("//cargo/remote:BUILD.rust-argon2-0.8.3.bazel"),
) )
maybe( maybe(
@ -2063,12 +2053,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__slog__2_5_2", name = "raze__slog__2_7_0",
url = "https://crates.io/api/v1/crates/slog/2.5.2/download", url = "https://crates.io/api/v1/crates/slog/2.7.0/download",
type = "tar.gz", type = "tar.gz",
sha256 = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99", sha256 = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06",
strip_prefix = "slog-2.5.2", strip_prefix = "slog-2.7.0",
build_file = Label("//cargo/remote:BUILD.slog-2.5.2.bazel"), build_file = Label("//cargo/remote:BUILD.slog-2.7.0.bazel"),
) )
maybe( maybe(
@ -2183,12 +2173,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__syn__1_0_51", name = "raze__syn__1_0_53",
url = "https://crates.io/api/v1/crates/syn/1.0.51/download", url = "https://crates.io/api/v1/crates/syn/1.0.53/download",
type = "tar.gz", type = "tar.gz",
sha256 = "3b4f34193997d92804d359ed09953e25d5138df6bcc055a71bf68ee89fdf9223", sha256 = "8833e20724c24de12bbaba5ad230ea61c3eafb05b881c7c9d3cfe8638b187e68",
strip_prefix = "syn-1.0.51", strip_prefix = "syn-1.0.53",
build_file = Label("//cargo/remote:BUILD.syn-1.0.51.bazel"), build_file = Label("//cargo/remote:BUILD.syn-1.0.53.bazel"),
) )
maybe( maybe(
@ -2533,12 +2523,12 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__unicode_segmentation__1_7_0", name = "raze__unicode_segmentation__1_7_1",
url = "https://crates.io/api/v1/crates/unicode-segmentation/1.7.0/download", url = "https://crates.io/api/v1/crates/unicode-segmentation/1.7.1/download",
type = "tar.gz", type = "tar.gz",
sha256 = "db8716a166f290ff49dabc18b44aa407cb7c6dbe1aa0971b44b8a24b0ca35aae", sha256 = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796",
strip_prefix = "unicode-segmentation-1.7.0", strip_prefix = "unicode-segmentation-1.7.1",
build_file = Label("//cargo/remote:BUILD.unicode-segmentation-1.7.0.bazel"), build_file = Label("//cargo/remote:BUILD.unicode-segmentation-1.7.1.bazel"),
) )
maybe( maybe(
@ -2643,72 +2633,72 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen__0_2_68", name = "raze__wasm_bindgen__0_2_69",
url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.68/download", url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.69/download",
type = "tar.gz", type = "tar.gz",
sha256 = "1ac64ead5ea5f05873d7c12b545865ca2b8d28adfc50a49b84770a3a97265d42", sha256 = "3cd364751395ca0f68cafb17666eee36b63077fb5ecd972bbcd74c90c4bf736e",
strip_prefix = "wasm-bindgen-0.2.68", strip_prefix = "wasm-bindgen-0.2.69",
build_file = Label("//cargo/remote:BUILD.wasm-bindgen-0.2.68.bazel"), build_file = Label("//cargo/remote:BUILD.wasm-bindgen-0.2.69.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_backend__0_2_68", name = "raze__wasm_bindgen_backend__0_2_69",
url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.68/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.69/download",
type = "tar.gz", type = "tar.gz",
sha256 = "f22b422e2a757c35a73774860af8e112bff612ce6cb604224e8e47641a9e4f68", sha256 = "1114f89ab1f4106e5b55e688b828c0ab0ea593a1ea7c094b141b14cbaaec2d62",
strip_prefix = "wasm-bindgen-backend-0.2.68", strip_prefix = "wasm-bindgen-backend-0.2.69",
build_file = Label("//cargo/remote:BUILD.wasm-bindgen-backend-0.2.68.bazel"), build_file = Label("//cargo/remote:BUILD.wasm-bindgen-backend-0.2.69.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_futures__0_4_18", name = "raze__wasm_bindgen_futures__0_4_19",
url = "https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.18/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-futures/0.4.19/download",
type = "tar.gz", type = "tar.gz",
sha256 = "b7866cab0aa01de1edf8b5d7936938a7e397ee50ce24119aef3e1eaa3b6171da", sha256 = "1fe9756085a84584ee9457a002b7cdfe0bfff169f45d2591d8be1345a6780e35",
strip_prefix = "wasm-bindgen-futures-0.4.18", strip_prefix = "wasm-bindgen-futures-0.4.19",
build_file = Label("//cargo/remote:BUILD.wasm-bindgen-futures-0.4.18.bazel"), build_file = Label("//cargo/remote:BUILD.wasm-bindgen-futures-0.4.19.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_macro__0_2_68", name = "raze__wasm_bindgen_macro__0_2_69",
url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.68/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.69/download",
type = "tar.gz", type = "tar.gz",
sha256 = "6b13312a745c08c469f0b292dd2fcd6411dba5f7160f593da6ef69b64e407038", sha256 = "7a6ac8995ead1f084a8dea1e65f194d0973800c7f571f6edd70adf06ecf77084",
strip_prefix = "wasm-bindgen-macro-0.2.68", strip_prefix = "wasm-bindgen-macro-0.2.69",
build_file = Label("//cargo/remote:BUILD.wasm-bindgen-macro-0.2.68.bazel"), build_file = Label("//cargo/remote:BUILD.wasm-bindgen-macro-0.2.69.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_macro_support__0_2_68", name = "raze__wasm_bindgen_macro_support__0_2_69",
url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.68/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.69/download",
type = "tar.gz", type = "tar.gz",
sha256 = "f249f06ef7ee334cc3b8ff031bfc11ec99d00f34d86da7498396dc1e3b1498fe", sha256 = "b5a48c72f299d80557c7c62e37e7225369ecc0c963964059509fbafe917c7549",
strip_prefix = "wasm-bindgen-macro-support-0.2.68", strip_prefix = "wasm-bindgen-macro-support-0.2.69",
build_file = Label("//cargo/remote:BUILD.wasm-bindgen-macro-support-0.2.68.bazel"), build_file = Label("//cargo/remote:BUILD.wasm-bindgen-macro-support-0.2.69.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_shared__0_2_68", name = "raze__wasm_bindgen_shared__0_2_69",
url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.68/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.69/download",
type = "tar.gz", type = "tar.gz",
sha256 = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307", sha256 = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158",
strip_prefix = "wasm-bindgen-shared-0.2.68", strip_prefix = "wasm-bindgen-shared-0.2.69",
build_file = Label("//cargo/remote:BUILD.wasm-bindgen-shared-0.2.68.bazel"), build_file = Label("//cargo/remote:BUILD.wasm-bindgen-shared-0.2.69.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__web_sys__0_3_45", name = "raze__web_sys__0_3_46",
url = "https://crates.io/api/v1/crates/web-sys/0.3.45/download", url = "https://crates.io/api/v1/crates/web-sys/0.3.46/download",
type = "tar.gz", type = "tar.gz",
sha256 = "4bf6ef87ad7ae8008e15a355ce696bed26012b7caa21605188cfd8214ab51e2d", sha256 = "222b1ef9334f92a21d3fb53dc3fd80f30836959a90f9274a626d7e06315ba3c3",
strip_prefix = "web-sys-0.3.45", strip_prefix = "web-sys-0.3.46",
build_file = Label("//cargo/remote:BUILD.web-sys-0.3.45.bazel"), build_file = Label("//cargo/remote:BUILD.web-sys-0.3.46.bazel"),
) )
maybe( maybe(

View file

@ -307,7 +307,7 @@
}, },
{ {
"name": "coarsetime", "name": "coarsetime",
"version": "0.1.16", "version": "0.1.18",
"authors": "Frank Denis <github@pureftpd.org>", "authors": "Frank Denis <github@pureftpd.org>",
"repository": "https://github.com/jedisct1/rust-coarsetime", "repository": "https://github.com/jedisct1/rust-coarsetime",
"license": "ISC", "license": "ISC",
@ -368,6 +368,15 @@
"license_file": null, "license_file": null,
"description": "Utilities for concurrent programming" "description": "Utilities for concurrent programming"
}, },
{
"name": "crossbeam-utils",
"version": "0.8.1",
"authors": "The Crossbeam Project Developers",
"repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "MIT OR Apache-2.0",
"license_file": null,
"description": "Utilities for concurrent programming"
},
{ {
"name": "crypto-mac", "name": "crypto-mac",
"version": "0.8.0", "version": "0.8.0",
@ -910,16 +919,7 @@
}, },
{ {
"name": "indoc", "name": "indoc",
"version": "0.3.6", "version": "1.0.3",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/indoc",
"license": "MIT OR Apache-2.0",
"license_file": null,
"description": "Indented document literals"
},
{
"name": "indoc-impl",
"version": "0.3.6",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/indoc", "repository": "https://github.com/dtolnay/indoc",
"license": "MIT OR Apache-2.0", "license": "MIT OR Apache-2.0",
@ -1009,7 +1009,7 @@
}, },
{ {
"name": "js-sys", "name": "js-sys",
"version": "0.3.45", "version": "0.3.46",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -1144,7 +1144,7 @@
}, },
{ {
"name": "miow", "name": "miow",
"version": "0.2.1", "version": "0.2.2",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/alexcrichton/miow", "repository": "https://github.com/alexcrichton/miow",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -1171,7 +1171,7 @@
}, },
{ {
"name": "net2", "name": "net2",
"version": "0.2.35", "version": "0.2.36",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/deprecrated/net2-rs", "repository": "https://github.com/deprecrated/net2-rs",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -1198,7 +1198,7 @@
}, },
{ {
"name": "nom", "name": "nom",
"version": "6.0.0", "version": "6.0.1",
"authors": "contact@geoffroycouprie.com", "authors": "contact@geoffroycouprie.com",
"repository": "https://github.com/Geal/nom", "repository": "https://github.com/Geal/nom",
"license": "MIT", "license": "MIT",
@ -1324,22 +1324,13 @@
}, },
{ {
"name": "paste", "name": "paste",
"version": "0.1.18", "version": "1.0.3",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/paste", "repository": "https://github.com/dtolnay/paste",
"license": "MIT OR Apache-2.0", "license": "MIT OR Apache-2.0",
"license_file": null, "license_file": null,
"description": "Macros for all your token pasting needs" "description": "Macros for all your token pasting needs"
}, },
{
"name": "paste-impl",
"version": "0.1.18",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/paste",
"license": "MIT OR Apache-2.0",
"license_file": null,
"description": "Implementation detail of the `paste` crate"
},
{ {
"name": "percent-encoding", "name": "percent-encoding",
"version": "2.1.0", "version": "2.1.0",
@ -1522,7 +1513,7 @@
}, },
{ {
"name": "pyo3", "name": "pyo3",
"version": "0.12.3", "version": "0.12.4",
"authors": "PyO3 Project and Contributors <https://github.com/PyO3>", "authors": "PyO3 Project and Contributors <https://github.com/PyO3>",
"repository": "https://github.com/pyo3/pyo3", "repository": "https://github.com/pyo3/pyo3",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1531,7 +1522,7 @@
}, },
{ {
"name": "pyo3-derive-backend", "name": "pyo3-derive-backend",
"version": "0.12.3", "version": "0.12.4",
"authors": "PyO3 Project and Contributors <https://github.com/PyO3>", "authors": "PyO3 Project and Contributors <https://github.com/PyO3>",
"repository": "https://github.com/pyo3/pyo3", "repository": "https://github.com/pyo3/pyo3",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1540,7 +1531,7 @@
}, },
{ {
"name": "pyo3cls", "name": "pyo3cls",
"version": "0.12.3", "version": "0.12.4",
"authors": "PyO3 Project and Contributors <https://github.com/PyO3>", "authors": "PyO3 Project and Contributors <https://github.com/PyO3>",
"repository": "https://github.com/pyo3/pyo3", "repository": "https://github.com/pyo3/pyo3",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1675,7 +1666,7 @@
}, },
{ {
"name": "ring", "name": "ring",
"version": "0.16.17", "version": "0.16.18",
"authors": "Brian Smith <brian@briansmith.org>", "authors": "Brian Smith <brian@briansmith.org>",
"repository": "https://github.com/briansmith/ring", "repository": "https://github.com/briansmith/ring",
"license": null, "license": null,
@ -1702,7 +1693,7 @@
}, },
{ {
"name": "rust-argon2", "name": "rust-argon2",
"version": "0.8.2", "version": "0.8.3",
"authors": "Martijn Rijkeboer <mrr@sru-systems.com>", "authors": "Martijn Rijkeboer <mrr@sru-systems.com>",
"repository": "https://github.com/sru-systems/rust-argon2", "repository": "https://github.com/sru-systems/rust-argon2",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -1873,7 +1864,7 @@
}, },
{ {
"name": "slog", "name": "slog",
"version": "2.5.2", "version": "2.7.0",
"authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>", "authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>",
"repository": "https://github.com/slog-rs/slog", "repository": "https://github.com/slog-rs/slog",
"license": "MPL-2.0 OR MIT OR Apache-2.0", "license": "MPL-2.0 OR MIT OR Apache-2.0",
@ -1981,7 +1972,7 @@
}, },
{ {
"name": "syn", "name": "syn",
"version": "1.0.51", "version": "1.0.53",
"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": "MIT OR Apache-2.0", "license": "MIT OR Apache-2.0",
@ -2296,7 +2287,7 @@
}, },
{ {
"name": "unicode-segmentation", "name": "unicode-segmentation",
"version": "1.7.0", "version": "1.7.1",
"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",
@ -2395,7 +2386,7 @@
}, },
{ {
"name": "wasm-bindgen", "name": "wasm-bindgen",
"version": "0.2.68", "version": "0.2.69",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen", "repository": "https://github.com/rustwasm/wasm-bindgen",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -2404,7 +2395,7 @@
}, },
{ {
"name": "wasm-bindgen-backend", "name": "wasm-bindgen-backend",
"version": "0.2.68", "version": "0.2.69",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -2413,7 +2404,7 @@
}, },
{ {
"name": "wasm-bindgen-futures", "name": "wasm-bindgen-futures",
"version": "0.4.18", "version": "0.4.19",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -2422,7 +2413,7 @@
}, },
{ {
"name": "wasm-bindgen-macro", "name": "wasm-bindgen-macro",
"version": "0.2.68", "version": "0.2.69",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -2431,7 +2422,7 @@
}, },
{ {
"name": "wasm-bindgen-macro-support", "name": "wasm-bindgen-macro-support",
"version": "0.2.68", "version": "0.2.69",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -2440,7 +2431,7 @@
}, },
{ {
"name": "wasm-bindgen-shared", "name": "wasm-bindgen-shared",
"version": "0.2.68", "version": "0.2.69",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",
@ -2449,7 +2440,7 @@
}, },
{ {
"name": "web-sys", "name": "web-sys",
"version": "0.3.45", "version": "0.3.46",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys",
"license": "Apache-2.0/MIT", "license": "Apache-2.0/MIT",

View file

@ -50,6 +50,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_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -56,13 +56,13 @@ rust_library(
deps = [ deps = [
"@raze__askama_escape__0_10_1//:askama_escape", "@raze__askama_escape__0_10_1//:askama_escape",
"@raze__humansize__1_1_0//:humansize", "@raze__humansize__1_1_0//:humansize",
"@raze__nom__6_0_0//:nom", "@raze__nom__6_0_1//:nom",
"@raze__num_traits__0_2_14//:num_traits", "@raze__num_traits__0_2_14//:num_traits",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__serde__1_0_117//:serde", "@raze__serde__1_0_117//:serde",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
"@raze__toml__0_5_7//:toml", "@raze__toml__0_5_7//:toml",
], ],
) )

View file

@ -47,10 +47,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.16", version = "0.1.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__once_cell__1_5_2//:once_cell",
] + selects.with_or({ ] + selects.with_or({
# cfg(not(target_os = "wasi")) # cfg(not(target_os = "wasi"))
( (

View file

@ -0,0 +1,104 @@
"""
@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 = "crossbeam_utils_build_script",
srcs = glob(["**/*.rs"]),
build_script_env = {
},
crate_features = [
"default",
"lazy_static",
"std",
],
crate_root = "build.rs",
data = glob(["**"]),
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.8.1",
visibility = ["//visibility:private"],
deps = [
"@raze__autocfg__1_0_1//:autocfg",
],
)
# Unsupported target "atomic_cell" with type "bench" omitted
rust_library(
name = "crossbeam_utils",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"lazy_static",
"std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.8.1",
# buildifier: leave-alone
deps = [
":crossbeam_utils_build_script",
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__lazy_static__1_4_0//:lazy_static",
],
)
# Unsupported target "atomic_cell" with type "test" omitted
# Unsupported target "cache_padded" with type "test" omitted
# Unsupported target "parker" with type "test" omitted
# Unsupported target "sharded_lock" with type "test" omitted
# Unsupported target "thread" with type "test" omitted
# Unsupported target "wait_group" with type "test" omitted

View file

@ -51,6 +51,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//: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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -79,7 +79,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
"@raze__synstructure__0_12_4//:synstructure", "@raze__synstructure__0_12_4//:synstructure",
], ],
) )

View file

@ -53,6 +53,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -50,6 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

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_7_0//:unicode_segmentation", "@raze__unicode_segmentation__1_7_1//:unicode_segmentation",
], ],
) )

View file

@ -36,12 +36,8 @@ rust_library(
crate_features = [ crate_features = [
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "proc-macro",
edition = "2018", edition = "2018",
proc_macro_deps = [
"@raze__indoc_impl__0_3_6//:indoc_impl",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -49,12 +45,19 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.6", version = "1.0.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__unindent__0_1_7//:unindent",
], ],
) )
# Unsupported target "compiletest" with type "test" omitted # Unsupported target "compiletest" with type "test" omitted
# Unsupported target "run-pass" with type "test" omitted # Unsupported target "test_formatdoc" with type "test" omitted
# Unsupported target "test_indoc" with type "test" omitted
# Unsupported target "test_unindent" with type "test" omitted
# Unsupported target "test_writedoc" with type "test" omitted

View file

@ -1,59 +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
rust_library(
name = "indoc_impl",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
edition = "2018",
proc_macro_deps = [
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.3.6",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn",
"@raze__unindent__0_1_7//:unindent",
],
)

View file

@ -50,6 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -45,10 +45,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.45", version = "0.3.46",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__wasm_bindgen__0_2_68//:wasm_bindgen", "@raze__wasm_bindgen__0_2_69//:wasm_bindgen",
], ],
) )

View file

@ -55,7 +55,7 @@ rust_library(
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__0_1_10//:cfg_if",
"@raze__iovec__0_1_4//:iovec", "@raze__iovec__0_1_4//:iovec",
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__net2__0_2_35//:net2", "@raze__net2__0_2_36//:net2",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
] + selects.with_or({ ] + selects.with_or({
# cfg(unix) # cfg(unix)
@ -77,7 +77,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [ ): [
"@raze__kernel32_sys__0_2_2//:kernel32_sys", "@raze__kernel32_sys__0_2_2//:kernel32_sys",
"@raze__miow__0_2_1//:miow", "@raze__miow__0_2_2//:miow",
"@raze__winapi__0_2_8//:winapi", "@raze__winapi__0_2_8//:winapi",
], ],
"//conditions:default": [], "//conditions:default": [],

View file

@ -45,11 +45,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.1", version = "0.2.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__kernel32_sys__0_2_2//:kernel32_sys", "@raze__kernel32_sys__0_2_2//:kernel32_sys",
"@raze__net2__0_2_35//:net2", "@raze__net2__0_2_36//:net2",
"@raze__winapi__0_2_8//:winapi", "@raze__winapi__0_2_8//:winapi",
"@raze__ws2_32_sys__0_2_1//:ws2_32_sys", "@raze__ws2_32_sys__0_2_1//:ws2_32_sys",
], ],

View file

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.35", version = "0.2.36",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__0_1_10//:cfg_if",

View file

@ -58,7 +58,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "6.0.0", version = "6.0.1",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__version_check__0_9_2//:version_check", "@raze__version_check__0_9_2//:version_check",
@ -106,7 +106,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "6.0.0", version = "6.0.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":nom_build_script", ":nom_build_script",

View file

@ -53,6 +53,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -36,12 +36,8 @@ rust_library(
crate_features = [ crate_features = [
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "proc-macro",
edition = "2018", edition = "2018",
proc_macro_deps = [
"@raze__paste_impl__0_1_18//:paste_impl",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -49,7 +45,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.18", version = "1.0.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],
@ -57,4 +53,10 @@ rust_library(
# Unsupported target "compiletest" with type "test" omitted # Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test" with type "test" omitted # Unsupported target "test_attr" with type "test" omitted
# Unsupported target "test_doc" with type "test" omitted
# Unsupported target "test_expr" with type "test" omitted
# Unsupported target "test_item" with type "test" omitted

View file

@ -1,55 +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
rust_library(
name = "paste_impl",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
edition = "2018",
proc_macro_deps = [
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.18",
# buildifier: leave-alone
deps = [
],
)

View file

@ -79,6 +79,6 @@ rust_library(
":pin_project_internal_build_script", ":pin_project_internal_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -50,6 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -52,6 +52,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -62,12 +62,14 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.12.3", version = "0.12.4",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
) )
# Unsupported target "bench_call" with type "bench" omitted
# Unsupported target "bench_dict" with type "bench" omitted # Unsupported target "bench_dict" with type "bench" omitted
# Unsupported target "bench_list" with type "bench" omitted # Unsupported target "bench_list" with type "bench" omitted
@ -99,7 +101,9 @@ rust_library(
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__ctor__0_1_16//:ctor", "@raze__ctor__0_1_16//:ctor",
"@raze__pyo3cls__0_12_3//:pyo3cls", "@raze__indoc__1_0_3//:indoc",
"@raze__paste__1_0_3//:paste",
"@raze__pyo3cls__0_12_4//:pyo3cls",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -108,15 +112,14 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.12.3", version = "0.12.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":pyo3_build_script", ":pyo3_build_script",
"@raze__indoc__0_3_6//:indoc", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__inventory__0_1_9//:inventory", "@raze__inventory__0_1_9//:inventory",
"@raze__libc__0_2_80//:libc", "@raze__libc__0_2_80//:libc",
"@raze__parking_lot__0_11_1//:parking_lot", "@raze__parking_lot__0_11_1//:parking_lot",
"@raze__paste__0_1_18//:paste",
"@raze__unindent__0_1_7//:unindent", "@raze__unindent__0_1_7//:unindent",
], ],
) )

View file

@ -45,11 +45,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.12.3", version = "0.12.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -45,11 +45,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.12.3", version = "0.12.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__pyo3_derive_backend__0_12_3//:pyo3_derive_backend", "@raze__pyo3_derive_backend__0_12_4//:pyo3_derive_backend",
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -53,6 +53,6 @@ rust_library(
deps = [ deps = [
"@raze__getrandom__0_1_15//:getrandom", "@raze__getrandom__0_1_15//:getrandom",
"@raze__redox_syscall__0_1_57//:redox_syscall", "@raze__redox_syscall__0_1_57//:redox_syscall",
"@raze__rust_argon2__0_8_2//:rust_argon2", "@raze__rust_argon2__0_8_3//:rust_argon2",
], ],
) )

View file

@ -50,6 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -56,7 +56,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.16.17", version = "0.16.18",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__cc__1_0_65//:cc", "@raze__cc__1_0_65//:cc",
@ -73,14 +73,6 @@ cargo_build_script(
): [ ): [
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({
# cfg(any(target_os = "android", target_os = "freebsd", target_os = "linux", target_os = "netbsd", target_os = "openbsd", target_os = "solaris", target_os = "illumos"))
(
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
],
"//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({
# cfg(any(target_os = "android", target_os = "linux")) # cfg(any(target_os = "android", target_os = "linux"))
( (
@ -136,7 +128,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.16.17", version = "0.16.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":ring_build_script", ":ring_build_script",
@ -155,15 +147,6 @@ rust_library(
"@raze__spin__0_5_2//:spin", "@raze__spin__0_5_2//:spin",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({
# cfg(any(target_os = "android", target_os = "freebsd", target_os = "linux", target_os = "netbsd", target_os = "openbsd", target_os = "solaris", target_os = "illumos"))
(
"@io_bazel_rules_rust//rust/platform:i686-unknown-linux-gnu",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__once_cell__1_5_2//:once_cell",
],
"//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({
# cfg(any(target_os = "android", target_os = "linux")) # cfg(any(target_os = "android", target_os = "linux"))
( (
@ -171,6 +154,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_80//:libc", "@raze__libc__0_2_80//:libc",
"@raze__once_cell__1_5_2//:once_cell",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -56,13 +56,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.2", version = "0.8.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__base64__0_12_3//:base64", "@raze__base64__0_13_0//:base64",
"@raze__blake2b_simd__0_5_11//:blake2b_simd", "@raze__blake2b_simd__0_5_11//:blake2b_simd",
"@raze__constant_time_eq__0_1_5//:constant_time_eq", "@raze__constant_time_eq__0_1_5//:constant_time_eq",
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils", "@raze__crossbeam_utils__0_8_1//:crossbeam_utils",
], ],
) )

View file

@ -68,7 +68,7 @@ rust_library(
deps = [ deps = [
"@raze__base64__0_12_3//:base64", "@raze__base64__0_12_3//:base64",
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__ring__0_16_17//:ring", "@raze__ring__0_16_18//:ring",
"@raze__sct__0_6_0//:sct", "@raze__sct__0_6_0//:sct",
"@raze__webpki__0_21_3//:webpki", "@raze__webpki__0_21_3//:webpki",
], ],

View file

@ -48,7 +48,7 @@ rust_library(
version = "0.6.0", version = "0.6.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__ring__0_16_17//:ring", "@raze__ring__0_16_18//:ring",
"@raze__untrusted__0_7_1//:untrusted", "@raze__untrusted__0_7_1//:untrusted",
], ],
) )

View file

@ -81,6 +81,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -50,7 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -50,6 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -56,7 +56,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "2.5.2", version = "2.7.0",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -87,7 +87,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "2.5.2", version = "2.7.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":slog_build_script", ":slog_build_script",

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__crossbeam_channel__0_4_4//:crossbeam_channel", "@raze__crossbeam_channel__0_4_4//:crossbeam_channel",
"@raze__slog__2_5_2//:slog", "@raze__slog__2_7_0//:slog",
"@raze__take_mut__0_2_2//:take_mut", "@raze__take_mut__0_2_2//:take_mut",
"@raze__thread_local__1_0_1//:thread_local", "@raze__thread_local__1_0_1//:thread_local",
], ],

View file

@ -58,7 +58,7 @@ rust_library(
deps = [ deps = [
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__regex__1_4_2//:regex", "@raze__regex__1_4_2//:regex",
"@raze__slog__2_5_2//:slog", "@raze__slog__2_7_0//:slog",
"@raze__slog_async__2_5_0//:slog_async", "@raze__slog_async__2_5_0//:slog_async",
"@raze__slog_scope__4_3_0//:slog_scope", "@raze__slog_scope__4_3_0//:slog_scope",
"@raze__slog_stdlog__4_1_0//:slog_stdlog", "@raze__slog_stdlog__4_1_0//:slog_stdlog",

View file

@ -52,6 +52,6 @@ rust_library(
deps = [ deps = [
"@raze__arc_swap__0_4_7//:arc_swap", "@raze__arc_swap__0_4_7//:arc_swap",
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__slog__2_5_2//:slog", "@raze__slog__2_7_0//:slog",
], ],
) )

View file

@ -49,7 +49,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__slog__2_5_2//:slog", "@raze__slog__2_7_0//:slog",
"@raze__slog_scope__4_3_0//:slog_scope", "@raze__slog_scope__4_3_0//:slog_scope",
], ],
) )

View file

@ -62,7 +62,7 @@ rust_library(
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_5_2//:slog", "@raze__slog__2_7_0//:slog",
"@raze__term__0_6_1//:term", "@raze__term__0_6_1//:term",
"@raze__thread_local__1_0_1//:thread_local", "@raze__thread_local__1_0_1//:thread_local",
], ],

View file

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

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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
"@raze__unicode_xid__0_2_1//:unicode_xid", "@raze__unicode_xid__0_2_1//:unicode_xid",
], ],
) )

View file

@ -50,6 +50,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_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
], ],
) )

View file

@ -52,7 +52,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
"@raze__unic_langid_impl__0_9_0//:unic_langid_impl", "@raze__unic_langid_impl__0_9_0//:unic_langid_impl",
], ],
) )

View file

@ -47,7 +47,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.7.0", version = "1.7.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -58,7 +58,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -79,7 +79,7 @@ rust_library(
crate_type = "lib", crate_type = "lib",
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__wasm_bindgen_macro__0_2_68//:wasm_bindgen_macro", "@raze__wasm_bindgen_macro__0_2_69//:wasm_bindgen_macro",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -88,11 +88,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":wasm_bindgen_build_script", ":wasm_bindgen_build_script",
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__serde__1_0_117//:serde", "@raze__serde__1_0_117//:serde",
"@raze__serde_json__1_0_59//:serde_json", "@raze__serde_json__1_0_59//:serde_json",
], ],

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bumpalo__3_4_0//:bumpalo", "@raze__bumpalo__3_4_0//:bumpalo",
@ -54,7 +54,7 @@ rust_library(
"@raze__log__0_4_11//:log", "@raze__log__0_4_11//:log",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
"@raze__wasm_bindgen_shared__0_2_68//:wasm_bindgen_shared", "@raze__wasm_bindgen_shared__0_2_69//:wasm_bindgen_shared",
], ],
) )

View file

@ -45,12 +45,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.18", version = "0.4.19",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__js_sys__0_3_45//:js_sys", "@raze__js_sys__0_3_46//:js_sys",
"@raze__wasm_bindgen__0_2_68//:wasm_bindgen", "@raze__wasm_bindgen__0_2_69//:wasm_bindgen",
], ],
) )

View file

@ -46,11 +46,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__wasm_bindgen_macro_support__0_2_68//:wasm_bindgen_macro_support", "@raze__wasm_bindgen_macro_support__0_2_69//:wasm_bindgen_macro_support",
], ],
) )

View file

@ -46,13 +46,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_7//:quote", "@raze__quote__1_0_7//:quote",
"@raze__syn__1_0_51//:syn", "@raze__syn__1_0_53//:syn",
"@raze__wasm_bindgen_backend__0_2_68//:wasm_bindgen_backend", "@raze__wasm_bindgen_backend__0_2_69//:wasm_bindgen_backend",
"@raze__wasm_bindgen_shared__0_2_68//:wasm_bindgen_shared", "@raze__wasm_bindgen_shared__0_2_69//:wasm_bindgen_shared",
], ],
) )

View file

@ -52,7 +52,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -73,7 +73,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.68", version = "0.2.69",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":wasm_bindgen_shared_build_script", ":wasm_bindgen_shared_build_script",

View file

@ -59,11 +59,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.45", version = "0.3.46",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__js_sys__0_3_45//:js_sys", "@raze__js_sys__0_3_46//:js_sys",
"@raze__wasm_bindgen__0_2_68//:wasm_bindgen", "@raze__wasm_bindgen__0_2_69//:wasm_bindgen",
], ],
) )

View file

@ -52,7 +52,7 @@ rust_library(
version = "0.21.3", version = "0.21.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__ring__0_16_17//:ring", "@raze__ring__0_16_18//:ring",
"@raze__untrusted__0_7_1//:untrusted", "@raze__untrusted__0_7_1//:untrusted",
], ],
) )

View file

@ -20,7 +20,7 @@ COMMITS_SHALLOW_SINCE = {
# prost # prost
"4ded4a98ef339da0b7babd4efee3fbe8adaf746b": "1598739849 -0700", "4ded4a98ef339da0b7babd4efee3fbe8adaf746b": "1598739849 -0700",
# pyo3 # pyo3
"3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1": "1603809036 +0900", "92b7a9736c9585883df5ec5bc01004caa7f65106": "1606725379 +0000",
} }
import os import os

View file

@ -12,7 +12,7 @@ anki = { path = "../../rslib" }
# /cargo/update.py needs to be run if updating the version below # /cargo/update.py needs to be run if updating the version below
[dependencies.pyo3] [dependencies.pyo3]
git = "https://github.com/PyO3/pyo3.git" git = "https://github.com/PyO3/pyo3.git"
rev = "3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1" rev = "92b7a9736c9585883df5ec5bc01004caa7f65106"
features = ["extension-module", "abi3"] features = ["extension-module", "abi3"]
[lib] [lib]

View file

@ -14,7 +14,7 @@ licenses([
# Aliased targets # Aliased targets
alias( alias(
name = "pyo3", name = "pyo3",
actual = "@raze__pyo3__0_12_3//:pyo3", actual = "@raze__pyo3__0_12_4//:pyo3",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",

View file

@ -59,7 +59,7 @@ alias(
alias( alias(
name = "coarsetime", name = "coarsetime",
actual = "@raze__coarsetime__0_1_16//:coarsetime", actual = "@raze__coarsetime__0_1_18//:coarsetime",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -347,7 +347,7 @@ alias(
alias( alias(
name = "slog", name = "slog",
actual = "@raze__slog__2_5_2//:slog", actual = "@raze__slog__2_7_0//:slog",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",