diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 18:22:41 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 18:22:41 +0100 |
commit | ba9f12810f7dc4969ac175f6e959d5fe6407747d (patch) | |
tree | f4039e46985d56bac471bd8568f96b159a92b2ae /rust/qmk-hid-com/Cargo.toml | |
parent | feat(src): Make usable (diff) | |
download | qmk_layout-ba9f12810f7dc4969ac175f6e959d5fe6407747d.zip |
feat(treewide): Migrate the Unicode handling to a custom c program, that works via rawhid
Diffstat (limited to 'rust/qmk-hid-com/Cargo.toml')
-rw-r--r-- | rust/qmk-hid-com/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/rust/qmk-hid-com/Cargo.toml b/rust/qmk-hid-com/Cargo.toml new file mode 100644 index 0000000..20cc11f --- /dev/null +++ b/rust/qmk-hid-com/Cargo.toml @@ -0,0 +1,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" |