runmat-filesystem 0.4.0

Swappable filesystem abstraction for RunMat hosts (native, wasm, remote).
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(not(target_arch = "wasm32"))]
mod native;
#[cfg(target_arch = "wasm32")]
mod wasm;

#[cfg(not(target_arch = "wasm32"))]
pub use native::{RemoteFsConfig, RemoteFsProvider};
#[cfg(target_arch = "wasm32")]
pub use wasm::{RemoteFsConfig, RemoteFsProvider};