Skip to main content

native_ipc_core/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![doc = "Platform-neutral, pointer-free IPC protocol foundations."]
3
4extern crate alloc;
5
6pub mod codec;
7pub mod layout;
8pub mod mapping;
9pub mod slot;