forked from rustasync/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "runtime"
description = "Empowering everyone to build asynchronous software."
version = "0.3.0-alpha.5"
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-native"]
[dependencies]
futures-preview = "0.3.0-alpha.16"
runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.5" }
runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.4" }
runtime-native = { path = "runtime-native", version = "0.3.0-alpha.4", optional = true }
[dev-dependencies]
failure = "0.1.5"
futures01 = { package = "futures", version = "0.1" }
futures-preview = { version = "0.3.0-alpha.16", features = ["nightly", "async-await"] }
juliex = "0.3.0-alpha.6"
mio = "0.6.16"
rand = "0.6.5"
runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.4" }
tokio = "0.1.19"
[profile.bench]
codegen-units = 1
incremental = false
[workspace]
members = [
".",
"runtime-attributes",
"runtime-native",
"runtime-raw",
"runtime-tokio",
]