#pipe #async-io #tokio #file #stdio #async

tokio-file-unix

Asynchronous support for epollable files via Tokio on Unix-like platforms

9 releases (5 breaking)

0.6.0 Dec 6, 2020
0.5.1 Apr 30, 2018
0.4.2 Jan 28, 2018
0.4.1 Oct 8, 2017
0.1.0 Feb 5, 2017

#69 in #stdio

Download history 294/week @ 2024-04-07 415/week @ 2024-04-14 350/week @ 2024-04-21 290/week @ 2024-04-28 354/week @ 2024-05-05 416/week @ 2024-05-12 655/week @ 2024-05-19 291/week @ 2024-05-26 414/week @ 2024-06-02 345/week @ 2024-06-09 375/week @ 2024-06-16 337/week @ 2024-06-23 360/week @ 2024-06-30 434/week @ 2024-07-07 285/week @ 2024-07-14 253/week @ 2024-07-21

1,358 downloads per month
Used in 5 crates

MIT/Apache

23KB
143 lines

tokio-file-unix

Documentation Crates.io Travis CI Build Status

Asynchronous support for file-like objects via Tokio. Only supports Unix-like platforms.

This crate is primarily intended for pipes and other files that support nonblocking I/O. Regular files do not support nonblocking I/O, so this crate has no effect on them.

Usage

Add this to your Cargo.toml:

[dependencies]
tokio-file-unix = "0.5.1"

Next, add this to the root module of your crate:

extern crate tokio_file_unix;

Examples

See the examples directory as well as the documentation.

License

Dual-licensed under Apache and MIT.


lib.rs:

A utility library that adds asynchronous support to file-like objects on Unix-like platforms.

This crate is primarily intended for pipes and other files that support nonblocking I/O. Regular files do not support nonblocking I/O, so this crate has no effect on them.

See File for an example of how a file can be made suitable for asynchronous I/O.

Dependencies

~4.5MB
~63K SLoC