fs4 0.12.0

No libc, pure Rust cross-platform file locks. Original fs2, now supports async and replace libc by rustix.
Documentation

Extended utilities for working with files and filesystems in Rust.

This is a fork of the fs2-rs crate, the aim for this fork is to support async and replace libc by rustix.

Installation

  • std

    [dependencies]
    fs4 = { version = "0.12", features = ["sync"] }
    
  • async-std runtime

    [dependencies]
    fs4 = { version = "0.12", features = ["async-std"] }
    
  • fs-err v2

    [dependencies]
    fs4 = { version = "0.12", features = ["fs-err2"] }
    
  • fs-err-tokio v2

    [dependencies]
    fs4 = { version = "0.12", features = ["fs-err2-tokio"] }
    
  • fs-err v3

    [dependencies]
    fs4 = { version = "0.12", features = ["fs-err3"] }
    
  • fs-err-tokio v3

    [dependencies]
    fs4 = { version = "0.12", features = ["fs-err3-tokio"] }
    
  • smol runtime

    [dependencies]
    fs4 = { version = "0.12", features = ["smol"] }
    
  • tokio runtime

    [dependencies]
    fs4 = { version = "0.12", features = ["tokio"] }
    

Features

License

fs4 is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, LICENSE-MIT for details.

Copyright (c) 2021 Al Liu.

Copyright (c) 2015 Dan Burkert.