-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (22 loc) · 809 Bytes
/
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
[package]
name = "interruptible_polling"
description = "General purpose polling tasks with RAII-driven fast clean exits"
version = "0.3.0"
edition = "2021"
authors = ["Chris Henk <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/LittleBoxOfSunshine/interruptible-polling"
readme = "README.md"
keywords = ["poll", "polling", "task", "sync", "async"]
[features]
default = []
tokio = ["dep:tokio", "dep:tokio-util"]
[dependencies]
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["time", "macros", "rt"], optional = true }
tokio-util = { version = "0.7.13", optional = true }
[dev-dependencies]
tokio = { version = "1.42.0", features = ["sync", "macros", "rt-multi-thread"] }
serde_json = "1.0.134"
[package.metadata.docs.rs]
all-features = true