rp-hal-boards/boards/adafruit-qt-py-rp2040/Cargo.toml

31 lines
1,022 B
TOML
Raw Normal View History

2021-09-29 14:20:35 +10:00
[package]
name = "adafruit-qt-py-rp2040"
version = "0.2.0"
authors = ["Stephen Onnen <stephen.onnen@gmail.com>", "The rp-rs Developers"]
2021-09-29 14:20:35 +10:00
edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit-qt-py-rp2040"
2021-09-29 14:20:35 +10:00
description = "Board Support Package for the Adafruit QT Py RP2040"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rp-rs/rp-hal.git"
2021-09-29 14:20:35 +10:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cortex-m = "0.7.2"
rp2040-hal = { path = "../../rp2040-hal", version = "0.4.0"}
2021-09-29 14:20:35 +10:00
cortex-m-rt = { version = "0.7", optional = true }
embedded-time = "0.12.0"
rp2040-boot2 = { version = "0.2.0", optional = true }
2021-09-29 14:20:35 +10:00
[dev-dependencies]
panic-halt= "0.2.0"
embedded-hal ="0.2.5"
smart-leds = "0.3"
nb = "1.0.0"
ws2812-pio = { git = "https://github.com/ithinuel/ws2812-pio-rs", rev = "fd6b6604d65a66242b52ccf7f24a95ca325991dd" }
2021-09-29 14:20:35 +10:00
[features]
default = ["boot2", "rt"]
boot2 = ["rp2040-boot2"]
2021-09-29 14:20:35 +10:00
rt = ["cortex-m-rt","rp2040-hal/rt"]