summaryrefslogtreecommitdiff
path: root/crates/arti-config/Cargo.toml
blob: 030788297047fc8bad889920d41f5ae4147a8c81 (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
[package]
name = "arti-config"
version = "0.3.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.56"
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.3.0"}
tor-circmgr = { package = "tor-circmgr", path = "../tor-circmgr", version = "0.3.0"}
tor-config = { package = "tor-config", path = "../tor-config", version = "0.3.0", features = [
    "expand-paths",
] }
config = { version = "0.13", 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 = { version = "0.11.2", package = "derive_builder_fork_arti" }

[dev-dependencies]
tempfile = "3"