summaryrefslogtreecommitdiff
path: root/examples/gsoc2023
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gsoc2023')
-rw-r--r--examples/gsoc2023/connection-checker/Cargo.toml3
-rw-r--r--examples/gsoc2023/dns-resolver/Cargo.toml3
-rw-r--r--examples/gsoc2023/download-manager/Cargo.toml3
-rw-r--r--examples/gsoc2023/obfs4-checker/Cargo.toml3
-rw-r--r--examples/gsoc2023/pt-proxy/Cargo.toml3
5 files changed, 15 insertions, 0 deletions
diff --git a/examples/gsoc2023/connection-checker/Cargo.toml b/examples/gsoc2023/connection-checker/Cargo.toml
index 2466cf454..7e523a7d2 100644
--- a/examples/gsoc2023/connection-checker/Cargo.toml
+++ b/examples/gsoc2023/connection-checker/Cargo.toml
@@ -15,3 +15,6 @@ tor-error = { path = "../../../crates/tor-error" }
tor-rtcompat = { path = "../../../crates/tor-rtcompat" }
tracing = "0.1"
tracing-subscriber = "0.3.17"
+
+[features]
+full = ["arti-client/full", "tor-error/full", "tor-rtcompat/full"]
diff --git a/examples/gsoc2023/dns-resolver/Cargo.toml b/examples/gsoc2023/dns-resolver/Cargo.toml
index 5b0291039..21ed4ec05 100644
--- a/examples/gsoc2023/dns-resolver/Cargo.toml
+++ b/examples/gsoc2023/dns-resolver/Cargo.toml
@@ -16,3 +16,6 @@ tokio = { version = "1.7", features = ["full"] }
# Useful to print debugging or log messages in async programs
tracing = "0.1"
tracing-subscriber = "0.3.17"
+
+[features]
+full = ["arti-client/full"]
diff --git a/examples/gsoc2023/download-manager/Cargo.toml b/examples/gsoc2023/download-manager/Cargo.toml
index 820be7d88..49407277d 100644
--- a/examples/gsoc2023/download-manager/Cargo.toml
+++ b/examples/gsoc2023/download-manager/Cargo.toml
@@ -20,3 +20,6 @@ tokio = { version = "1.7", features = ["full"] }
tor-rtcompat = { path = "../../../crates/tor-rtcompat" }
tracing = "0.1"
tracing-subscriber = "0.3.17"
+
+[features]
+full = ["arti-client/full", "arti-hyper/full", "tor-rtcompat/full"]
diff --git a/examples/gsoc2023/obfs4-checker/Cargo.toml b/examples/gsoc2023/obfs4-checker/Cargo.toml
index 0972aa95b..33820491e 100644
--- a/examples/gsoc2023/obfs4-checker/Cargo.toml
+++ b/examples/gsoc2023/obfs4-checker/Cargo.toml
@@ -25,3 +25,6 @@ tor-proto = { path = "../../../crates/tor-proto" }
tor-rtcompat = { path = "../../../crates/tor-rtcompat" }
tracing = "0.1"
tracing-subscriber = "0.3.17"
+
+[features]
+full = ["arti-client/full", "tor-chanmgr/full", "tor-error/full", "tor-guardmgr/full", "tor-proto/full", "tor-rtcompat/full"]
diff --git a/examples/gsoc2023/pt-proxy/Cargo.toml b/examples/gsoc2023/pt-proxy/Cargo.toml
index 2638eb2c1..c2d6ec8ba 100644
--- a/examples/gsoc2023/pt-proxy/Cargo.toml
+++ b/examples/gsoc2023/pt-proxy/Cargo.toml
@@ -21,3 +21,6 @@ tor-rtcompat = { path = "../../../crates/tor-rtcompat" }
tor-socksproto = { path = "../../../crates/tor-socksproto" }
tracing = "0.1"
tracing-subscriber = "0.3.17"
+
+[features]
+full = ["arti-client/full", "tor-chanmgr/full", "tor-linkspec/full", "tor-ptmgr/full", "tor-rtcompat/full", "tor-socksproto/full"]