Cargo.toml 502 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "flipper-core"
  3. version = "0.1.0"
  4. authors = ["Vadim Kaushan <admin@disasm.info>"]
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["staticlib"]
  8. [target.'cfg(target_arch = "arm")'.dependencies]
  9. flipper-f1-sys = { path = "../flipper-f1-sys" }
  10. [build-dependencies]
  11. cbindgen = "0.14"
  12. [profile.release]
  13. codegen-units = 1 # better optimizations
  14. debug = true # symbols are nice and they don't increase the size on Flash
  15. lto = true # better optimizations
  16. panic = "abort"
  17. [profile.dev]
  18. panic = "abort"