ionpak-thermostat/firmware/Cargo.toml

26 lines
603 B
TOML
Raw Normal View History

2017-05-04 17:35:26 +08:00
[package]
name = "ionpak-firmware"
version = "1.0.0"
2017-05-04 17:35:26 +08:00
authors = ["whitequark <whitequark@whitequark.org>"]
[build-dependencies]
walkdir = "1.0"
2017-05-04 17:35:26 +08:00
[dependencies]
2018-08-29 03:57:17 +08:00
libm = "0.1.2"
cortex-m = { version = "0.5", features = ["const-fn"] }
cortex-m-rt = "0.6"
2018-03-27 18:16:11 +08:00
crc = { version = "1.7", default-features = false }
tm4c129x = { version = "0.8", features = ["rt"] }
2019-07-31 00:25:35 +08:00
embedded-hal = { version = "0.2", features = ["unproven"] }
2017-05-04 17:35:26 +08:00
2017-08-02 00:33:33 +08:00
[dependencies.smoltcp]
git = "https://github.com/m-labs/smoltcp"
2018-03-26 19:37:14 +08:00
rev = "cd893e6"
features = ["proto-ipv4", "socket-tcp"]
2017-08-02 00:33:33 +08:00
default-features = false
2017-05-04 17:35:26 +08:00
[profile.release]
lto = true
debug = true