rust-bitcoin-unsafe-fast/hashes/embedded/Cargo.toml

39 lines
916 B
TOML
Raw Normal View History

2021-05-15 15:12:27 +00:00
[package]
authors = ["Riccardo Casatta <riccardo@casatta.it>"]
2021-05-15 15:12:27 +00:00
edition = "2018"
readme = "README.md"
name = "embedded"
version = "0.1.0"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[features]
alloc = ["alloc-cortex-m", "bitcoin_hashes/alloc"]
2021-05-15 15:12:27 +00:00
[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 = { version = "0.4.1", optional = true }
bitcoin_hashes = { path="../", default-features = false, features = ["core2"] }
bitcoin-io = { path = "../../io", default_features = false }
2021-05-15 15:12:27 +00:00
[[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
[patch.crates-io.bitcoin-internals]
path = "../../internals"
[patch.crates-io.bitcoin-io]
path = "../../io"