[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-command"
version = "0.1.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"coverage.sh",
"COVERAGE.md",
"COVERAGE.zh_CN.md",
".circleci/*",
"ci-check.sh",
".llvm-cov.toml",
".cargo-audit.toml.example",
]
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_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_tests"
path = "tests/command_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.thiserror]
version = "2.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]