forked from chris-ricketts/keyboard-layouts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 804 Bytes
/
Cargo.toml
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
27
28
29
30
31
32
33
34
[package]
name = "keyboard-layouts"
version = "0.3.0"
authors = ["chris ricketts <chris.ricketts@steribar.com>"]
edition = "2018"
description = "Keyboard layout keymaps with an API to generate HID packets"
readme = "README.md"
keywords = ["keyboard", "layouts", "hid"]
exclude = [".gitignore"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Chris-Ricketts/keyboard-layouts"
[lib]
name = "keyboard_layouts"
path = "src/lib.rs"
[[bin]]
name = "kbsim"
path = "src/bin/kbsim.rs"
[dependencies]
gen_layouts_sys = { path = "gen_layouts_sys", version = "0.3.0", features = [] }
bytes = "0.4"
structopt = "0.2"
log = "0.4.5"
[dev-dependencies]
tokio-linux-uhid = "0.3.0"
futures = "0.1.15"
tokio-core = "0.1.9"
bytes = "0.4"
pretty_assertions = "0.5.1"
maplit = "1.0.1"
lazy_static = "1.2.0"