Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tower-rs/tokio-tower
A implementation of convenience integrations between tokio and tower
https://github.com/tower-rs/tokio-tower
Last synced: about 2 months ago
JSON representation
A implementation of convenience integrations between tokio and tower
- Host: GitHub
- URL: https://github.com/tower-rs/tokio-tower
- Owner: tower-rs
- License: mit
- Created: 2018-10-16T19:56:08.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-12T14:04:15.000Z (about 1 year ago)
- Last Synced: 2024-10-28T16:17:59.843Z (2 months ago)
- Language: Rust
- Homepage:
- Size: 278 KB
- Stars: 122
- Watchers: 13
- Forks: 21
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Crates.io](https://img.shields.io/crates/v/tokio-tower.svg)](https://crates.io/crates/tokio-tower)
[![Documentation](https://docs.rs/tokio-tower/badge.svg)](https://docs.rs/tokio-tower/)
[![Build Status](https://dev.azure.com/tower-rs/tokio-tower/_apis/build/status/tokio-tower?branchName=master)](https://dev.azure.com/tower-rs/tokio-tower/_build/latest?definitionId=4&branchName=master)
[![Dependency status](https://deps.rs/repo/github/tower-rs/tokio-tower/status.svg)](https://deps.rs/repo/github/tower-rs/tokio-tower)This crate provides convenient wrappers to make
[Tokio](https://tokio.rs) and [Tower](https://github.com/tower-rs/tower)
work together. In particular, it provides:- server bindings wrappers that combine a `tower::Service` with a
transport that implements `Sink` and `Stream`.
- client wrappers that implement `tower::Service` for transports that
implement `Sink` and `Stream`.Take a look at the [crate documentation](https://docs.rs/tokio-tower)
for details.