Fixup serde feature selection in nu-protocol (#13793)

Discovered by @cptpiepmatz that #13749 broke the standalone check for
`nu-protocol`

Explicit use of the feature as workspace root also disables all features
for `serde`. Alternatively we could reconsider this there.
This commit is contained in:
Stefan Holderbach
2024-09-06 00:57:36 +02:00
committed by GitHub
parent 4d2d553cca
commit 92091599ff
3 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@ bench = false
[dependencies]
nu-plugin = { path = "../nu-plugin", version = "0.97.2" }
nu-protocol = { path = "../nu-protocol", version = "0.97.2", features = ["plugin"] }
serde = { workspace = true, default-features = false }
serde = { workspace = true }
typetag = "0.2"
[dev-dependencies]
nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.97.2" }
nu-plugin-test-support = { path = "../nu-plugin-test-support", version = "0.97.2" }