Rust-for-Arduboy/.cargo/config.toml

20 lines
315 B
TOML
Raw Normal View History

2023-08-06 18:14:49 +02:00
[build]
target = "arduboy.json"
target-dir = "./target"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
panic = "abort"
[profile.dev]
codegen-units = 1
lto = "fat"
opt-level = "z"
panic = "abort"
[unstable]
build-std = ["core", "compiler_builtins"]
build-std-features = ["compiler-builtins-mem"]