-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Cargo.toml
36 lines (32 loc) · 1015 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
[package]
name = "erdtree"
version = "1.1.0"
edition = "2021"
authors = ["Benjamin Nguyen <[email protected]>"]
description = """
erdtree (et) is vibrant multi-threaded filetree visualizer and disk usage analyzer
that respects .gitignore and hidden file rules by default.
"""
documentation = "https://github.com/solidiquis/erdtree"
homepage = "https://github.com/solidiquis/erdtree"
repository = "https://github.com/solidiquis/erdtree"
keywords = ["tree", "commandline", "command-line", "du"]
exclude = ["assets/*"]
readme = "README.md"
license = "MIT"
rust-version = "1.65"
# 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"] }
crossbeam = "0.8.2"
ignore = "0.4.2"
lscolors = { version = "0.13.0", features = ["ansi_term"] }
once_cell = "1.17.0"
[dev-dependencies]
indoc = "2.0.0"
strip-ansi-escapes = "0.1.1"
tempdir = "0.3"