26 lines
No EOL
430 B
TOML
26 lines
No EOL
430 B
TOML
[package]
|
|
name = "turntable"
|
|
version = "0.1.1"
|
|
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
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[features]
|
|
default = ["arch_riscv32"]
|
|
arch_riscv32 = ["liblbos/arch_riscv32"] |