# tokio-proto **Repository Path**: mirrors_tokio-rs/tokio-proto ## Basic Information - **Project Name**: tokio-proto - **Description**: A network application framework for Rust - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-10-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # This crate is deprecated! This crate is deprecated without an immediate replacement. Discussion about a successor can be found in [tokio-rs/tokio#118](https://github.com/tokio-rs/tokio/issues/118). # 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](https://travis-ci.org/tokio-rs/tokio-proto.svg?branch=master)](https://travis-ci.org/tokio-rs/tokio-proto) [Documentation](https://docs.rs/tokio-proto) | [Gitter](https://gitter.im/tokio-rs/tokio) | [Tutorial](https://tokio.rs) [transport]: https://tokio.rs/docs/going-deeper-tokio/transports/ [Tokio]: https://tokio.rs ## Usage First, add this to your `Cargo.toml`: ```toml [dependencies] tokio-proto = { git = "https://github.com/tokio-rs/tokio-proto" } ``` Next, add this to your crate: ```rust extern crate tokio_proto; ``` You can find extensive examples and tutorials at [https://tokio.rs](https://tokio.rs). ## Getting Help If you have questions or need further help getting started, consider joining the chat in our [Gitter Channel](http://gitter.im/tokio-rs/tokio). ## 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.