-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
32 lines (31 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "fzf-make"
version = "0.49.0"
edition = "2021"
authors = ["kyu08"]
description = "A command line tool that executes commands using fuzzy finder with preview window for make, pnpm."
license = "MIT"
repository = "https://github.com/kyu08/fzf-make"
exclude = ["/.git", "/.github", ".gitignore", "Makefile", "/static", "/makefiles", "/doc", "_typos.toml", "renovate.json", "test_data"]
[dependencies]
regex = "1.10.4"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
colored = "2.1.0"
crossterm = "0.28.1"
fuzzy-matcher = "0.3.7"
vt100 = "0.15.2"
portable-pty = "0.8.1"
tui-term = "0.2.0"
anyhow = "1.0.82"
ratatui = "0.29.0"
tui-textarea = "0.7.0"
toml = "0.8.19"
serde = {version = "1.0.204", features = ["derive"]}
simple-home-dir = "0.4.0"
pretty_assertions = "1.4.1"
json-spanned-value = "0.2.2"
codespan = "0.11.1"
serde_json = "1.0.133"
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
update-informer = { version = "1.1", default-features = true, features = ["github"] }
futures = "0.3"