lotabout.skim/Cargo.toml
dependabot[bot] e7183acc70
chore(deps): bump clap from 4.5.58 to 4.5.59 (#977)
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.58 to 4.5.59.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.58...clap_complete-v4.5.59)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.59
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-17 03:14:28 +01:00

88 lines
2.5 KiB
TOML

[package]
name = "skim"
version = "3.2.0"
authors = ["Loric ANDRE", "Zhang Jinzhou <lotabout@gmail.com>"]
description = "Fuzzy Finder in rust!"
documentation = "https://docs.rs/skim"
homepage = "https://github.com/skim-rs/skim"
repository = "https://github.com/skim-rs/skim"
readme = "README.md"
keywords = ["fuzzy", "menu", "util"]
license = "MIT"
edition = "2024"
[profile.release]
lto = true
codegen-units = 1
opt-level = 2
strip = true
# Kept for compatibility
[profile.dist]
inherits = "release"
[lib]
name = "skim"
path = "src/lib.rs"
[[bin]]
name = "sk"
path = "src/bin/main.rs"
required-features = ["cli"]
[dependencies]
assert_enum_variants = "0.1.2"
beef = "0.5.2"
clap = { version = "4.5.59" , optional = true, features = ["cargo", "derive", "unstable-markdown"] }
clap_complete = { version = "4.5.55", optional = true }
clap_mangen = { version = "0.2.29", optional = true }
derive_builder = "0.20.2"
env_logger = { version = "0.11.6", optional = true, features = ["humantime"] }
indexmap = "2.8.0"
log = "0.4.27"
nix = { version = "0.31.1", features = ["fs", "poll"] }
rand = "0.10.0"
rayon = "1.5.3"
regex = "1.12.3"
shell-quote = "0.7.2"
shlex = { version = "1.1.0", optional = true }
tokio = { version = "1.48.0", features = ["macros", "net", "rt-multi-thread", "sync", "time", "tokio-macros"] }
which = "8.0.0"
ratatui = "0.30.0"
color-eyre = "0.6.5"
ansi-to-tui = "8.0.1"
futures = "0.3.32"
tokio-util = "0.7.17"
thiserror = "2.0.17"
tempfile = "3.25.0"
crossterm = { version = ">=0.0.0", features = ["event-stream", "use-dev-tty", "libc"] }
thread_local = "1.1.9"
clap_complete_nushell = "4.5.10"
interprocess = { version = "2.3.1", features = ["tokio"] }
serde = { version = "1.0.228", features = ["derive"] }
ron = "0.12.0"
frizbee = { version = "0.7.0", optional = true }
roff = "1.0.0"
unicode-display-width = "0.3.0"
unicode-normalization = "0.1.25"
derive_more = { version = "2.1.1", features = ["debug", "eq"] }
portable-pty = "0.9.0"
tui-term = "0.3.1"
kanal = "0.1.1"
[features]
default = ["cli", "nightly-frizbee"]
# Everyting needed to use skim as a cli (argument parsing, shell integrations...)
cli = ["dep:clap", "dep:clap_complete", "dep:shlex", "dep:env_logger", "dep:clap_mangen"]
# The frizbee matcher, which requires cargo nightly
nightly-frizbee = ["dep:frizbee"]
# Enable test utilities (e.g., Tui::new_for_test)
test-utils = []
[dev-dependencies]
insta = "1.43"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(feature, values("test-utils"))', 'cfg(coverage, coverage_nightly)'] }