[package]
edition = "2024"
name = "tasty"
version = "0.9.6"
authors = ["Jesse Lawson <jesse@lawsonry.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI that runs API tests defined and grouped in TOML files."
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/jesselawson/tasty"
[lib]
name = "tasty"
path = "src/lib.rs"
[[bin]]
name = "tasty"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0.96"
[dependencies.clap]
version = "4.5.30"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.httpmock]
version = "0.7.0"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.12.13"
features = [
"json",
"rustls-tls",
]
[dependencies.serde]
version = "1.0.218"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.139"
[dependencies.tokio]
version = "1.43.0"
features = ["full"]
[dependencies.toml]
version = "0.8.20"