summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/axum/axum-hello-world/Cargo.toml8
-rw-r--r--examples/download-manager/Cargo.toml4
-rw-r--r--examples/gsoc2023/connection-checker/Cargo.toml8
-rw-r--r--examples/gsoc2023/dns-resolver/Cargo.toml2
-rw-r--r--examples/gsoc2023/obfs4-checker/Cargo.toml12
-rw-r--r--examples/gsoc2023/pt-proxy/Cargo.toml10
-rw-r--r--examples/hyper-examples/Cargo.toml8
-rw-r--r--examples/ureq-examples/Cargo.toml2
8 files changed, 27 insertions, 27 deletions
diff --git a/examples/axum/axum-hello-world/Cargo.toml b/examples/axum/axum-hello-world/Cargo.toml
index c4f98a5e7..be6196b0c 100644
--- a/examples/axum/axum-hello-world/Cargo.toml
+++ b/examples/axum/axum-hello-world/Cargo.toml
@@ -9,7 +9,7 @@ publish = false
[dependencies]
anyhow = "1.0.75"
-arti-client = { path = "../../../crates/arti-client", version = "0.36", features = [
+arti-client = { path = "../../../crates/arti-client", version = "0.37", features = [
"onion-service-service",
] }
axum = { version = "0.8.1", features = ["tracing"] }
@@ -19,9 +19,9 @@ hyper-util = { version = "0.1.1", features = ["tokio"] }
safelog = { path = "../../../crates/safelog", version = "0.7" }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] }
tokio-util = "0.7.10"
-tor-cell = { path = "../../../crates/tor-cell", version = "0.36" }
-tor-hsservice = { path = "../../../crates/tor-hsservice", version = "0.36" }
-tor-proto = { path = "../../../crates/tor-proto", version = "0.36" }
+tor-cell = { path = "../../../crates/tor-cell", version = "0.37" }
+tor-hsservice = { path = "../../../crates/tor-hsservice", version = "0.37" }
+tor-proto = { path = "../../../crates/tor-proto", version = "0.37" }
tower = { version = "0.5.1", features = ["util", "tracing"] }
tracing-subscriber = "0.3.20"
diff --git a/examples/download-manager/Cargo.toml b/examples/download-manager/Cargo.toml
index 89c9ce8ca..79cb16285 100644
--- a/examples/download-manager/Cargo.toml
+++ b/examples/download-manager/Cargo.toml
@@ -9,7 +9,7 @@ publish = false
[dependencies]
anyhow = { version = "1.0.95" }
-arti-client = { path = "../../crates/arti-client", version = "0.36" }
+arti-client = { path = "../../crates/arti-client", version = "0.37" }
clap = { version = "4.5.26", features = ["derive"] }
futures = { version = "0.3.31" }
hex = "0.4"
@@ -24,7 +24,7 @@ tokio = { version = "1.43.0", features = [
"fs",
] }
tokio-native-tls = "0.3.1"
-tor-rtcompat = { path = "../../crates/tor-rtcompat", version = "0.36" }
+tor-rtcompat = { path = "../../crates/tor-rtcompat", version = "0.37" }
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
diff --git a/examples/gsoc2023/connection-checker/Cargo.toml b/examples/gsoc2023/connection-checker/Cargo.toml
index 99c820c63..50b26d5cf 100644
--- a/examples/gsoc2023/connection-checker/Cargo.toml
+++ b/examples/gsoc2023/connection-checker/Cargo.toml
@@ -8,12 +8,12 @@ publish = false
[dependencies]
anyhow = "1.0.72"
-arti-client = { path = "../../../crates/arti-client", version = "0.36", features = [ "bridge-client", "pt-client", "experimental-api" ] }
+arti-client = { path = "../../../crates/arti-client", version = "0.37", features = [ "bridge-client", "pt-client", "experimental-api" ] }
clap = { version = "4.3.21", features = ["derive", "wrap_help"] }
tokio = { version = "1.7", features = ["full"] }
-tor-error = { path = "../../../crates/tor-error", version = "0.36" }
-tor-proto = { path = "../../../crates/tor-proto", version = "0.36", features = ["experimental-api", "stream-ctrl"] }
-tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.36" }
+tor-error = { path = "../../../crates/tor-error", version = "0.37" }
+tor-proto = { path = "../../../crates/tor-proto", version = "0.37", features = ["experimental-api", "stream-ctrl"] }
+tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.37" }
tracing = "0.1"
tracing-subscriber = "0.3.20"
diff --git a/examples/gsoc2023/dns-resolver/Cargo.toml b/examples/gsoc2023/dns-resolver/Cargo.toml
index b1c0a5c7c..8118d0bb9 100644
--- a/examples/gsoc2023/dns-resolver/Cargo.toml
+++ b/examples/gsoc2023/dns-resolver/Cargo.toml
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0.72"
# Use latest arti-client from GitLab to connect to Tor network
-arti-client = { path = "../../../crates/arti-client", version = "0.36", features = ["bridge-client"] }
+arti-client = { path = "../../../crates/arti-client", version = "0.37", features = ["bridge-client"] }
thiserror = "2"
# Specify which async framework we wish to use
tokio = { version = "1.7", features = ["full"] }
diff --git a/examples/gsoc2023/obfs4-checker/Cargo.toml b/examples/gsoc2023/obfs4-checker/Cargo.toml
index 04a65bc00..ca5be2b09 100644
--- a/examples/gsoc2023/obfs4-checker/Cargo.toml
+++ b/examples/gsoc2023/obfs4-checker/Cargo.toml
@@ -8,18 +8,18 @@ publish = false
[dependencies]
anyhow = "1.0.72"
-arti-client = { path = "../../../crates/arti-client", version = "0.36", features = ["bridge-client", "pt-client", "experimental-api"] }
+arti-client = { path = "../../../crates/arti-client", version = "0.37", features = ["bridge-client", "pt-client", "experimental-api"] }
axum = "0.8.1"
clap = { version = "4.3.21", features = ["derive", "wrap_help"] }
futures = "0.3.28"
serde = "1.0.180"
time = { version = "0.3", features = ["serde"] }
tokio = { version = "1.7", features = ["full"] }
-tor-chanmgr = { path = "../../../crates/tor-chanmgr", version = "0.36", features = ["pt-client", "experimental-api"] }
-tor-error = { path = "../../../crates/tor-error", version = "0.36" }
-tor-guardmgr = { path = "../../../crates/tor-guardmgr", version = "0.36", features = ["full"] }
-tor-proto = { path = "../../../crates/tor-proto", version = "0.36", features = [] }
-tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.36" }
+tor-chanmgr = { path = "../../../crates/tor-chanmgr", version = "0.37", features = ["pt-client", "experimental-api"] }
+tor-error = { path = "../../../crates/tor-error", version = "0.37" }
+tor-guardmgr = { path = "../../../crates/tor-guardmgr", version = "0.37", features = ["full"] }
+tor-proto = { path = "../../../crates/tor-proto", version = "0.37", features = [] }
+tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.37" }
tracing-subscriber = "0.3.20"
[features]
diff --git a/examples/gsoc2023/pt-proxy/Cargo.toml b/examples/gsoc2023/pt-proxy/Cargo.toml
index 98a08e1d3..05d190700 100644
--- a/examples/gsoc2023/pt-proxy/Cargo.toml
+++ b/examples/gsoc2023/pt-proxy/Cargo.toml
@@ -13,11 +13,11 @@ fast-socks5 = "0.10.0"
thiserror = "2"
tokio = { version = "1.7", features = ["full"] }
tokio-stream = "0.1.14"
-tor-chanmgr = { path = "../../../crates/tor-chanmgr", version = "0.36", features = ["pt-client"] }
-tor-linkspec = { path = "../../../crates/tor-linkspec", version = "0.36" }
-tor-ptmgr = { path = "../../../crates/tor-ptmgr", version = "0.36", features = [ "experimental-api"] }
-tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.36", features = ["tokio", "native-tls"] }
-tor-socksproto = { path = "../../../crates/tor-socksproto", version = "0.36" }
+tor-chanmgr = { path = "../../../crates/tor-chanmgr", version = "0.37", features = ["pt-client"] }
+tor-linkspec = { path = "../../../crates/tor-linkspec", version = "0.37" }
+tor-ptmgr = { path = "../../../crates/tor-ptmgr", version = "0.37", features = [ "experimental-api"] }
+tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.37", features = ["tokio", "native-tls"] }
+tor-socksproto = { path = "../../../crates/tor-socksproto", version = "0.37" }
tracing-subscriber = "0.3.20"
[features]
diff --git a/examples/hyper-examples/Cargo.toml b/examples/hyper-examples/Cargo.toml
index 7f4151606..0f0c369ae 100644
--- a/examples/hyper-examples/Cargo.toml
+++ b/examples/hyper-examples/Cargo.toml
@@ -18,7 +18,7 @@ full = [
[dependencies]
anyhow = "1.0.97"
-arti-client = { path = "../../crates/arti-client", version = "0.36", features = ["onion-service-service"] }
+arti-client = { path = "../../crates/arti-client", version = "0.37", features = ["onion-service-service"] }
futures = "0.3.14"
http = "1.3.1"
http-body-util = "0.1.0"
@@ -28,8 +28,8 @@ safelog = { path = "../../crates/safelog", version = "0.7" }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] }
tokio-native-tls = "0.3.1"
tokio-util = "0.7.10"
-tor-cell = { path = "../../crates/tor-cell", version = "0.36" }
-tor-hsservice = { path = "../../crates/tor-hsservice", version = "0.36" }
-tor-proto = { path = "../../crates/tor-proto", version = "0.36" }
+tor-cell = { path = "../../crates/tor-cell", version = "0.37" }
+tor-hsservice = { path = "../../crates/tor-hsservice", version = "0.37" }
+tor-proto = { path = "../../crates/tor-proto", version = "0.37" }
tracing-subscriber = "0.3.20"
webpki-roots = "1.0.2"
diff --git a/examples/ureq-examples/Cargo.toml b/examples/ureq-examples/Cargo.toml
index 7603fc028..20ea57661 100644
--- a/examples/ureq-examples/Cargo.toml
+++ b/examples/ureq-examples/Cargo.toml
@@ -9,7 +9,7 @@ publish = false
[dependencies]
anyhow = "1.0.75"
-arti-ureq = { path = "../../crates/arti-ureq", version = "0.36" }
+arti-ureq = { path = "../../crates/arti-ureq", version = "0.37" }
[features]
full = ["arti-ureq/full"]