summaryrefslogtreecommitdiff
path: root/crates/tor-config/Cargo.toml
blob: 72f4ba76274526d7cecca3f307f8922b0fd546f5 (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 = "tor-config"
version = "0.0.2"
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 = "Low-level configuration for the Arti Tor implementation"
keywords = [ "tor", "arti" ]
categories = [ "config" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = [ "expand-paths" ]
expand-paths = [ "shellexpand", "directories" ]

[dependencies]
thiserror = "1.0.24"
derive_builder = "0.10.2"
once_cell = "1.7.2"
serde = { version = "1.0.124", features = ["derive"] }
shellexpand = { version = "2.1.0", optional = true }
directories = { version = "4.0.1", optional = true }

[dev-dependencies]
dirs = "4.0.0"