-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
48 lines (39 loc) · 1.13 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
47
48
[package]
name = "act-zero"
version = "0.4.0"
authors = ["Diggory Blake <[email protected]>"]
edition = "2018"
description = "Ergonomic actor system"
repository = "https://github.com/Diggsey/act-zero"
readme = "README.md"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default-tokio = ["tokio"]
default-async-std = ["async-std"]
default-disabled = []
nightly = []
tracing = ["tynm"]
[dependencies]
futures = "0.3.6"
async-trait = "0.1.41"
log = "0.4.11"
tokio = { version = "1.0.1", features = ["time", "net"], optional = true }
async-std = { version = "1.8.0", optional = true }
tynm = { version = "0.1.4", optional = true }
[dev-dependencies]
tokio = { version = "1.0.1", features = ["rt", "macros", "time"] }
async-std = { version = "1.8.0", features = ["attributes"] }
[[example]]
name = "using_tokio"
required-features = ["tokio"]
[[example]]
name = "using_async_std"
required-features = ["async-std"]
[[example]]
name = "using_global_runtime"
[[example]]
name = "using_provided_runtime"
[[example]]
name = "using_timers"
required-features = ["tokio"]