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
14sys-locale.workspace = true
15time.workspace = true
16
17[target.'cfg(target_os = "macos")'.dependencies]
18core-foundation.workspace = true
19core-foundation-sys.workspace = true