-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
56 lines (49 loc) · 1.31 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
49
50
51
52
53
54
55
56
[package]
name = "async-global-executor"
version = "2.4.1"
authors = ["Marc-Antoine Perennou <[email protected]>"]
description = "A global executor built on top of async-executor and async-io"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/Keruspe/async-global-executor"
homepage = "https://github.com/Keruspe/async-global-executor"
documentation = "https://docs.rs/async-global-executor"
keywords = ["async", "await", "future", "executor"]
categories = ["asynchronous", "concurrency"]
readme = "README.md"
rust-version = "1.60"
[features]
default = ["async-io"]
tokio = ["tokio-crate"]
tokio02 = ["tokio02-crate"]
tokio03 = ["tokio03-crate"]
[dependencies]
async-channel = "^2.1.1"
async-executor = "^1.8"
async-lock = "^3.2"
blocking = "^1.5"
futures-lite = "^2.0"
once_cell = "^1.4"
[dependencies.async-io]
version = "^2.2.1"
optional = true
[dependencies.tokio-crate]
package = "tokio"
version = "^1.0"
optional = true
default-features = false
features = ["rt", "rt-multi-thread"]
[dependencies.tokio02-crate]
package = "tokio"
version = "^0.2"
optional = true
default-features = false
features = ["rt-core"]
[dependencies.tokio03-crate]
package = "tokio"
version = "^0.3.4"
optional = true
default-features = false
features = ["rt", "rt-multi-thread"]
[dev-dependencies]
doc-comment = "^0.3"