-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (40 loc) · 910 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "qsk"
version = "0.2.0"
authors = ["Wayne Warren <wayne.warren.s@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Software keyboard remapper inspired by QMK."
repository = "https://github.com/waynr/qsk"
[lib]
name = "qsk"
path = "src/lib.rs"
[[bin]]
name = "qsk"
path = "src/main.rs"
[dependencies]
# qsk crates
qsk-types = "~0.1"
qsk-macros = "~0.1"
# async stuff
async-std = { version = "~1.10", features = ["unstable"] }
async-compat = "0.2.1"
maplit = "1.0"
# cli
clap = { version = "~3.0", features = ["cargo"] }
fern = "~0.5" # log implementation
# logging
log = "~0.4"
serde = {version = "~1.0", features = ["derive"]}
serde_json = "~1.0"
# errors
thiserror = "1.0"
# device/events
num = "~0.3"
# device
evdev-rs = "~0.5"
evdev = { version = "~0.11", features = ["tokio"] }
futures = "~0.3"
[dev-dependencies]
galvanic-assert = "~0.8"
maplit = "1.0"