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
16 lines
222 B
TOML
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"
|