-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: update async-io, if-addrs, env_logger (#33)
async-io just released a 2.0.0 (https://github.com/smol-rs/async-io/releases/tag/v2.0.0) which offers saner dependencies and fixes an unsafety (which I don't claim is relevant to usage here, yet justifies async-io 2.0.0 adoption in general across the ecosystem). if-addrs 0.7 (the prior version) used winapi. if-addrs 0.8 moved to the official Windows bindings provided by Microsoft. 0.8 also included a bug fix. 0.9 added support for big-endian architectures.
- Loading branch information
1 parent
9b87056
commit f21df81
Showing
2 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "if-watch" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["David Craven <[email protected]>", "Parity Technologies Limited <[email protected]>"] | ||
edition = "2021" | ||
keywords = ["asynchronous", "routing"] | ||
|
@@ -26,21 +26,21 @@ rtnetlink = { version = "0.10.0", default-features = false } | |
|
||
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] | ||
core-foundation = "0.9.2" | ||
if-addrs = "0.7.0" | ||
if-addrs = "0.10.0" | ||
system-configuration = "0.5.0" | ||
tokio = { version = "1.21.2", features = ["rt"], optional = true } | ||
smol = { version = "1.2.5", optional = true } | ||
|
||
[target.'cfg(target_os = "windows")'.dependencies] | ||
if-addrs = "0.7.0" | ||
if-addrs = "0.10.0" | ||
windows = { version = "0.51.0", features = ["Win32_NetworkManagement_IpHelper", "Win32_Foundation", "Win32_NetworkManagement_Ndis", "Win32_Networking_WinSock"] } | ||
|
||
[target.'cfg(not(any(target_os = "ios", target_os = "linux", target_os = "macos", target_os = "windows")))'.dependencies] | ||
async-io = "1.6.0" | ||
if-addrs = "0.7.0" | ||
async-io = "2.0.0" | ||
if-addrs = "0.10.0" | ||
|
||
[dev-dependencies] | ||
env_logger = "0.9.0" | ||
env_logger = "0.10.0" | ||
smol = "1.2.5" | ||
tokio = { version = "1.21.2", features = ["rt", "macros"] } | ||
|
||
|