Cargo.toml 283 B

1234567891011121314
  1. [workspace]
  2. members = [
  3. "flipper-core",
  4. "flipper-f1-sys",
  5. ]
  6. [profile.release]
  7. codegen-units = 1 # better optimizations
  8. debug = true # symbols are nice and they don't increase the size on Flash
  9. lto = true # better optimizations
  10. panic = "abort"
  11. [profile.dev]
  12. panic = "abort"