• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Mar-2021-

src/H15-Mar-2021-439280

.cargo-checksum.jsonH A D15-Mar-20211.1 KiB11

CHANGELOG.mdH A D15-Mar-2021352 2010

Cargo.tomlH A D15-Mar-20211 KiB2725

LICENSE-APACHEH A D15-Mar-202110.6 KiB202169

LICENSE-MITH A D15-Mar-20211 KiB2622

README.mdH A D15-Mar-2021817 3622

appveyor.ymlH A D15-Mar-2021305 1713

README.md

1# IoVec
2
3A specialized byte slice type for performing vectored I/O operations.
4
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)
7
8[Documentation](https://docs.rs/iovec)
9
10## Usage
11
12To use `iovec`, first add this to your `Cargo.toml`:
13
14```toml
15[dependencies]
16iovec = "0.1"
17```
18
19Next, add this to your crate:
20
21```rust
22extern crate iovec;
23
24use iovec::IoVec;
25```
26
27For more detail, see [documentation](https://docs.rs/iovec).
28
29# License
30
31`iovec` is primarily distributed under the terms of both the MIT license and the
32Apache License (Version 2.0), with portions covered by various BSD-like
33licenses.
34
35See LICENSE-APACHE, and LICENSE-MIT for details.
36