Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
113 changes: 108 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,12 @@ wait-timeout = "0.2"
# API, and earlier 4.x compile against an incompatible ratatui (`-Z
# minimal-versions` otherwise resolves skim 4.6 against ratatui 0.30.1 and fails
# to build).
skim = { version = "5.0", optional = true, default-features = false, features = ["frizbee"] }
# Held at 5.1.0: skim 5.3.1 (bumped in #3526) regresses the picker on the legacy
# Windows console — every picker PTY test fails with "Keyboard progressive
# enhancement not implemented for the legacy Windows API", reddening
# `test (windows)`. 5.1.0 is the last Windows-green release; unpin once the
# keyboard-enhancement path is guarded for the legacy console.
skim = { version = "=5.1.0", optional = true, default-features = false, features = ["frizbee"] }
# Pinned to skim's ratatui line so the `Line` type `display()` returns is the
# same one skim consumes. `ansi-to-tui` parses ANSI SGR codes into ratatui spans.
# Floor is 0.30.1: 0.30.0 is a broken release (its `#[instability::unstable]`
Expand Down
Loading