summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/download-manager/Cargo.toml3
-rw-r--r--examples/hyper-examples/Cargo.toml9
2 files changed, 12 insertions, 0 deletions
diff --git a/examples/download-manager/Cargo.toml b/examples/download-manager/Cargo.toml
index ac3cf2834..72f135d00 100644
--- a/examples/download-manager/Cargo.toml
+++ b/examples/download-manager/Cargo.toml
@@ -27,3 +27,6 @@ tokio-native-tls = "0.3.1"
tor-rtcompat = { path = "../../crates/tor-rtcompat" }
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
+
+[features]
+full = ["arti-client/full", "tor-rtcompat/full"]
diff --git a/examples/hyper-examples/Cargo.toml b/examples/hyper-examples/Cargo.toml
index 154201a10..3198c4458 100644
--- a/examples/hyper-examples/Cargo.toml
+++ b/examples/hyper-examples/Cargo.toml
@@ -7,6 +7,15 @@ license = "MIT OR Apache-2.0"
description = "Examples demonstrating the usage of Arti with hyper"
publish = false
+[features]
+full = [
+ "arti-client/full",
+ "safelog/full",
+ "tor-cell/full",
+ "tor-hsservice/full",
+ "tor-proto/full",
+]
+
[dependencies]
anyhow = "1.0.97"
arti-client = { path = "../../crates/arti-client", features = ["onion-service-service"] }