-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 732 Bytes
/
Copy pathCargo.toml
File metadata and controls
22 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "ft6x36"
version = "0.6.2"
edition = "2021"
categories = ["embedded", "hardware-support"]
description = "Rust driver for Ft6x36 touch screen"
repository = "https://github.com/pyaillet/ft6x36-rs"
license = "MIT OR Apache-2.0"
readme = "README.md"
[features]
default = ["event_process"]
event_process = []
serde = ["event_process", "dep:serde", "serde?/derive"]
defmt = ["dep:defmt"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-hal = { version = "1.0.0" }
num_enum = { version = "0.7.0", default-features = false }
serde = { version = "1.0.193", optional = true, default-features = false }
defmt = { version = "0.3.10", optional = true }