2023-03-30 18:05:33 +00:00
|
|
|
[package]
|
|
|
|
name = "rustytoken"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arduino-hal = { git = "https://github.com/rahix/avr-hal", features = ["arduino-uno"] }
|
2023-04-27 05:33:28 +00:00
|
|
|
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"
|
2023-03-30 21:04:56 +00:00
|
|
|
strip = true
|
2023-04-27 03:50:18 +00:00
|
|
|
opt-level = "s"
|
2023-03-31 04:09:09 +00:00
|
|
|
codegen-units = 1
|