-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 927 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 927 Bytes
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
[package]
name = "timer-lib"
version = "0.4.0"
authors = ["Tim Gatzke <post@tim-gatzke.de>"]
edition = "2021"
description = "A feature-rich Rust library for creating and managing timers."
license = "MIT"
repository = "https://github.com/Tfc538/timer_lib"
homepage = "https://github.com/Tfc538/timer_lib"
documentation = "https://docs.rs/timer-lib"
readme = "README.md"
keywords = ["timer", "async", "recurring", "scheduler", "timeout"]
categories = ["asynchronous"]
[dependencies]
async-trait = "0.1.83"
fastrand = "2"
log = { version = "0.4", optional = true }
tokio = { version = "1", features = ["macros", "rt", "sync", "time"] }
[features]
logging = ["log"]
test-util = ["tokio/test-util"]
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "sync", "time", "test-util"] }
[[bench]]
name = "timer_bench"
harness = false