summaryrefslogtreecommitdiff
path: root/crates/arti-config/Cargo.toml
blob: d5e068310680bab68df7af7aca04ffb721a8abec (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
[package]
name = "arti-config"
version = "0.1.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "High-level configuration for the Arti Tor implementation"
keywords = [ "tor", "arti" ]
categories = [ "config" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
arti-client = { package="arti-client", path = "../arti-client", version = "0.1.0"}
tor-circmgr = { package="tor-circmgr", path="../tor-circmgr", version = "0.1.0"}
tor-config = { package="tor-config", path = "../tor-config", version = "0.1.0", features = ["expand-paths"]}
config = { version = "0.12.0", default-features = false, features = ["toml"] }
once_cell = "1"
serde = { version = "1.0.103", features = ["derive"] }
toml = "0.5"
regex = { version = "1", default-features = false, features = ["std"] }
thiserror = "1"
derive_builder = "0.10"

[dev-dependencies]
tempfile = "3"