[package]
edition = "2021"
rust-version = "1.87"
name = "fun_run"
version = "0.7.0"
build = false
include = [
"src/**/*",
"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.pretty_assertions]
version = "1"