-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
41 lines (34 loc) · 1023 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
[package]
name = "kontroll"
version = "1.0.3"
edition = "2021"
license = "MIT"
description = "Kontroll connects to Keymapp's API, allowing control of ZSAs keyboard programmaticaly."
homepage = "https://blog.zsa.io/introducing-kontroll/"
repository = "https://github.com/zsa/kontroll"
readme = "README.md"
[lib]
name = "kontroll"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kontroll"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
directories = "5.0.1"
prost = "0.12.4"
serde = { version = "1.0.204", features = ["serde_derive"] }
serde_json = "1.0.120"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.15", features = ["net"] }
tower = "0.4.13"
uds_windows = "1.1.0"
[dependencies.tonic]
version = "0.11.0"
[build-dependencies]
tonic-build = "0.11.0"
[dev-dependencies]
tempfile = "3.10.1"
macroquad = "0.4"
assert_cmd = "2.0.15"