| Crates.io | xaeroflux-actors |
| lib.rs | xaeroflux-actors |
| version | 0.9.8-alpha.3 |
| created_at | 2025-06-05 01:44:04.223317+00 |
| updated_at | 2025-09-04 00:22:41.755355+00 |
| description | EXPERIMENTAL: actor layer for xaeroflux |
| homepage | https://blockxaero.io |
| repository | https://github.com/block-xaero/xaeroflux.git |
| max_upload_size | |
| id | 1701009 |
| size | 303,344 |
Offline-first P2P storage engine in Rust.
#[repr(C, align(64))] structsuse xaeroflux::XaeroFlux;
use xaeroid::XaeroID;
let mut xf = XaeroFlux::new();
// Start AOF persistence
xf.start_aof()?;
// Start P2P networking
xf.start_p2p(my_xaero_id)?;
// Send data
xf.send_text("Hello world")?;
xf.send_file_data(&file_bytes)?;
| Size | Capacity | Event Size |
|---|---|---|
| XS | 1024 | 64 bytes |
| S | 1024 | 256 bytes |
| M | 512 | 1024 bytes |
| L | 256 | 4096 bytes |
| XL | 128 | 16384 bytes |
cargo build --release
cargo test
MPL-2.0