Files
tokio/README.md
T

44 lines
1.3 KiB
Markdown
Raw Normal View History

2016-09-07 13:05:39 -07:00
# tokio-process
An implementation of process management for Tokio
[![Build Status](https://travis-ci.org/alexcrichton/tokio-process.svg?branch=master)](https://travis-ci.org/alexcrichton/tokio-process)
2016-09-07 16:16:30 -07:00
[![Build status](https://ci.appveyor.com/api/projects/status/43c8g7fy801e5902?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio-process)
2016-12-18 16:00:48 -08:00
[![Crates.io](https://img.shields.io/crates/v/tokio-process.svg?maxAge=2592000)](https://crates.io/crates/tokio-process)
[![Coverage](https://img.shields.io/codecov/c/github/alexcrichton/tokio-process/master.svg)](https://codecov.io/gh/alexcrichton/tokio-process)
2016-09-07 13:05:39 -07:00
2017-01-24 11:09:00 -08:00
[Documentation](https://docs.rs/tokio-process)
2016-09-07 13:05:39 -07:00
## Usage
First, add this to your `Cargo.toml`:
```toml
[dependencies]
2018-05-16 18:12:17 -07:00
tokio-process = "0.2"
2016-09-07 13:05:39 -07:00
```
Next, add this to your crate:
```rust
extern crate tokio_process;
```
2016-09-07 13:05:39 -07:00
# License
2017-10-30 14:09:06 -07:00
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
2016-09-07 13:05:39 -07:00
at your option.
2016-09-07 13:05:39 -07:00
### Contribution
2016-09-07 13:05:39 -07:00
Unless you explicitly state otherwise, any contribution intentionally submitted
2017-12-31 15:00:02 -08:00
for inclusion in tokio-process by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.