-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (35 loc) · 1.03 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
[package]
categories = ["asynchronous"]
description = "Asynchronous tools that intends for smaller binary size."
edition = "2021"
keywords = ["async", "future"]
license = "MIT"
name = "slim-futures"
repository = "https://github.com/EFanZh/slim-futures"
version = "0.1.0-alpha.1"
[workspace]
members = ["crates/option-entry", "crates/three-states"]
[workspace.dependencies]
fn-traits = "0.1"
futures-core = "0.3"
futures-util = "0.3"
option-entry = { path = "crates/option-entry" }
pin-project-lite = "0.2"
scopeguard = "1"
three-states = { path = "crates/three-states" }
[[bench]]
harness = false
name = "async-iterator"
[[bench]]
harness = false
name = "future"
[dependencies]
fn-traits = { workspace = true }
futures-core = { workspace = true }
futures-util = { workspace = true }
option-entry = { workspace = true }
pin-project-lite = { workspace = true }
three-states = { workspace = true }
[dev-dependencies]
criterion = { version = "0.4", features = ["async_futures", "html_reports"] }
tokio = { version = "1", features = ["macros", "rt"] }