-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
38 lines (34 loc) · 961 Bytes
/
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
[package]
name = "tre-command"
version = "0.4.0"
authors = ["Daniel Duan <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Tree command, improved."
documentation = "https://github.com/dduan/tre/blob/master/README.md"
readme = "README.md"
homepage = "https://github.com/dduan/tre"
repository = "https://github.com/dduan/tre"
exclude = ["/.github/*", "alias_demo.gif", "flake.nix", "flake.lock", "scripts/*", "fixtures/*"]
keywords = ["cli", "tool", "filesystem"]
categories = ["command-line-utilities"]
[dependencies]
atty = "0.2"
clap = { version = "3.1.8", features = ["derive"] }
getopts = "0.2"
indexmap = "1.9.0"
lscolors = "0.10"
regex = "1.5.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
slab = "0.4.2"
termcolor = "1"
walkdir = "2"
[build-dependencies]
clap = { version = "3.1.8", features = ["cargo"] }
clap_complete = "3.1"
[dev-dependencies]
assert_cmd = "2.0"
[[bin]]
name = "tre"
path = "src/main.rs"