summaryrefslogtreecommitdiff
path: root/crates/tor-hscrypto/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/tor-hscrypto/Cargo.toml')
-rw-r--r--crates/tor-hscrypto/Cargo.toml12
1 files changed, 10 insertions, 2 deletions
diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml
index d6f879092..bc84a9d07 100644
--- a/crates/tor-hscrypto/Cargo.toml
+++ b/crates/tor-hscrypto/Cargo.toml
@@ -17,8 +17,8 @@ memquota-memcost = ["derive-deftly", "tor-memquota", "tor-units/memquota-memcost
ope = ["cipher", "zeroize"]
# Onion service proof of work schemes
-pow-v1 = ["arrayvec", "blake2", "equix"]
-pow-full = ["pow-v1"]
+pow-v1 = ["arrayvec", "blake2", "equix", "__is_experimental"]
+pow-full = ["pow-v1", "__is_experimental"]
full = [
"memquota-memcost",
@@ -29,8 +29,16 @@ full = [
"tor-llcrypto/full",
"tor-units/full",
"tor-error/full",
+ "equix?/full",
+ "tor-memquota?/full",
]
+experimental = [
+ "pow-full",
+ "pow-v1",
+]
+__is_experimental = []
+
[dependencies]
arrayvec = { version = "0.7.4", optional = true }
blake2 = { version = "0.10.6", optional = true }