[package]
name = "mwatch_kernel"
version = "0.9.0"
authors = ["Scott Mabin <mabezdev@gmail.com>"]
description = "A embedded 'Smart' watch"
keywords = ["arm", "cortex-m", "smartwatch"]
categories = ["embedded", "no-std"]
repository = "https://github.com/mwatch/kernel"
readme = "README.md"
license = "MIT OR Apache-2.0"
exclude = [
".travis.yml",
".gitignore",
"tools/",
"tools/*",
"itm.fifo",
]
edition = "2018"
[dependencies]
cortex-m = "0.5.8"
cortex-m-rt = "0.6.7"
cortex-m-rtfm = { version = "0.4.0" }
panic-itm = "0.4.0"
panic-semihosting = "0.5.1"
embedded-graphics = "0.4.4"
max17048 = "0.1.0"
hm11 = "0.2.1"
simple-hex = "0.1.0"
cortex-m-log = { version = "0.4.0", features = ["itm", "log-integration"] }
log = "0.4.6"
[dependencies.ssd1351]
version = "0.2.0"
features = ["embedded-graphics", "buffered"]
[dependencies.heapless]
version = "0.4.1"
[dependencies.stm32l4xx-hal]
version = "0.3.6"
features = ["rt", "stm32l4x2"]
[dependencies.crc]
version = "1.8.1"
default-features = false
[features]
default = []
itm = []
[lib]
name = "mwatch_kernel_api"
path = "src/lib.rs"
[[bin]]
name = "mwatch_kernel"
test = false
bench = false
[profile.dev]
codegen-units = 1
incremental = false
opt-level = 0
[profile.release]
codegen-units = 1
lto = true
debug = true