All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Update
async-io
,if-addrs
crates. See PR 33.
- Update
windows
crate. See PR 32.
- For all architectures running the fallback option (e.g. Android) reverse the logic when checking if a recorded interface still exists in the new list to avoid reporting all interfaces as down and then up in the same resync(). See PR 31.
- Feature gate async runtime, allowing opting between Tokio or smol. For every OS each
IfWatcher
is under thetokio
orsmol
module. This makes it a breaking change as there is no more a default implementation. See PR 27.
- Add
IfWatcher::poll_if_event
. ImplementStream
instead ofFuture
forIfWatcher
. See PR 23 and PR 25. - Make
IfWatcher::new
synchronous. See PR 24.
- Update to
rtnetlink
v0.10
. See PR 19.
- Return socket closure as error. See PR 15.
- Update to
windows
v0.34
. See PR 16.
- macos/ios backend
- linux backend rewritten to use rtnetlink
- windows backend rewritten to use windows crate instead of winapi