1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-15 13:55:26 +02:00

Fix the versions up a bit to prevent breakage ()

* Fix the versions up a bit to prevent breakage

* fix up the quickcheck test to not fail on parse error
This commit is contained in:
Jonathan Turner
2020-04-18 15:31:57 +12:00
committed by GitHub
parent 7974e09eeb
commit e5a79d09df
4 changed files with 277 additions and 217 deletions
Cargo.lock
crates
nu-cli
nu_plugin_fetch
nu_plugin_post

485
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -871,9 +871,8 @@ mod tests {
fn quickcheck_parse(data: String) -> bool { fn quickcheck_parse(data: String) -> bool {
if let Ok(lite_pipeline) = nu_parser::lite_parse(&data, 0) { if let Ok(lite_pipeline) = nu_parser::lite_parse(&data, 0) {
let context = crate::context::Context::basic().unwrap(); let context = crate::context::Context::basic().unwrap();
nu_parser::classify_pipeline(&lite_pipeline, context.registry()) let _ = nu_parser::classify_pipeline(&lite_pipeline, context.registry());
.failed true
.is_none()
} else { } else {
false false
} }

@ -15,7 +15,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.12.0" }
nu-source = { path = "../nu-source", version = "0.12.0" } nu-source = { path = "../nu-source", version = "0.12.0" }
nu-errors = { path = "../nu-errors", version = "0.12.0" } nu-errors = { path = "../nu-errors", version = "0.12.0" }
futures = { version = "0.3", features = ["compat", "io-compat"] } futures = { version = "0.3", features = ["compat", "io-compat"] }
surf = "2.0.0-alpha.0" surf = "1.0.3"
url = "2.1.1" url = "2.1.1"
[build-dependencies] [build-dependencies]

@ -15,7 +15,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.12.0" }
nu-source = { path = "../nu-source", version = "0.12.0" } nu-source = { path = "../nu-source", version = "0.12.0" }
nu-errors = { path = "../nu-errors", version = "0.12.0" } nu-errors = { path = "../nu-errors", version = "0.12.0" }
futures = { version = "0.3", features = ["compat", "io-compat"] } futures = { version = "0.3", features = ["compat", "io-compat"] }
surf = "2.0.0-alpha.0" surf = "1.0.3"
url = "2.1.1" url = "2.1.1"
serde_json = "1.0.51" serde_json = "1.0.51"
base64 = "0.12.0" base64 = "0.12.0"