[package]
edition = "2024"
name = "catalyst"
version = "0.2.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight API testing tool"
homepage = "https://github.com/caffeidine/catalyst"
readme = "README.md"
keywords = [
"testing",
"api",
"http",
"cli",
"e2e",
]
categories = ["development-tools"]
license = "MPL-2.0"
repository = "https://github.com/caffeidine/catalyst"
[lib]
name = "catalyst"
path = "src/lib.rs"
[[bin]]
name = "catalyst"
path = "src/main.rs"
[[test]]
name = "cli_variables_tests"
path = "tests/cli_variables_tests.rs"
[[test]]
name = "command_hooks_tests"
path = "tests/command_hooks_tests.rs"
[[test]]
name = "engine_assertions_tests"
path = "tests/engine_assertions_tests.rs"
[[test]]
name = "env_var_usage"
path = "tests/env_var_usage.rs"
[[test]]
name = "failure_summary_tests"
path = "tests/failure_summary_tests.rs"
[[test]]
name = "file_inclusion_tests"
path = "tests/file_inclusion_tests.rs"
[[test]]
name = "http_client_tests"
path = "tests/http_client_tests.rs"
[[test]]
name = "json_path_tests"
path = "tests/json_path_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "utils_string_tests"
path = "tests/utils_string_tests.rs"
[dependencies.clap]
version = "4.5.31"
features = ["derive"]
[dependencies.colored]
version = "3.0.0"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.regex]
version = "1.11.1"
[dependencies.reqwest]
version = "0.12.12"
features = [
"json",
"cookies",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.tokio]
version = "1.44.0"
features = ["full"]
[dependencies.toml]
version = "0.9.5"
[dev-dependencies.tempfile]
version = "3.0"