rust-analyzer/crates/paths/Cargo.toml
Lukas Wirth 5211972743 internal: Split serde derive feature into serde_derive usage
Ideally we'd not have any dependency pull in the derive feature for faster build times, once that is the case this change would have an actual effect.
See https://github.com/matklad/macro-dep-test/blob/master/README.md for context.
2024-12-20 11:55:02 +01:00

22 lines
382 B
TOML

[package]
name = "paths"
version = "0.0.0"
repository.workspace = true
description = "Path wrappers for absolute and relative paths rust-analyzer."
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[lib]
doctest = false
[dependencies]
camino.workspace = true
[features]
serde1 = ["camino/serde1"]
[lints]
workspace = true