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

..30-Mar-2022-

src/H30-Mar-2022-161116

tests/H30-Mar-2022-524399

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

CHANGELOG.mdH A D30-Mar-202252 42

Cargo.tomlH A D30-Mar-20221,017 3127

LICENSEH A D30-Mar-20221 KiB2622

README.mdH A D30-Mar-2022783 3623

README.md

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