rust-arduino/Cargo.toml
Ahmet Kaan GÜMÜŞ b52e6b7be8 feat: led blinks
2024-01-08 04:12:07 +03:00

36 lines
707 B
TOML

[package]
name = "ardu-rs"
version = "0.1.0"
authors = ["Ahmet Kaan GÜMÜŞ <96421894+Tahinli@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[[bin]]
name = "ardu-rs"
test = false
bench = false
[dependencies]
panic-halt = "0.2.0"
ufmt = "0.2.0"
nb = "0.1.2"
embedded-hal = "0.2.3"
avr-device = "0.5.3"
[dependencies.arduino-hal]
git = "https://github.com/rahix/avr-hal"
rev = "190f2c3cb8d29e10f71119352b912369dc5a1fb7"
features = ["arduino-uno"]
# 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 = false
lto = true
opt-level = "s"