21 lines
290 B
TOML
21 lines
290 B
TOML
[package]
|
|
name='aeropkg'
|
|
version='0.1.0'
|
|
edition='2024'
|
|
|
|
[dependencies]
|
|
clap = "4.5.39"
|
|
rayon = "1.10.0"
|
|
glob = "0.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[[bin]]
|
|
name = "pkg"
|
|
path = "src/main.rs"
|