ionpak-thermostat/firmware/Cargo.toml

34 lines
864 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>"]
2019-09-06 05:30:42 +08:00
edition = "2018"
2017-05-04 17:35:26 +08:00
[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"] }
2019-08-01 06:59:29 +08:00
nb = "0.1"
2019-09-02 05:56:27 +08:00
cortex-m-semihosting = "0.3"
2019-09-08 05:29:26 +08:00
byteorder = { version = "1.3", default-features = false }
bit_field = "0.10"
2019-09-08 08:13:02 +08:00
bare-metal = "0.2"
2019-09-11 05:37:51 +08:00
logos = { version = "~0.9", default-features = false, features = ["export_derive"] }
2019-09-12 22:12:03 +08:00
alloc-cortex-m = "0.3"
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