| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- [package]
- authors = ["Mathias Gottschlag <mgottschlag@gmail.com>"]
- categories = ["embedded", "no-std"]
- description = "smarthome base station firmware"
- keywords = ["arm", "cortex-m"]
- license = "MIT"
- name = "base-station-firmware"
- version = "0.0.1"
- build = "build.rs"
- edition = "2018"
-
- [dependencies]
- cortex-m = "0.6.2"
- cortex-m-rt = { version = "0.6.12", features = ["device"] }
- cortex-m-rtfm = "0.5.1"
- mkl25z4 = { version = "0.0.3", features = ["rt"] }
- #panic-halt = "0.2.0"
- panic-semihosting = "0.5.3"
- cortex-m-semihosting = "0.3.5"
- mkl25z4-hal = { git = "https://github.com/mgottschlag/mkl25z4-hal" }
- embedded-hal = "0.2.3"
- nb = "0.1.2"
- embedded-epd = { git = "https://github.com/mgottschlag/rust-embedded-epd" }
- bme280 = "0.2.1"
-
- [dependencies.void]
- default-features = false
- version = "1.0.2"
-
- [build-dependencies]
- epd-assets = { git = "https://github.com/mgottschlag/rust-epd-assets" }
-
- #[patch."https://github.com/mgottschlag/mkl25z4-hal"]
- #mkl25z4-hal = { path = "/home/mathias/Projects/microcontroller/mkl25z4-hal" }
-
- #[patch."https://github.com/mgottschlag/mkl25z4"]
- #mkl25z4 = { path = "/home/mathias/Projects/microcontroller/mkl25z4" }
-
- #[patch."https://github.com/mgottschlag/rust-embedded-epd"]
- #embedded-epd = { path = "/home/mathias/Projects/microcontroller/rust-embedded-epd" }
-
- #[patch."https://github.com/mgottschlag/rust-epd-assets"]
- #epd-assets = { path = "/home/mathias/Projects/microcontroller/rust-epd-assets" }
-
- [profile]
- [profile.release]
- debug = true
- lto = true
|