[go: up one dir, main page]

fs4 0.6.3

No libc, pure Rust cross-platform file locks. Original fs2, now supports async and replace libc by rustix.
Documentation
1
2
3
4
5
6
7
8
cfg_sync!(
    mod sync_impl;
    pub use sync_impl::FileExt;
);

cfg_async!(
    pub(crate) mod async_impl;
);