-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (32 loc) · 1.13 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
[package]
name = "sddm2rpm"
version = "1.2.0"
edition = "2018"
description = "a simple cli tool to genrate rpms for sddm form tar.gz"
license = "GPL-3.0-or-later"
homepage = "https://github.com/Lunarequest/sddm2rpm/blob/mistress/README.md"
documentation = "https://github.com/Lunarequest/sddm2rpm/blob/mistress/README.md"
repository = "https://github.com/Lunarequest/sddm2rpm/"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = [".vscode/*",".pre-commit-config.yaml"]
[dependencies]
bzip2 = "0.4.4"
clap = "4.1.8"
flate2 = "1.0.25"
handlebars = "4.3.6"
rpm = { version = "0.9.0", features = ["async-futures", "with-file-async-tokio"] }
serde = { version = "1.0.152", features = ["serde_derive"] }
sys-info = "0.9.1"
tar = "0.4.38"
tokio = { version = "1.25.0", features = ["rt-multi-thread", "macros"] }
walkdir = "2.3.2"
xz2 = "0.1.7"
zip = "0.6.4"
zstd = { version = "0.12.3", default-features = false }
[package.metadata.rpm]
package = "sddm2rpm"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
sddm2rpm = { path = "/usr/bin/sddm2rpm" }