forked from tokio-rs/io-uring
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Some api changes * test: show test count * test: Update deps * No bitflags 2 * Fix fmt * test: Fix read unaligned * Remove deprecated fn * move Sealed trait * Some style * probe no alloc * Fix style * Enable more test for ci * opcode: remove result from MsgRingSendFd The kernel now does not allow non-zero values. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/io_uring/msg_ring.c?h=v6.3-rc5#n232 * Fix ci * Fix fmt * Use Probe::COUNT for size * some change
- Loading branch information
Showing
18 changed files
with
350 additions
and
438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "io-uring" | ||
version = "0.6.0-pre" | ||
version = "0.6.0" | ||
authors = ["quininer <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
@@ -17,13 +17,14 @@ exclude = [] | |
members = [ "io-uring-test", "io-uring-bench" ] | ||
|
||
[features] | ||
unstable = [] | ||
overwrite = [ "bindgen" ] | ||
direct-syscall = [ "sc" ] | ||
io_safety = [] | ||
|
||
[dependencies] | ||
# Since we need to work on rustc 1.48, we cannot use 2021 edition. | ||
bitflags = "1" | ||
|
||
libc = { version = "0.2.98", default-features = false } | ||
sc = { version = "0.2", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.