arti/tor-dirmgr/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "tor-dirmgr"
version = "0.0.0"
authors = ["Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
publish = false
[features]
2020-12-01 12:56:36 +00:00
default = [ "mmap" ]
legacy-store = []
2020-12-01 12:56:36 +00:00
mmap = [ "memmap" ]
[dependencies]
tor-chanmgr = { path="../tor-chanmgr", version= "*" }
tor-checkable = { path="../tor-checkable", version= "*" }
tor-circmgr = { path="../tor-circmgr", version= "*" }
tor-dirclient = { path="../tor-dirclient", version= "*" }
tor-netdir = { path="../tor-netdir", version= "*" }
tor-netdoc = { path="../tor-netdoc", version= "*" }
tor-llcrypto = { path="../tor-llcrypto", version= "*" }
tor-retry = { path="../tor-retry", version= "*" }
tor-rtcompat = { path="../tor-rtcompat", version= "*" }
2020-12-08 22:26:19 +00:00
anyhow = "1.0.35"
async-rwlock = "1.3.0"
2020-11-28 19:17:42 +00:00
async-trait = "0.1.42"
base64 = "0.13.0"
chrono = "0.4.19"
digest = "0.9.0"
event-listener = "2.5.1"
futures = "0.3.8"
hex = "0.4.2"
log = "0.4.11"
2020-12-01 12:56:36 +00:00
memmap = { version="0.7.0", optional=true }
rand = "0.7.3"
2020-12-08 22:26:49 +00:00
rusqlite = { version = "0.24.2", features = ["chrono"] }
thiserror = "1.0.22"
[dev-dependencies]
futures-await-test = "0.3.0"
hex-literal = "0.3.1"
tempdir = "0.3.7"