fan_monitor/Cargo.toml
Steins7 8b55888ad0 Switched to rust
* removed old code (see c_archive branch)
* added basic rust code
2021-11-11 09:20:09 +01:00

48 lines
1.0 KiB
TOML

[package]
authors = ["Steins7"]
edition = "2018"
readme = "README.md"
name = "fan_monitor"
version = "0.1.0"
[dependencies]
cortex-m = "0.6.0"
cortex-m-rt = "0.6.10"
cortex-m-semihosting = "0.3.3"
panic-halt = "0.2.0"
embedded-hal = "0.2.3"
hd44780-driver = "0.3.0"
nb = "0.1.1"
[dependencies.stm32f1]
version = "0.8.0"
features = ["stm32f103", "rt"]
[dependencies.stm32f1xx-hal]
version = "0.4.0"
features = ["stm32f103", "rt"]
# Uncomment for the panic example.
# panic-itm = "0.4.1"
# Uncomment for the allocator example.
# alloc-cortex-m = "0.3.5"
# Uncomment for the device example.
# Update `memory.x`, set target to `thumbv7em-none-eabihf` in `.cargo/config`,
# and then use `cargo build --examples device` to build it.
# [dependencies.stm32f3]
# features = ["stm32f303", "rt"]
# version = "0.7.1"
# this lets you use `cargo fix`!
[[bin]]
name = "fan_monitor"
test = false
bench = false
[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