[package] categories = ["embedded", "no-std"] name = "pentatube" license = "GPL-3.0-only" authors = ["Astro "] version = "0.0.0" edition = "2018" [badges] maintenance = { status = "experimental" } [package.metadata.docs.rs] features = [] default-target = "thumbv7m-none-eabi" [dependencies] panic-abort = "0.3.1" bare-metal = "0.2" cortex-m = "0.5" cortex-m-rt = { version = "0.6", features = ["device"] } cortex-m-log = { version = "0.4", features = ["log-integration"] } stm32f1 = { version = "0.6", features = ["rt", "stm32f103"] } embedded-hal = "0.2.2" stm32f1xx-hal = { git = "https://github.com/stm32-rs/stm32f1xx-hal", features = ["rt", "stm32f103"] } #stm32f1xx-hal = { path = "../stm32f4xx-hal", features = ["rt", "stm32f429"] } [features] default = [] [profile.release] codegen-units = 1 incremental = false debug = true opt-level = "s" lto = true