Skip to content

Commit

Permalink
upgrade mio to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
biluohc authored and 0xpr03 committed Mar 1, 2022
1 parent 59efaa2 commit b1802ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -31,19 +31,19 @@ walkdir = "2.0.1"

[target.'cfg(target_os="linux")'.dependencies]
inotify = { version = "0.9", default-features = false }
mio = { version = "0.7.7", features = ["os-ext"] }
mio = { version = "0.8", features = ["os-ext"] }

[target.'cfg(target_os="macos")'.dependencies]
fsevent-sys = { version = "4", optional = true }
kqueue = { version = "1.0", optional = true }
mio = { version = "0.7.7", features = ["os-ext"], optional = true }
mio = { version = "0.8", features = ["os-ext"], optional = true }

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.8", features = ["fileapi", "handleapi", "ioapiset", "minwinbase", "synchapi", "winbase", "winnt"] }

[target.'cfg(any(target_os="freebsd", target_os="openbsd", target_os = "netbsd", target_os = "dragonflybsd"))'.dependencies]
kqueue = "^1.0.4" # fix for #344
mio = { version = "0.7.7", features = ["os-ext"] }
mio = { version = "0.8", features = ["os-ext"] }

[dev-dependencies]
futures = "0.3"
Expand Down

0 comments on commit b1802ec

Please sign in to comment.