aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-dirauth/Cargo.toml
blob: 922b8efd074f6eccdce89cbab43f44afa6d46666 (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
[package]
name = "tor-dirauth"
version = "0.45.0"
authors = [
    "The Tor Project, Inc.",
    "Ian Jackson <[email protected]>",
    "Clara Engler <[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 = "Tor Directory Authority - core algoirithms"
keywords = ["tor", "arti"]
# We must put *something* here and this will do
categories = ["network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[package.metadata.docs.rs]
all-features = true

[features]
experimental = []
full = ["tor-netdoc/full", "tor-error/full"]
__is_experimental = []

[dependencies]
derive_more = { version = "2.0.1", features = ["full"] }
ipnet = "2.10"
itertools = "0.15.0"
rangemap = "1.7"
thiserror = "2"
tor-error = { path = "../tor-error", version = "0.45.0" }
tor-netdoc = { version = "0.45.0", path = "../tor-netdoc", features = ["full", "experimental"] }

[dev-dependencies]
derive-deftly = { version = "~1.11.4", features = ["full", "beta"] }