update a few nushell dependencies (#6291)

* update a few nushell dependencies

* update a test
This commit is contained in:
Darren Schroeder
2022-08-10 14:56:15 -05:00
committed by GitHub
parent ce26ef97e4
commit 58094987ff
7 changed files with 27 additions and 28 deletions

View File

@ -30,7 +30,7 @@ lazy_static = "1.4.0"
log = "0.4"
miette = { version = "5.1.0", features = ["fancy"] }
strip-ansi-escapes = "0.1.1"
sysinfo = "0.24.1"
sysinfo = "0.25.2"
thiserror = "1.0.31"
[features]

View File

@ -71,12 +71,12 @@ rust-embed = "6.3.0"
serde = { version="1.0.123", features=["derive"] }
serde_ini = "0.2.0"
serde_urlencoded = "0.7.0"
serde_yaml = "0.8.16"
serde_yaml = "0.9.4"
sha2 = "0.10.0"
# Disable default features b/c the default features build Git (very slow to compile)
shadow-rs = { version = "0.16.1", default-features = false }
strip-ansi-escapes = "0.1.1"
sysinfo = "0.24.6"
sysinfo = "0.25.2"
terminal_size = "0.2.1"
thiserror = "1.0.31"
titlecase = "2.0.0"

View File

@ -24,7 +24,7 @@ impl Command for ToYaml {
vec![Example {
description: "Outputs an YAML string representing the contents of this table",
example: r#"[[foo bar]; ["1" "2"]] | to yaml"#,
result: Some(Value::test_string("---\n- foo: \"1\"\n bar: \"2\"\n")),
result: Some(Value::test_string("- foo: '1'\n bar: '2'\n")),
}]
}

View File

@ -13,7 +13,7 @@ nu-glob = { path = "../nu-glob", version = "0.66.4" }
nu-utils = { path = "../nu-utils", version = "0.66.4" }
chrono = { version="0.4.20", features=["serde"] }
sysinfo = "0.24.6"
sysinfo = "0.25.2"
[features]
plugin = []

View File

@ -16,7 +16,7 @@ path = "src/main.rs"
libc = "0.2"
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
procfs = "0.13.0"
procfs = "0.14.0"
[target.'cfg(target_os = "macos")'.dependencies]
libproc = "0.12.0"

View File

@ -14,4 +14,4 @@ nu-plugin = { path="../nu-plugin", version = "0.66.4" }
nu-protocol = { path="../nu-protocol", version = "0.66.4" }
nu-engine = { path="../nu-engine", version = "0.66.4" }
git2 = "0.14.2"
git2 = "0.15.0"