-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (32 loc) · 917 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "spi-pio"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "SPI driver implementation using the RP2040's PIO peripheral."
documentation = "https://docs.rs/spi-pio"
repository = "https://github.com/rp-rs/spi-pio-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cortex-m = "0.7.7"
eh1_0_alpha = { version = "1.0.0-rc.1", package = "embedded-hal", optional = true }
embedded-hal = "0.2.7"
nb = "1.1.0"
pio = "0.2.1"
pio-proc = "0.2.2"
rp2040-hal = "0.9.0"
fugit = "0.3.7"
defmt = { version = "0.3.5", optional = true }
[dev-dependencies]
rp2040-hal = { version = "0.9.0", features = ["defmt"] }
rp-pico = "0.8.0"
panic-halt = "0.2.0"
embedded-hal = "0.2.7"
cortex-m-rt = "0.7"
nb = "1.1"
embedded-sdmmc = "0.6.0"
pio = "0.2.1"
pio-proc = "0.2.2"
critical-section = "1.1.2"
defmt = "0.3.5"
defmt-rtt = "0.4.0"