arti/crates/tor-rtcompat/Cargo.toml

54 lines
1.9 KiB
TOML

[package]
name = "tor-rtcompat"
version = "0.4.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Compatibility layer for asynchronous runtimes, used by Tor"
keywords = ["tor", "arti", "async"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = []
full = ["async-std", "tokio", "native-tls"]
async-std = ["async-std-crate", "async-io", "async_executors/async_std"]
tokio = ["tokio-crate", "tokio-util", "async_executors/tokio_tp"]
# TODO: This feature makes us link native-tls statically even if we
# don't want to use native-tls in the first place. That's not so clever!
static = ["native-tls-crate/vendored"]
native-tls = ["native-tls-crate", "async-native-tls"]
rustls = ["rustls-crate", "async-rustls", "x509-signature"]
[dependencies]
async-io = { version = "1.4.1", optional = true }
async-native-tls = { version = "0.4.0", optional = true }
async-rustls = { version = "0.2.0", optional = true }
async-std-crate = { package = "async-std", version = "1.7.0", optional = true }
async-trait = "0.1.2"
async_executors = { version = "0.6.0", default_features = false }
educe = "0.4.6"
futures = "0.3.14"
native-tls-crate = { package = "native-tls", version = "0.2", optional = true }
pin-project = "1"
rustls-crate = { package = "rustls", version = "0.19", optional = true, features = [
"dangerous_configuration",
] }
tokio-crate = { package = "tokio", version = "1.7", optional = true, features = [
"rt",
"rt-multi-thread",
"io-util",
"net",
"time",
] }
tokio-util = { version = "0.7.0", features = ["compat"], optional = true }
x509-signature = { version = "0.5.0", optional = true }
[dev-dependencies]
# Used for testing our TLS implementation.
native-tls-crate = { package = "native-tls", version = "0.2" }