arti/tor-rtcompat/Cargo.toml

35 lines
1.1 KiB
TOML

[package]
name = "tor-rtcompat"
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 = "Compatibility layer for asynchronous runtimes, used by Tor"
keywords = [ "tor", "arti", "async" ]
categories = [ "asynchronous" ]
[features]
default = [ "tokio" ]
async-std = [ "async-std-crate", "async-io", "async-native-tls" ]
tokio = [ "tokio-crate", "tokio-util", "tokio-native-tls" ]
[dependencies]
async-trait = "0.1.48"
futures = "0.3.13"
pin-project = "1.0.5"
native-tls = "0.2.7"
async-std-crate = { package = "async-std", version = "1.7.0", optional = true }
async-io = { version = "1.3.1", optional = true }
async-native-tls = { version = "0.3.3", optional = true }
tokio-crate = { package = "tokio", version = "1.2.0", optional = true, features = ["rt", "io-util", "net", "rt-multi-thread", "rt", "time" ] }
tokio-util = { version = "0.6.4", features = ["compat"], optional = true }
tokio-native-tls = { version = "0.3.0", optional = true }