diff --git a/Cargo.lock b/Cargo.lock index d42fbd1091..67a6fb1022 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -739,12 +739,6 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" -[[package]] -name = "cfg_aliases" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" - [[package]] name = "cfg_aliases" version = "0.2.1" @@ -3121,18 +3115,6 @@ dependencies = [ "pin-utils", ] -[[package]] -name = "nix" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" -dependencies = [ - "bitflags 2.9.4", - "cfg-if 1.0.3", - "cfg_aliases 0.1.1", - "libc", -] - [[package]] name = "nix" version = "0.30.1" @@ -3141,7 +3123,7 @@ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ "bitflags 2.9.4", "cfg-if 1.0.3", - "cfg_aliases 0.2.1", + "cfg_aliases", "libc", ] @@ -4006,7 +3988,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" dependencies = [ "bytes", - "cfg_aliases 0.2.1", + "cfg_aliases", "pin-project-lite", "quinn-proto", "quinn-udp", @@ -4046,7 +4028,7 @@ version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ - "cfg_aliases 0.2.1", + "cfg_aliases", "libc", "once_cell", "socket2", @@ -4569,9 +4551,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] name = "rustyline" -version = "14.0.0" +version = "17.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63" +checksum = "e902948a25149d50edc1a8e0141aad50f54e22ba83ff988cf8f7c9ef07f50564" dependencies = [ "bitflags 2.9.4", "cfg-if 1.0.3", @@ -4581,12 +4563,12 @@ dependencies = [ "libc", "log", "memchr", - "nix 0.28.0", + "nix 0.30.1", "radix_trie", "unicode-segmentation", - "unicode-width 0.1.14", + "unicode-width", "utf8parse", - "windows-sys 0.52.0", + "windows-sys 0.60.2", ] [[package]] @@ -5141,7 +5123,7 @@ dependencies = [ "toml 0.8.23", "tracing", "tracing-subscriber", - "unicode-width 0.2.1", + "unicode-width", "url", "vcard4", "zxcvbn", @@ -6386,7 +6368,7 @@ dependencies = [ "smawk", "terminal_size", "unicode-linebreak", - "unicode-width 0.2.1", + "unicode-width", ] [[package]] @@ -6955,12 +6937,6 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" -[[package]] -name = "unicode-width" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" - [[package]] name = "unicode-width" version = "0.2.1" diff --git a/crates/sos/Cargo.toml b/crates/sos/Cargo.toml index 0eb4e44542..c4a7cad46a 100644 --- a/crates/sos/Cargo.toml +++ b/crates/sos/Cargo.toml @@ -71,6 +71,6 @@ kdam = { version = "0.6", features = ["rich", "spinner"] } crossterm = "0.28" ctrlc = "3" tokio = { workspace = true, features = ["rt", "rt-multi-thread", "time", "sync"] } -rustyline = "14" +rustyline = "17" rustyline-derive = "0.11"