[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-command"
version = "0.4.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line process running utilities for Rust"
homepage = "https://github.com/qubit-ltd/rs-command"
documentation = "https://docs.rs/qubit-command"
readme = "README.md"
keywords = [
"command",
"process",
"shell",
"utility",
"qubit",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-command"
[lib]
name = "qubit_command"
path = "src/lib.rs"
doctest = true
[[test]]
name = "command_env_tests"
path = "tests/command_env_tests.rs"
[[test]]
name = "command_error_tests"
path = "tests/command_error_tests.rs"
[[test]]
name = "command_output_tests"
path = "tests/command_output_tests.rs"
[[test]]
name = "command_runner_tests"
path = "tests/command_runner_tests.rs"
[[test]]
name = "command_stdin_tests"
path = "tests/command_stdin_tests.rs"
[[test]]
name = "command_tests"
path = "tests/command_tests.rs"
[[test]]
name = "coverage_support_tests"
path = "tests/coverage_support_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "output_stream_tests"
path = "tests/output_stream_tests.rs"
[dependencies.log]
version = "0.4"
[dependencies.process-wrap]
version = "9.1"
features = [
"std",
"process-group",
"job-object",
]
default-features = false
[dependencies.qubit-sanitize]
version = "0.2"
[dependencies.thiserror]
version = "2.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]