Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/paths/Cargo.toml')
| -rw-r--r-- | crates/paths/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/paths/Cargo.toml b/crates/paths/Cargo.toml index 3d8752b5a8..59a4ad9a25 100644 --- a/crates/paths/Cargo.toml +++ b/crates/paths/Cargo.toml @@ -12,10 +12,14 @@ rust-version.workspace = true doctest = false [dependencies] +camino.workspace = true # Adding this dep sadly puts a lot of rust-analyzer crates after the # serde-derive crate. Even though we don't activate the derive feature here, # someone else in the crate graph certainly does! # serde.workspace = true +[features] +serde1 = ["camino/serde1"] + [lints] -workspace = true
\ No newline at end of file +workspace = true |