share_memory 0.1.1

This is share memory impl multi process for rust
Documentation
1
2
3
4
5
6
7
8
9
10

pub use self::imp::*;

#[cfg(unix)]
#[path = "unix/mod.rs"]
mod imp;

#[cfg(windows)]
#[path = "windows/mod.rs"]
mod imp;