diff --git a/Cargo.toml b/Cargo.toml index c725253..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 "] +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 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"] }