-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (41 loc) · 1.47 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
[workspace]
members = [
"agnostic",
"agnostic-process",
"agnostic-net",
"agnostic-dns",
"agnostic-lite",
"agnostic-io",
"smol",
"async-std",
"wasm",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT/Apache-2.0"
rust-version = "1.81.0"
repository = "https://github.com/al8n/agnostic"
homepage = "https://github.com/al8n/agnostic"
keywords = ["async", "runtime", "agnostic", "trait"]
[workspace.dependencies]
atomic-time = "0.1"
async-io = "2"
futures-util = { version = "0.3", default-features = false }
futures-io = { version = "0.3", default-features = false }
futures-channel = "0.3"
pin-project-lite = "0.2"
agnostic-dns = { path = "./agnostic-dns", version = "0.1" }
agnostic-io = { path = "./agnostic-io", version = "0.1" }
agnostic-lite = { path = "./agnostic-lite", version = "0.4" }
agnostic-net = { path = "./agnostic-net", version = "0.1" }
agnostic-process = { path = "./agnostic-process", version = "0.1" }
# runtimes
smol = { package = "feature-extension-for-smol", version = "^0.2.1", path = "smol", default-features = false }
async-std = { package = "feature-extension-for-async-std", version = "^0.2.1", path = "async-std", default-features = false }
wasm = { package = "feature-extension-for-wasm-bindgen-futures", version = "^0.2.1", path = "wasm" }
tokio = { version = "1", default-features = false }
tokio-util = { version = "0.7", default-features = false }
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]