Get rid of windows conditionals

This commit is contained in:
Jan Trefil 2023-04-18 22:37:01 +02:00
parent b303576f3c
commit 5924ae251f
2 changed files with 0 additions and 7 deletions

1
Cargo.lock generated
View file

@ -796,7 +796,6 @@ dependencies = [
"serde",
"smallvec",
"tokio",
"winapi",
]
[[package]]

View file

@ -10,16 +10,10 @@ edition = "2018"
serde = { version = "1.0.117", features = ["derive"] }
futures = "0.3.8"
smallvec = { version = "1.10.0", features = ["serde"] }
[target.'cfg(target_os = "linux")'.dependencies]
inotify = "0.10.0"
tokio = { version = "1.0.1", features = ["fs", "io-util", "net", "sync", "rt", "time", "macros"] }
libc = "0.2.77"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winuser"] }
tokio = { version = "1.0.1", features = ["sync"] }
[build-dependencies]
bindgen = "0.65.1"
pkg-config = "0.3.19"