-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1.01 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
[workspace]
members = [
"agnostic",
"lite",
"smol",
"async-std",
"wasm"
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT/Apache-2.0"
rust-version = "1.75.0"
repository = "https://github.com/al8n/agnostic"
homepage = "https://github.com/al8n/agnostic"
keywords = ["async", "runtime", "agnostic", "trait"]
[workspace.dependencies]
async-io = "2"
futures-util = { version = "^0.3.31", default-features = false }
futures-channel = "^0.3.31"
pin-project-lite = "0.2"
agnostic-lite = { path = "./lite", version = "0.3" }
# 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 }
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]