summaryrefslogtreecommitdiff
path: root/crates/arti-ureq/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/arti-ureq/Cargo.toml')
-rw-r--r--crates/arti-ureq/Cargo.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/arti-ureq/Cargo.toml b/crates/arti-ureq/Cargo.toml
index 942a5ff71..9ad6403bb 100644
--- a/crates/arti-ureq/Cargo.toml
+++ b/crates/arti-ureq/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-ureq"
-version = "0.34.0"
+version = "0.35.0"
edition = "2024"
authors = ["The Tor Project, Inc.", "Niel Duysters"]
license = "MIT OR Apache-2.0"
@@ -10,15 +10,15 @@ categories = ["network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
-arti-client = { path = "../arti-client", version = "0.34.0" }
+arti-client = { path = "../arti-client", version = "0.35.0" }
async-std = { version = "1.7.0", optional = true }
educe = "0.4.6"
futures = "0.3.14"
thiserror = "2"
tokio = { version = "1.7", optional = true }
-tor-error = { path = "../tor-error", version = "0.34.0" }
-tor-proto = { path = "../tor-proto", features = [ "stream-ctrl" ], version = "0.34.0" }
-tor-rtcompat = { path = "../tor-rtcompat", default-features = false, version = "0.34.0" }
+tor-error = { path = "../tor-error", version = "0.35.0" }
+tor-proto = { path = "../tor-proto", features = [ "stream-ctrl" ], version = "0.35.0" }
+tor-rtcompat = { path = "../tor-rtcompat", default-features = false, version = "0.35.0" }
# We rely on some of the APIs in ureq::unversioned, which are allowed to have semver
# breaks between minor releases of ureq. Therefore, we we use a tilde here, so that
# we will only get patchlevel updates.
@@ -28,7 +28,7 @@ ureq = { version = "~3.1.0", default-features = false, features = ["rustls-no-pr
[dev-dependencies]
serde_json = "1.0.104"
-test-temp-dir = { version = "0.4.0", path = "../test-temp-dir" }
+test-temp-dir = { version = "0.5.0", path = "../test-temp-dir" }
[features]
default = ["native-tls", "tokio"]