Skip to content

Commit c2bc5d0

Browse files
committed
fix: feature typo
1 parent 62a3a9e commit c2bc5d0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

compio-driver/src/fusion/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ mod driver_type {
8787
Shutdown::CODE,
8888
// Linux kernel 5.19
8989
#[cfg(any(
90-
feature = "io-uring-seq128",
90+
feature = "io-uring-sqe128",
9191
feature = "io-uring-cqe32",
9292
feature = "io-uring-socket"
9393
))]

compio-net/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ libc = { workspace = true }
4141
compio-macros = { workspace = true }
4242
futures-util = { workspace = true }
4343
tempfile = { workspace = true }
44+
45+
[features]
46+
default = []
47+
io-uring = ["compio-driver/io-uring"]

compio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ monoio = { version = "0.2.2", default-features = false, features = ["iouring"] }
7575

7676
[features]
7777
default = ["runtime", "io-uring"]
78-
io-uring = ["compio-driver/io-uring"]
78+
io-uring = ["compio-driver/io-uring", "compio-net?/io-uring"]
7979
polling = ["compio-driver/polling"]
8080
io = ["dep:compio-io"]
8181
io-compat = ["io", "compio-io/compat"]

0 commit comments

Comments
 (0)