mirror of
https://github.com/nushell/nushell.git
synced 2024-11-24 17:34:00 +01:00
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:
parent
4d2d553cca
commit
92091599ff
@ -146,7 +146,7 @@ roxmltree = "0.19"
|
||||
rstest = { version = "0.18", default-features = false }
|
||||
rusqlite = "0.31"
|
||||
rust-embed = "8.5.0"
|
||||
serde = { version = "1.0", default-features = false }
|
||||
serde = { version = "1.0" }
|
||||
serde_json = "1.0"
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_yaml = "0.9"
|
||||
|
@ -34,7 +34,7 @@ lru = { workspace = true }
|
||||
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
||||
num-format = { workspace = true }
|
||||
rmp-serde = { workspace = true, optional = true }
|
||||
serde = { workspace = true, default-features = false }
|
||||
serde = { workspace = true }
|
||||
thiserror = "1.0"
|
||||
typetag = "0.2"
|
||||
os_pipe = { workspace = true, features = ["io_safety"] }
|
||||
|
@ -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" }
|
||||
|
Loading…
Reference in New Issue
Block a user