arti/crates/tor-hsservice/Cargo.toml

67 lines
2.3 KiB
TOML

[package]
name = "tor-hsservice"
version = "0.2.3"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.65"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Arti's implementation of an onion service provider"
keywords = ["tor", "arti", "cryptography"]
categories = ["cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
publish = false
[features]
default = []
full = [
"tor-circmgr/full",
"tor-hscrypto/full",
"tor-llcrypto/full",
"tor-netdir/full",
"tor-proto/full",
"tor-rtcompat/full",
]
[dependencies]
async-trait = "0.1.54"
derive-adhoc = "0.7.3"
derive_more = "0.99.17"
educe = "0.4.6"
futures = "0.3.14"
itertools = "0.11.0"
once_cell = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8.5"
rand_core = "0.6.2"
retry-error = { version = "0.5.0", path = "../retry-error" }
safelog = { path = "../safelog", version = "0.3.3" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
tor-async-utils = { path = "../tor-async-utils", version = "0.1.1" }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.3" }
tor-bytes = { version = "*", path = "../tor-bytes" }
tor-cell = { version = "0.12.1", path = "../tor-cell", features = ["hs"] }
tor-circmgr = { version = "0.10.0", path = "../tor-circmgr", features = ["hs-service"] }
tor-config = { version = "0.9.3", path = "../tor-config" }
tor-error = { version = "0.5.3", path = "../tor-error" }
tor-hscrypto = { version = "0.3.0", path = "../tor-hscrypto" }
tor-keymgr = { version = "0.2.0", path = "../tor-keymgr" }
tor-linkspec = { version = "0.8.1", path = "../tor-linkspec", features = ["verbatim", "decode"] }
tor-llcrypto = { version = "0.5.2", path = "../tor-llcrypto" }
tor-netdir = { version = "0.9.3", path = "../tor-netdir", features = ["hs-service"] }
tor-proto = { version = "0.12.0", path = "../tor-proto", features = [
"experimental-api",
"hs-service",
"send-control-msg",
] }
tor-rtcompat = { version = "0.9.1", path = "../tor-rtcompat" }
tracing = "0.1.36"
void = "1"
[dev-dependencies]
humantime = "2"
serde_json = "1.0.104"
tor-rtmock = { path = "../tor-rtmock", version = "0.9.0" }