mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
81475ac4cd
This PR replaces the `lazy_static!` usages in the `paths` crate with `OnceLock` from the standard library. This allows us to drop the `lazy_static` dependency from this crate. The paths are now exposed as accessor functions that reference a private static value. Release Notes: - N/A
17 lines
220 B
TOML
17 lines
220 B
TOML
[package]
|
|
name = "paths"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/paths.rs"
|
|
|
|
[dependencies]
|
|
dirs.workspace = true
|
|
util.workspace = true
|