-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (45 loc) · 1.23 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
[package]
authors = ["Joseph Lai <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "filesystem", "visualization"]
description = "The customizable next gen tree command with Git integration and TUI"
documentation = "https://josephlai241.github.io/nomad/"
edition = "2021"
homepage = "https://github.com/JosephLai241/nomad"
keywords = ["command-line-tool", "developer-tool", "git", "regex", "tree"]
license = "MIT"
name = "nomad-tree"
readme = "README.md"
repository = "https://github.com/JosephLai241/nomad"
version = "1.0.0"
[[bin]]
name = "nd"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.53"
bat = "0.18.3"
chrono = "0.4.19"
crossterm = "0.23.0"
directories = "4.0.1"
git2 = "0.13.25"
ignore = "0.4.18"
indicatif = "0.16.2"
itertools = "0.10.3"
lazy_static = "1.4.0"
ptree = "0.4.0"
rand = "0.8.5"
regex = "1.5.4"
self_update = "0.28.0"
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.73"
structopt = "0.3.25"
syntect = "4.6.0"
term-table = "1.3.2"
thiserror = "1.0.30"
tokei = "12.1.2"
toml = "0.5.8"
tui = { version = "0.17.0", default-features = false, features = ["crossterm"] }
unix_mode = "0.1.3"
users = "0.11.0"
[dev-dependencies]
assert_cmd = "2.0.2"