mirror of
https://github.com/nushell/nushell.git
synced 2025-02-17 19:11:26 +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 }
|
rstest = { version = "0.18", default-features = false }
|
||||||
rusqlite = "0.31"
|
rusqlite = "0.31"
|
||||||
rust-embed = "8.5.0"
|
rust-embed = "8.5.0"
|
||||||
serde = { version = "1.0", default-features = false }
|
serde = { version = "1.0" }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_yaml = "0.9"
|
serde_yaml = "0.9"
|
||||||
|
@ -34,7 +34,7 @@ lru = { workspace = true }
|
|||||||
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
||||||
num-format = { workspace = true }
|
num-format = { workspace = true }
|
||||||
rmp-serde = { workspace = true, optional = true }
|
rmp-serde = { workspace = true, optional = true }
|
||||||
serde = { workspace = true, default-features = false }
|
serde = { workspace = true }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
typetag = "0.2"
|
typetag = "0.2"
|
||||||
os_pipe = { workspace = true, features = ["io_safety"] }
|
os_pipe = { workspace = true, features = ["io_safety"] }
|
||||||
|
@ -12,8 +12,8 @@ bench = false
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
nu-plugin = { path = "../nu-plugin", version = "0.97.2" }
|
nu-plugin = { path = "../nu-plugin", version = "0.97.2" }
|
||||||
nu-protocol = { path = "../nu-protocol", version = "0.97.2", features = ["plugin"] }
|
nu-protocol = { path = "../nu-protocol", version = "0.97.2", features = ["plugin"] }
|
||||||
serde = { workspace = true, default-features = false }
|
serde = { workspace = true }
|
||||||
typetag = "0.2"
|
typetag = "0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[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