2021-11-08 09:19:35 +11:00
|
|
|
[package]
|
2021-12-21 08:28:00 +11:00
|
|
|
name = "adafruit-itsy-bitsy-rp2040"
|
2022-06-14 19:25:12 +10:00
|
|
|
version = "0.3.0"
|
2022-03-12 22:43:16 +11:00
|
|
|
authors = ["Andrew Christiansen <andrewtaylorchristiansen@gmail.com>", "The rp-rs Developers"]
|
2021-11-08 09:19:35 +11:00
|
|
|
edition = "2018"
|
2021-12-21 08:28:00 +11:00
|
|
|
homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit_itsy_bitsy_rp2040"
|
2021-11-08 09:19:35 +11:00
|
|
|
description = "Board Support Package for the Adafruit ItsyBitsy RP2040"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-21 08:10:10 +11:00
|
|
|
repository = "https://github.com/rp-rs/rp-hal.git"
|
2021-11-08 09:19:35 +11:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = "0.7.2"
|
2021-12-05 01:00:09 +11:00
|
|
|
rp2040-boot2 = { version = "0.2.0", optional = true }
|
2022-06-14 18:04:00 +10:00
|
|
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" }
|
2021-11-08 09:19:35 +11:00
|
|
|
cortex-m-rt = { version = "0.7", optional = true }
|
|
|
|
embedded-time = "0.12.0"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
panic-halt= "0.2.0"
|
|
|
|
embedded-hal ="0.2.5"
|
|
|
|
smart-leds = "0.3"
|
|
|
|
nb = "1.0.0"
|
2022-06-14 18:04:00 +10:00
|
|
|
ws2812-pio = { git = "https://github.com/rp-rs/ws2812-pio-rs", branch = "hal_0.5.0" }
|
2021-11-08 09:19:35 +11:00
|
|
|
|
|
|
|
[features]
|
2021-12-05 01:00:09 +11:00
|
|
|
default = ["rt", "boot2"]
|
|
|
|
boot2 = ["rp2040-boot2"]
|
2021-11-08 09:19:35 +11:00
|
|
|
rt = ["cortex-m-rt","rp2040-hal/rt"]
|