s/tokio/tower (#7)

This commit is contained in:
Eliza Weisman 2017-09-18 14:05:09 -05:00 committed by Carl Lerche
parent d5f253c577
commit 270ef5a2bd
1 changed files with 8 additions and 11 deletions

View File

@ -1,11 +1,8 @@
# tokio-service
# tower
Definition of the core `Service` trait in Tokio
fn(Request) -> Future<Response>
[![Build Status](https://travis-ci.org/tokio-rs/tokio-service.svg?branch=master)](https://travis-ci.org/tokio-rs/tokio-service)
[![Build status](https://ci.appveyor.com/api/projects/status/qgostmtadmlqae8n?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio-service)
[Documentation](https://docs.rs/tokio-service)
[![Build Status](https://travis-ci.org/carllerche/tower.svg?branch=master)](https://travis-ci.org/carllerche/tower)
## Usage
@ -13,22 +10,22 @@ First, add this to your `Cargo.toml`:
```toml
[dependencies]
tokio-service = { git = "https://github.com/tokio-rs/tokio-service" }
tower = { git = "https://github.com/carllerche/tower" }
```
Next, add this to your crate:
```rust
extern crate tokio_service;
extern crate tower;
```
You can find extensive examples and tutorials in addition to the [API
documentation](https://docs.rs/tokio-service) at
[https://tokio.rs](https://tokio.rs)
documentation](https://docs.rs/tower) at
[https://tower.rs](https://tower.rs)
# License
`tokio-service` is primarily distributed under the terms of both the MIT
`tower` 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.