blob: 20cc11f5156f7372d7ed1206c1d8d4be2d7e5876 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Qmk Hid Com - A small middelware between a qmk keyboard and a wayland virtual
# keyboard. For unicode input
#
# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This file is part of Qmk Hid Com.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/agpl.txt>.
[package]
name = "qmk-hid-com"
description = "A small middelware between a qmk keyboard and a wayland virtual keyboard. For unicode input"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
homepage = ""
repository = "https://git.foss-syndicate.org/bpeetz/tools/qmk-hid-com"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive"] }
hidapi = "2.6.3"
|