filesorters/Cargo.toml
Vladimir Rubin 3d9c39c872
refactor: get rid of toml
i decided that the binary size is too big and we shouldn't use any
libraries so i wrote my own parser that even seems to work
2024-12-30 02:05:33 +02:00

16 lines
222 B
TOML

[package]
name = "filesorters"
version = "0.1.0"
edition = "2021"
[dependencies]
[profile.release.package."*"]
opt-level = "z"
[profile.release]
strip = true
codegen-units = 1
opt-level = "s"
lto = true
panic = "abort"