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