mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-03 00:00:05 +02:00
process: Add deprecation warning (relates #2036)
This commit is contained in:
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
An implementation of process management for Tokio
|
An implementation of process management for Tokio
|
||||||
|
|
||||||
|
> This crate has been **deprecated in tokio 0.2.x** and has been moved into
|
||||||
|
> [`tokio::process`] behind the `process` [feature flag].
|
||||||
|
|
||||||
|
[`tokio::process`]: https://docs.rs/tokio/latest/tokio/process/index.html
|
||||||
|
[feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
|
||||||
|
|
||||||
[Documentation](https://docs.rs/tokio-process/0.2.4/tokio_process)
|
[Documentation](https://docs.rs/tokio-process/0.2.4/tokio_process)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
//! An implementation of asynchronous process management for Tokio.
|
//! An implementation of asynchronous process management for Tokio.
|
||||||
//!
|
//!
|
||||||
|
//! > This crate has been **deprecated in tokio 0.2.x** and has been moved into
|
||||||
|
//! > [`tokio::process`] behind the `process` [feature flag].
|
||||||
|
//!
|
||||||
|
//! [`tokio::process`]: https://docs.rs/tokio/latest/tokio/process/index.html
|
||||||
|
//! [feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
|
||||||
|
//!
|
||||||
//! This crate provides a `CommandExt` trait to enhance the functionality of the
|
//! This crate provides a `CommandExt` trait to enhance the functionality of the
|
||||||
//! `Command` type in the standard library. The three methods provided by this
|
//! `Command` type in the standard library. The three methods provided by this
|
||||||
//! trait mirror the "spawning" methods in the standard library. The
|
//! trait mirror the "spawning" methods in the standard library. The
|
||||||
|
|||||||
Reference in New Issue
Block a user