rustytoken/Cargo.toml

21 lines
438 B
TOML
Raw Normal View History

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"] }
panic-halt = "0.2.0"
sha1_smol = "1.0.0"
binascii = { version = "0.1", default-features = false, features = ["decode"] }
ds323x = "0.5.0"
ufmt = "0.2.0"
2023-04-04 20:29:28 +00:00
embedded-hal = "0.2.7"
2023-03-30 18:05:33 +00:00
[profile.release]
lto = true
panic = "abort"
strip = true
opt-level = "z"
codegen-units = 1