2020-09-16 18:04:18 +02:00
|
|
|
[package]
|
2023-04-16 12:29:45 +02:00
|
|
|
name = "rkvm-input"
|
2020-11-14 16:04:35 +01:00
|
|
|
version = "0.2.0"
|
2020-09-16 18:04:18 +02:00
|
|
|
authors = ["Jan Trefil <8711792+htrefil@users.noreply.github.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-23 19:47:57 +02:00
|
|
|
serde = { version = "1.0.117", features = ["derive"] }
|
2020-12-22 15:30:23 +01:00
|
|
|
futures = "0.3.8"
|
2020-11-13 18:46:12 +01:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2021-01-11 21:24:37 +01:00
|
|
|
inotify = "0.9.2"
|
|
|
|
tokio = { version = "1.0.1", features = ["fs", "io-util", "net", "sync", "rt", "time"] }
|
2020-11-13 18:46:12 +01:00
|
|
|
libc = "0.2.77"
|
2020-09-16 18:04:18 +02:00
|
|
|
|
2020-11-13 18:46:12 +01:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
|
|
winapi = { version = "0.3.9", features = ["winuser"] }
|
2021-01-11 21:24:37 +01:00
|
|
|
tokio = { version = "1.0.1", features = ["sync"] }
|
2020-11-13 18:46:12 +01:00
|
|
|
|
2020-09-16 18:04:18 +02:00
|
|
|
[build-dependencies]
|
2020-09-17 17:33:24 +02:00
|
|
|
bindgen = "0.55.1"
|
2021-01-11 21:47:14 +01:00
|
|
|
pkg-config = "0.3.19"
|