Cargo.toml

 1[package]
 2name = "time_format"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/time_format.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14lazy_static.workspace = true
15sys-locale.workspace = true
16time.workspace = true
17
18[target.'cfg(target_os = "macos")'.dependencies]
19core-foundation.workspace = true
20core-foundation-sys.workspace = true