2025-09-08 20:52:06 -07:00
|
|
|
[package]
|
|
|
|
|
name = "turntable"
|
2025-09-12 13:28:19 -07:00
|
|
|
version = "0.1.1"
|
2025-09-08 20:52:06 -07:00
|
|
|
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
|
2025-09-12 18:25:48 -07:00
|
|
|
strip = true
|
2025-09-08 20:52:06 -07:00
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["arch_riscv32"]
|
|
|
|
|
arch_riscv32 = ["liblbos/arch_riscv32"]
|