arti/tor-chanmgr/Cargo.toml

32 lines
767 B
TOML
Raw Normal View History

[package]
name = "tor-chanmgr"
version = "0.0.0"
authors = ["Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
publish = false
[features]
default = [ "nativetls" ]
nativetls = [ "async-native-tls", "native-tls" ]
[dependencies]
tor-rtcompat = { path="../tor-rtcompat", version= "*" }
tor-proto = { path="../tor-proto", version= "*" }
tor-linkspec = { path="../tor-linkspec", version= "*" }
tor-llcrypto = { path="../tor-llcrypto", version= "*" }
anyhow = "1.0.34"
async-trait = "0.1.41"
event-listener = "2.5.1"
2020-11-11 14:14:26 +00:00
futures = "0.3.8"
log = "0.4.11"
2020-11-10 17:27:10 +00:00
thiserror = "1.0.22"
async-native-tls = { version = "0.3.3", optional = true }
2020-11-11 14:14:26 +00:00
native-tls = { version = "0.2.6", optional = true }
2020-10-30 19:45:53 +00:00
[dev-dependencies]
futures-await-test = "0.3.0"