2017-05-04 17:35:26 +08:00
|
|
|
[package]
|
2019-10-01 02:43:03 +08:00
|
|
|
name = "firmware"
|
2017-08-07 17:54:25 +08:00
|
|
|
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
|
|
|
|
2017-08-07 17:54:25 +08:00
|
|
|
[build-dependencies]
|
2019-11-14 02:46:14 +08:00
|
|
|
walkdir = "~2"
|
2017-08-07 17:54:25 +08:00
|
|
|
|
2017-05-04 17:35:26 +08:00
|
|
|
[dependencies]
|
2019-10-03 03:28:37 +08:00
|
|
|
libm = "0.1.4"
|
2019-11-14 02:46:14 +08:00
|
|
|
cortex-m = { version = "0.6", features = ["const-fn"] }
|
2019-02-06 17:19:28 +08:00
|
|
|
cortex-m-rt = "0.6"
|
2019-11-14 02:46:14 +08:00
|
|
|
crc = { version = "~1", default-features = false }
|
|
|
|
tm4c129x = { version = "0.9", 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-11-14 02:46:14 +08:00
|
|
|
lexical-core = { version = "~0.6", default-features = false }
|
2019-09-15 01:03:52 +08:00
|
|
|
nom = { version = "~5", default-features = false }
|
2017-05-04 17:35:26 +08:00
|
|
|
|
2017-08-02 00:33:33 +08:00
|
|
|
[dependencies.smoltcp]
|
2019-10-31 02:53:35 +08:00
|
|
|
git = "https://github.com/m-labs/smoltcp.git"
|
2019-11-14 02:23:49 +08:00
|
|
|
rev = "8eb01aca364aefe5f823d68d552d62c76c9be4a3"
|
2019-10-31 02:53:35 +08:00
|
|
|
features = ["ethernet", "proto-ipv4", "socket-tcp"]
|
2017-08-02 00:33:33 +08:00
|
|
|
default-features = false
|
|
|
|
|
2019-09-17 05:41:22 +08:00
|
|
|
[dependencies.compiler_builtins]
|
2019-10-01 02:43:03 +08:00
|
|
|
version = "0.1"
|
2019-09-17 05:41:22 +08:00
|
|
|
default-features = false
|
|
|
|
features = ["mem", "no-lang-items", "c"]
|
|
|
|
|
2017-05-04 17:35:26 +08:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
debug = true
|