diff --git a/Cargo.lock b/Cargo.lock index 97b467eed..f3196c1e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -90,9 +90,9 @@ version = "0.0.0" [[package]] name = "anyhow" -version = "1.0.35" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c0df63cb2955042487fad3aefd2c6e3ae7389ac5dc1beb28921de0b69f779d4" +checksum = "68803225a7b13e47191bab76f2687382b60d259e8cf37f6e1893658b84bb9479" [[package]] name = "arc-swap" @@ -823,9 +823,9 @@ dependencies = [ [[package]] name = "heck" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" +checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac" dependencies = [ "unicode-segmentation", ] @@ -1391,9 +1391,9 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7c6d9b8427445284a09c55be860a15855ab580a417ccad9da88f5a06787ced0" +checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272" dependencies = [ "cfg-if 1.0.0", "instant", @@ -1616,9 +1616,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37" +checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df" dependencies = [ "proc-macro2", ] @@ -2075,9 +2075,9 @@ checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75" [[package]] name = "socket2" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97e0e9fd577458a4f61fb91fcb559ea2afecc54c934119421f9f5d3d5b1a1057" +checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" dependencies = [ "cfg-if 1.0.0", "libc", @@ -2110,9 +2110,9 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" [[package]] name = "syn" -version = "1.0.54" +version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44" +checksum = "a571a711dddd09019ccc628e1b17fe87c59b09d513c06c026877aa708334f37a" dependencies = [ "proc-macro2", "quote", @@ -2315,9 +2315,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645" +checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" dependencies = [ "serde", ] diff --git a/cargo/crates.bzl b/cargo/crates.bzl index c320585d8..248073d13 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_35", - url = "https://crates.io/api/v1/crates/anyhow/1.0.35/download", + name = "raze__anyhow__1_0_36", + url = "https://crates.io/api/v1/crates/anyhow/1.0.36/download", type = "tar.gz", - sha256 = "2c0df63cb2955042487fad3aefd2c6e3ae7389ac5dc1beb28921de0b69f779d4", - strip_prefix = "anyhow-1.0.35", - build_file = Label("//cargo/remote:BUILD.anyhow-1.0.35.bazel"), + sha256 = "68803225a7b13e47191bab76f2687382b60d259e8cf37f6e1893658b84bb9479", + strip_prefix = "anyhow-1.0.36", + build_file = Label("//cargo/remote:BUILD.anyhow-1.0.36.bazel"), ) maybe( @@ -843,12 +843,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__heck__0_3_1", - url = "https://crates.io/api/v1/crates/heck/0.3.1/download", + name = "raze__heck__0_3_2", + url = "https://crates.io/api/v1/crates/heck/0.3.2/download", type = "tar.gz", - sha256 = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205", - strip_prefix = "heck-0.3.1", - build_file = Label("//cargo/remote:BUILD.heck-0.3.1.bazel"), + sha256 = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac", + strip_prefix = "heck-0.3.2", + build_file = Label("//cargo/remote:BUILD.heck-0.3.2.bazel"), ) maybe( @@ -1433,12 +1433,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__parking_lot_core__0_8_1", - url = "https://crates.io/api/v1/crates/parking_lot_core/0.8.1/download", + name = "raze__parking_lot_core__0_8_2", + url = "https://crates.io/api/v1/crates/parking_lot_core/0.8.2/download", type = "tar.gz", - sha256 = "d7c6d9b8427445284a09c55be860a15855ab580a417ccad9da88f5a06787ced0", - strip_prefix = "parking_lot_core-0.8.1", - build_file = Label("//cargo/remote:BUILD.parking_lot_core-0.8.1.bazel"), + sha256 = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272", + strip_prefix = "parking_lot_core-0.8.2", + build_file = Label("//cargo/remote:BUILD.parking_lot_core-0.8.2.bazel"), ) maybe( @@ -1683,12 +1683,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__quote__1_0_7", - url = "https://crates.io/api/v1/crates/quote/1.0.7/download", + name = "raze__quote__1_0_8", + url = "https://crates.io/api/v1/crates/quote/1.0.8/download", type = "tar.gz", - sha256 = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37", - strip_prefix = "quote-1.0.7", - build_file = Label("//cargo/remote:BUILD.quote-1.0.7.bazel"), + sha256 = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df", + strip_prefix = "quote-1.0.8", + build_file = Label("//cargo/remote:BUILD.quote-1.0.8.bazel"), ) maybe( @@ -2103,12 +2103,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__socket2__0_3_18", - url = "https://crates.io/api/v1/crates/socket2/0.3.18/download", + name = "raze__socket2__0_3_19", + url = "https://crates.io/api/v1/crates/socket2/0.3.19/download", type = "tar.gz", - sha256 = "97e0e9fd577458a4f61fb91fcb559ea2afecc54c934119421f9f5d3d5b1a1057", - strip_prefix = "socket2-0.3.18", - build_file = Label("//cargo/remote:BUILD.socket2-0.3.18.bazel"), + sha256 = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e", + strip_prefix = "socket2-0.3.19", + build_file = Label("//cargo/remote:BUILD.socket2-0.3.19.bazel"), ) maybe( @@ -2153,12 +2153,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__syn__1_0_54", - url = "https://crates.io/api/v1/crates/syn/1.0.54/download", + name = "raze__syn__1_0_55", + url = "https://crates.io/api/v1/crates/syn/1.0.55/download", type = "tar.gz", - sha256 = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44", - strip_prefix = "syn-1.0.54", - build_file = Label("//cargo/remote:BUILD.syn-1.0.54.bazel"), + sha256 = "a571a711dddd09019ccc628e1b17fe87c59b09d513c06c026877aa708334f37a", + strip_prefix = "syn-1.0.55", + build_file = Label("//cargo/remote:BUILD.syn-1.0.55.bazel"), ) maybe( @@ -2353,12 +2353,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__toml__0_5_7", - url = "https://crates.io/api/v1/crates/toml/0.5.7/download", + name = "raze__toml__0_5_8", + url = "https://crates.io/api/v1/crates/toml/0.5.8/download", type = "tar.gz", - sha256 = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645", - strip_prefix = "toml-0.5.7", - build_file = Label("//cargo/remote:BUILD.toml-0.5.7.bazel"), + sha256 = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa", + strip_prefix = "toml-0.5.8", + build_file = Label("//cargo/remote:BUILD.toml-0.5.8.bazel"), ) maybe( diff --git a/cargo/licenses.json b/cargo/licenses.json index f41752321..f2cc07379 100644 --- a/cargo/licenses.json +++ b/cargo/licenses.json @@ -55,7 +55,7 @@ }, { "name": "anyhow", - "version": "1.0.35", + "version": "1.0.36", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/anyhow", "license": "Apache-2.0 OR MIT", @@ -766,7 +766,7 @@ }, { "name": "heck", - "version": "0.3.1", + "version": "0.3.2", "authors": "Without Boats ", "repository": "https://github.com/withoutboats/heck", "license": "Apache-2.0 OR MIT", @@ -1297,7 +1297,7 @@ }, { "name": "parking_lot_core", - "version": "0.8.1", + "version": "0.8.2", "authors": "Amanieu d'Antras ", "repository": "https://github.com/Amanieu/parking_lot", "license": "Apache-2.0 OR MIT", @@ -1522,7 +1522,7 @@ }, { "name": "quote", - "version": "1.0.7", + "version": "1.0.8", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/quote", "license": "Apache-2.0 OR MIT", @@ -1909,7 +1909,7 @@ }, { "name": "socket2", - "version": "0.3.18", + "version": "0.3.19", "authors": "Alex Crichton ", "repository": "https://github.com/alexcrichton/socket2-rs", "license": "Apache-2.0 OR MIT", @@ -1954,7 +1954,7 @@ }, { "name": "syn", - "version": "1.0.54", + "version": "1.0.55", "authors": "David Tolnay ", "repository": "https://github.com/dtolnay/syn", "license": "Apache-2.0 OR MIT", @@ -2134,7 +2134,7 @@ }, { "name": "toml", - "version": "0.5.7", + "version": "0.5.8", "authors": "Alex Crichton ", "repository": "https://github.com/alexcrichton/toml-rs", "license": "Apache-2.0 OR MIT", diff --git a/cargo/remote/BUILD.anyhow-1.0.35.bazel b/cargo/remote/BUILD.anyhow-1.0.36.bazel similarity index 95% rename from cargo/remote/BUILD.anyhow-1.0.35.bazel rename to cargo/remote/BUILD.anyhow-1.0.36.bazel index d60beffdc..e49e4864f 100644 --- a/cargo/remote/BUILD.anyhow-1.0.35.bazel +++ b/cargo/remote/BUILD.anyhow-1.0.36.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.35", + version = "1.0.36", visibility = ["//visibility:private"], deps = [ ], @@ -78,7 +78,7 @@ rust_library( "cargo-raze", "manual", ], - version = "1.0.35", + version = "1.0.36", # buildifier: leave-alone deps = [ ":anyhow_build_script", @@ -101,6 +101,8 @@ rust_library( # Unsupported target "test_downcast" with type "test" omitted +# Unsupported target "test_ffi" with type "test" omitted + # Unsupported target "test_fmt" with type "test" omitted # Unsupported target "test_macros" with type "test" omitted diff --git a/cargo/remote/BUILD.askama_derive-0.10.5.bazel b/cargo/remote/BUILD.askama_derive-0.10.5.bazel index 80e48b0ab..e78afefcf 100644 --- a/cargo/remote/BUILD.askama_derive-0.10.5.bazel +++ b/cargo/remote/BUILD.askama_derive-0.10.5.bazel @@ -51,6 +51,6 @@ rust_library( deps = [ "@raze__askama_shared__0_11_1//:askama_shared", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__syn__1_0_54//:syn", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.askama_shared-0.11.1.bazel b/cargo/remote/BUILD.askama_shared-0.11.1.bazel index 7a6c2f219..39acae264 100644 --- a/cargo/remote/BUILD.askama_shared-0.11.1.bazel +++ b/cargo/remote/BUILD.askama_shared-0.11.1.bazel @@ -61,9 +61,9 @@ rust_library( "@raze__num_traits__0_2_14//:num_traits", "@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", + "@raze__quote__1_0_8//:quote", "@raze__serde__1_0_118//:serde", - "@raze__syn__1_0_54//:syn", - "@raze__toml__0_5_7//:toml", + "@raze__syn__1_0_55//:syn", + "@raze__toml__0_5_8//:toml", ], ) diff --git a/cargo/remote/BUILD.ctor-0.1.16.bazel b/cargo/remote/BUILD.ctor-0.1.16.bazel index 9de79bfef..d5245fe81 100644 --- a/cargo/remote/BUILD.ctor-0.1.16.bazel +++ b/cargo/remote/BUILD.ctor-0.1.16.bazel @@ -51,7 +51,7 @@ rust_library( version = "0.1.16", # buildifier: leave-alone deps = [ - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.derivative-2.1.1.bazel b/cargo/remote/BUILD.derivative-2.1.1.bazel index 70dc771c1..55044bcc0 100644 --- a/cargo/remote/BUILD.derivative-2.1.1.bazel +++ b/cargo/remote/BUILD.derivative-2.1.1.bazel @@ -51,8 +51,8 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.failure_derive-0.1.8.bazel b/cargo/remote/BUILD.failure_derive-0.1.8.bazel index 7ff845f25..0bdc193c2 100644 --- a/cargo/remote/BUILD.failure_derive-0.1.8.bazel +++ b/cargo/remote/BUILD.failure_derive-0.1.8.bazel @@ -79,8 +79,8 @@ rust_library( deps = [ ":failure_derive_build_script", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", "@raze__synstructure__0_12_4//:synstructure", ], ) diff --git a/cargo/remote/BUILD.futures-macro-0.3.8.bazel b/cargo/remote/BUILD.futures-macro-0.3.8.bazel index 55406b6b7..0ce56872a 100644 --- a/cargo/remote/BUILD.futures-macro-0.3.8.bazel +++ b/cargo/remote/BUILD.futures-macro-0.3.8.bazel @@ -53,7 +53,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.ghost-0.1.2.bazel b/cargo/remote/BUILD.ghost-0.1.2.bazel index da4516c1f..ef6c68908 100644 --- a/cargo/remote/BUILD.ghost-0.1.2.bazel +++ b/cargo/remote/BUILD.ghost-0.1.2.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.heck-0.3.1.bazel b/cargo/remote/BUILD.heck-0.3.2.bazel similarity index 95% rename from cargo/remote/BUILD.heck-0.3.1.bazel rename to cargo/remote/BUILD.heck-0.3.2.bazel index 725be3d72..f982a953e 100644 --- a/cargo/remote/BUILD.heck-0.3.1.bazel +++ b/cargo/remote/BUILD.heck-0.3.2.bazel @@ -38,7 +38,7 @@ rust_library( crate_root = "src/lib.rs", crate_type = "lib", data = [], - edition = "2015", + edition = "2018", rustc_flags = [ "--cap-lints=allow", ], @@ -46,7 +46,7 @@ rust_library( "cargo-raze", "manual", ], - version = "0.3.1", + version = "0.3.2", # buildifier: leave-alone deps = [ "@raze__unicode_segmentation__1_7_1//:unicode_segmentation", diff --git a/cargo/remote/BUILD.hyper-0.13.9.bazel b/cargo/remote/BUILD.hyper-0.13.9.bazel index 97e8ccacb..4c49c54c3 100644 --- a/cargo/remote/BUILD.hyper-0.13.9.bazel +++ b/cargo/remote/BUILD.hyper-0.13.9.bazel @@ -106,7 +106,7 @@ rust_library( "@raze__httpdate__0_3_2//:httpdate", "@raze__itoa__0_4_6//:itoa", "@raze__pin_project__1_0_2//:pin_project", - "@raze__socket2__0_3_18//:socket2", + "@raze__socket2__0_3_19//:socket2", "@raze__tokio__0_2_24//:tokio", "@raze__tower_service__0_3_0//:tower_service", "@raze__tracing__0_1_22//:tracing", diff --git a/cargo/remote/BUILD.inventory-impl-0.1.10.bazel b/cargo/remote/BUILD.inventory-impl-0.1.10.bazel index 3c0740e22..f114abd04 100644 --- a/cargo/remote/BUILD.inventory-impl-0.1.10.bazel +++ b/cargo/remote/BUILD.inventory-impl-0.1.10.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.num_enum_derive-0.5.1.bazel b/cargo/remote/BUILD.num_enum_derive-0.5.1.bazel index 5e8546ed0..72fb3c202 100644 --- a/cargo/remote/BUILD.num_enum_derive-0.5.1.bazel +++ b/cargo/remote/BUILD.num_enum_derive-0.5.1.bazel @@ -53,7 +53,7 @@ rust_library( deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro_crate__0_1_5//:proc_macro_crate", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.parking_lot-0.11.1.bazel b/cargo/remote/BUILD.parking_lot-0.11.1.bazel index 9caa438d4..89ea3c351 100644 --- a/cargo/remote/BUILD.parking_lot-0.11.1.bazel +++ b/cargo/remote/BUILD.parking_lot-0.11.1.bazel @@ -52,7 +52,7 @@ rust_library( deps = [ "@raze__instant__0_1_9//:instant", "@raze__lock_api__0_4_2//:lock_api", - "@raze__parking_lot_core__0_8_1//:parking_lot_core", + "@raze__parking_lot_core__0_8_2//:parking_lot_core", ], ) diff --git a/cargo/remote/BUILD.parking_lot_core-0.8.1.bazel b/cargo/remote/BUILD.parking_lot_core-0.8.2.bazel similarity index 98% rename from cargo/remote/BUILD.parking_lot_core-0.8.1.bazel rename to cargo/remote/BUILD.parking_lot_core-0.8.2.bazel index c54752643..5084686c7 100644 --- a/cargo/remote/BUILD.parking_lot_core-0.8.1.bazel +++ b/cargo/remote/BUILD.parking_lot_core-0.8.2.bazel @@ -48,7 +48,7 @@ rust_library( "cargo-raze", "manual", ], - version = "0.8.1", + version = "0.8.2", # buildifier: leave-alone deps = [ "@raze__cfg_if__1_0_0//:cfg_if", diff --git a/cargo/remote/BUILD.pin-project-internal-0.4.27.bazel b/cargo/remote/BUILD.pin-project-internal-0.4.27.bazel index bb3efd253..e75143495 100644 --- a/cargo/remote/BUILD.pin-project-internal-0.4.27.bazel +++ b/cargo/remote/BUILD.pin-project-internal-0.4.27.bazel @@ -79,7 +79,7 @@ rust_library( deps = [ ":pin_project_internal_build_script", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.pin-project-internal-1.0.2.bazel b/cargo/remote/BUILD.pin-project-internal-1.0.2.bazel index b01095811..00198e1ce 100644 --- a/cargo/remote/BUILD.pin-project-internal-1.0.2.bazel +++ b/cargo/remote/BUILD.pin-project-internal-1.0.2.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.proc-macro-crate-0.1.5.bazel b/cargo/remote/BUILD.proc-macro-crate-0.1.5.bazel index a9b6911d0..de761c9ec 100644 --- a/cargo/remote/BUILD.proc-macro-crate-0.1.5.bazel +++ b/cargo/remote/BUILD.proc-macro-crate-0.1.5.bazel @@ -49,6 +49,6 @@ rust_library( version = "0.1.5", # buildifier: leave-alone deps = [ - "@raze__toml__0_5_7//:toml", + "@raze__toml__0_5_8//:toml", ], ) diff --git a/cargo/remote/BUILD.prost-build-0.6.1.bazel b/cargo/remote/BUILD.prost-build-0.6.1.bazel index fa2fb29d8..52dbf4d78 100644 --- a/cargo/remote/BUILD.prost-build-0.6.1.bazel +++ b/cargo/remote/BUILD.prost-build-0.6.1.bazel @@ -80,7 +80,7 @@ rust_library( deps = [ ":prost_build_build_script", "@raze__bytes__0_5_6//:bytes", - "@raze__heck__0_3_1//:heck", + "@raze__heck__0_3_2//:heck", "@raze__itertools__0_9_0//:itertools", "@raze__log__0_4_11//:log", "@raze__multimap__0_8_2//:multimap", diff --git a/cargo/remote/BUILD.prost-derive-0.6.1.bazel b/cargo/remote/BUILD.prost-derive-0.6.1.bazel index a1ab8d57b..42041ce5b 100644 --- a/cargo/remote/BUILD.prost-derive-0.6.1.bazel +++ b/cargo/remote/BUILD.prost-derive-0.6.1.bazel @@ -49,10 +49,10 @@ rust_library( version = "0.6.1", # buildifier: leave-alone deps = [ - "@raze__anyhow__1_0_35//:anyhow", + "@raze__anyhow__1_0_36//:anyhow", "@raze__itertools__0_9_0//:itertools", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.pyo3-derive-backend-0.12.4.bazel b/cargo/remote/BUILD.pyo3-derive-backend-0.12.4.bazel index e0b52b24a..a77574ff5 100644 --- a/cargo/remote/BUILD.pyo3-derive-backend-0.12.4.bazel +++ b/cargo/remote/BUILD.pyo3-derive-backend-0.12.4.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.pyo3cls-0.12.4.bazel b/cargo/remote/BUILD.pyo3cls-0.12.4.bazel index 5e65efba4..bc25816f1 100644 --- a/cargo/remote/BUILD.pyo3cls-0.12.4.bazel +++ b/cargo/remote/BUILD.pyo3cls-0.12.4.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__pyo3_derive_backend__0_12_4//:pyo3_derive_backend", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.quote-1.0.7.bazel b/cargo/remote/BUILD.quote-1.0.8.bazel similarity index 98% rename from cargo/remote/BUILD.quote-1.0.7.bazel rename to cargo/remote/BUILD.quote-1.0.8.bazel index e9b8e1fad..a3018c978 100644 --- a/cargo/remote/BUILD.quote-1.0.7.bazel +++ b/cargo/remote/BUILD.quote-1.0.8.bazel @@ -48,7 +48,7 @@ rust_library( "cargo-raze", "manual", ], - version = "1.0.7", + version = "1.0.8", # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", diff --git a/cargo/remote/BUILD.rental-impl-0.5.5.bazel b/cargo/remote/BUILD.rental-impl-0.5.5.bazel index eaeb66526..0790a572a 100644 --- a/cargo/remote/BUILD.rental-impl-0.5.5.bazel +++ b/cargo/remote/BUILD.rental-impl-0.5.5.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.serde_derive-1.0.118.bazel b/cargo/remote/BUILD.serde_derive-1.0.118.bazel index 9cfa5677a..165bbdedf 100644 --- a/cargo/remote/BUILD.serde_derive-1.0.118.bazel +++ b/cargo/remote/BUILD.serde_derive-1.0.118.bazel @@ -81,7 +81,7 @@ rust_library( deps = [ ":serde_derive_build_script", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.serde_repr-0.1.6.bazel b/cargo/remote/BUILD.serde_repr-0.1.6.bazel index 9cd257713..a331ba165 100644 --- a/cargo/remote/BUILD.serde_repr-0.1.6.bazel +++ b/cargo/remote/BUILD.serde_repr-0.1.6.bazel @@ -50,8 +50,8 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel b/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel index b7bb789d8..54e0a068f 100644 --- a/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel +++ b/cargo/remote/BUILD.serde_tuple_macros-0.5.0.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.socket2-0.3.18.bazel b/cargo/remote/BUILD.socket2-0.3.19.bazel similarity index 98% rename from cargo/remote/BUILD.socket2-0.3.18.bazel rename to cargo/remote/BUILD.socket2-0.3.19.bazel index a260a6c5f..a28ed11d8 100644 --- a/cargo/remote/BUILD.socket2-0.3.18.bazel +++ b/cargo/remote/BUILD.socket2-0.3.19.bazel @@ -48,7 +48,7 @@ rust_library( "cargo-raze", "manual", ], - version = "0.3.18", + version = "0.3.19", # buildifier: leave-alone deps = [ ] + selects.with_or({ diff --git a/cargo/remote/BUILD.syn-1.0.54.bazel b/cargo/remote/BUILD.syn-1.0.55.bazel similarity index 97% rename from cargo/remote/BUILD.syn-1.0.54.bazel rename to cargo/remote/BUILD.syn-1.0.55.bazel index 9336ce05b..93fc513fc 100644 --- a/cargo/remote/BUILD.syn-1.0.54.bazel +++ b/cargo/remote/BUILD.syn-1.0.55.bazel @@ -64,7 +64,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.54", + version = "1.0.55", visibility = ["//visibility:private"], deps = [ ], @@ -102,12 +102,12 @@ rust_library( "cargo-raze", "manual", ], - version = "1.0.54", + version = "1.0.55", # buildifier: leave-alone deps = [ ":syn_build_script", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", + "@raze__quote__1_0_8//:quote", "@raze__unicode_xid__0_2_1//:unicode_xid", ], ) diff --git a/cargo/remote/BUILD.synstructure-0.12.4.bazel b/cargo/remote/BUILD.synstructure-0.12.4.bazel index 6204e8672..dfdf5a266 100644 --- a/cargo/remote/BUILD.synstructure-0.12.4.bazel +++ b/cargo/remote/BUILD.synstructure-0.12.4.bazel @@ -52,8 +52,8 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", "@raze__unicode_xid__0_2_1//:unicode_xid", ], ) diff --git a/cargo/remote/BUILD.thiserror-impl-1.0.22.bazel b/cargo/remote/BUILD.thiserror-impl-1.0.22.bazel index f5ccf8239..db5025db1 100644 --- a/cargo/remote/BUILD.thiserror-impl-1.0.22.bazel +++ b/cargo/remote/BUILD.thiserror-impl-1.0.22.bazel @@ -50,7 +50,7 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", ], ) diff --git a/cargo/remote/BUILD.toml-0.5.7.bazel b/cargo/remote/BUILD.toml-0.5.8.bazel similarity index 98% rename from cargo/remote/BUILD.toml-0.5.7.bazel rename to cargo/remote/BUILD.toml-0.5.8.bazel index bd08226aa..fd227be9b 100644 --- a/cargo/remote/BUILD.toml-0.5.7.bazel +++ b/cargo/remote/BUILD.toml-0.5.8.bazel @@ -53,7 +53,7 @@ rust_library( "cargo-raze", "manual", ], - version = "0.5.7", + version = "0.5.8", # buildifier: leave-alone deps = [ "@raze__serde__1_0_118//:serde", diff --git a/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel b/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel index 5c099766f..91d5a4a90 100644 --- a/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel +++ b/cargo/remote/BUILD.unic-langid-macros-impl-0.9.0.bazel @@ -52,8 +52,8 @@ rust_library( version = "0.9.0", # buildifier: leave-alone deps = [ - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", "@raze__unic_langid_impl__0_9_0//:unic_langid_impl", ], ) diff --git a/cargo/remote/BUILD.wasm-bindgen-backend-0.2.69.bazel b/cargo/remote/BUILD.wasm-bindgen-backend-0.2.69.bazel index f03126fbc..de854b05a 100644 --- a/cargo/remote/BUILD.wasm-bindgen-backend-0.2.69.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-backend-0.2.69.bazel @@ -54,8 +54,8 @@ rust_library( "@raze__lazy_static__1_4_0//:lazy_static", "@raze__log__0_4_11//:log", "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", "@raze__wasm_bindgen_shared__0_2_69//:wasm_bindgen_shared", ], ) diff --git a/cargo/remote/BUILD.wasm-bindgen-macro-0.2.69.bazel b/cargo/remote/BUILD.wasm-bindgen-macro-0.2.69.bazel index eea980a0d..ecf60cef3 100644 --- a/cargo/remote/BUILD.wasm-bindgen-macro-0.2.69.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-macro-0.2.69.bazel @@ -50,7 +50,7 @@ rust_library( version = "0.2.69", # buildifier: leave-alone deps = [ - "@raze__quote__1_0_7//:quote", + "@raze__quote__1_0_8//:quote", "@raze__wasm_bindgen_macro_support__0_2_69//:wasm_bindgen_macro_support", ], ) diff --git a/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.69.bazel b/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.69.bazel index d7e40c6d4..7f3078bfa 100644 --- a/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.69.bazel +++ b/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.69.bazel @@ -51,8 +51,8 @@ rust_library( # buildifier: leave-alone deps = [ "@raze__proc_macro2__1_0_24//:proc_macro2", - "@raze__quote__1_0_7//:quote", - "@raze__syn__1_0_54//:syn", + "@raze__quote__1_0_8//:quote", + "@raze__syn__1_0_55//:syn", "@raze__wasm_bindgen_backend__0_2_69//:wasm_bindgen_backend", "@raze__wasm_bindgen_shared__0_2_69//:wasm_bindgen_shared", ],