[package]
edition = "2021"
rust-version = "1.87"
name = "rigtest"
version = "0.2.0"
authors = ["Anthony Oteri <anthony.oteri@agiletv.com>"]
build = false
exclude = [
"/.github",
"/examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime library for the cargo-rigtest test framework"
homepage = "https://github.com/anthonyoteri/cargo-rigtest"
readme = "README.md"
keywords = [
"testing",
"cargo",
"integration-testing",
"acceptance-testing",
"subprocess",
]
categories = [
"development-tools::testing",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/anthonyoteri/cargo-rigtest"
[features]
http-client = ["reqwest"]
[lib]
name = "rigtest"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.console]
version = "0.16"
[dependencies.futures]
version = "0.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.linkme]
version = "0.3"
[dependencies.rand]
version = "0.10"
[dependencies.rand_chacha]
version = "0.10"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
optional = true
[dependencies.rigtest-macros]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"process",
"time",
"io-util",
"macros",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"