rustytoken/Cargo.toml

21 lines
501 B
TOML

[package]
name = "rustytoken"
version = "0.1.0"
edition = "2021"
[dependencies]
arduino-hal = { git = "https://github.com/rahix/avr-hal", features = ["arduino-uno"] }
ds323x = { git = "https://github.com/kirbylife/ds323x-rs", branch = "fix-set-day-format" }
hmac-sha1-compact = { git = "https://github.com/kirbylife/rust-hmac-sha1" }
panic-halt = "0.2.0"
embedded-hal = "0.2.7"
nb = "1.1.0"
ufmt = "0.2.0"
[profile.release]
lto = true
panic = "abort"
strip = true
opt-level = "s"
codegen-units = 1