Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anowell/nonblock-rs
Read available data from file descriptors without blocking
https://github.com/anowell/nonblock-rs
Last synced: about 2 months ago
JSON representation
Read available data from file descriptors without blocking
- Host: GitHub
- URL: https://github.com/anowell/nonblock-rs
- Owner: anowell
- License: mit
- Created: 2016-04-25T04:52:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T21:59:43.000Z (over 2 years ago)
- Last Synced: 2024-11-20T14:51:15.918Z (about 2 months ago)
- Language: Rust
- Size: 562 KB
- Stars: 7
- Watchers: 5
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nonblock-rs
Read available data from file descriptors without blocking[Documentation](http://anowell.github.io/nonblock-rs/nonblock/)
[![Crates.io](https://img.shields.io/crates/v/nonblock.svg?maxAge=2592000)](https://crates.io/crates/nonblock)
[![Build Status](https://travis-ci.org/anowell/nonblock-rs.svg)](https://travis-ci.org/anowell/nonblock-rs)## Examples
See [structure-stdio.rs](examples/structure-stdio.rs/) for an example usage.
## Build & Test
This project is built and tested with cargo:
```bash
cargo build
cargo test
cargo doc --no-deps
```Pro-tip: before building docs, clone existing docs to track changes
```bash
git clone -b gh-pages [email protected]:anowell/nonblock-rs.git target/doc
```