-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 885 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
[package]
name = "folder-stats-tui"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "Terminal User Interface for viewing folder statistics"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
bytesize = "1.3"
clap = { version = "4.5", features = ["derive"] }
crossterm = "0.28"
flexi_logger = "0.29"
ignore = "0.4"
log = "0.4"
ratatui = "0.29"
[package.metadata.deb]
maintainer = "Darrell Roberts"
copyright = "2024, Darrell Roberts"
license-file = "LICENSE"
extended-description = """\
folder-stats-tui is a terminal-based user interface application designed to scan and display statistics of directories."""
section = "utility"
priority = "optional"
assets = [
["target/release/folder-stats-tui", "usr/bin/", "755"],
["assets/folder-stats-tui.1.gz", "usr/share/man/man1/", "644"]
]