rustytoken/Cargo.toml

21 lines
502 B
TOML
Raw Normal View History

2023-03-30 18:05:33 +00:00
[package]
name = "rustytoken"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-05-05 02:57:19 +00:00
arduino-hal = { git = "https://github.com/rahix/avr-hal", features = ["arduino-nano"] }
ds323x = { git = "https://github.com/kirbylife/ds323x-rs", branch = "fix-set-day-format" }
hmac-sha1-compact = { git = "https://github.com/kirbylife/rust-hmac-sha1" }
2023-03-30 18:05:33 +00:00
panic-halt = "0.2.0"
2023-04-04 20:29:28 +00:00
embedded-hal = "0.2.7"
2023-04-27 03:50:18 +00:00
nb = "1.1.0"
ufmt = "0.2.0"
2023-03-30 18:05:33 +00:00
[profile.release]
lto = true
panic = "abort"
strip = true
2023-04-27 03:50:18 +00:00
opt-level = "s"
codegen-units = 1