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

..03-May-2022-

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

tests/H03-May-2022-704580

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

.cargo_vcs_info.jsonH A D05-Feb-202074 65

CHANGELOG.mdH A D04-Feb-20201.7 KiB6840

Cargo.tomlH A D05-Feb-20201 KiB3329

Cargo.toml.orig-cargoH A D04-Feb-2020655 2926

LICENSEH A D04-Feb-20201 KiB2622

README.mdH A D04-Feb-20201 KiB4327

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> **Note:** This crate has been **deprecated in tokio 0.2.x** and has been moved
8> into [`tokio::io`].
9
10[`tokio::io`]: https://docs.rs/tokio/latest/tokio/io/index.html
11
12[Documentation](https://docs.rs/tokio-io/0.1.12/tokio_io)
13
14## Usage
15
16First, add this to your `Cargo.toml`:
17
18```toml
19[dependencies]
20tokio-io = "0.1"
21```
22
23Next, add this to your crate:
24
25```rust
26extern crate tokio_io;
27```
28
29You can find extensive documentation and examples about how to use this crate
30online at [https://tokio.rs](https://tokio.rs). The [API
31documentation](https://docs.rs/tokio-io) is also a great place to get started
32for the nitty-gritty.
33
34## License
35
36This project is licensed under the [MIT license](LICENSE).
37
38### Contribution
39
40Unless you explicitly state otherwise, any contribution intentionally submitted
41for inclusion in Tokio by you, shall be licensed as MIT, without any additional
42terms or conditions.
43