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

..15-Mar-2021-

src/H15-Mar-2021-161116

tests/H15-Mar-2021-524399

.cargo-checksum.jsonH A D15-Mar-20211,013 11

CHANGELOG.mdH A D15-Mar-202152 42

Cargo.tomlH A D15-Mar-20211,017 3127

LICENSEH A D15-Mar-20211 KiB2622

README.mdH A D15-Mar-2021783 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