Bug 1893155 - Part 6: Correct constant for minimum epoch day. r=spidermonkey-reviewer...
[gecko.git] / third_party / rust / iovec / README.md
blob6d2ea7bd73bc38155daa9f82cd1614aa39846595
1 # IoVec
3 A specialized byte slice type for performing vectored I/O operations.
5 [![Crates.io](https://img.shields.io/crates/v/iovec.svg?maxAge=2592000)](https://crates.io/crates/iovec)
6 [![Build Status](https://travis-ci.org/carllerche/iovec.svg?branch=master)](https://travis-ci.org/carllerche/iovec)
8 [Documentation](https://docs.rs/iovec)
10 ## Usage
12 To use `iovec`, first add this to your `Cargo.toml`:
14 ```toml
15 [dependencies]
16 iovec = "0.1"
17 ```
19 Next, add this to your crate:
21 ```rust
22 extern crate iovec;
24 use iovec::IoVec;
25 ```
27 For more detail, see [documentation](https://docs.rs/iovec).
29 # License
31 `iovec` is primarily distributed under the terms of both the MIT license and the
32 Apache License (Version 2.0), with portions covered by various BSD-like
33 licenses.
35 See LICENSE-APACHE, and LICENSE-MIT for details.