2021-10-04 15:34:02 +03:00
|
|
|
[package]
|
|
|
|
name = "clock"
|
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/clock.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2024-02-23 06:28:08 +03:00
|
|
|
[features]
|
|
|
|
test-support = ["dep:parking_lot"]
|
|
|
|
|
2021-10-04 15:34:02 +03:00
|
|
|
[dependencies]
|
2024-02-23 06:28:08 +03:00
|
|
|
chrono.workspace = true
|
|
|
|
parking_lot = { workspace = true, optional = true }
|
2024-07-10 18:36:22 +03:00
|
|
|
serde.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smallvec.workspace = true
|