Commit ac90cb75 authored by Nick Mathewson's avatar Nick Mathewson 🐚
Browse files

Upgrade async-trait requirement to 1.54

We need the fix from [82d69902], which first appeared in async-trait
version 1.54.  (Technically we only need this fix in tor-hsclient,
but we may as well update our minimal async-trait version everywhere.)

[82d69902]: https://github.com/dtolnay/async-trait/commit/82d69902535f5cb7f5d9e1ea4168c64abd496389
parent 3b93cdb2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -471,13 +471,13 @@ checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"

[[package]]
name = "async-trait"
version = "0.1.68"
version = "0.1.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
checksum = "159c7edec63db93c5eb1e5e6928f6dec9aea1174cf983a8e5fc4caa179792814"
dependencies = [
 "proc-macro2",
 "quote",
 "syn 2.0.18",
 "syn 1.0.109",
]

[[package]]
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ full = [
anyhow = "1.0.23"
arti = { package = "arti", path = "../arti", version = "1.1.5" }
arti-client = { package = "arti-client", path = "../arti-client", version = "0.9.1", features = ["dirfilter"] }
async-trait = "0.1.2"
async-trait = "0.1.54"
cfg-if = "1.0.0"
clap = "3.2.20"
config = { version = "0.13", default-features = false }
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ testing = ["__is_experimental"]
__is_experimental = []

[dependencies]
async-trait = "0.1.2"
async-trait = "0.1.54"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.3"
educe = "0.4.6"
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ hs-common = ["tor-hscrypto"]
__is_experimental = []

[dependencies]
async-trait = "0.1.2"
async-trait = "0.1.54"
bounded-vec-deque = "0.1"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.3"
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ __is_nonadditive = []
__is_experimental = []

[dependencies]
async-trait = "0.1.2"
async-trait = "0.1.54"
base64ct = "1.5.1"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.3"
Loading