24 lines
502 B
TOML
24 lines
502 B
TOML
|
[package]
|
||
|
name = "flipper-core"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Vadim Kaushan <admin@disasm.info>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["staticlib"]
|
||
|
|
||
|
[target.'cfg(target_arch = "arm")'.dependencies]
|
||
|
flipper-f1-sys = { path = "../flipper-f1-sys" }
|
||
|
|
||
|
[build-dependencies]
|
||
|
cbindgen = "0.14"
|
||
|
|
||
|
[profile.release]
|
||
|
codegen-units = 1 # better optimizations
|
||
|
debug = true # symbols are nice and they don't increase the size on Flash
|
||
|
lto = true # better optimizations
|
||
|
panic = "abort"
|
||
|
|
||
|
[profile.dev]
|
||
|
panic = "abort"
|