diff --git a/Cargo.lock b/Cargo.lock index 1110a18f6f..0148cf6ef7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6057,17 +6057,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" @@ -9067,14 +9056,15 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" [[package]] name = "skim" -version = "0.16.2" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e29ac781a242d0cc04f1bbf5cc3522ef2205b778fdc8c2a6f293eef34467968" +checksum = "19a285c48e203135e5d58eb0fc632e3303c127f2056c8e50c8a11c504b7132b4" dependencies = [ "beef", "bitflags 1.3.2", "chrono", "clap", + "clap_complete", "crossbeam", "defer-drop", "derive_builder", @@ -9088,14 +9078,36 @@ dependencies = [ "regex", "shell-quote", "shlex", + "skim-common", + "skim-tuikit", "time", "timer", - "tuikit", "unicode-width 0.2.1", "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.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18fa16dc8ef0aa72471eb80bf1d43b62e841abf1cd2429216c44cdfd886545f0" +dependencies = [ + "bitflags 1.3.2", + "lazy_static", + "log", + "nix 0.29.0", + "skim-common", + "term", + "unicode-width 0.2.1", +] + [[package]] name = "slab" version = "0.4.10" @@ -10201,20 +10213,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 d5b8886733..d8464ffb80 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.2" } [target.'cfg(target_os = "macos")'.dependencies] objc2 = "0.5.2"