mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
7f5aa1fca6
This PR replaces a `lazy_static!` usage in the `time_format` crate with `OnceLock` from the standard library. This allows us to drop the `lazy_static` dependency from this crate. Release Notes: - N/A
19 lines
372 B
TOML
19 lines
372 B
TOML
[package]
|
|
name = "time_format"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/time_format.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
sys-locale.workspace = true
|
|
time.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation.workspace = true
|
|
core-foundation-sys.workspace = true
|