rustytoken/Cargo.toml

17 lines
382 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"
binascii = { version = "0.1", default-features = false, features = ["decode"] }
[profile.release]
lto = true
panic = "abort"
strip = true
opt-level = "z"
codegen-units = 1