diff --git a/Cargo.lock b/Cargo.lock index c7df4482..70c38123 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6100,17 +6100,6 @@ dependencies = [ "smallvec", ] -[[package]] -name = "nix" -version = "0.24.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" -dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc", -] - [[package]] name = "nix" version = "0.25.1" @@ -9083,14 +9072,15 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" [[package]] name = "skim" -version = "0.16.2" +version = "0.20.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e29ac781a242d0cc04f1bbf5cc3522ef2205b778fdc8c2a6f293eef34467968" +checksum = "60e10a7f70e8e532d8780d88210055e15e12d0df431bf5dab7bb1ed22b6fb4f2" dependencies = [ "beef", "bitflags 1.3.2", "chrono", "clap", + "clap_complete", "crossbeam", "defer-drop", "derive_builder", @@ -9104,14 +9094,36 @@ dependencies = [ "regex", "shell-quote", "shlex", + "skim-common", + "skim-tuikit", "time", "timer", - "tuikit", "unicode-width 0.2.2", "vte 0.15.0", "which 7.0.3", ] +[[package]] +name = "skim-common" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8312ae7ca1a5883e68042b9c6bce05bfc12f06b814ecfda06c34abfb6c88175" + +[[package]] +name = "skim-tuikit" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb54242783b4234134359fea4d11f26879c49ace6c00c5d402fd04a5ab2ad7bd" +dependencies = [ + "bitflags 1.3.2", + "lazy_static", + "log", + "nix 0.29.0", + "skim-common", + "term", + "unicode-width 0.2.2", +] + [[package]] name = "slab" version = "0.4.11" @@ -10255,20 +10267,6 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" -[[package]] -name = "tuikit" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e19c6ab038babee3d50c8c12ff8b910bdb2196f62278776422f50390d8e53d8" -dependencies = [ - "bitflags 1.3.2", - "lazy_static", - "log", - "nix 0.24.3", - "term", - "unicode-width 0.1.14", -] - [[package]] name = "tungstenite" version = "0.26.2" diff --git a/crates/chat-cli/Cargo.toml b/crates/chat-cli/Cargo.toml index cddbdc41..94041cef 100644 --- a/crates/chat-cli/Cargo.toml +++ b/crates/chat-cli/Cargo.toml @@ -169,7 +169,7 @@ nix = { version = "0.29.0", features = [ "term", "user", ] } -skim = { version = "0.16.2" } +skim = { version = "0.20.5" } [target.'cfg(target_os = "macos")'.dependencies] objc2 = "0.5.2"