-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
37 lines (31 loc) · 905 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
37
[package]
name = "xpt2046"
version = "0.3.1"
edition = "2021"
description = "Embedded-hal based XPT2046 driver for TFT LCD displays"
authors = ["VersBInarii <[email protected]>"]
keywords = ["embedded-hal-driver", "xpt2046", "touch", "LCD", "no_std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/VersBinarii/xpt2046"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "xpt2046"
[dependencies]
embedded-hal = "=1.0.0-alpha.7"
embedded-graphics = "0.7.1"
embedded-graphics-core = "0.3.3"
defmt = { version = "0.3.0", optional = true }
[dev-dependencies]
cortex-m-rtic = "1.0.0"
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
defmt-rtt = "0.3.0"
panic-semihosting = "0.6"
ili9341 = "0.5.0"
[dev-dependencies.stm32f4xx-hal]
version = "0.13.0"
features = ["stm32f411"]
[features]
with_defmt = ["defmt"]
[[example]]
name = "rtic"