19 lines
226 B
TOML
19 lines
226 B
TOML
[package]
|
|
name='aeropkg'
|
|
version='0.1.0'
|
|
edition='2024'
|
|
|
|
[dependencies]
|
|
clap = "4.5.39"
|
|
rayon = "1.10.0"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[[bin]]
|
|
name = "pkg"
|
|
path = "src/main.rs"
|