mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[package]
|
|
name = "skim"
|
|
version = "0.11.8"
|
|
authors = ["Zhang Jinzhou <lotabout@gmail.com>", "Loric Andre"]
|
|
description = "Fuzzy Finder in rust!"
|
|
documentation = "https://docs.rs/skim"
|
|
homepage = "https://github.com/lotabout/skim"
|
|
repository = "https://github.com/lotabout/skim"
|
|
readme = "../README.md"
|
|
keywords = ["fuzzy", "menu", "util"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "skim"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "sk"
|
|
path = "src/bin/main.rs"
|
|
|
|
[dependencies]
|
|
nix = "0.25.0"
|
|
atty = { version = "0.2.14", optional = true }
|
|
regex = "1.6.0"
|
|
lazy_static = "1.4.0"
|
|
shlex = { version = "1.1.0", optional = true }
|
|
unicode-width = "0.1.9"
|
|
log = "0.4.22"
|
|
env_logger = { version = "0.9.0", optional = true }
|
|
time = "0.3.13"
|
|
clap = { version = "4.5.20", optional = true, features = ["cargo", "derive"] }
|
|
tuikit = "0.5.0"
|
|
vte = "0.13.0"
|
|
fuzzy-matcher = "0.3.7"
|
|
rayon = "1.5.3"
|
|
derive_builder = "0.20.2"
|
|
bitflags = "1.3.2"
|
|
timer = "0.2.0"
|
|
chrono = "0.4.22"
|
|
crossbeam = "0.8.2"
|
|
beef = "0.5.2" # compact cow
|
|
defer-drop = "1.3.0"
|
|
indexmap = "2.6.0"
|
|
|
|
[features]
|
|
default = ["cli"]
|
|
cli = ["dep:clap", "dep:atty", "dep:shlex", "dep:env_logger"]
|