2022-07-11 19:45:44 +10:00
|
|
|
[package]
|
2022-08-26 21:15:17 +10:00
|
|
|
name = "pimoroni_badger2040"
|
2022-08-26 19:05:56 +10:00
|
|
|
version = "0.2.0"
|
2022-07-11 19:45:44 +10:00
|
|
|
authors = ["9names", "The rp-rs Developers"]
|
|
|
|
edition = "2018"
|
|
|
|
homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-badger2040"
|
|
|
|
description = "Board Support Package for the Pimoroni Badger2040"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/rp-rs/rp-hal.git"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = "0.7.2"
|
|
|
|
rp2040-boot2 = { version = "0.2.0", optional = true }
|
2022-08-26 19:05:56 +10:00
|
|
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0"}
|
2022-07-11 19:45:44 +10:00
|
|
|
cortex-m-rt = { version = "0.7", optional = true }
|
2022-08-19 05:14:51 +10:00
|
|
|
fugit = "0.3.5"
|
2022-07-11 19:45:44 +10:00
|
|
|
embedded-hal ="0.2.5"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
panic-halt= "0.2.0"
|
|
|
|
nb = "1.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["boot2", "rt"]
|
|
|
|
boot2 = ["rp2040-boot2"]
|
|
|
|
rt = ["cortex-m-rt","rp2040-hal/rt"]
|