2020-09-16 18:04:18 +02:00
|
|
|
[package]
|
2023-04-16 12:29:45 +02:00
|
|
|
name = "rkvm-input"
|
2023-04-18 22:30:57 +02:00
|
|
|
version = "0.1.0"
|
2020-09-16 18:04:18 +02:00
|
|
|
authors = ["Jan Trefil <8711792+htrefil@users.noreply.github.com>"]
|
2024-07-13 18:09:18 +02:00
|
|
|
edition = "2021"
|
2020-09-16 18:04:18 +02:00
|
|
|
|
|
|
|
# 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"
|
2023-04-18 20:30:24 +02:00
|
|
|
smallvec = { version = "1.10.0", features = ["serde"] }
|
|
|
|
inotify = "0.10.0"
|
|
|
|
tokio = { version = "1.0.1", features = ["fs", "io-util", "net", "sync", "rt", "time", "macros"] }
|
2020-11-13 18:46:12 +01:00
|
|
|
libc = "0.2.77"
|
2023-06-11 14:02:10 +02:00
|
|
|
thiserror = "1.0.40"
|
2023-09-09 11:07:43 +02:00
|
|
|
tracing = "0.1.37"
|
2020-09-16 18:04:18 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-04-18 22:36:33 +02:00
|
|
|
bindgen = "0.65.1"
|
2023-08-30 09:55:04 +02:00
|
|
|
cc = "1.0.83"
|
2021-01-11 21:47:14 +01:00
|
|
|
pkg-config = "0.3.19"
|
2023-07-08 23:58:06 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|