summaryrefslogtreecommitdiff
path: root/crates/tor-hsservice/Cargo.toml
blob: 7c5801b505a8e42010225681ae00161f00dcffa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "tor-hsservice"
version = "0.2.3"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
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", "retry-error/full", "safelog/full", "tor-async-utils/full", "tor-basic-utils/full", "tor-bytes/full", "tor-cell/full", "tor-cert/full", "tor-config/full", "tor-dirclient/full", "tor-error/full", "tor-keymgr/full", "tor-linkspec/full", "tor-netdoc/full", "tor-units/full",
]

[dependencies]
async-broadcast = "0.5.0"
async-trait = "0.1.54"
derive-adhoc = "0.7.3"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
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-cert = { path = "../tor-cert", version = "0.7.2" }
tor-circmgr = { version = "0.10.0", path = "../tor-circmgr", features = ["hs-service"] }
tor-config = { version = "0.9.3", path = "../tor-config" }
tor-dirclient = { path = "../tor-dirclient", version = "0.8.0", default-features = false, features = ["hs-service"] }
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-netdoc = { version = "0.8.2", path = "../tor-netdoc", 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" }
tor-units = { path = "../tor-units", version = "0.6.1" }
tracing = "0.1.36"
void = "1"

[dev-dependencies]
humantime = "2"
serde_json = "1.0.104"
tor-rtmock = { path = "../tor-rtmock", version = "0.9.0" }