[package]
edition = "2024"
name = "skim"
version = "1.7.2"
authors = [
"Loric ANDRE",
"Zhang Jinzhou <lotabout@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fuzzy Finder in rust!"
homepage = "https://github.com/skim-rs/skim"
documentation = "https://docs.rs/skim"
readme = "README.md"
keywords = [
"fuzzy",
"menu",
"util",
]
license = "MIT"
repository = "https://github.com/skim-rs/skim"
[features]
cli = [
"dep:clap",
"dep:clap_complete",
"dep:shlex",
"dep:env_logger",
"dep:clap_mangen",
]
default = [
"cli",
"nightly-frizbee",
]
nightly-frizbee = ["dep:frizbee"]
test-utils = []
[lib]
name = "skim"
path = "src/lib.rs"
[[bin]]
name = "sk"
path = "src/bin/main.rs"
required-features = ["cli"]
[[example]]
name = "ansi"
path = "examples/ansi.rs"
[[example]]
name = "cmd_collector"
path = "examples/cmd_collector.rs"
[[example]]
name = "custom_item"
path = "examples/custom_item.rs"
[[example]]
name = "custom_keybinding_actions"
path = "examples/custom_keybinding_actions.rs"
[[example]]
name = "downcast"
path = "examples/downcast.rs"
[[example]]
name = "fuzzy_matcher_fz"
path = "examples/fuzzy_matcher_fz.rs"
[[example]]
name = "nth"
path = "examples/nth.rs"
[[example]]
name = "option_builder"
path = "examples/option_builder.rs"
[[example]]
name = "preview_callback"
path = "examples/preview_callback.rs"
[[example]]
name = "receiver_multi"
path = "examples/receiver_multi.rs"
[[example]]
name = "sample"
path = "examples/sample.rs"
[[example]]
name = "selector"
path = "examples/selector.rs"
[[test]]
name = "ansi"
path = "tests/ansi.rs"
[[test]]
name = "binds"
path = "tests/binds.rs"
[[test]]
name = "case"
path = "tests/case.rs"
[[test]]
name = "defaults"
path = "tests/defaults.rs"
[[test]]
name = "highlighting"
path = "tests/highlighting.rs"
[[test]]
name = "history"
path = "tests/history.rs"
[[test]]
name = "issues"
path = "tests/issues.rs"
[[test]]
name = "keys"
path = "tests/keys.rs"
[[test]]
name = "keys_interactive"
path = "tests/keys_interactive.rs"
[[test]]
name = "listen"
path = "tests/listen.rs"
[[test]]
name = "options"
path = "tests/options.rs"
[[test]]
name = "preview"
path = "tests/preview.rs"
[[test]]
name = "split_match"
path = "tests/split_match.rs"
[[test]]
name = "tiebreak"
path = "tests/tiebreak.rs"
[[test]]
name = "tmux"
path = "tests/tmux.rs"
[[test]]
name = "unix"
path = "tests/unix.rs"
[dependencies.ansi-to-tui]
version = "8.0.1"
[dependencies.assert_enum_variants]
version = "0.1.2"
[dependencies.beef]
version = "0.5.2"
[dependencies.clap]
version = "4.5.41"
features = [
"cargo",
"derive",
"unstable-markdown",
]
optional = true
[dependencies.clap_complete]
version = "4.5.55"
optional = true
[dependencies.clap_complete_nushell]
version = "4.5.10"
[dependencies.clap_mangen]
version = "0.2.29"
optional = true
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.crossterm]
version = ">=0.0.0"
features = [
"event-stream",
"use-dev-tty",
"libc",
]
[dependencies.defer-drop]
version = "1.3.0"
[dependencies.derive_builder]
version = "0.20.2"
[dependencies.env_logger]
version = "0.11.6"
optional = true
[dependencies.frizbee]
version = "0.6.0"
optional = true
[dependencies.futures]
version = "0.3.31"
[dependencies.indexmap]
version = "2.8.0"
[dependencies.interprocess]
version = "2.2.3"
features = ["tokio"]
[dependencies.log]
version = "0.4.27"
[dependencies.nix]
version = "0.30.1"
features = ["fs"]
[dependencies.rand]
version = "0.9.0"
[dependencies.ratatui]
version = "0.30.0"
[dependencies.rayon]
version = "1.5.3"
[dependencies.regex]
version = "1.6.0"
[dependencies.roff]
version = "0.2.2"
[dependencies.ron]
version = "0.12.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.shell-quote]
version = "0.7.2"
[dependencies.shlex]
version = "1.1.0"
optional = true
[dependencies.tempfile]
version = "3.20.0"
[dependencies.termion]
version = "4.0.6"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.thread_local]
version = "1.1.9"
[dependencies.tokio]
version = "1.48.0"
features = [
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
"tokio-macros",
]
[dependencies.tokio-util]
version = "0.7.17"
[dependencies.unicode-display-width]
version = "0.3.0"
[dependencies.vte]
version = "0.15.0"
[dependencies.which]
version = "8.0.0"
[dev-dependencies.insta]
version = "1.43"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("test-utils"))']
[profile.dist]
inherits = "release"
[profile.release]
opt-level = 2
lto = true
codegen-units = 1
strip = true