tokio-interactive 0.2.0

Asynchronous Interactive Process Management with Tokio
Documentation
[dependencies.anyhow]
version = ">=1.0"

[dependencies.env_logger]
version = ">=0.10"

[dependencies.log]
version = ">=0.4"

[dependencies.pretty_env_logger]
optional = true
version = "0.5.0"

[dependencies.serde]
features = ["derive"]
version = ">=1.0"

[dependencies.tokio]
features = ["macros", "process", "sync", "rt", "io-std", "io-util", "rt-multi-thread", "time"]
version = ">=1.40"

[[example]]
name = "basic_example"
path = "examples/basic_example.rs"

[features]
debug = ["dep:pretty_env_logger"]
default = []

[lib]
name = "tokio_interactive"
path = "src/lib.rs"

[package]
authors = ["Drew Chase"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Asynchronous Interactive Process Management with Tokio"
edition = "2024"
license = "MIT"
name = "tokio-interactive"
readme = "README.md"
repository = "https://github.com/Drew-Chase/tokio-interactive.git"
version = "0.2.0"

[target.'cfg(target_os = "linux")'.dependencies.libc]
version = ">=0.2"

[target.'cfg(target_os = "windows")'.dependencies.winapi]
features = ["processthreadsapi", "handleapi", "errhandlingapi", "wincon"]
version = ">=0.3"