From 49d83848b2a4538dcf9208a4a4b652b184728eec Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 27 Nov 2024 22:39:26 -0800 Subject: [PATCH] Disable default features for compio runtime (#473) --- ntex-compio/CHANGES.md | 4 ++++ ntex-compio/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ntex-compio/CHANGES.md b/ntex-compio/CHANGES.md index 22be3520..ee4c7ff8 100644 --- a/ntex-compio/CHANGES.md +++ b/ntex-compio/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.2.3] - 2024-11-27 + +* Disable default features + ## [0.2.2] - 2024-11-25 * Update to compio 0.13 diff --git a/ntex-compio/Cargo.toml b/ntex-compio/Cargo.toml index 3cb05b7f..20d25fe6 100644 --- a/ntex-compio/Cargo.toml +++ b/ntex-compio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-compio" -version = "0.2.2" +version = "0.2.3" authors = ["ntex contributors "] description = "compio runtime intergration for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -21,4 +21,4 @@ ntex-bytes = "0.1" ntex-io = "2.5" ntex-util = "2" log = "0.4" -compio = { version = "0.13.0", features = ["macros", "io", "runtime"] } +compio = { version = "0.13.0", features = ["macros", "runtime", "io", "io-uring", "polling"], default-features = false }