mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-14 00:00:12 +02:00
44 lines
1.3 KiB
Markdown
44 lines
1.3 KiB
Markdown
# tokio-process
|
|
|
|
An implementation of process management for Tokio
|
|
|
|
[](https://travis-ci.org/alexcrichton/tokio-process)
|
|
[](https://ci.appveyor.com/project/alexcrichton/tokio-process)
|
|
[](https://crates.io/crates/tokio-process)
|
|
[](https://codecov.io/gh/alexcrichton/tokio-process)
|
|
|
|
[Documentation](https://docs.rs/tokio-process)
|
|
|
|
## Usage
|
|
|
|
First, add this to your `Cargo.toml`:
|
|
|
|
```toml
|
|
[dependencies]
|
|
tokio-process = "0.2"
|
|
```
|
|
|
|
Next, add this to your crate:
|
|
|
|
```rust
|
|
extern crate tokio_process;
|
|
```
|
|
|
|
|
|
# License
|
|
|
|
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)
|
|
|
|
at your option.
|
|
|
|
### Contribution
|
|
|
|
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
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.
|