Skip to content

Commit f3cb236

Browse files
initial commit
0 parents  commit f3cb236

File tree

11 files changed

+618
-0
lines changed

11 files changed

+618
-0
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
branches: ["master"]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Build
19+
run: cargo build --verbose
20+
- name: Lint
21+
run: cargo clippy -- -D warnings

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

+357
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "qmk-hid"
3+
version = "0.1.0"
4+
edition = "2024"
5+
author = ["LIOKA Ranarison Fiderana <luckasranarison@gmail.com>"]
6+
description = "A simple CLI for bidirectional communication with QMK keyboards using raw HID."
7+
license = "MIT"
8+
repository = "https://github.com/luckasRanarison/qmk-hid"
9+
readme = "README.md"
10+
keywords = ["qmk", "hid", "keyboard", "cli"]
11+
categories = ["command-line-interface", "command-line-utilities"]
12+
13+
[dependencies]
14+
clap = { version = "4.5.31", features = ["derive"] }
15+
hidapi = "2.6.3"

0 commit comments

Comments
 (0)