mirror of
https://github.com/nushell/nushell.git
synced 2025-04-26 14:18:19 +02:00
Fix the versions up a bit to prevent breakage (#1602)
* 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:
parent
7974e09eeb
commit
e5a79d09df
485
Cargo.lock
generated
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"
|
||||||
|
Loading…
Reference in New Issue
Block a user