arti/tor-circmgr/Cargo.toml

32 lines
1.0 KiB
TOML

[package]
name = "tor-circmgr"
version = "0.0.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
publish = false
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Manage a set of anonymous circuits over the Tor network"
keywords = [ "tor", "arti", "async" ]
[dependencies]
tor-chanmgr = { path="../tor-chanmgr", version= "*", default-features=false }
tor-netdir = { path="../tor-netdir", version= "*" }
tor-netdoc = { path="../tor-netdoc", version= "*" }
tor-proto = { path="../tor-proto", version= "*" }
tor-retry = { path="../tor-retry", version= "*" }
tor-linkspec = { path="../tor-linkspec", version= "*" }
tor-llcrypto = { path="../tor-llcrypto", version= "*" }
tor-rtcompat = { path="../tor-rtcompat", version= "*", default-features=false }
anyhow = "1.0.38"
async-trait = "0.1.48"
event-listener = "2.5.1"
futures = "0.3.13"
rand = "0.8.3"
log = "0.4.14"
thiserror = "1.0.24"
[dev-dependencies]
futures-await-test = "0.3.0"