diff --git a/Cargo.lock b/Cargo.lock index 4564ffd90f..fa1661688c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,7 +165,7 @@ checksum = "15ae0428d69ab31d7b2adad22a752d6f11fef2e901d2262d0cad4f5cb08b7093" dependencies = [ "ahash 0.8.3", "arrow-format", - "base64 0.21.2", + "base64", "bytemuck", "chrono", "dyn-clone", @@ -283,12 +283,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" -[[package]] -name = "base64" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - [[package]] name = "base64" version = "0.21.2" @@ -2825,7 +2819,7 @@ dependencies = [ "Inflector", "alphanumeric-sort", "atty", - "base64 0.21.2", + "base64", "bracoxide", "byteorder", "bytesize", @@ -4751,9 +4745,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.96" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" +checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" dependencies = [ "itoa", "ryu", @@ -5629,11 +5623,11 @@ checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6" [[package]] name = "ureq" -version = "2.6.2" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d" +checksum = "0b11c96ac7ee530603dcdf68ed1557050f374ce55a5a07193ebf8cbc9f8927e9" dependencies = [ - "base64 0.13.1", + "base64", "encoding_rs", "flate2", "log", diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index a13ed3be69..881b96b11c 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -91,7 +91,7 @@ terminal_size = "0.2" titlecase = "2.0" toml = "0.7" unicode-segmentation = "1.10" -ureq = { version = "2.6", default-features = false, features = ["charset", "gzip", "json", "native-tls"] } +ureq = { version = "2.7", default-features = false, features = ["charset", "gzip", "json", "native-tls"] } url = "2.2" uuid = { version = "1.3", features = ["v4"] } wax = { version = "0.5" }