Inital commit

This commit is contained in:
2026-02-08 18:52:57 +01:00
commit dd94bfdafa
12 changed files with 1124 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[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",
] }