update Rust deps; add async_trait

This commit is contained in:
Damien Elmes 2021-01-05 19:58:53 +10:00
parent 5f02be4943
commit 9225c804db
42 changed files with 197 additions and 94 deletions

38
Cargo.lock generated
View file

@ -2,9 +2,9 @@
# It is not intended for manual editing.
[[package]]
name = "addr2line"
version = "0.14.0"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c0929d69e78dd9bf5408269919fcbcaeb2e35e5d43e5815517cdc6a8e11a423"
checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7"
dependencies = [
"gimli",
]
@ -36,6 +36,7 @@ version = "0.0.0"
dependencies = [
"askama",
"async-compression",
"async-trait",
"blake3",
"bytes 0.5.6",
"chrono",
@ -180,6 +181,17 @@ dependencies = [
"pin-project-lite 0.2.0",
]
[[package]]
name = "async-trait"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atty"
version = "0.2.14"
@ -429,9 +441,9 @@ dependencies = [
[[package]]
name = "derivative"
version = "2.1.1"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb582b60359da160a9477ee80f15c8d784c477e69c217ef2cdd4169c24ea380f"
checksum = "eaed5874effa6cde088c644ddcdcb4ffd1511391c5be4fdd7a5ccd02c7e4a183"
dependencies = [
"proc-macro2",
"quote",
@ -590,9 +602,9 @@ dependencies = [
[[package]]
name = "fluent-syntax"
version = "0.10.0"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9389354f858e38f37d9a249133611a1fcaec469f44773b04ddbd82f4f08d49eb"
checksum = "edb1016e8c600060e0099218442fff329a204f6316d6ec974d590d3281517a52"
[[package]]
name = "fnv"
@ -763,11 +775,11 @@ dependencies = [
[[package]]
name = "getrandom"
version = "0.1.15"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if 0.1.10",
"cfg-if 1.0.0",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
@ -2082,9 +2094,9 @@ dependencies = [
[[package]]
name = "smallvec"
version = "1.5.1"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75"
checksum = "1a55ca5f3b68e41c979bf8c46a6f1da892ca4db8f94023ce0bd32407573b1ac0"
[[package]]
name = "socket2"
@ -2123,9 +2135,9 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
[[package]]
name = "syn"
version = "1.0.56"
version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9802ddde94170d186eeee5005b798d9c159fa970403f1be19976d0cfb939b72"
checksum = "4211ce9909eb971f111059df92c45640aad50a619cf55cd76476be803c4c68e6"
dependencies = [
"proc-macro2",
"quote",

View file

@ -13,12 +13,12 @@ def raze_fetch_remote_crates():
"""This function defines a collection of repos and should be called in a WORKSPACE file"""
maybe(
http_archive,
name = "raze__addr2line__0_14_0",
url = "https://crates.io/api/v1/crates/addr2line/0.14.0/download",
name = "raze__addr2line__0_14_1",
url = "https://crates.io/api/v1/crates/addr2line/0.14.1/download",
type = "tar.gz",
sha256 = "7c0929d69e78dd9bf5408269919fcbcaeb2e35e5d43e5815517cdc6a8e11a423",
strip_prefix = "addr2line-0.14.0",
build_file = Label("//cargo/remote:BUILD.addr2line-0.14.0.bazel"),
sha256 = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7",
strip_prefix = "addr2line-0.14.1",
build_file = Label("//cargo/remote:BUILD.addr2line-0.14.1.bazel"),
)
maybe(
@ -151,6 +151,16 @@ def raze_fetch_remote_crates():
build_file = Label("//cargo/remote:BUILD.async-compression-0.3.7.bazel"),
)
maybe(
http_archive,
name = "raze__async_trait__0_1_42",
url = "https://crates.io/api/v1/crates/async-trait/0.1.42/download",
type = "tar.gz",
sha256 = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d",
strip_prefix = "async-trait-0.1.42",
build_file = Label("//cargo/remote:BUILD.async-trait-0.1.42.bazel"),
)
maybe(
http_archive,
name = "raze__atty__0_2_14",
@ -433,12 +443,12 @@ def raze_fetch_remote_crates():
maybe(
http_archive,
name = "raze__derivative__2_1_1",
url = "https://crates.io/api/v1/crates/derivative/2.1.1/download",
name = "raze__derivative__2_1_3",
url = "https://crates.io/api/v1/crates/derivative/2.1.3/download",
type = "tar.gz",
sha256 = "cb582b60359da160a9477ee80f15c8d784c477e69c217ef2cdd4169c24ea380f",
strip_prefix = "derivative-2.1.1",
build_file = Label("//cargo/remote:BUILD.derivative-2.1.1.bazel"),
sha256 = "eaed5874effa6cde088c644ddcdcb4ffd1511391c5be4fdd7a5ccd02c7e4a183",
strip_prefix = "derivative-2.1.3",
build_file = Label("//cargo/remote:BUILD.derivative-2.1.3.bazel"),
)
maybe(
@ -603,12 +613,12 @@ def raze_fetch_remote_crates():
maybe(
http_archive,
name = "raze__fluent_syntax__0_10_0",
url = "https://crates.io/api/v1/crates/fluent-syntax/0.10.0/download",
name = "raze__fluent_syntax__0_10_1",
url = "https://crates.io/api/v1/crates/fluent-syntax/0.10.1/download",
type = "tar.gz",
sha256 = "9389354f858e38f37d9a249133611a1fcaec469f44773b04ddbd82f4f08d49eb",
strip_prefix = "fluent-syntax-0.10.0",
build_file = Label("//cargo/remote:BUILD.fluent-syntax-0.10.0.bazel"),
sha256 = "edb1016e8c600060e0099218442fff329a204f6316d6ec974d590d3281517a52",
strip_prefix = "fluent-syntax-0.10.1",
build_file = Label("//cargo/remote:BUILD.fluent-syntax-0.10.1.bazel"),
)
maybe(
@ -793,12 +803,12 @@ def raze_fetch_remote_crates():
maybe(
http_archive,
name = "raze__getrandom__0_1_15",
url = "https://crates.io/api/v1/crates/getrandom/0.1.15/download",
name = "raze__getrandom__0_1_16",
url = "https://crates.io/api/v1/crates/getrandom/0.1.16/download",
type = "tar.gz",
sha256 = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6",
strip_prefix = "getrandom-0.1.15",
build_file = Label("//cargo/remote:BUILD.getrandom-0.1.15.bazel"),
sha256 = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce",
strip_prefix = "getrandom-0.1.16",
build_file = Label("//cargo/remote:BUILD.getrandom-0.1.16.bazel"),
)
maybe(
@ -2103,12 +2113,12 @@ def raze_fetch_remote_crates():
maybe(
http_archive,
name = "raze__smallvec__1_5_1",
url = "https://crates.io/api/v1/crates/smallvec/1.5.1/download",
name = "raze__smallvec__1_6_0",
url = "https://crates.io/api/v1/crates/smallvec/1.6.0/download",
type = "tar.gz",
sha256 = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75",
strip_prefix = "smallvec-1.5.1",
build_file = Label("//cargo/remote:BUILD.smallvec-1.5.1.bazel"),
sha256 = "1a55ca5f3b68e41c979bf8c46a6f1da892ca4db8f94023ce0bd32407573b1ac0",
strip_prefix = "smallvec-1.6.0",
build_file = Label("//cargo/remote:BUILD.smallvec-1.6.0.bazel"),
)
maybe(
@ -2163,12 +2173,12 @@ def raze_fetch_remote_crates():
maybe(
http_archive,
name = "raze__syn__1_0_56",
url = "https://crates.io/api/v1/crates/syn/1.0.56/download",
name = "raze__syn__1_0_57",
url = "https://crates.io/api/v1/crates/syn/1.0.57/download",
type = "tar.gz",
sha256 = "a9802ddde94170d186eeee5005b798d9c159fa970403f1be19976d0cfb939b72",
strip_prefix = "syn-1.0.56",
build_file = Label("//cargo/remote:BUILD.syn-1.0.56.bazel"),
sha256 = "4211ce9909eb971f111059df92c45640aad50a619cf55cd76476be803c4c68e6",
strip_prefix = "syn-1.0.57",
build_file = Label("//cargo/remote:BUILD.syn-1.0.57.bazel"),
)
maybe(

View file

@ -1,7 +1,7 @@
[
{
"name": "addr2line",
"version": "0.14.0",
"version": "0.14.1",
"authors": "Nick Fitzgerald <fitzgen@gmail.com>|Philip Craig <philipjcraig@gmail.com>|Jon Gjengset <jon@thesquareplanet.com>|Noah Bergbauer <noah.bergbauer@tum.de>",
"repository": "https://github.com/gimli-rs/addr2line",
"license": "Apache-2.0 OR MIT",
@ -143,6 +143,15 @@
"license_file": null,
"description": "Adaptors between compression crates and Rust's modern asynchronous IO types."
},
{
"name": "async-trait",
"version": "0.1.42",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/async-trait",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Type erasure for async trait methods"
},
{
"name": "atty",
"version": "0.2.14",
@ -397,7 +406,7 @@
},
{
"name": "derivative",
"version": "2.1.1",
"version": "2.1.3",
"authors": "mcarton <cartonmartin+git@gmail.com>",
"repository": "https://github.com/mcarton/rust-derivative",
"license": "Apache-2.0 OR MIT",
@ -550,7 +559,7 @@
},
{
"name": "fluent-syntax",
"version": "0.10.0",
"version": "0.10.1",
"authors": "Zibi Braniecki <gandalf@mozilla.com>|Staś Małolepszy <stas@mozilla.com>",
"repository": "https://github.com/projectfluent/fluent-rs",
"license": "Apache-2.0 OR MIT",
@ -721,7 +730,7 @@
},
{
"name": "getrandom",
"version": "0.1.15",
"version": "0.1.16",
"authors": "The Rand Project Developers",
"repository": "https://github.com/rust-random/getrandom",
"license": "Apache-2.0 OR MIT",
@ -1909,7 +1918,7 @@
},
{
"name": "smallvec",
"version": "1.5.1",
"version": "1.6.0",
"authors": "The Servo Project Developers",
"repository": "https://github.com/servo/rust-smallvec",
"license": "Apache-2.0 OR MIT",
@ -1963,7 +1972,7 @@
},
{
"name": "syn",
"version": "1.0.56",
"version": "1.0.57",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/syn",
"license": "Apache-2.0 OR MIT",

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.14.0",
version = "0.14.1",
# buildifier: leave-alone
deps = [
"@raze__gimli__0_23_0//:gimli",

View file

@ -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_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -63,7 +63,7 @@ rust_library(
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__serde__1_0_118//:serde",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
"@raze__toml__0_5_8//:toml",
],
)

View file

@ -0,0 +1,60 @@
"""
@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 = "async_trait",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.42",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_57//:syn",
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test" with type "test" omitted

View file

@ -63,7 +63,7 @@ rust_library(
version = "0.3.55",
# buildifier: leave-alone
deps = [
"@raze__addr2line__0_14_0//:addr2line",
"@raze__addr2line__0_14_1//:addr2line",
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__libc__0_2_81//:libc",
"@raze__miniz_oxide__0_4_3//:miniz_oxide",

View file

@ -52,6 +52,6 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -47,15 +47,17 @@ rust_library(
"cargo-raze",
"manual",
],
version = "2.1.1",
version = "2.1.3",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)
# Unsupported target "clippy-warning-clone-from" with type "test" omitted
# Unsupported target "compile-test" with type "test" omitted
# Unsupported target "derive-clone" with type "test" omitted

View file

@ -80,7 +80,7 @@ rust_library(
":failure_derive_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
"@raze__synstructure__0_12_4//:synstructure",
],
)

View file

@ -52,11 +52,11 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__fluent_langneg__0_13_0//:fluent_langneg",
"@raze__fluent_syntax__0_10_0//:fluent_syntax",
"@raze__fluent_syntax__0_10_1//:fluent_syntax",
"@raze__intl_memoizer__0_5_0//:intl_memoizer",
"@raze__intl_pluralrules__7_0_0//:intl_pluralrules",
"@raze__rental__0_5_5//:rental",
"@raze__smallvec__1_5_1//:smallvec",
"@raze__smallvec__1_6_0//:smallvec",
"@raze__unic_langid__0_9_0//:unic_langid",
],
)

View file

@ -50,7 +50,7 @@ rust_binary(
"cargo-raze",
"manual",
],
version = "0.10.0",
version = "0.10.1",
# buildifier: leave-alone
deps = [
# Binaries get an implicit dependency on their crate's lib
@ -76,7 +76,7 @@ rust_binary(
"cargo-raze",
"manual",
],
version = "0.10.0",
version = "0.10.1",
# buildifier: leave-alone
deps = [
# Binaries get an implicit dependency on their crate's lib
@ -101,7 +101,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.10.0",
version = "0.10.1",
# buildifier: leave-alone
deps = [
],

View file

@ -54,6 +54,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -53,7 +53,7 @@ cargo_build_script(
"cargo-raze",
"manual",
],
version = "0.1.15",
version = "0.1.16",
visibility = ["//visibility:private"],
deps = [
] + selects.with_or({
@ -91,11 +91,11 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.1.15",
version = "0.1.16",
# buildifier: leave-alone
deps = [
":getrandom_build_script",
"@raze__cfg_if__0_1_10//:cfg_if",
"@raze__cfg_if__1_0_0//:cfg_if",
] + selects.with_or({
# cfg(unix)
(

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -42,7 +42,7 @@ rust_library(
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__derivative__2_1_1//:derivative",
"@raze__derivative__2_1_3//:derivative",
"@raze__num_enum_derive__0_5_1//:num_enum_derive",
],
rustc_flags = [

View file

@ -54,6 +54,6 @@ rust_library(
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__proc_macro_crate__0_1_5//:proc_macro_crate",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -53,7 +53,7 @@ rust_library(
deps = [
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__instant__0_1_9//:instant",
"@raze__smallvec__1_5_1//:smallvec",
"@raze__smallvec__1_6_0//:smallvec",
] + selects.with_or({
# cfg(unix)
(

View file

@ -80,6 +80,6 @@ rust_library(
":pin_project_internal_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -53,6 +53,6 @@ rust_library(
"@raze__itertools__0_9_0//:itertools",
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__pyo3_macros_backend__0_13_0//:pyo3_macros_backend",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -46,7 +46,7 @@ rust_library(
name = "rand",
srcs = glob(["**/*.rs"]),
aliases = {
"@raze__getrandom__0_1_15//:getrandom": "getrandom_package",
"@raze__getrandom__0_1_16//:getrandom": "getrandom_package",
},
crate_features = [
"alloc",
@ -70,7 +70,7 @@ rust_library(
version = "0.7.3",
# buildifier: leave-alone
deps = [
"@raze__getrandom__0_1_15//:getrandom",
"@raze__getrandom__0_1_16//:getrandom",
"@raze__rand_chacha__0_2_2//:rand_chacha",
"@raze__rand_core__0_5_1//:rand_core",
] + selects.with_or({

View file

@ -52,6 +52,6 @@ rust_library(
version = "0.5.1",
# buildifier: leave-alone
deps = [
"@raze__getrandom__0_1_15//:getrandom",
"@raze__getrandom__0_1_16//:getrandom",
],
)

View file

@ -52,7 +52,7 @@ rust_library(
version = "0.3.5",
# buildifier: leave-alone
deps = [
"@raze__getrandom__0_1_15//:getrandom",
"@raze__getrandom__0_1_16//:getrandom",
"@raze__redox_syscall__0_1_57//:redox_syscall",
"@raze__rust_argon2__0_8_3//:rust_argon2",
],

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -64,7 +64,7 @@ rust_library(
"@raze__hashlink__0_6_0//:hashlink",
"@raze__libsqlite3_sys__0_20_1//:libsqlite3_sys",
"@raze__memchr__2_3_4//:memchr",
"@raze__smallvec__1_5_1//:smallvec",
"@raze__smallvec__1_6_0//:smallvec",
],
)

View file

@ -82,6 +82,6 @@ rust_library(
":serde_derive_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -51,7 +51,7 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "1.5.1",
version = "1.6.0",
# buildifier: leave-alone
deps = [
],

View file

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

View file

@ -53,7 +53,7 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
"@raze__unicode_xid__0_2_1//:unicode_xid",
],
)

View file

@ -51,6 +51,6 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
],
)

View file

@ -53,7 +53,7 @@ rust_library(
# buildifier: leave-alone
deps = [
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
"@raze__unic_langid_impl__0_9_0//:unic_langid_impl",
],
)

View file

@ -55,7 +55,7 @@ rust_library(
"@raze__log__0_4_11//:log",
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
"@raze__wasm_bindgen_shared__0_2_69//:wasm_bindgen_shared",
],
)

View file

@ -52,7 +52,7 @@ rust_library(
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_56//:syn",
"@raze__syn__1_0_57//:syn",
"@raze__wasm_bindgen_backend__0_2_69//:wasm_bindgen_backend",
"@raze__wasm_bindgen_shared__0_2_69//:wasm_bindgen_shared",
],

View file

@ -74,3 +74,4 @@ unic-langid = { version = "0.9", features = ["macros"] }
unicode-normalization = "0.1.13"
utime = "0.3.1"
zip = { version = "0.5.6", default-features = false, features = ["deflate", "time"] }
async-trait = "0.1.42"

View file

@ -30,6 +30,15 @@ alias(
],
)
alias(
name = "async_trait",
actual = "@raze__async_trait__0_1_42//:async_trait",
tags = [
"cargo-raze",
"manual",
],
)
alias(
name = "blake3",
actual = "@raze__blake3__0_3_7//:blake3",
@ -104,7 +113,7 @@ alias(
alias(
name = "fluent_syntax",
actual = "@raze__fluent_syntax__0_10_0//:fluent_syntax",
actual = "@raze__fluent_syntax__0_10_1//:fluent_syntax",
tags = [
"cargo-raze",
"manual",