2016-09-07 13:05:39 -07:00
|
|
|
# tokio-process
|
|
|
|
|
|
|
|
|
|
An implementation of process management for Tokio
|
|
|
|
|
|
|
|
|
|
[](https://travis-ci.org/alexcrichton/tokio-process)
|
2016-09-07 16:16:30 -07:00
|
|
|
[](https://ci.appveyor.com/project/alexcrichton/tokio-process)
|
2016-12-18 16:00:48 -08:00
|
|
|
[](https://crates.io/crates/tokio-process)
|
2019-05-13 00:01:15 -07:00
|
|
|
[](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;
|
|
|
|
|
```
|
|
|
|
|
|
2017-10-30 14:06:47 -07:00
|
|
|
|
2016-09-07 13:05:39 -07:00
|
|
|
# License
|
|
|
|
|
|
2017-10-30 14:09:06 -07:00
|
|
|
This project is licensed under either of
|
2017-10-30 14:06:47 -07:00
|
|
|
|
|
|
|
|
* 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
|
|
|
|
2017-10-30 14:06:47 -07:00
|
|
|
at your option.
|
2016-09-07 13:05:39 -07:00
|
|
|
|
2017-10-30 14:06:47 -07:00
|
|
|
### Contribution
|
2016-09-07 13:05:39 -07:00
|
|
|
|
2017-10-30 14:06:47 -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
|
2017-10-30 14:06:47 -07:00
|
|
|
dual licensed as above, without any additional terms or conditions.
|