[package]
edition = "2021"
name = "fast-command"
version = "0.1.1"
authors = ["Mark Tyrkba <marktyrkba456@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple implementation of `Command` to avoid fork + exec overhead."
readme = "README.md"
keywords = [
"command",
"shell",
"execution",
"performance",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/rakivo/fast-command"
[lib]
name = "fast_command"
path = "command.rs"
[[example]]
name = "simple_example"
path = "examples/example.rs"
[dependencies.libc]
version = "0.2.169"