rkvm/input/Cargo.toml

18 lines
459 B
TOML
Raw Normal View History

2020-09-16 18:04:18 +02:00
[package]
name = "input"
version = "0.1.0"
authors = ["Jan Trefil <trefil@cross.cz>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-10-24 19:52:37 +02:00
tokio = { version = "0.2.22", features = ["fs", "io-util", "io-driver", "sync", "blocking", "uds"] }
mio = "0.6.22"
2020-09-16 18:04:18 +02:00
libc = "0.2.77"
2020-10-23 19:47:57 +02:00
serde = { version = "1.0.117", features = ["derive"] }
2020-09-16 18:04:18 +02:00
[build-dependencies]
2020-09-17 17:33:24 +02:00
bindgen = "0.55.1"
2020-10-23 19:47:57 +02:00
cc = "1.0.60"