lotabout.skim/Cargo.toml
LoricAndre c364c5f128
chore: remove workspace (#883)
* chore: remove workspace

* chore: regen dist config

* fix: readme path

* chore: extra-artifacts as files

* chore: generate dist CI

* chore: prepare for prerelease

* chore: switch to include + generate-files

* chore: use run step for generate-files

---------

Co-authored-by: Loric André <loric.andre@noreply.me>
2026-01-13 11:34:10 +01:00

69 lines
1.8 KiB
TOML

[package]
name = "skim"
version = "1.0.0-pre1"
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
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[lib]
name = "skim"
path = "src/lib.rs"
[[bin]]
name = "sk"
path = "src/bin/main.rs"
required-features = ["cli"]
[dependencies]
beef = "0.5.2"
bitflags = "2.10.0"
chrono = "0.4.40"
clap = { version = "4.5.41" , optional = true, features = ["cargo", "derive", "unstable-markdown"] }
clap_complete = { version = "4.5.55", optional = true }
clap_mangen = { version = "0.2.29", optional = true }
defer-drop = "1.3.0"
derive_builder = "0.20.2"
env_logger = { version = "0.11.6", optional = true }
indexmap = "2.8.0"
log = "0.4.27"
nix = { version = "0.30.1", features = ["fs"] }
rand = "0.9.0"
rayon = "1.5.3"
regex = "1.6.0"
shell-quote = "0.7.2"
shlex = { version = "1.1.0", optional = true }
time = "0.3.41"
timer = "0.2.0"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "sync", "time", "tokio-macros"] }
unicode-width = "0.2.0"
vte = "0.15.0"
which = "8.0.0"
ratatui = "0.29.0"
color-eyre = "0.6.5"
ansi-to-tui = "7.0.0"
futures = "0.3.31"
tokio-util = "0.7.17"
thiserror = "2.0.17"
tempfile = "3.20.0"
crossterm = { version = "0.28.1", features = ["event-stream", "use-dev-tty", "libc"] } # TODO remove libc feature after ratatui upgrades to crossterm 0.29+
thread_local = "1.1.9"
[features]
default = ["cli"]
cli = ["dep:clap", "dep:clap_complete", "dep:shlex", "dep:env_logger", "dep:clap_mangen"]
compact_matcher = []