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
|
[package]
name = "tor-dirpublish"
version = "0.45.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Publish documents to Tor directory servers."
keywords = ["tor", "arti", "download", "async"]
categories = ["network-programming", "cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
full = [
"safelog/full",
"tor-basic-utils/full",
"tor-dirclient/full",
"tor-error/full",
"tor-linkspec/full",
"tor-rtcompat/full",
"web-time-compat/full",
]
[dependencies]
async-trait = "0.1.54"
educe = "0.4.22"
event-listener = "5"
futures = "0.3.14"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.10.1"
safelog = { path = "../safelog", version = "0.9.0" }
thiserror = "2"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.45.0" }
tor-dirclient = { path = "../tor-dirclient", version = "0.45.0", default-features = false }
tor-error = { path = "../tor-error", version = "0.45.0", features = ["tracing"] }
tor-linkspec = { path = "../tor-linkspec", version = "0.45.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.45.0" }
tracing = "0.1.36"
web-time-compat = { path = "../web-time-compat", version = "0.2.0" }
[dev-dependencies]
tor-rtmock = { path = "../tor-rtmock", version = "0.45.0" }
|