29 lines
705 B
TOML
29 lines
705 B
TOML
[package]
|
|
authors = ["Riccardo Casatta <riccardo@casatta.it>", "Dev Random <c1.devrandom@niftybox.net>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
name = "embedded"
|
|
version = "0.1.0"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[dependencies]
|
|
cortex-m = "0.6.0"
|
|
cortex-m-rt = "0.6.10"
|
|
cortex-m-semihosting = "0.3.3"
|
|
panic-halt = "0.2.0"
|
|
alloc-cortex-m = "0.4.1"
|
|
bitcoin = { path="../", default-features = false, features = ["no-std", "secp-lowmemory"] }
|
|
|
|
[[bin]]
|
|
name = "embedded"
|
|
test = false
|
|
bench = false
|
|
|
|
[profile.release]
|
|
codegen-units = 1 # better optimizations
|
|
debug = true # symbols are nice and they don't increase the size on Flash
|
|
lto = true # better optimizations
|