-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (39 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (39 loc) · 1.41 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
[workspace]
members = [
"agnostic",
"agnostic-process",
"agnostic-net",
"agnostic-dns",
"agnostic-lite",
"agnostic-io",
"smol",
"wasm",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"
rust-version = "1.85.0"
repository = "https://github.com/al8n/agnostic"
homepage = "https://github.com/al8n/agnostic"
keywords = ["async", "runtime", "agnostic", "sansio", "sans"]
[workspace.dependencies]
atomic-time = {version = "0.2", default-features = false}
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.5" }
agnostic-io = { path = "./agnostic-io", version = "0.2" }
agnostic-lite = { path = "./agnostic-lite", default-features = false, version = "0.6" }
agnostic-net = { path = "./agnostic-net", version = "0.3" }
agnostic-process = { path = "./agnostic-process", version = "0.3" }
# runtimes
smol = { package = "feature-extension-for-smol", version = "^0.2.1", path = "smol", 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"]