mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 14:40:06 +02:00
update a few nushell dependencies (#6291)
* update a few nushell dependencies * update a test
This commit is contained in:
@ -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]
|
||||
|
@ -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"
|
||||
|
@ -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")),
|
||||
}]
|
||||
}
|
||||
|
||||
|
@ -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 = []
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
Reference in New Issue
Block a user