- Vendor coarsetime crate with portable-atomic fallback - Use portable-atomic on targets without 64-bit atomics - Patch crates.io to use local coarsetime - Fixes MIPS build failure (AtomicU64 missing)
15 lines
265 B
TOML
15 lines
265 B
TOML
[workspace]
|
|
members = ["backend", "frontend", "shared"]
|
|
resolver = "2"
|
|
|
|
# Optimize for size (aggressive)
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
[patch.crates-io]
|
|
coarsetime = { path = "third_party/coarsetime" }
|