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

..03-May-2022-

src/H03-May-2022-4,4182,316

tests/H03-May-2022-700577

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

CHANGELOG.mdH A D13-Jun-20181.1 KiB4125

Cargo.tomlH A D01-Jan-1970974 3127

Cargo.toml.orig-cargoH A D13-Jun-2018511 2320

LICENSEH A D25-Apr-20181 KiB2622

README.mdH A D25-Apr-2018886 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)
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