-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 906 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (30 loc) · 906 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
32
33
34
35
36
[workspace]
members = [".", "alarm-server"]
[workspace.package]
version = "0.8.6"
edition = "2024"
description = "a simple tool to compute time: easy to config, and easy to use."
license-file = "LICENSE"
readme = "README.md"
keywords = ["timer"]
repository = "https://github.com/jm-observer/timer-util"
documentation = "https://docs.rs/timer-util/latest/timer-util/"
homepage = "https://docs.rs/timer-util/latest/timer-util/"
[package]
name = "timer-util"
version.workspace = true
edition.workspace = true
license-file.workspace = true
include = [
"LICENSE", "Cargo.toml", "README.md", "src/*.rs", "examples/*.rs"
]
[features]
default = []
serde = ["dep:serde"]
[dependencies]
log = { version = "0.4" }
chrono = "0.4"
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies]
tokio = {version ="1.18", features = ["rt-multi-thread", "macros", "time"]}
serde_json = "1"