2021-01-22 09:18:12 -05:00
|
|
|
[package]
|
2021-12-23 11:18:52 +00:00
|
|
|
name = "rp-pico"
|
2022-06-21 16:36:02 +10:00
|
|
|
version = "0.4.1"
|
2022-03-12 22:43:16 +11:00
|
|
|
authors = ["evan <evanmolder@gmail.com>", "The rp-rs Developers"]
|
2021-01-22 09:18:12 -05:00
|
|
|
edition = "2018"
|
2022-03-04 10:34:37 +01:00
|
|
|
homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/rp-pico"
|
2021-01-25 15:42:43 -05:00
|
|
|
description = "Board Support Package for the Raspberry Pi Pico"
|
2021-01-22 09:18:12 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-20 21:10:10 +00:00
|
|
|
repository = "https://github.com/rp-rs/rp-hal.git"
|
2021-01-22 09:18:12 -05:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-03 10:15:39 +02:00
|
|
|
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-09-15 07:07:25 +02:00
|
|
|
cortex-m-rt = { version = "0.7", optional = true }
|
2021-07-26 21:16:09 +02:00
|
|
|
embedded-time = "0.12.0"
|
2021-09-10 23:39:01 +10:00
|
|
|
usb-device= "0.2.8"
|
2021-09-09 08:55:30 +01:00
|
|
|
usbd-serial = "0.1.1"
|
2021-09-25 09:10:01 +00:00
|
|
|
usbd-hid = "0.5.1"
|
2021-11-08 12:23:28 +00:00
|
|
|
futures = { version = "0.3", default-features = false, optional = true }
|
|
|
|
|
2021-07-26 12:24:58 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
panic-halt= "0.2.0"
|
|
|
|
embedded-hal ="0.2.5"
|
2022-06-14 11:23:42 +02:00
|
|
|
cortex-m-rtic = "1.1.2"
|
2021-09-16 09:47:34 +01:00
|
|
|
nb = "1.0"
|
2022-06-21 16:36:02 +10:00
|
|
|
i2c-pio = "0.3.0"
|
2021-12-10 15:22:42 +00:00
|
|
|
heapless = "0.7.9"
|
2022-01-09 14:16:35 +01:00
|
|
|
embedded-sdmmc = { git = "https://github.com/rust-embedded-community/embedded-sdmmc-rs.git" }
|
2022-01-09 15:27:29 +01:00
|
|
|
smart-leds = "0.3.0"
|
2022-06-21 16:36:02 +10:00
|
|
|
ws2812-pio = "0.3.0"
|
2022-01-12 05:07:33 +01:00
|
|
|
ssd1306 = "0.7.0"
|
|
|
|
embedded-graphics = "0.7.1"
|
2022-05-31 14:08:02 +01:00
|
|
|
hd44780-driver = "0.4.0"
|
2022-06-26 14:11:41 +02:00
|
|
|
pio = "0.2.0"
|
|
|
|
pio-proc = "0.2.1"
|
2022-01-09 14:16:35 +01:00
|
|
|
|
|
|
|
defmt = "0.2.0"
|
|
|
|
defmt-rtt = "0.2.0"
|
2021-07-07 04:33:36 -05:00
|
|
|
|
|
|
|
[features]
|
2021-12-05 01:00:09 +11:00
|
|
|
default = ["boot2", "rt"]
|
|
|
|
boot2 = ["rp2040-boot2"]
|
2021-09-09 08:55:30 +01:00
|
|
|
rt = ["cortex-m-rt","rp2040-hal/rt"]
|