Arduino-Pedal-Effects/rust/arduino/Cargo.toml
RenovateBot af8d47f19d
Some checks failed
Gavania Merge Build / Serial Reader (pull_request) Has been cancelled
Update Rust crate avr-device to 0.6.0
2024-11-26 21:03:31 +00:00

24 lines
645 B
TOML

[package]
name = "arduino-pedal"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
panic-halt = "0.2.0"
avr-device = { version = "0.6.0", features = ["atmega328p"] }
arduino-hal = { git = "https://github.com/Rahix/avr-hal", features = ["arduino-uno"], rev = "1aacefb335517f85d0de858231e11055d9768cdf" }
ufmt = "0.2.0"
# Configure the build for minimal size - AVRs have very little program memory
[profile.dev]
panic = "abort"
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"