-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable depending on
tokio-epoll-uring
crate from macOS builds (#32)
Used by neondatabase/neon#6355 The alternative would have been to require `tokio-epoll-uring` users to use `uring-common` in their `Cargo.toml`. Instead, we keep the re-exports of `uring-common` from `tokio-epoll-uring`, so that users can think of it as one crate. As a bonus, the examples look nice.
- Loading branch information
Showing
4 changed files
with
15 additions
and
7 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
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,7 +1,9 @@ | ||
pub mod buf; | ||
pub mod open_options; | ||
#[cfg(target_os = "linux")] | ||
pub mod open_options_io_uring_ext; | ||
|
||
pub mod io_fd; | ||
|
||
#[cfg(target_os = "linux")] | ||
pub use io_uring; |
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