summaryrefslogtreecommitdiff
path: root/crates/tor-cell
diff options
context:
space:
mode:
Diffstat (limited to 'crates/tor-cell')
-rw-r--r--crates/tor-cell/Cargo.toml13
1 files changed, 10 insertions, 3 deletions
diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml
index 18fb64011..3b790a4e7 100644
--- a/crates/tor-cell/Cargo.toml
+++ b/crates/tor-cell/Cargo.toml
@@ -14,7 +14,13 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
-experimental = ["experimental-udp", "hs", "testing"]
+experimental = [
+ "experimental-udp",
+ "hs",
+ "hs-pow-full",
+ "hs-pow-v1",
+ "testing",
+]
# Enable experimental UDP support.
experimental-udp = ["__is_experimental"]
@@ -25,8 +31,8 @@ hs = ["tor-hscrypto", "__is_experimental"]
testing = ["experimental-udp", "__is_experimental"]
# Onion service proof of work schemes
-hs-pow-v1 = ["tor-hscrypto/pow-v1"]
-hs-pow-full = ["hs-pow-v1"]
+hs-pow-v1 = ["tor-hscrypto/pow-v1", "__is_experimental"]
+hs-pow-full = ["hs-pow-v1", "__is_experimental"]
full = [
"caret/full",
@@ -38,6 +44,7 @@ full = [
"tor-linkspec/full",
"tor-llcrypto/full",
"tor-units/full",
+ "tor-memquota/full",
]
__is_experimental = []