Run fixup-features script and resolve its complaints.

This commit is contained in:
Nick Mathewson 2023-05-31 08:04:10 -04:00
parent 079e19b725
commit 8d32e1f65f
4 changed files with 9 additions and 4 deletions

View File

@ -23,7 +23,7 @@ rustls = ["arti-client/rustls", "tor-rtcompat/rustls", "__is_nonadditive"]
static = ["arti-client/static", "__is_nonadditive"]
experimental = []
experimental = ["experimental-api"]
# Enable experimental APIs that are not yet officially supported.
#
# These APIs are not covered by semantic versioning. Using this

View File

@ -13,7 +13,7 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
full = ["arti-client/full", "tor-async-utils/full", "tor-error/full", "tor-rpcbase/full", "tor-rtcompat/full"]
full = ["arti-client/full", "tor-async-utils/full", "tor-error/full", "tor-rpcbase/full", "tor-rtcompat/full", "tor-bytes/full"]
[dependencies]
arti-client = { path = "../arti-client", version = "0.9.0", features = ["rpc"] }

View File

@ -13,8 +13,10 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = ["xz", "zstd"]
# Enable support for hidden service descriptor downloads.
hs-client = ["tor-hscrypto"]
hs-client = ["tor-hscrypto", "__is_experimental"]
xz = ["async-compression/xz"]
zstd = ["async-compression/zstd"]
# Enable support for router descriptor downloads.
@ -33,6 +35,9 @@ full = [
"tor-proto/full",
"tor-rtcompat/full",
]
experimental = ["hs-client"]
__is_experimental = []
[dependencies]
async-compression = { version = "0.4.0", features = ["futures-io", "zlib"] }

View File

@ -29,7 +29,7 @@ full = [
"tor-protover/full",
"tor-rtcompat/full",
"tor-rtmock/full",
"tor-units/full",
"tor-units/full", "tor-hscrypto?/full",
]
experimental = ["experimental-api", "hs-client", "hs-service", "ntor_v3", "stream-ctrl", "testing"]