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

..03-May-2022-

src/H03-May-2022-4,7072,539

tests/H03-May-2022-704580

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

CHANGELOG.mdH A D02-Mar-20191.6 KiB6438

Cargo.tomlH A D01-Jan-19701 KiB3329

Cargo.toml.orig-cargoH A D02-Mar-2019676 2925

LICENSEH A D18-Jan-20191 KiB2622

README.mdH A D02-Mar-2019902 3824

README.md

1# tokio-io
2
3Core I/O abstractions for the Tokio stack.
4
5[![Build Status](https://travis-ci.org/tokio-rs/tokio-io.svg?branch=master)](https://travis-ci.org/tokio-rs/tokio-io)
6
7[Documentation](https://docs.rs/tokio-io/0.1.12/tokio_io)
8
9## Usage
10
11First, add this to your `Cargo.toml`:
12
13```toml
14[dependencies]
15tokio-io = "0.1"
16```
17
18Next, add this to your crate:
19
20```rust
21extern crate tokio_io;
22```
23
24You can find extensive documentation and examples about how to use this crate
25online at [https://tokio.rs](https://tokio.rs). The [API
26documentation](https://docs.rs/tokio-io) is also a great place to get started
27for the nitty-gritty.
28
29## License
30
31This project is licensed under the [MIT license](LICENSE).
32
33### Contribution
34
35Unless you explicitly state otherwise, any contribution intentionally submitted
36for inclusion in Tokio by you, shall be licensed as MIT, without any additional
37terms or conditions.
38