zed/crates/path/Cargo.toml
Lukas Wirth f181a2f47b
Split out RelPath into a separate crate (#61029)
This is necessary to remove some `util` dependencies from crates, as
well as better sharing for our projects. This also includes the WIP
AbsPath abstraction as well as some bug fixes from internal tooling.


Release Notes:

- N/A or Added/Fixed/Improved ...
2026-07-15 08:33:25 +00:00

23 lines
360 B
TOML

[package]
name = "path"
version = "0.1.0"
edition.workspace = true
publish.workspace = true
license = "GPL-3.0-or-later"
[lib]
path = "src/path.rs"
[features]
test-support = []
[dependencies]
anyhow.workspace = true
dunce.workspace = true
serde = { workspace = true, optional = true }
[dev-dependencies]
tempfile.workspace = true
[lints]
workspace = true