-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 887 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 887 Bytes
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
[package]
name = "apphatch"
version = "0.1.2"
edition = "2024"
authors = ["CCXLV <mereba2627@gmail.com>"]
description = "AppHatch - Application management tool"
license = "MIT"
repository = "https://github.com/ccxlv/apphatch"
homepage = "https://github.com/ccxlv/apphatch"
[dependencies]
clap = { version = "4", features = ["derive"] }
ini = "1.3.0"
uuid = { version = "1.18.1", features = ["v4"] }
[package.metadata.deb]
maintainer = "CCXLV <mereba2627@gmail.com>"
copyright = "2024"
license-file = ["LICENSE"]
depends = "$auto"
section = "utils"
priority = "optional"
assets = [
["target/release/apphatch", "usr/bin/", "755"],
]
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/apphatch", dest = "/usr/bin/apphatch" },
]
[package.metadata.aur]
maintainer = "CCXLV <mereba2627@gmail.com>"
license = "MIT"
depends = []
make-depends = []
opt-depends = []