Skip to main content

sim_platform_linux/
lib.rs

1#![forbid(unsafe_code)]
2//! Bounded Linux mechanics. Native paths and portal calls cannot escape this package.
3
4mod transport;
5pub use transport::{LinuxDnsPort, LinuxIpcPort, LinuxSocketPort, bind_transport_services};
6
7mod linux;
8
9pub use linux::*;