16 lines
277 B
TOML
16 lines
277 B
TOML
[package]
|
|
name = "imploder"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = "4.6.1"
|
|
pklib = { git = "https://github.com/fgRuslan/pklib-rs", branch = "main" }
|
|
rawzip = "0.4.4"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|
|
panic = 'abort'
|
|
opt-level = 'z' |