-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.03 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
[package]
name = "permer"
version = "0.1.1"
edition = "2021"
authors = ["ByteSudoer"]
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/ByteSudoer/Permer"
description = "Permer is a CLI tool written in Rust that provides information about files present in your file system."
categories = ["command-line-utilities", "filesystem"]
[[bin]]
name = "permer"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "4.3.5"
users = "0.11.0"
chrono = "0.4.26"
cli-table = "0.4.7"
colored = "2.0.4"
[package.metadata.deb]
maintainer = "ByteSudoer"
copyright = "2023, ByteSudoer"
license-file = ["LICENSE"]
extended-description = "Permer is a CLI tool written in Rust that provides information about files present in your file system."
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
[
"target/release/permer",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/permer/README",
"644",
],
]