From 0d0078263468d90eedb43a316ae8e0a559015165 Mon Sep 17 00:00:00 2001 From: shellrow Date: Mon, 21 Jul 2025 13:42:06 +0900 Subject: [PATCH 1/3] Update dev-dependencies --- nex/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/nex/Cargo.toml b/nex/Cargo.toml index 4b063bd..20ed3d5 100644 --- a/nex/Cargo.toml +++ b/nex/Cargo.toml @@ -20,7 +20,6 @@ nex-socket = { workspace = true } bytes = { workspace = true } serde_json = "1.0" rand = { workspace = true } -async-io = "2.4" futures = "0.3" tokio = { version = "1", features = ["rt", "rt-multi-thread", "signal", "macros"] } From 1054cbedb60442501ebb3e0ad75e44ff1d45efa5 Mon Sep 17 00:00:00 2001 From: shellrow Date: Mon, 21 Jul 2025 13:42:15 +0900 Subject: [PATCH 2/3] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c725253..c40bea9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [workspace.package] version = "0.21.0" edition = "2021" -authors = ["shellrow "] +authors = ["shellrow "] [workspace.dependencies] nex-core = { version = "0.21.0", path = "nex-core" } From 07749af41beb35a90895bcfe64b279fee1de3267 Mon Sep 17 00:00:00 2001 From: shellrow Date: Mon, 21 Jul 2025 13:45:13 +0900 Subject: [PATCH 3/3] Bump version to 0.22.0 --- Cargo.toml | 12 ++++++------ README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c40bea9..021020c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,16 +10,16 @@ members = [ ] [workspace.package] -version = "0.21.0" +version = "0.22.0" edition = "2021" authors = ["shellrow "] [workspace.dependencies] -nex-core = { version = "0.21.0", path = "nex-core" } -nex-datalink = { version = "0.21.0", path = "nex-datalink" } -nex-packet = { version = "0.21.0", path = "nex-packet" } -nex-sys = { version = "0.21.0", path = "nex-sys" } -nex-socket = { version = "0.21.0", path = "nex-socket" } +nex-core = { version = "0.22.0", path = "nex-core" } +nex-datalink = { version = "0.22.0", path = "nex-datalink" } +nex-packet = { version = "0.22.0", path = "nex-packet" } +nex-sys = { version = "0.22.0", path = "nex-sys" } +nex-socket = { version = "0.22.0", path = "nex-socket" } serde = { version = "1" } libc = "0.2" netdev = { version = "0.36" } diff --git a/README.md b/README.md index 65ce938..3506ad2 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To use `nex`, add it as a dependency in your `Cargo.toml`: ```toml [dependencies] -nex = "0.21" +nex = "0.22" ``` ## Using Specific Sub-crates