rustytoken/Cargo.toml

22 lines
409 B
TOML

[package]
name = "rustytoken"
version = "0.1.0"
edition = "2021"
[dependencies]
arduino-hal = { git = "https://github.com/rahix/avr-hal", features = ["arduino-uno"] }
panic-halt = "0.2.0"
sha1_smol = "1.0.0"
ds323x = { path = "../ds323x-rs" }
embedded-hal = "0.2.7"
nb = "1.1.0"
randomize = "3.0.1"
ufmt = "0.2.0"
[profile.release]
lto = true
panic = "abort"
strip = true
opt-level = "s"
codegen-units = 1