From 9b7b0d3d6bbaf09a22ff9fd3660d4a6419cbd0bf Mon Sep 17 00:00:00 2001 From: shellrow <81893184+shellrow@users.noreply.github.com> Date: Sun, 7 Apr 2024 23:00:23 +0900 Subject: [PATCH 1/2] Update windows dep --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 48d620d..0aa72c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ netlink-sys = "0.8" memalloc = "0.1.0" [target.'cfg(windows)'.dependencies.windows] -version = "0.52.0" +version = "0.54.0" features = ["Win32_Foundation","Win32_NetworkManagement_IpHelper", "Win32_Networking_WinSock", "Win32_NetworkManagement_Ndis"] [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] From 50ae0ba59b71120fbd705ca53804e6d5489031b1 Mon Sep 17 00:00:00 2001 From: shellrow <81893184+shellrow@users.noreply.github.com> Date: Sun, 7 Apr 2024 23:14:42 +0900 Subject: [PATCH 2/2] Bump version to 0.25.0 --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0aa72c9..1325d0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "netdev" -version = "0.24.0" +version = "0.25.0" authors = ["shellrow "] edition = "2021" description = "Cross-platform library for network interface" diff --git a/README.md b/README.md index 6d351d0..89419a4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ This project was rebranded from [default-net][default-net-crates-io-url] by the Add `netdev` to your dependencies ```toml:Cargo.toml [dependencies] -netdev = "0.24" +netdev = "0.25" ``` For more details, see [examples][examples-url] or [doc][doc-url].