diff --git a/cargo/BUILD.bazel b/cargo/BUILD.bazel index cb92bbcd4..c59006fa9 100644 --- a/cargo/BUILD.bazel +++ b/cargo/BUILD.bazel @@ -68,7 +68,7 @@ alias( alias( name = "env_logger", - actual = "@raze__env_logger__0_7_1//:env_logger", + actual = "@raze__env_logger__0_8_1//:env_logger", tags = [ "cargo-raze", "manual", @@ -86,7 +86,7 @@ alias( alias( name = "flate2", - actual = "@raze__flate2__1_0_18//:flate2", + actual = "@raze__flate2__1_0_19//:flate2", tags = [ "cargo-raze", "manual", diff --git a/cargo/Cargo.lock b/cargo/Cargo.lock index 1b70bfe4b..2596a1d45 100644 --- a/cargo/Cargo.lock +++ b/cargo/Cargo.lock @@ -174,9 +174,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "blake2b_simd" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a" +checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" dependencies = [ "arrayref", "arrayvec 0.5.2", @@ -452,18 +452,18 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "encoding_rs" -version = "0.8.25" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f62bc5e388624f1a13da83b479275dbec9663a876e414df80decf7d2cdab6670" +checksum = "801bbab217d7f79c0062f4f7205b5d4427c6d1a7bd7aafdd1475f7c59d62b283" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "env_logger" -version = "0.7.1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" +checksum = "54532e3223c5af90a6a757c90b5c5521564b07e5e7a958681bcd2afad421cdcd" dependencies = [ "atty", "humantime", @@ -514,11 +514,11 @@ checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d" [[package]] name = "flate2" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da80be589a72651dcda34d8b35bcdc9b7254ad06325611074d9cc0fbb19f60ee" +checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "crc32fast", "libc", "miniz_oxide", @@ -835,12 +835,9 @@ checksum = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" [[package]] name = "humantime" -version = "1.3.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" -dependencies = [ - "quick-error", -] +checksum = "3c1ad908cc71012b7bea4d0c53ba96a8cba9962f048fa68d143376143d863b7a" [[package]] name = "hyper" @@ -1395,9 +1392,9 @@ checksum = "b18befed8bc2b61abc79a457295e7e838417326da1586050b919414073977f19" [[package]] name = "ppv-lite86" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20" +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" [[package]] name = "proc-macro-crate" @@ -1514,12 +1511,6 @@ dependencies = [ "syn", ] -[[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - [[package]] name = "quote" version = "1.0.7" diff --git a/cargo/crates.bzl b/cargo/crates.bzl index f9d333d1d..5a4428c4b 100644 --- a/cargo/crates.bzl +++ b/cargo/crates.bzl @@ -213,12 +213,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__blake2b_simd__0_5_10", - url = "https://crates.io/api/v1/crates/blake2b_simd/0.5.10/download", + name = "raze__blake2b_simd__0_5_11", + url = "https://crates.io/api/v1/crates/blake2b_simd/0.5.11/download", type = "tar.gz", - sha256 = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a", - strip_prefix = "blake2b_simd-0.5.10", - build_file = Label("//cargo/remote:blake2b_simd-0.5.10.BUILD.bazel"), + sha256 = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587", + strip_prefix = "blake2b_simd-0.5.11", + build_file = Label("//cargo/remote:blake2b_simd-0.5.11.BUILD.bazel"), ) maybe( @@ -462,22 +462,22 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__encoding_rs__0_8_25", - url = "https://crates.io/api/v1/crates/encoding_rs/0.8.25/download", + name = "raze__encoding_rs__0_8_26", + url = "https://crates.io/api/v1/crates/encoding_rs/0.8.26/download", type = "tar.gz", - sha256 = "f62bc5e388624f1a13da83b479275dbec9663a876e414df80decf7d2cdab6670", - strip_prefix = "encoding_rs-0.8.25", - build_file = Label("//cargo/remote:encoding_rs-0.8.25.BUILD.bazel"), + sha256 = "801bbab217d7f79c0062f4f7205b5d4427c6d1a7bd7aafdd1475f7c59d62b283", + strip_prefix = "encoding_rs-0.8.26", + build_file = Label("//cargo/remote:encoding_rs-0.8.26.BUILD.bazel"), ) maybe( http_archive, - name = "raze__env_logger__0_7_1", - url = "https://crates.io/api/v1/crates/env_logger/0.7.1/download", + name = "raze__env_logger__0_8_1", + url = "https://crates.io/api/v1/crates/env_logger/0.8.1/download", type = "tar.gz", - sha256 = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36", - strip_prefix = "env_logger-0.7.1", - build_file = Label("//cargo/remote:env_logger-0.7.1.BUILD.bazel"), + sha256 = "54532e3223c5af90a6a757c90b5c5521564b07e5e7a958681bcd2afad421cdcd", + strip_prefix = "env_logger-0.8.1", + build_file = Label("//cargo/remote:env_logger-0.8.1.BUILD.bazel"), ) maybe( @@ -532,12 +532,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__flate2__1_0_18", - url = "https://crates.io/api/v1/crates/flate2/1.0.18/download", + name = "raze__flate2__1_0_19", + url = "https://crates.io/api/v1/crates/flate2/1.0.19/download", type = "tar.gz", - sha256 = "da80be589a72651dcda34d8b35bcdc9b7254ad06325611074d9cc0fbb19f60ee", - strip_prefix = "flate2-1.0.18", - build_file = Label("//cargo/remote:flate2-1.0.18.BUILD.bazel"), + sha256 = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129", + strip_prefix = "flate2-1.0.19", + build_file = Label("//cargo/remote:flate2-1.0.19.BUILD.bazel"), ) maybe( @@ -870,12 +870,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__humantime__1_3_0", - url = "https://crates.io/api/v1/crates/humantime/1.3.0/download", + name = "raze__humantime__2_0_1", + url = "https://crates.io/api/v1/crates/humantime/2.0.1/download", type = "tar.gz", - sha256 = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f", - strip_prefix = "humantime-1.3.0", - build_file = Label("//cargo/remote:humantime-1.3.0.BUILD.bazel"), + sha256 = "3c1ad908cc71012b7bea4d0c53ba96a8cba9962f048fa68d143376143d863b7a", + strip_prefix = "humantime-2.0.1", + build_file = Label("//cargo/remote:humantime-2.0.1.BUILD.bazel"), ) maybe( @@ -1448,12 +1448,12 @@ def raze_fetch_remote_crates(): maybe( http_archive, - name = "raze__ppv_lite86__0_2_9", - url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.9/download", + name = "raze__ppv_lite86__0_2_10", + url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download", type = "tar.gz", - sha256 = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20", - strip_prefix = "ppv-lite86-0.2.9", - build_file = Label("//cargo/remote:ppv-lite86-0.2.9.BUILD.bazel"), + sha256 = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857", + strip_prefix = "ppv-lite86-0.2.10", + build_file = Label("//cargo/remote:ppv-lite86-0.2.10.BUILD.bazel"), ) maybe( @@ -1562,16 +1562,6 @@ def raze_fetch_remote_crates(): build_file = Label("//cargo/remote:pyo3cls-0.12.3.BUILD.bazel"), ) - maybe( - http_archive, - name = "raze__quick_error__1_2_3", - url = "https://crates.io/api/v1/crates/quick-error/1.2.3/download", - type = "tar.gz", - sha256 = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0", - strip_prefix = "quick-error-1.2.3", - build_file = Label("//cargo/remote:quick-error-1.2.3.BUILD.bazel"), - ) - maybe( http_archive, name = "raze__quote__1_0_7", diff --git a/cargo/remote/async-compression-0.3.5.BUILD.bazel b/cargo/remote/async-compression-0.3.5.BUILD.bazel index 1d98cde30..6e1415c73 100644 --- a/cargo/remote/async-compression-0.3.5.BUILD.bazel +++ b/cargo/remote/async-compression-0.3.5.BUILD.bazel @@ -36,7 +36,7 @@ rust_library( crate_type = "lib", deps = [ "@raze__bytes__0_5_6//:bytes", - "@raze__flate2__1_0_18//:flate2", + "@raze__flate2__1_0_19//:flate2", "@raze__futures_core__0_3_7//:futures_core", "@raze__memchr__2_3_4//:memchr", "@raze__pin_project_lite__0_1_11//:pin_project_lite", diff --git a/cargo/remote/blake2b_simd-0.5.10.BUILD.bazel b/cargo/remote/blake2b_simd-0.5.11.BUILD.bazel similarity index 97% rename from cargo/remote/blake2b_simd-0.5.10.BUILD.bazel rename to cargo/remote/blake2b_simd-0.5.11.BUILD.bazel index b6450e857..390ea5d9f 100644 --- a/cargo/remote/blake2b_simd-0.5.10.BUILD.bazel +++ b/cargo/remote/blake2b_simd-0.5.11.BUILD.bazel @@ -45,7 +45,7 @@ rust_library( rustc_flags = [ "--cap-lints=allow", ], - version = "0.5.10", + version = "0.5.11", tags = [ "cargo-raze", "manual", diff --git a/cargo/remote/encoding_rs-0.8.25.BUILD.bazel b/cargo/remote/encoding_rs-0.8.26.BUILD.bazel similarity index 97% rename from cargo/remote/encoding_rs-0.8.25.BUILD.bazel rename to cargo/remote/encoding_rs-0.8.26.BUILD.bazel index 14321860c..105fdc917 100644 --- a/cargo/remote/encoding_rs-0.8.25.BUILD.bazel +++ b/cargo/remote/encoding_rs-0.8.26.BUILD.bazel @@ -55,7 +55,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.8.25", + version = "0.8.26", visibility = ["//visibility:private"], ) @@ -74,7 +74,7 @@ rust_library( rustc_flags = [ "--cap-lints=allow", ], - version = "0.8.25", + version = "0.8.26", tags = [ "cargo-raze", "manual", diff --git a/cargo/remote/env_logger-0.7.1.BUILD.bazel b/cargo/remote/env_logger-0.8.1.BUILD.bazel similarity index 90% rename from cargo/remote/env_logger-0.7.1.BUILD.bazel rename to cargo/remote/env_logger-0.8.1.BUILD.bazel index d9e8c1c03..09eb284ba 100644 --- a/cargo/remote/env_logger-0.7.1.BUILD.bazel +++ b/cargo/remote/env_logger-0.8.1.BUILD.bazel @@ -41,7 +41,7 @@ rust_library( crate_type = "lib", deps = [ "@raze__atty__0_2_14//:atty", - "@raze__humantime__1_3_0//:humantime", + "@raze__humantime__2_0_1//:humantime", "@raze__log__0_4_11//:log", "@raze__regex__1_4_2//:regex", "@raze__termcolor__1_1_0//:termcolor", @@ -52,7 +52,7 @@ rust_library( rustc_flags = [ "--cap-lints=allow", ], - version = "0.7.1", + version = "0.8.1", tags = [ "cargo-raze", "manual", @@ -66,7 +66,9 @@ rust_library( ], ) # Unsupported target "filters_from_code" with type "example" omitted +# Unsupported target "in_tests" with type "example" omitted # Unsupported target "init-twice-retains-filter" with type "test" omitted # Unsupported target "log-in-log" with type "test" omitted # Unsupported target "log_tls_dtors" with type "test" omitted # Unsupported target "regexp_filter" with type "test" omitted +# Unsupported target "syslog_friendly_format" with type "example" omitted diff --git a/cargo/remote/flate2-1.0.18.BUILD.bazel b/cargo/remote/flate2-1.0.19.BUILD.bazel similarity index 97% rename from cargo/remote/flate2-1.0.18.BUILD.bazel rename to cargo/remote/flate2-1.0.19.BUILD.bazel index e68fa3cf5..44736e569 100644 --- a/cargo/remote/flate2-1.0.18.BUILD.bazel +++ b/cargo/remote/flate2-1.0.19.BUILD.bazel @@ -45,7 +45,7 @@ rust_library( name = "flate2", crate_type = "lib", deps = [ - "@raze__cfg_if__0_1_10//:cfg_if", + "@raze__cfg_if__1_0_0//:cfg_if", "@raze__crc32fast__1_2_1//:crc32fast", "@raze__libc__0_2_80//:libc", "@raze__miniz_oxide__0_4_3//:miniz_oxide", @@ -56,7 +56,7 @@ rust_library( rustc_flags = [ "--cap-lints=allow", ], - version = "1.0.18", + version = "1.0.19", tags = [ "cargo-raze", "manual", diff --git a/cargo/remote/humantime-1.3.0.BUILD.bazel b/cargo/remote/humantime-2.0.1.BUILD.bazel similarity index 91% rename from cargo/remote/humantime-1.3.0.BUILD.bazel rename to cargo/remote/humantime-2.0.1.BUILD.bazel index 943773aa4..866bab849 100644 --- a/cargo/remote/humantime-1.3.0.BUILD.bazel +++ b/cargo/remote/humantime-2.0.1.BUILD.bazel @@ -37,15 +37,14 @@ rust_library( name = "humantime", crate_type = "lib", deps = [ - "@raze__quick_error__1_2_3//:quick_error", ], srcs = glob(["**/*.rs"]), crate_root = "src/lib.rs", - edition = "2015", + edition = "2018", rustc_flags = [ "--cap-lints=allow", ], - version = "1.3.0", + version = "2.0.1", tags = [ "cargo-raze", "manual", diff --git a/cargo/remote/ppv-lite86-0.2.9.BUILD.bazel b/cargo/remote/ppv-lite86-0.2.10.BUILD.bazel similarity index 97% rename from cargo/remote/ppv-lite86-0.2.9.BUILD.bazel rename to cargo/remote/ppv-lite86-0.2.10.BUILD.bazel index 1bd29336c..c45da017e 100644 --- a/cargo/remote/ppv-lite86-0.2.9.BUILD.bazel +++ b/cargo/remote/ppv-lite86-0.2.10.BUILD.bazel @@ -42,7 +42,7 @@ rust_library( rustc_flags = [ "--cap-lints=allow", ], - version = "0.2.9", + version = "0.2.10", tags = [ "cargo-raze", "manual", diff --git a/cargo/remote/quick-error-1.2.3.BUILD.bazel b/cargo/remote/quick-error-1.2.3.BUILD.bazel deleted file mode 100644 index 43c9d4d06..000000000 --- a/cargo/remote/quick-error-1.2.3.BUILD.bazel +++ /dev/null @@ -1,53 +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 -# Unsupported target "context" with type "example" omitted - -# buildifier: leave-alone -rust_library( - name = "quick_error", - crate_type = "lib", - deps = [ - ], - srcs = glob(["**/*.rs"]), - crate_root = "src/lib.rs", - edition = "2015", - rustc_flags = [ - "--cap-lints=allow", - ], - version = "1.2.3", - tags = [ - "cargo-raze", - "manual", - ], - crate_features = [ - ], -) diff --git a/cargo/remote/rand_chacha-0.2.2.BUILD.bazel b/cargo/remote/rand_chacha-0.2.2.BUILD.bazel index e806cebc5..fe33c79b1 100644 --- a/cargo/remote/rand_chacha-0.2.2.BUILD.bazel +++ b/cargo/remote/rand_chacha-0.2.2.BUILD.bazel @@ -35,7 +35,7 @@ rust_library( name = "rand_chacha", crate_type = "lib", deps = [ - "@raze__ppv_lite86__0_2_9//:ppv_lite86", + "@raze__ppv_lite86__0_2_10//:ppv_lite86", "@raze__rand_core__0_5_1//:rand_core", ], srcs = glob(["**/*.rs"]), diff --git a/cargo/remote/reqwest-0.10.4.BUILD.bazel b/cargo/remote/reqwest-0.10.4.BUILD.bazel index 0dedf25b4..f94480093 100644 --- a/cargo/remote/reqwest-0.10.4.BUILD.bazel +++ b/cargo/remote/reqwest-0.10.4.BUILD.bazel @@ -67,7 +67,7 @@ rust_library( "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ "@raze__base64__0_12_3//:base64", - "@raze__encoding_rs__0_8_25//:encoding_rs", + "@raze__encoding_rs__0_8_26//:encoding_rs", "@raze__futures_core__0_3_7//:futures_core", "@raze__futures_util__0_3_7//:futures_util", "@raze__http_body__0_3_1//:http_body", diff --git a/cargo/remote/rust-argon2-0.8.2.BUILD.bazel b/cargo/remote/rust-argon2-0.8.2.BUILD.bazel index 1f4aae8d1..3f17afdf0 100644 --- a/cargo/remote/rust-argon2-0.8.2.BUILD.bazel +++ b/cargo/remote/rust-argon2-0.8.2.BUILD.bazel @@ -45,7 +45,7 @@ rust_library( crate_type = "lib", deps = [ "@raze__base64__0_12_3//:base64", - "@raze__blake2b_simd__0_5_10//:blake2b_simd", + "@raze__blake2b_simd__0_5_11//:blake2b_simd", "@raze__constant_time_eq__0_1_5//:constant_time_eq", "@raze__crossbeam_utils__0_7_2//:crossbeam_utils", ], diff --git a/cargo/remote/zip-0.5.6.BUILD.bazel b/cargo/remote/zip-0.5.6.BUILD.bazel index fd85e019b..8bb497863 100644 --- a/cargo/remote/zip-0.5.6.BUILD.bazel +++ b/cargo/remote/zip-0.5.6.BUILD.bazel @@ -45,7 +45,7 @@ rust_library( crate_type = "lib", deps = [ "@raze__crc32fast__1_2_1//:crc32fast", - "@raze__flate2__1_0_18//:flate2", + "@raze__flate2__1_0_19//:flate2", "@raze__podio__0_1_7//:podio", "@raze__time__0_1_44//:time", ], diff --git a/rslib/Cargo.toml b/rslib/Cargo.toml index b5a93a022..39d1c7bf0 100644 --- a/rslib/Cargo.toml +++ b/rslib/Cargo.toml @@ -21,7 +21,7 @@ fluent-syntax = "0.9.3" prost-build = { git = "https://github.com/danburkert/prost.git", rev = "4ded4a98ef339da0b7babd4efee3fbe8adaf746b" } [dev-dependencies] -env_logger = "0.7.1" +env_logger = "0.8.1" [dependencies] # pinned as any changes could invalidate sqlite indexes