-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1.15 KB
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
[package]
name = "EnderCliTools"
version = "1.2.0"
edition = "2024"
authors = ["Endkind <endkind.ender@gmail.com>"]
license = "MIT"
description = "A collection of CLI utilities that enhance and streamline everyday terminal workflows."
repository = "https://github.com/Endkind/EnderCliTools"
[dependencies]
clap = { version = "4.5.46", features = ["derive"] }
comfy-table = { version = "7.1.4" }
anyhow = { version = "1.0.99" }
atty = { version = "0.2.14" }
serde = { version = "1.0.219", features = ["derive"] }
toml = { version = "0.9.5" }
directories = { version = "6.0.0" }
[package.metadata.wix]
eula = false
[package.metadata.deb]
maintainer = "Endkind <endkind.ender@gmail.com>"
copyright = "2025, Endkind"
license-file = ["LICENSE", "0"]
extended-description = "EnderCliTools is a lightweight collection of CLI utilities that make working in the terminal faster and more convenient."
section = "utils"
priority = "optional"
depends = "$auto"
assets = [
["target/release/EnderCliTools", "/usr/bin/enderclitools", "755"],
["debian-bin/ect", "/usr/bin/ect", "755"],
["debian-bin/dps", "/usr/bin/dps", "755"],
["debian-bin/dcps", "/usr/bin/dcps", "755"],
]