| Crates.io | mfio-rt |
| lib.rs | mfio-rt |
| version | 0.1.0 |
| created_at | 2023-12-07 16:37:11.158214+00 |
| updated_at | 2023-12-07 16:37:11.158214+00 |
| description | mfio based async runtime |
| homepage | |
| repository | https://github.com/memflow/mfio |
| max_upload_size | |
| id | 1061147 |
| size | 354,926 |
This crate aims to provide building blocks for mfio backed asynchronous runtimes. The traits
have the option to not rely on the standard library. This makes the system great for no_std
embedded environments or kernel-side code.
native feature (depends on std) enables native implementations of the runtime through
NativeRt structure.
virt feature enables a virtual in-memory runtime through VirtRt structure.
Custom runtimes may be implemented by implementing IoBackend, and any of the runtime
traits, such as Fs or Tcp.