17 lines
244 B
TOML
17 lines
244 B
TOML
cargo-features = ["panic-immediate-abort"]
|
|
|
|
[package]
|
|
name = "rust-teeny"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
strip = "symbols"
|
|
panic = "immediate-abort"
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
libc = "0"
|