[package]
edition = "2021"
rust-version = "1.87"
name = "fun_run"
version = "0.8.0"
build = "build.rs"
include = [
"src/**/*",
"build.rs",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The fun way to run your Rust Command"
documentation = "https://docs.rs/fun_run"
readme = "README.md"
keywords = [
"command",
"execute",
"run",
"stream",
"CLI",
]
license = "MIT"
repository = "https://github.com/schneems/fun_run"
[features]
which_problem = ["dep:which_problem"]
[lib]
name = "fun_run"
path = "src/lib.rs"
[dependencies.regex]
version = "1"
[dependencies.which_problem]
version = "0.1"
optional = true
[dev-dependencies.indoc]
version = "2.0.7"
[dev-dependencies.pretty_assertions]
version = "1"
[build-dependencies.autocfg]
version = "1"