14 lines
399 B
TOML
14 lines
399 B
TOML
[package]
|
|
name = "iox_time"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Time functionality for IOx"
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std"] }
|
|
parking_lot = "0.12"
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|