fsys 1.1.0

Filesystem IO for Rust storage engines: journal substrate, io_uring, NVMe passthrough, atomic writes, cross-platform durability.
Documentation
1
2
3
4
5
6
7
//! Smoke test — verifies the crate links and exposes its version constant.

#[test]
fn version_is_exposed() {
    assert!(!fsys::VERSION.is_empty());
    assert_eq!(fsys::VERSION, env!("CARGO_PKG_VERSION"));
}