io-uring 0.3.3

The `io_uring` library for Rust.
Documentation
1
2
3
4
5
6
7
8
#[test]
fn test_build() -> anyhow::Result<()> {
    let _ring = io_uring::Builder::default()
        .dontfork()
        .build(1)?;

    Ok(())
}