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]
|
|
|
|
walkdir = "1.0"
|
|
|
|
|
2017-05-04 17:35:26 +08:00
|
|
|
[dependencies]
|
2019-10-03 03:28:37 +08:00
|
|
|
libm = "0.1.4"
|
2018-08-29 03:57:17 +08:00
|
|
|
cortex-m = { version = "0.5", features = ["const-fn"] }
|
2019-02-06 17:19:28 +08:00
|
|
|
cortex-m-rt = "0.6"
|
2018-03-27 18:16:11 +08:00
|
|
|
crc = { version = "1.7", default-features = false }
|
2019-02-06 17:19:28 +08:00
|
|
|
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-18 01:22:23 +08:00
|
|
|
lexical-core = { version = "~0.6.1", 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-01 03:57:13 +08:00
|
|
|
version = "0.5.0"
|
2018-01-26 21:03:04 +08:00
|
|
|
features = ["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
|