compio-driver

Crates.iocompio-driver
lib.rscompio-driver
version
sourcesrc
created_at2023-10-07 11:54:10.753306
updated_at2024-10-21 05:52:29.93969
descriptionLow-level driver for compio
homepage
repositoryhttps://github.com/compio-rs/compio
max_upload_size
id996253
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
王宇逸 (Berrysoft)

documentation

README

Compio

MIT licensed crates.io docs.rs Check Test Telegram

A thread-per-core Rust runtime with IOCP/io_uring/polling. The name comes from "completion-based IO". This crate is inspired by monoio.

Why not Tokio?

Tokio is a great generic-purpose async runtime. However, it is poll-based, and even uses undocumented APIs on Windows. We would like some new high-level APIs to perform IOCP/io_uring.

Unlike tokio-uring, this runtime isn't Tokio-based. This is mainly because that no public APIs to control IOCP in mio, and tokio won't expose APIs to control mio before mio reaches 1.0.

Why not monoio/tokio-uring/glommio?

They don't support Windows.

Quick start

Add compio as dependency:

compio = { version = "0.12.0", features = ["macros"] }

Then we can use high level APIs to perform filesystem & net IO.

use compio::{fs::File, io::AsyncReadAtExt};

#[compio::main]
async fn main() {
    let file = File::open("Cargo.toml").await.unwrap();
    let (read, buffer) = file.read_to_end_at(Vec::with_capacity(1024), 0).await.unwrap();
    assert_eq!(read, buffer.len());
    let buffer = String::from_utf8(buffer).unwrap();
    println!("{}", buffer);
}

You can also control the low-level driver manually. See driver example of the repo.

Contributing

There are opportunities to contribute to Compio at any level. It doesn't matter if you are just getting started with Rust or are the most weathered expert, we can use your help. If you have any question about Compio, feel free to join our telegram group. Before contributing, please checkout our contributing guide.

Commit count: 1316

cargo fmt