mirror of
https://github.com/stakwork/sphinx-key.git
synced 2026-01-25 02:14:26 +01:00
34 lines
771 B
TOML
34 lines
771 B
TOML
[package]
|
|
name = "sphinx-key-factory"
|
|
version = "0.1.0"
|
|
authors = ["decentclock <decentclock.5uh2k@slmail.me>"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
pio = ["esp-idf-sys/pio"]
|
|
|
|
[dependencies]
|
|
esp-idf-sys = { version = "0.31.8", features = ["binstart"] }
|
|
esp-idf-svc = { version = "0.42.3", features = ["experimental", "alloc"] }
|
|
esp-idf-hal = "0.38.1"
|
|
embedded-hal = "0.2.7"
|
|
embedded-svc = "0.22.1"
|
|
anyhow = { version = "1.0.65", features = ["backtrace"] }
|
|
rand = "0.8.5"
|
|
log = "0.4.17"
|
|
bitflags = "1.3.2"
|
|
|
|
[build-dependencies]
|
|
embuild = "0.29"
|
|
anyhow = "1"
|
|
|
|
[package.metadata.espflash]
|
|
partition_table = "table.csv"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
opt-level = "z" # Optimize for size.
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|