-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (37 loc) · 1.19 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
[package]
name = "rinstall"
version = "0.3.0"
edition = "2021"
license = "GPL-3.0+"
authors = ["Danilo Spinella <danilo.spinella@suse.com>"]
keywords = ["packaging"]
repository = "https://github.com/danyspin97/rinstall"
homepage = "https://github.com/danyspin97/rinstall"
description = "Declarative install for programs"
categories = ["command-line-utilities"]
[dependencies]
blake3 = "1.5.1"
camino = { version = "1.1.6", features = [ "serde1" ] }
clap = { version = "4.5.4", features = ["derive", "env", "wrap_help", "help", "usage", "error-context"] }
color-eyre = { version = "0.6.3", default-features = false }
colored = "2.1.0"
json = "0.12.4"
lazy_static = "1.4.0"
libc = "0.2.153"
log = { version = "0.4.21", features = [ "std" ] }
semver = { version = "1.0.22", features = ["serde"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_yaml = "0.9.34"
xdg = "2.5.2"
walkdir = "2.5.0"
void = "1.0.2"
tar = "0.4.40"
flate2 = "1.0.28"
[build-dependencies]
clap = { version = "4.5.4", features = ["derive", "cargo", "env"] }
clap_complete = "4.5.2"
clap_mangen = "0.2.20"
# used for the imports in src/config.rs
serde = { version = "1.0.197", features = ["derive"] }
[profile.release]
lto = true