-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
32 lines (26 loc) · 977 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
[package]
name = "hid-io-client"
version = "0.1.3"
authors = ["Jacob Alexander <haata@kiibohd.com>"]
license = "MIT OR Apache-2.0"
description = """
HID-IO Client library for hid-io-core.
"""
homepage = "https://github.com/hid-io/hid-io-core"
repository = "https://github.com/hid-io/hid-io-core"
edition = "2021"
[lib]
name = "hid_io_client"
[dependencies]
capnp = { version = "0.14" }
capnp-rpc = { version = "0.14" }
futures = { version = "0.3" }
hid-io-core = { version = "^0.1.4", path = "..", default-features = false, features = ["api"] }
log = { version = "0.4" }
rand = "0.8"
rustls = { version = "0.20", features = ["dangerous_configuration"] }
tokio = { version = "1.18", features = ["net", "rt-multi-thread", "macros", "sync", "time"] }
tokio-rustls = { version = "0.23" }
tokio-util = { version = "0.7", features = ["compat"] }
[dev-dependencies]
clap = "3.1"