1
0
Fork 0
mirror of https://github.com/TransparentLC/opencl_vanity_gpg.git synced 2025-10-20 15:24:08 +00:00

feat: minify binary size

This commit is contained in:
GZTime 2025-01-09 01:38:26 +08:00
parent 9d20d7f382
commit d01cd52a46
No known key found for this signature in database
GPG key ID: 373640C748EA3E19

View file

@ -3,6 +3,13 @@ name = "opencl_vanity_gpg"
version = "0.1.0"
edition = "2021"
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
panic = "abort"
strip = true
[dependencies]
byteorder = "1.5"
chrono = { version = "0.4", default-features = false, features = ["now"] }