firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
1[package]
2name = "eepy-sys"
3version = "0.1.0"
4edition = "2021"
5
6[dependencies]
7eepy-derive = { path = "../eepy-derive" }
8tp370pgh01 = { path = "../tp370pgh01" }
9defmt = { workspace = true, optional = true }
10embedded-graphics = { workspace = true, optional = true }
11serde.workspace = true
12crc32fast.workspace = true
13usb-device.workspace = true
14critical-section = { workspace = true, optional = true }
15once_cell = { workspace = true, optional = true }
16strum.workspace = true
17tickv = { workspace = true, optional = true }
18fugit = { workspace = true, optional = true }
19
20[features]
21defmt = ["dep:defmt", "usb-device/defmt", "fugit/defmt", "embedded-graphics/defmt"]
22critical-section-impl = ["critical-section", "critical-section/restore-state-bool", "once_cell"]