pinetime-rs/Cargo.toml

29 lines
734 B
TOML
Raw Permalink Normal View History

2020-06-20 16:53:49 +00:00
[package]
name = "pinetime-rs"
version = "0.1.0"
authors = ["Rafael Caricio <rafael@caricio.com>"]
edition = "2018"
license = "BSD-3-Clause"
[dependencies]
cortex-m = "0.6"
cortex-m-rt = "0.6"
embedded-graphics = "0.6"
2020-06-21 06:46:25 +00:00
embedded-hal = {version ="0.2.3", features = ["unproven"] }
2020-06-21 12:07:56 +00:00
nrf52832-hal = { version = "0.10", default-features = false, features = ["xxAA-package", "rt"] }
2020-06-21 06:46:25 +00:00
st7789 = { version = "0.2", features = ["graphics", "batch", "buffer"], default-features = false }
2020-06-20 16:53:49 +00:00
cstr_core = "0.2.0"
2020-06-21 11:50:47 +00:00
numtoa = "0.2.3"
cst816s = "0.1.4"
2020-06-20 16:53:49 +00:00
lvgl = { path = "../lvgl-rs/lvgl" }
[profile.dev]
codegen-units = 1
[profile.release]
incremental = false # disable incremental build to allow lto on nightly
lto = true
debug = true
codegen-units = 1