* Changes from #580 * fixes USB cancel panic * style fixes * Update src/env/tock/storage.rs Co-authored-by: Zach Halvorsen <zhalvorsen@google.com> --------- Co-authored-by: Zach Halvorsen <zhalvorsen@google.com>
30 lines
586 B
TOML
30 lines
586 B
TOML
[package]
|
|
name = "bootloader"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Fabian Kaczmarczyck <kaczmarczyck@google.com>",
|
|
]
|
|
build = "build.rs"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = { version = "1", default-features = false }
|
|
cortex-m = "^0.6.0"
|
|
cortex-m-rt = "*"
|
|
cortex-m-rt-macros = "*"
|
|
panic-abort = "0.3.2"
|
|
rtt-target = { version = "*", features = ["cortex-m"] }
|
|
tock-registers = "0.7.0"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
lto = true
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
# Level "z" may decrease the binary size more of necessary.
|
|
opt-level = 3
|