25 lines
No EOL
415 B
TOML
25 lines
No EOL
415 B
TOML
[package]
|
|
name = "example"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
liblbos = { path = "../liblbos" }
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[features]
|
|
default = ["arch_riscv32"]
|
|
arch_riscv32 = ["liblbos/arch_riscv32"] |