This repository was archived by the owner on Oct 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
47 lines (42 loc) · 1.42 KB
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
47
[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",
]