mfio_netfs/lib.rs
1//! # mfio-netfs
2//!
3//! # Network filesystem sample for mfio
4//!
5//! This crate is currently just an example showing how a relatively simple filesystem proxy could
6//! be implemented using mfio's TCP streams.
7//!
8//! Please do not use this in production, because the library does close to no error checking, so
9//! data corruption is likely to happen.
10
11#![cfg_attr(not(feature = "std"), no_std)]
12
13extern crate alloc;
14
15#[cfg(feature = "std")]
16mod net;
17
18#[cfg(feature = "std")]
19pub use net::client::*;
20#[cfg(feature = "std")]
21pub use net::server::*;