diff --git a/Cargo.lock b/Cargo.lock index 7cfea4708..44e60d233 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,9 +90,9 @@ version = "0.0.0" [[package]] name = "anyhow" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68803225a7b13e47191bab76f2687382b60d259e8cf37f6e1893658b84bb9479" +checksum = "ee67c11feeac938fae061b232e38e0b6d94f97a9df10e6271319325ac4c56a86" [[package]] name = "arc-swap" @@ -419,9 +419,9 @@ dependencies = [ [[package]] name = "ctor" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fbaabec2c953050352311293be5c6aba8e141ba19d6811862b232d6fd020484" +checksum = "373c88d9506e2e9230f6107701b7d8425f4cb3f6df108ec3042a26e936666da5" dependencies = [ "quote", "syn", @@ -1233,9 +1233,9 @@ checksum = "1255076139a83bb467426e7f8d0134968a8118844faa755985e077cf31850333" [[package]] name = "native-tls" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fcc7939b5edc4e4f86b1b4a04bb1498afaaf871b1a6691838ed06fcb48d3a3f" +checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4" dependencies = [ "lazy_static", "libc", @@ -1947,9 +1947,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.60" +version = "1.0.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1500e84d27fe482ed1dc791a56eddc2f230046a040fa908c08bda1d9fb615779" +checksum = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 915de2e59..4f0dd4f81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,7 @@ targets = [ "x86_64-pc-windows-msvc", "x86_64-unknown-linux-gnu", "aarch64-apple-ios", + "aarch64-unknown-linux-gnu", ] genmode = "Remote" default_gen_buildrs = true diff --git a/cargo/BUILD.reqwest.bazel b/cargo/BUILD.reqwest.bazel index d9e9db848..b2ea681c0 100644 --- a/cargo/BUILD.reqwest.bazel +++ b/cargo/BUILD.reqwest.bazel @@ -61,7 +61,7 @@ rust_library( ): {}, "//conditions:default": { # native-tls - "@raze__native_tls__0_2_6//:native_tls": "native_tls_crate", + "@raze__native_tls__0_2_7//:native_tls": "native_tls_crate", }, }), crate_features = [ @@ -111,7 +111,7 @@ rust_library( "@raze__hyper_timeout__0_3_1//:hyper_timeout", "@raze__mime_guess__2_0_3//:mime_guess", "@raze__serde__1_0_118//:serde", - "@raze__serde_json__1_0_60//:serde_json", + "@raze__serde_json__1_0_61//:serde_json", "@raze__serde_urlencoded__0_6_1//:serde_urlencoded", "@raze__url__2_2_0//:url", ] + selects.with_or({ @@ -160,7 +160,7 @@ rust_library( # native-tls on other platforms "//conditions:default": [ "@raze__hyper_tls__0_4_3//:hyper_tls", - "@raze__native_tls__0_2_6//:native_tls", + "@raze__native_tls__0_2_7//:native_tls", "@raze__tokio_tls__0_3_1//:tokio_tls", ], }), diff --git a/cargo/crates.bzl b/cargo/crates.bzl index 34c9d8dbc..cfb24e414 100644 --- a/cargo/crates.bzl +++ b/cargo/crates.bzl @@ -53,12 +53,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__anyhow__1_0_36", - url = "https://crates.io/api/v1/crates/anyhow/1.0.36/download", + name = "raze__anyhow__1_0_37", + url = "https://crates.io/api/v1/crates/anyhow/1.0.37/download", type = "tar.gz", - sha256 = "68803225a7b13e47191bab76f2687382b60d259e8cf37f6e1893658b84bb9479", - strip_prefix = "anyhow-1.0.36", - build_file = Label("//cargo/remote:BUILD.anyhow-1.0.36.bazel"), + sha256 = "ee67c11feeac938fae061b232e38e0b6d94f97a9df10e6271319325ac4c56a86", + strip_prefix = "anyhow-1.0.37", + build_file = Label("//cargo/remote:BUILD.anyhow-1.0.37.bazel"), ) maybe( @@ -423,12 +423,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__ctor__0_1_16", - url = "https://crates.io/api/v1/crates/ctor/0.1.16/download", + name = "raze__ctor__0_1_17", + url = "https://crates.io/api/v1/crates/ctor/0.1.17/download", type = "tar.gz", - sha256 = "7fbaabec2c953050352311293be5c6aba8e141ba19d6811862b232d6fd020484", - strip_prefix = "ctor-0.1.16", - build_file = Label("//cargo/remote:BUILD.ctor-0.1.16.bazel"), + sha256 = "373c88d9506e2e9230f6107701b7d8425f4cb3f6df108ec3042a26e936666da5", + strip_prefix = "ctor-0.1.17", + build_file = Label("//cargo/remote:BUILD.ctor-0.1.17.bazel"), ) maybe( @@ -1283,12 +1283,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__native_tls__0_2_6", - url = "https://crates.io/api/v1/crates/native-tls/0.2.6/download", + name = "raze__native_tls__0_2_7", + url = "https://crates.io/api/v1/crates/native-tls/0.2.7/download", type = "tar.gz", - sha256 = "6fcc7939b5edc4e4f86b1b4a04bb1498afaaf871b1a6691838ed06fcb48d3a3f", - strip_prefix = "native-tls-0.2.6", - build_file = Label("//cargo/remote:BUILD.native-tls-0.2.6.bazel"), + sha256 = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4", + strip_prefix = "native-tls-0.2.7", + build_file = Label("//cargo/remote:BUILD.native-tls-0.2.7.bazel"), ) maybe( @@ -1973,12 +1973,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__serde_json__1_0_60", - url = "https://crates.io/api/v1/crates/serde_json/1.0.60/download", + name = "raze__serde_json__1_0_61", + url = "https://crates.io/api/v1/crates/serde_json/1.0.61/download", type = "tar.gz", - sha256 = "1500e84d27fe482ed1dc791a56eddc2f230046a040fa908c08bda1d9fb615779", - strip_prefix = "serde_json-1.0.60", - build_file = Label("//cargo/remote:BUILD.serde_json-1.0.60.bazel"), + sha256 = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a", + strip_prefix = "serde_json-1.0.61", + build_file = Label("//cargo/remote:BUILD.serde_json-1.0.61.bazel"), ) maybe( diff --git a/cargo/licenses.json b/cargo/licenses.json index f6b532d47..9cbe8243a 100644 --- a/cargo/licenses.json +++ b/cargo/licenses.json @@ -55,7 +55,7 @@ }, { "name": "anyhow", - "version": "1.0.36", + "version": "1.0.37", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/anyhow", "license": "Apache-2.0 OR MIT", @@ -388,7 +388,7 @@ }, { "name": "ctor", - "version": "0.1.16", + "version": "0.1.17", "authors": "Matt Mastracci ", "repository": "https://github.com/mmastrac/rust-ctor", "license": "Apache-2.0 OR MIT", @@ -1162,7 +1162,7 @@ }, { "name": "native-tls", - "version": "0.2.6", + "version": "0.2.7", "authors": "Steven Fackler ", "repository": "https://github.com/sfackler/rust-native-tls", "license": "Apache-2.0 OR MIT", @@ -1792,7 +1792,7 @@ }, { "name": "serde_json", - "version": "1.0.60", + "version": "1.0.61", "authors": "Erick Tryzelaar |David Tolnay ", "repository": "https://github.com/serde-rs/json", "license": "Apache-2.0 OR MIT", diff --git a/cargo/remote/BUILD.anyhow-1.0.36.bazel b/cargo/remote/BUILD.anyhow-1.0.37.bazel similarity index 98% rename from cargo/remote/BUILD.anyhow-1.0.36.bazel rename to cargo/remote/BUILD.anyhow-1.0.37.bazel index e49e4864f..1715649c7 100644 --- a/cargo/remote/BUILD.anyhow-1.0.36.bazel +++ b/cargo/remote/BUILD.anyhow-1.0.37.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.36", + version = "1.0.37", visibility = ["//visibility:private"], deps = [ ], @@ -78,7 +78,7 @@ rust_library( "cargo-raze", "manual", ], - version = "1.0.36", + version = "1.0.37", # buildifier: leave-alone deps = [ ":anyhow_build_script", diff --git a/cargo/remote/BUILD.atty-0.2.14.bazel b/cargo/remote/BUILD.atty-0.2.14.bazel index 8af473784..06e76b95a 100644 --- a/cargo/remote/BUILD.atty-0.2.14.bazel +++ b/cargo/remote/BUILD.atty-0.2.14.bazel @@ -57,6 +57,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.coarsetime-0.1.18.bazel b/cargo/remote/BUILD.coarsetime-0.1.18.bazel index 1ae7c2da4..b83b1d001 100644 --- a/cargo/remote/BUILD.coarsetime-0.1.18.bazel +++ b/cargo/remote/BUILD.coarsetime-0.1.18.bazel @@ -56,6 +56,7 @@ rust_library( # cfg(not(target_os = "wasi")) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", diff --git a/cargo/remote/BUILD.ctor-0.1.16.bazel b/cargo/remote/BUILD.ctor-0.1.17.bazel similarity index 97% rename from cargo/remote/BUILD.ctor-0.1.16.bazel rename to cargo/remote/BUILD.ctor-0.1.17.bazel index 70e53e5b5..8b263b1fa 100644 --- a/cargo/remote/BUILD.ctor-0.1.16.bazel +++ b/cargo/remote/BUILD.ctor-0.1.17.bazel @@ -48,7 +48,7 @@ rust_library( "cargo-raze", "manual", ], - version = "0.1.16", + version = "0.1.17", # buildifier: leave-alone deps = [ "@raze__quote__1_0_8//:quote", diff --git a/cargo/remote/BUILD.dirs-sys-0.3.5.bazel b/cargo/remote/BUILD.dirs-sys-0.3.5.bazel index 865047207..b37e12ee4 100644 --- a/cargo/remote/BUILD.dirs-sys-0.3.5.bazel +++ b/cargo/remote/BUILD.dirs-sys-0.3.5.bazel @@ -55,6 +55,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.getrandom-0.1.15.bazel b/cargo/remote/BUILD.getrandom-0.1.15.bazel index 6a7eefbb7..321f4e9dd 100644 --- a/cargo/remote/BUILD.getrandom-0.1.15.bazel +++ b/cargo/remote/BUILD.getrandom-0.1.15.bazel @@ -60,6 +60,7 @@ cargo_build_script( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", @@ -99,6 +100,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.hyper-0.13.9.bazel b/cargo/remote/BUILD.hyper-0.13.9.bazel index c54097a6f..75cc2c2f0 100644 --- a/cargo/remote/BUILD.hyper-0.13.9.bazel +++ b/cargo/remote/BUILD.hyper-0.13.9.bazel @@ -114,6 +114,7 @@ rust_library( ] + selects.with_or({ # cfg(any(target_os = "linux", target_os = "macos")) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ diff --git a/cargo/remote/BUILD.hyper-tls-0.4.3.bazel b/cargo/remote/BUILD.hyper-tls-0.4.3.bazel index b2f1b0f8b..e0b0a833c 100644 --- a/cargo/remote/BUILD.hyper-tls-0.4.3.bazel +++ b/cargo/remote/BUILD.hyper-tls-0.4.3.bazel @@ -53,7 +53,7 @@ rust_library( deps = [ "@raze__bytes__0_5_6//:bytes", "@raze__hyper__0_13_9//:hyper", - "@raze__native_tls__0_2_6//:native_tls", + "@raze__native_tls__0_2_7//:native_tls", "@raze__tokio__0_2_24//:tokio", "@raze__tokio_tls__0_3_1//:tokio_tls", ], diff --git a/cargo/remote/BUILD.inventory-0.1.10.bazel b/cargo/remote/BUILD.inventory-0.1.10.bazel index ce7cc9d15..6bc2253cf 100644 --- a/cargo/remote/BUILD.inventory-0.1.10.bazel +++ b/cargo/remote/BUILD.inventory-0.1.10.bazel @@ -70,7 +70,7 @@ rust_library( data = [], edition = "2018", proc_macro_deps = [ - "@raze__ctor__0_1_16//:ctor", + "@raze__ctor__0_1_17//:ctor", "@raze__ghost__0_1_2//:ghost", "@raze__inventory_impl__0_1_10//:inventory_impl", ], diff --git a/cargo/remote/BUILD.iovec-0.1.4.bazel b/cargo/remote/BUILD.iovec-0.1.4.bazel index 23174c6cc..2e4c47cb2 100644 --- a/cargo/remote/BUILD.iovec-0.1.4.bazel +++ b/cargo/remote/BUILD.iovec-0.1.4.bazel @@ -55,6 +55,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.mio-0.6.23.bazel b/cargo/remote/BUILD.mio-0.6.23.bazel index 3e1fc39ee..5b0abceca 100644 --- a/cargo/remote/BUILD.mio-0.6.23.bazel +++ b/cargo/remote/BUILD.mio-0.6.23.bazel @@ -62,6 +62,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.native-tls-0.2.6.bazel b/cargo/remote/BUILD.native-tls-0.2.7.bazel similarity index 95% rename from cargo/remote/BUILD.native-tls-0.2.6.bazel rename to cargo/remote/BUILD.native-tls-0.2.7.bazel index 94821b5a0..e710517c0 100644 --- a/cargo/remote/BUILD.native-tls-0.2.6.bazel +++ b/cargo/remote/BUILD.native-tls-0.2.7.bazel @@ -52,7 +52,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.2.6", + version = "0.2.7", visibility = ["//visibility:private"], deps = [ ] + selects.with_or({ @@ -68,6 +68,7 @@ cargo_build_script( }) + selects.with_or({ # cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios"))) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ "@raze__openssl_sys__0_9_60//:openssl_sys", @@ -105,7 +106,7 @@ rust_library( "cargo-raze", "manual", ], - version = "0.2.6", + version = "0.2.7", # buildifier: leave-alone deps = [ ":native_tls_build_script", @@ -126,6 +127,7 @@ rust_library( }) + selects.with_or({ # cfg(not(any(target_os = "windows", target_os = "macos", target_os = "ios"))) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ "@raze__log__0_4_11//:log", diff --git a/cargo/remote/BUILD.net2-0.2.37.bazel b/cargo/remote/BUILD.net2-0.2.37.bazel index 4aad30b57..8f2fc4801 100644 --- a/cargo/remote/BUILD.net2-0.2.37.bazel +++ b/cargo/remote/BUILD.net2-0.2.37.bazel @@ -58,6 +58,7 @@ rust_library( # cfg(any(target_os = "redox", unix, target_os = "wasi")) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.num-format-0.4.0.bazel b/cargo/remote/BUILD.num-format-0.4.0.bazel index c2e8c0e1c..3fc6e1b34 100644 --- a/cargo/remote/BUILD.num-format-0.4.0.bazel +++ b/cargo/remote/BUILD.num-format-0.4.0.bazel @@ -59,6 +59,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.parking_lot_core-0.8.2.bazel b/cargo/remote/BUILD.parking_lot_core-0.8.2.bazel index 5084686c7..3586b08aa 100644 --- a/cargo/remote/BUILD.parking_lot_core-0.8.2.bazel +++ b/cargo/remote/BUILD.parking_lot_core-0.8.2.bazel @@ -58,6 +58,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.prost-derive-0.7.0.bazel b/cargo/remote/BUILD.prost-derive-0.7.0.bazel index 653588f3a..16aa3f291 100644 --- a/cargo/remote/BUILD.prost-derive-0.7.0.bazel +++ b/cargo/remote/BUILD.prost-derive-0.7.0.bazel @@ -49,7 +49,7 @@ rust_library( version = "0.7.0", # buildifier: leave-alone deps = [ - "@raze__anyhow__1_0_36//:anyhow", + "@raze__anyhow__1_0_37//:anyhow", "@raze__itertools__0_9_0//:itertools", "@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__quote__1_0_8//:quote", diff --git a/cargo/remote/BUILD.pyo3-0.13.0.bazel b/cargo/remote/BUILD.pyo3-0.13.0.bazel index 6a688ea2b..1dfd14aef 100644 --- a/cargo/remote/BUILD.pyo3-0.13.0.bazel +++ b/cargo/remote/BUILD.pyo3-0.13.0.bazel @@ -101,7 +101,7 @@ rust_library( compile_data = glob(["**/*.md"]), edition = "2018", proc_macro_deps = [ - "@raze__ctor__0_1_16//:ctor", + "@raze__ctor__0_1_17//:ctor", "@raze__indoc__1_0_3//:indoc", "@raze__paste__1_0_4//:paste", "@raze__pyo3_macros__0_13_0//:pyo3_macros", diff --git a/cargo/remote/BUILD.rand-0.7.3.bazel b/cargo/remote/BUILD.rand-0.7.3.bazel index 11aa7bc97..c274e3ad6 100644 --- a/cargo/remote/BUILD.rand-0.7.3.bazel +++ b/cargo/remote/BUILD.rand-0.7.3.bazel @@ -77,6 +77,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.reqwest-0.10.8.bazel b/cargo/remote/BUILD.reqwest-0.10.8.bazel index 83d784d90..130f6fbc4 100644 --- a/cargo/remote/BUILD.reqwest-0.10.8.bazel +++ b/cargo/remote/BUILD.reqwest-0.10.8.bazel @@ -46,7 +46,7 @@ rust_library( name = "reqwest", srcs = glob(["**/*.rs"]), aliases = { - "@raze__native_tls__0_2_6//:native_tls": "native_tls_crate", + "@raze__native_tls__0_2_7//:native_tls": "native_tls_crate", }, crate_features = [ "__rustls", @@ -87,13 +87,14 @@ rust_library( "@raze__hyper_timeout__0_3_1//:hyper_timeout", "@raze__mime_guess__2_0_3//:mime_guess", "@raze__serde__1_0_118//:serde", - "@raze__serde_json__1_0_60//:serde_json", + "@raze__serde_json__1_0_61//:serde_json", "@raze__serde_urlencoded__0_6_1//:serde_urlencoded", "@raze__url__2_2_0//:url", ] + selects.with_or({ # cfg(not(target_arch = "wasm32")) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", @@ -111,7 +112,7 @@ rust_library( "@raze__lazy_static__1_4_0//:lazy_static", "@raze__log__0_4_11//:log", "@raze__mime__0_3_16//:mime", - "@raze__native_tls__0_2_6//:native_tls", + "@raze__native_tls__0_2_7//:native_tls", "@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__pin_project_lite__0_1_11//:pin_project_lite", "@raze__rustls__0_18_1//:rustls", diff --git a/cargo/remote/BUILD.ring-0.16.19.bazel b/cargo/remote/BUILD.ring-0.16.19.bazel index 70675506e..4fae09e33 100644 --- a/cargo/remote/BUILD.ring-0.16.19.bazel +++ b/cargo/remote/BUILD.ring-0.16.19.bazel @@ -63,6 +63,7 @@ cargo_build_script( ] + selects.with_or({ # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux")))) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", @@ -73,6 +74,7 @@ cargo_build_script( }) + selects.with_or({ # cfg(any(target_os = "android", target_os = "linux")) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ ], @@ -81,6 +83,7 @@ cargo_build_script( # cfg(any(unix, windows)) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", @@ -129,6 +132,7 @@ rust_library( ] + selects.with_or({ # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux")))) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", @@ -140,6 +144,7 @@ rust_library( }) + selects.with_or({ # cfg(any(target_os = "android", target_os = "linux")) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ "@raze__libc__0_2_81//:libc", @@ -150,6 +155,7 @@ rust_library( # cfg(any(unix, windows)) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", diff --git a/cargo/remote/BUILD.serde-aux-0.6.1.bazel b/cargo/remote/BUILD.serde-aux-0.6.1.bazel index 9042c2038..c2cbeb400 100644 --- a/cargo/remote/BUILD.serde-aux-0.6.1.bazel +++ b/cargo/remote/BUILD.serde-aux-0.6.1.bazel @@ -56,6 +56,6 @@ rust_library( deps = [ "@raze__chrono__0_4_19//:chrono", "@raze__serde__1_0_118//:serde", - "@raze__serde_json__1_0_60//:serde_json", + "@raze__serde_json__1_0_61//:serde_json", ], ) diff --git a/cargo/remote/BUILD.serde_json-1.0.60.bazel b/cargo/remote/BUILD.serde_json-1.0.61.bazel similarity index 97% rename from cargo/remote/BUILD.serde_json-1.0.60.bazel rename to cargo/remote/BUILD.serde_json-1.0.61.bazel index 746da93d1..ec262aca5 100644 --- a/cargo/remote/BUILD.serde_json-1.0.60.bazel +++ b/cargo/remote/BUILD.serde_json-1.0.61.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.60", + version = "1.0.61", visibility = ["//visibility:private"], deps = [ ], @@ -78,7 +78,7 @@ rust_library( "cargo-raze", "manual", ], - version = "1.0.60", + version = "1.0.61", # buildifier: leave-alone deps = [ ":serde_json_build_script", diff --git a/cargo/remote/BUILD.socket2-0.3.19.bazel b/cargo/remote/BUILD.socket2-0.3.19.bazel index a28ed11d8..9f10d9931 100644 --- a/cargo/remote/BUILD.socket2-0.3.19.bazel +++ b/cargo/remote/BUILD.socket2-0.3.19.bazel @@ -55,6 +55,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.tempfile-3.1.0.bazel b/cargo/remote/BUILD.tempfile-3.1.0.bazel index 7ca2c15b7..7cd3ab9f3 100644 --- a/cargo/remote/BUILD.tempfile-3.1.0.bazel +++ b/cargo/remote/BUILD.tempfile-3.1.0.bazel @@ -58,6 +58,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.tokio-0.2.24.bazel b/cargo/remote/BUILD.tokio-0.2.24.bazel index e2de160fe..7ccc39bf5 100644 --- a/cargo/remote/BUILD.tokio-0.2.24.bazel +++ b/cargo/remote/BUILD.tokio-0.2.24.bazel @@ -84,6 +84,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.tokio-tls-0.3.1.bazel b/cargo/remote/BUILD.tokio-tls-0.3.1.bazel index 34c448865..32f0df2bc 100644 --- a/cargo/remote/BUILD.tokio-tls-0.3.1.bazel +++ b/cargo/remote/BUILD.tokio-tls-0.3.1.bazel @@ -55,11 +55,12 @@ rust_library( version = "0.3.1", # buildifier: leave-alone deps = [ - "@raze__native_tls__0_2_6//:native_tls", + "@raze__native_tls__0_2_7//:native_tls", "@raze__tokio__0_2_24//:tokio", ] + selects.with_or({ # cfg(all(not(target_os = "macos"), not(windows), not(target_os = "ios"))) ( + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ ], diff --git a/cargo/remote/BUILD.utime-0.3.1.bazel b/cargo/remote/BUILD.utime-0.3.1.bazel index 507d7fe63..d847a6ea6 100644 --- a/cargo/remote/BUILD.utime-0.3.1.bazel +++ b/cargo/remote/BUILD.utime-0.3.1.bazel @@ -55,6 +55,7 @@ rust_library( # cfg(unix) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", + "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", diff --git a/cargo/remote/BUILD.wasm-bindgen-0.2.69.bazel b/cargo/remote/BUILD.wasm-bindgen-0.2.69.bazel index 287aece2f..32a4a0575 100644 --- a/cargo/remote/BUILD.wasm-bindgen-0.2.69.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-0.2.69.bazel @@ -95,7 +95,7 @@ rust_library( ":wasm_bindgen_build_script", "@raze__cfg_if__1_0_0//:cfg_if", "@raze__serde__1_0_118//:serde", - "@raze__serde_json__1_0_60//:serde_json", + "@raze__serde_json__1_0_61//:serde_json", ], ) diff --git a/rslib/cargo/BUILD.bazel b/rslib/cargo/BUILD.bazel index f416b3b90..f208dfa31 100644 --- a/rslib/cargo/BUILD.bazel +++ b/rslib/cargo/BUILD.bazel @@ -311,7 +311,7 @@ alias( alias( name = "serde_json", - actual = "@raze__serde_json__1_0_60//:serde_json", + actual = "@raze__serde_json__1_0_61//:serde_json", tags = [ "cargo-raze", "manual",