-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
35 lines (33 loc) · 959 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
[package]
name = "cst816s"
version = "0.1.4"
authors = ["Todd Stellanova <[email protected]>"]
edition = "2018"
description = "CST816S touchscreen driver for embedded hal / no_std"
license = "BSD-3-Clause"
repository = "https://github.com/tstellanova/cst816s"
categories = [
"embedded",
"hardware-support",
"no-std",
]
keywords = [
"embedded-hal-driver",
"CST816S",
"touchscreen",
"PineTime"
]
readme = "README.md"
[dependencies]
cortex-m = "0.6.2"
embedded-hal = "0.2.3"
[dev-dependencies]
cortex-m-rt = "0.6.12"
cortex-m-semihosting = "0.3.5"
nrf52832-hal = { version = "0.10", default-features = false, features = ["xxAA-package", "rt"] }
panic-halt = "0.2.0"
st7789 = { version = "0.5.0", features = ["graphics", "batch", "buffer"], default-features = false }
display-interface = "0.4.0"
display-interface-spi = "0.4.0"
shared-bus = {version = "0.1.4", features = ["cortexm"] }
embedded-graphics = "0.6.2"