No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2018-07-22 21:21:56 +02:00
examples Remove boxing from the example, use FutureResult (#167) 2017-12-16 10:49:39 -06:00
src Redox support 2018-05-28 11:57:05 +02:00
tests Fix delayed Pipeline closure (#195) 2017-12-16 13:24:05 -06:00
.gitignore Initial commit 2016-08-03 10:11:45 -07:00
.travis.yml Tweak travis config 2016-12-02 14:06:25 -08:00
Cargo.toml Use upstream net2 2018-07-22 21:21:56 +02:00
CHANGELOG.md Bump version to v0.1.1 2017-03-15 10:54:22 -07:00
LICENSE-APACHE Initial commit 2016-08-03 10:11:45 -07:00
LICENSE-MIT Initial commit 2016-08-03 10:11:45 -07:00
README.md Update links to pages in the tokio.rs going-deeper section (#162) 2017-04-26 11:32:46 -07:00

tokio-proto

tokio-proto makes it easy to implement clients and servers for request / response oriented protocols. It takes a transport and provides the request / response API. It is a part of the Tokio platform.

Build Status

Documentation | Gitter | Tutorial

Usage

First, add this to your Cargo.toml:

[dependencies]
tokio-proto = { git = "https://github.com/tokio-rs/tokio-proto" }

Next, add this to your crate:

extern crate tokio_proto;

You can find extensive examples and tutorials at https://tokio.rs.

Getting Help

If you have questions or need further help getting started, consider joining the chat in our Gitter Channel.

License

Tokio is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.