cyfs-chunk-lib 0.6.4

Rust cyfs-chunk-lib package
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod chunk;
mod mmap_chunk;
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]
mod shared_mem_chunk;
mod mem_chunk;

pub use chunk::*;
pub use mmap_chunk::*;
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]
pub use shared_mem_chunk::*;
pub use mem_chunk::*;