forked from georgik/esp-display-interface-spi-dma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 921 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
[package]
name = "esp-display-interface-spi-dma"
version = "0.1.0"
edition = "2021"
authors = [
"bjoernQ <[email protected]>",
"Juraj Michálek <[email protected]>"
]
description = "Rust Bare Metal SPI Display Interface with DMA support for ESP32 chips"
repository = "https://github.com/georgik/esp-display-interface-spi-dma"
license = "MIT OR Apache-2.0"
[dependencies]
byte-slice-cast = { version = "0.3.5", default-features = false }
display-interface = "0.5.0"
display-interface-spi = "0.5.0"
embedded-graphics = "0.8.1"
embedded-hal = { version = "1.0.0" }
embedded-dma = "0.2.0"
num-traits = { version = "0.2.17", default-features = false }
esp-hal = { version = "0.20.1", optional = true }
[features]
default = ["esp32c3"]
esp32 = [ "esp-hal/esp32" ]
esp32c3 = [ "esp-hal/esp32c3" ]
esp32c6 = [ "esp-hal/esp32c6" ]
esp32s2 = [ "esp-hal/esp32s2" ]
esp32s3 = [ "esp-hal/esp32s3" ]