forked from solidiquis/erdtree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.11 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
[package]
name = "erdtree"
version = "1.7.1"
edition = "2021"
authors = ["Benjamin Nguyen <[email protected]>"]
description = """
erdtree (et) is a multi-threaded file-tree visualization and disk usage
analysis tool that respects gitignore and hidden file rules offering a modern
alternative to tree and du.
"""
documentation = "https://github.com/solidiquis/erdtree"
homepage = "https://github.com/solidiquis/erdtree"
repository = "https://github.com/solidiquis/erdtree"
keywords = ["tree", "commandline", "command-line", "du", "disk-usage"]
exclude = ["assets/*"]
readme = "README.md"
license = "MIT"
rust-version = "1.67.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "et"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12.1"
clap = { version = "4.1.1", features = ["derive"] }
clap_complete = "4.1.1"
filesize = "0.2.0"
ignore = "0.4.2"
indextree = "4.6.0"
lscolors = { version = "0.13.0", features = ["ansi_term"] }
once_cell = "1.17.0"
thiserror = "1.0.40"
[dev-dependencies]
indoc = "2.0.0"
strip-ansi-escapes = "0.1.1"
tempfile = "3.4.0"