forked from M-Labs/thermostat
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
categories = ["embedded", "no-std"]
|
|
name = "thermostat"
|
|
description = "Thermostat firmware"
|
|
license = "GPL-3.0-only"
|
|
authors = ["Astro <astro@spaceboyz.net>"]
|
|
version = "0.0.0"
|
|
keywords = ["thermostat", "laser", "physics"]
|
|
repository = "https://git.m-labs.hk/M-Labs/thermostat"
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = []
|
|
default-target = "thumbv7em-none-eabihf"
|
|
|
|
[dependencies]
|
|
panic-abort = "0.3.1"
|
|
panic-semihosting = { version = "0.5.1", optional = true }
|
|
log = "0.4"
|
|
bare-metal = "0.2"
|
|
cortex-m = "0.6"
|
|
cortex-m-rt = { version = "0.6", features = ["device"] }
|
|
cortex-m-log = { version = "0.6", features = ["log-integration"] }
|
|
embedded-hal = "0.2"
|
|
stm32f4xx-hal = { version = "0.7", features = ["rt", "stm32f427"] }
|
|
stm32-eth = { version = "0.1.2", features = ["smoltcp-phy"], git = "https://github.com/stm32-rs/stm32-eth.git" }
|
|
smoltcp = { version = "0.6.0", default-features = false, features = ["proto-ipv4", "socket-tcp", "log"] }
|
|
hash2hwaddr = { version = "0.0", optional = true }
|
|
bit_field = "0.10"
|
|
byteorder = { version = "1", default-features = false }
|
|
|
|
[features]
|
|
semihosting = ["panic-semihosting", "cortex-m-log/semihosting"]
|
|
generate-hwaddr = ["hash2hwaddr"]
|
|
default = ["generate-hwaddr"]
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
debug = true
|
|
opt-level = "s"
|
|
lto = true
|