spargio 0.5.1

Work-stealing async runtime for Rust built on io_uring and msg_ring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Native Extensions

Spargio exposes low-level unsafe extension hooks:

- `UringNativeAny::submit_unsafe(...)`
- `UringNativeAny::submit_unsafe_on_shard(...)`.

Prefer safe wrappers over direct unsafe call sites in applications.

Current safe-wrapper example:

- `spargio::extension::fs::statx*`

See `docs/native_extension_cookbook.md` for wrapper invariants and patterns.