-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 767 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
[package]
name = "appimageupdate"
version = "0.3.2"
edition = "2024"
description = "Fast, bandwidth-efficient AppImage updater using zsync"
readme = "README.md"
repository = "https://github.com/pkgforge-dev/appimageupdate"
license = "MIT"
keywords = ["appimage", "zsync"]
rust-version = "1.93.1"
[dependencies]
blake3 = "1.8.5"
clap = { version = "4.6.0", features = ["derive", "env"] }
dirs = "6.0.0"
releasekit = { version = "0.1.0", features = ["ureq"] }
hex = "0.4.3"
indicatif = "0.18.4"
rayon = "1.11.0"
serde = { version = "1.0.228", features = ["derive"] }
sha1 = "0.10.6"
shellexpand = "3.1.2"
thiserror = "2.0.18"
toml = "1.0.7"
ureq = "3.3.0"
zsync-rs = "0.1.2"
[profile.release]
opt-level = "z"
strip = true
lto = true
panic = "abort"
codegen-units = 1