neopixel-avr/Cargo.toml

33 lines
607 B
TOML
Raw Normal View History

2025-02-20 18:16:06 +03:00
[package]
2025-04-25 15:23:14 +03:00
name = "neopixel-avr"
2025-02-20 18:16:06 +03:00
version = "0.1.0"
edition = "2021"
[dependencies]
smart-leds = "0.4.0"
[dependencies.arduino-hal]
git = "https://github.com/rahix/avr-hal"
rev = "3e362624547462928a219c40f9ea8e3a64f21e5f"
2025-04-22 21:41:37 +03:00
[dependencies.static_pins]
git = "https://gitea.doryan04.ru/TheEmbeddedRust/static_pins"
2025-04-25 15:19:09 +03:00
[features]
sparkfun-promicro = ["arduino-hal/sparkfun-promicro", "static_pins/sparkfun-promicro"]
2025-04-22 21:41:37 +03:00
[dependencies.avr-device]
version = "0.5.4"
[profile.dev]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"
2025-02-20 18:16:06 +03:00
2025-04-22 21:41:37 +03:00
[profile.release]
panic = "abort"
lto = true
opt-level = "s"