Reverts nushell/nushell#10061

The latest serde (1.0.184) reverts the binary requirement.
This commit is contained in:
JT
2023-08-22 05:04:34 +12:00
committed by GitHub
parent 0786ddddbd
commit 5378727049
9 changed files with 9 additions and 18 deletions

View File

@ -12,6 +12,5 @@ bench = false
[dependencies]
nu-plugin = { path = "../nu-plugin", version = "0.83.2" }
nu-protocol = { path = "../nu-protocol", version = "0.83.2", features = ["plugin"] }
# Due to https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0, < 1.0.172", default-features = false }
serde = { version = "1.0", default-features = false }
typetag = "0.2"