2021-01-23 01:18:12 +11:00
|
|
|
[package]
|
|
|
|
name = "rp2040-hal"
|
2021-09-22 20:43:30 +10:00
|
|
|
version = "0.3.0"
|
2021-01-23 01:18:12 +11:00
|
|
|
authors = ["evan <evanmolder@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-08-25 08:33:03 +10:00
|
|
|
homepage = "https://github.com/rp-rs/rp-hal"
|
2021-01-23 01:18:12 +11:00
|
|
|
description = "A Rust Embeded-HAL impl for the rp2040 microcontroller"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-05-24 12:08:42 +10:00
|
|
|
cortex-m = "0.7.2"
|
2021-09-09 17:55:30 +10:00
|
|
|
embedded-hal = { version = "0.2.5", features = ["unproven"] }
|
2021-10-02 15:36:40 +10:00
|
|
|
eh1_0_alpha = { version = "=1.0.0-alpha.5", package="embedded-hal", optional=true }
|
2021-07-27 05:16:09 +10:00
|
|
|
embedded-time = "0.12.0"
|
2021-09-16 00:32:00 +10:00
|
|
|
itertools = { version = "0.10.1", default-features = false }
|
2021-05-24 12:08:42 +10:00
|
|
|
nb = "1.0"
|
2021-09-15 15:07:25 +10:00
|
|
|
rp2040-pac = "0.1.5"
|
2021-05-24 12:08:42 +10:00
|
|
|
paste = "1.0"
|
2021-09-16 00:32:00 +10:00
|
|
|
pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
|
2021-09-09 17:55:30 +10:00
|
|
|
usb-device = "0.2.8"
|
2021-09-16 00:32:00 +10:00
|
|
|
vcell = "0.1"
|
|
|
|
void = { version = "1.0.2", default-features = false }
|
2021-09-26 20:51:01 +10:00
|
|
|
rand_core = "0.6.3"
|
2021-04-25 07:18:57 +10:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-09-15 15:07:25 +10:00
|
|
|
cortex-m-rt = "0.7"
|
2021-04-25 07:18:57 +10:00
|
|
|
panic-halt = "0.2.0"
|
2021-10-18 20:52:01 +11:00
|
|
|
rp2040-boot2 = "0.2"
|
2021-07-23 18:37:36 +10:00
|
|
|
hd44780-driver = "0.4.0"
|
2021-10-06 03:05:24 +11:00
|
|
|
pio-proc = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
|
2021-07-07 19:33:36 +10:00
|
|
|
|
|
|
|
[features]
|
2021-07-23 18:37:36 +10:00
|
|
|
rt = ["rp2040-pac/rt"]
|