21 lines
425 B
TOML
21 lines
425 B
TOML
[package]
|
|
name = "g13-driver"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
embedded-graphics = "0.8.1"
|
|
embedded-graphics-core = "0.4.0"
|
|
input-linux = "0.7.1"
|
|
nusb = { version = "0.2.1", features = ["tokio"] }
|
|
time = { version = "0.3.47", features = ["formatting", "macros"] }
|
|
tokio = { version = "1.49.0", features = [
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"sync",
|
|
"macros",
|
|
"net",
|
|
"signal",
|
|
"time",
|
|
] }
|