diff --git a/Cargo.lock b/Cargo.lock index 4c92a51b6..72ae2956a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2818,7 +2818,6 @@ dependencies = [ "serde_urlencoded", "serde_yaml", "sha2", - "shadow-rs", "sqlparser", "sysinfo 0.28.0", "tabled", @@ -4796,9 +4795,9 @@ dependencies = [ [[package]] name = "shadow-rs" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da90bd2a722461267a2c5d20b2c6de76dba087348e60484fd6c3fbb48b766d6" +checksum = "427f07ab5f873000cf55324882e12a88c0a7ea7025df4fc1e7e35e688877a583" dependencies = [ "const_format", "is_debug", diff --git a/crates/nu-cmd-lang/Cargo.toml b/crates/nu-cmd-lang/Cargo.toml index 88e6f4c11..8c61faad7 100644 --- a/crates/nu-cmd-lang/Cargo.toml +++ b/crates/nu-cmd-lang/Cargo.toml @@ -22,10 +22,10 @@ nu-utils = { path = "../nu-utils", version = "0.76.1" } fancy-regex = "0.11.0" itertools = "0.10.0" log = "0.4.14" -shadow-rs = { version = "0.20.0", default-features = false } +shadow-rs = { version = "0.21.0", default-features = false } [build-dependencies] -shadow-rs = { version = "0.20.0", default-features = false } +shadow-rs = { version = "0.21.0", default-features = false } [dev-dependencies] nu-test-support = { path="../nu-test-support", version = "0.76.1" } diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index b2cdb257a..5eea4ab13 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -84,7 +84,6 @@ sha2 = "0.10.0" percent-encoding = "2.2.0" reedline = { version = "0.16.0", features = ["bashisms", "sqlite"] } rusqlite = { version = "0.28.0", features = ["bundled"], optional = true } -shadow-rs = { version = "0.20.0", default-features = false } sqlparser = { version = "0.30.0", features = ["serde"], optional = true } sysinfo = "0.28.0" tabled = "0.10.0"