From 5586f0d039fc7b1fdec0e08579d5ecde3dcaa0a0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 25 Apr 2022 16:06:31 -0400 Subject: [PATCH] Upgrade to Postage 0.5.0 --- Cargo.lock | 5 +++-- crates/arti-client/Cargo.toml | 2 +- crates/tor-chanmgr/Cargo.toml | 2 +- crates/tor-dirmgr/Cargo.toml | 2 +- crates/tor-guardmgr/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 18af0858f..dac4cd4e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2313,13 +2313,14 @@ dependencies = [ [[package]] name = "postage" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a63d25391d04a097954b76aba742b6b5b74f213dfe3dbaeeb36e8ddc1c657f0b" +checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1" dependencies = [ "atomic", "crossbeam-queue", "futures", + "parking_lot 0.12.0", "pin-project", "static_assertions", "thiserror", diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml index d379567d0..21f8d4f9d 100644 --- a/crates/arti-client/Cargo.toml +++ b/crates/arti-client/Cargo.toml @@ -49,7 +49,7 @@ derive_more = "0.99" directories = "4" educe = "0.4.6" futures = "0.3.14" -postage = { version = "0.4", default-features = false, features = ["futures-traits"] } +postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } tracing = "0.1.18" serde = { version = "1.0.103", features = ["derive"] } thiserror = "1" diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml index 3ca61f188..c231b0c54 100644 --- a/crates/tor-chanmgr/Cargo.toml +++ b/crates/tor-chanmgr/Cargo.toml @@ -25,7 +25,7 @@ async-trait = "0.1.2" derive_more = "0.99" educe = "0.4.6" futures = "0.3.14" -postage = { version = "0.4", default-features = false, features = ["futures-traits"] } +postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } rand = "0.8" tracing = "0.1.18" thiserror = "1" diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml index a25ff59e6..293fb6d8a 100644 --- a/crates/tor-dirmgr/Cargo.toml +++ b/crates/tor-dirmgr/Cargo.toml @@ -54,7 +54,7 @@ itertools = "0.10.1" tracing = "0.1.18" memmap2 = { version = "0.5.0", optional = true } once_cell = "1" -postage = { version = "0.4", default-features = false, features = ["futures-traits"] } +postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } rand = "0.8" rusqlite = { version = "0.27.0", features = ["time"] } serde = { version = "1.0.103", features = ["derive"] } diff --git a/crates/tor-guardmgr/Cargo.toml b/crates/tor-guardmgr/Cargo.toml index 8a59edd82..16a185049 100644 --- a/crates/tor-guardmgr/Cargo.toml +++ b/crates/tor-guardmgr/Cargo.toml @@ -39,7 +39,7 @@ humantime = "2" humantime-serde = "1.1.1" itertools = "0.10.1" pin-project = "1" -postage = { version = "0.4", default-features = false, features = ["futures-traits"] } +postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } rand = "0.8" serde = { version = "1.0.103", features = ["derive"] } retain_mut = "0.1.3"