2021-10-11 15:00:29 +00:00
|
|
|
[package]
|
2022-04-26 00:19:59 +00:00
|
|
|
name = "iox_time"
|
2021-10-11 15:00:29 +00:00
|
|
|
description = "Time functionality for IOx"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-10-11 15:00:29 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-12 09:12:50 +00:00
|
|
|
chrono = { version = "0.4.26", default-features = false, features = ["clock", "std"] }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2023-04-26 12:53:26 +00:00
|
|
|
tokio = { version = "1.28", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2021-10-11 15:00:29 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|