| Crates.io | voidio |
| lib.rs | voidio |
| version | 0.1.14 |
| created_at | 2025-07-22 07:23:57.401167+00 |
| updated_at | 2026-01-17 22:09:58.686029+00 |
| description | VOID I/O - High-performance Cross-platform I/O for Rust. |
| homepage | https://github.com/voidops/voidio |
| repository | https://github.com/voidops/voidio |
| max_upload_size | |
| id | 1763112 |
| size | 23,517,817 |
A High-performance Cross-platform I/O Library for Rust.
use voidio::console::{fstdout, Component, Console};
fn formatted_stdout()
{
let cout = fstdout(|msg| {
"[" + Component::text("VoidIO").with_color(0xFF55FF) + "] " + msg
});
cout.send("New Message");
cout.write("Partial message... ");
cout.send(Component::text("OK").with_color(0x00FF00));
}
Output:
