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