We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac5911e commit e016597Copy full SHA for e016597
1 file changed
Cargo.toml
@@ -2,6 +2,12 @@
2
name = "appimageupdate"
3
version = "0.1.0"
4
edition = "2024"
5
+description = "Fast, bandwidth-efficient AppImage updater using zsync"
6
+readme = "README.md"
7
+repository = "https://github.com/pkgforge-dev/appimageupdate"
8
+license = "MIT"
9
+keywords = ["appimage", "zsync"]
10
+rust-version = "1.88"
11
12
[dependencies]
13
clap = { version = "4.6.0", features = ["derive", "env"] }
@@ -12,3 +18,10 @@ sha1 = "0.10.6"
18
thiserror = "2.0.18"
19
ureq = "3.3.0"
14
20
zsync-rs = { git = "https://github.com/QaidVoid/zsync-rs.git", version = "0.1.0" }
21
+
22
+[profile.release]
23
+opt-level = "z"
24
+strip = true
25
+lto = true
26
+panic = "abort"
27
+codegen-units = 1
0 commit comments