src/world/usr.bin/42/Cargo.toml

20 lines
305 B
TOML

[package]
name = "liff"
version = "1.0.0"
edition = "2021"
[[bin]]
name = "42"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8"
[profile.release]
codegen-units = 1
strip = true
lto = true
panic = "abort"