diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bc4681..223afaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.2.0] + +### Fixed + +- Update `async-io`, `if-addrs` crates. + See [PR 33](https://github.com/mxinden/if-watch/pull/33). + ## [3.1.0] ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 4199dcd..b67837b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "if-watch" -version = "3.1.0" +version = "3.2.0" authors = ["David Craven ", "Parity Technologies Limited "] 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"] }