-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
66 lines (62 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "projectable"
authors = ["Diego Frias <styx5242@gmail.com>"]
version = "1.3.0"
description = """
projectable is a highly configurable TUI file manager, built for projects.
You can handle all your project's file-based needs from a comfortable and smooth
interface!
"""
documentation = "https://github.com/dzfrias/projectable"
homepage = "https://github.com/dzfrias/projectable"
repository = "https://github.com/dzfrias/projectable"
keywords = ["project", "tui", "terminal", "manager", "files"]
categories = ["command-line-utilities", "filesystem"]
license = "MIT"
edition = "2021"
rust-version = "1.70"
[[bench]]
name = "listing_selection"
harness = false
[[bin]]
name = "prj"
path = "src/main.rs"
[dependencies]
ansi-to-tui = "2.0.2"
anyhow = "1.0.69"
bitvec = "1.0.1"
clap = { version = "4.3.4", features = ["derive"] }
collect-all = "0.1.0"
crossbeam-channel = "0.5.7"
crossterm = "0.25"
dirs-next = "2.0.0"
duct = "0.13.6"
easy-cast = "0.5.2"
easy_switch = "0.1.0"
either = { version = "1.8.1", features = ["serde"] }
fuzzy-matcher = "0.3.7"
git2 = { version = "0.16.1", features = ["vendored-openssl"] }
globset = { version = "0.4.10", features = ["serde1"] }
human-panic = "1.1.3"
human-sort = "0.2.2"
ignore = "0.4.20"
itertools = "0.10.5"
log = { version = "0.4.17", features = ["serde"] }
nom = "7.1.3"
notify-debouncer-full = "0.2.0"
rust_search = "2.1.0"
scopeguard = "1.1.0"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.95"
smallvec = "1.10.0"
strum = { version = "0.24.1", features = ["derive"] }
toml = "0.7.3"
tui = { version = "0.19.0", features = ["serde"] }
tui-logger = "0.8.3"
tui-textarea = "0.2.0"
[dev-dependencies]
assert_fs = "1.0.10"
test-log = "0.2.11"
env_logger = "0.10.0"
serial_test = "2.0.0"
criterion = "0.3"