[package] name = "runtime" description = "[deprecated] Empowering everyone to build asynchronous software." version = "0.3.0-alpha.8" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/rustasync/runtime" homepage = "https://github.com/rustasync/runtime" documentation = "https://docs.rs/runtime" authors = ["The Rust Async Ecosystem Working Group"] keywords = ["async", "runtime", "generic", "tokio", "romio"] categories = ["asynchronous", "network-programming", "filesystem", "concurrency", "api-bindings"] edition = "2018" [features] default = ["native"] native = ["runtime-attributes/native", "runtime-native"] [dependencies] futures-preview = "0.3.0-alpha.19" runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.6", default-features = false } runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.5" } runtime-native = { path = "runtime-native", version = "0.3.0-alpha.6", optional = true } pin-project = "0.4" [dev-dependencies] failure = "0.1.5" futures01 = { package = "futures", version = "0.1" } futures-preview = { version = "0.3.0-alpha.19", features = ["async-await"] } juliex = "0.3.0-alpha.8" mio = "0.6.16" rand = "0.7.0" runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.5" } tokio = "0.1.19" [profile.bench] codegen-units = 1 incremental = false [workspace] members = [ ".", "runtime-attributes", "runtime-native", "runtime-raw", "runtime-tokio", ]