21 lines
473 B
TOML
21 lines
473 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"] }
|
|
chrono = { version = "0.4.24", default-features = false }
|
|
ds323x = "0.5.0"
|
|
ufmt = "0.2.0"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
strip = true
|
|
opt-level = "z"
|
|
codegen-units = 1
|