[package]
edition = "2021"
name = "hen"
version = "0.19.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run protocol-aware API request collections from the command line or through MCP."
homepage = "https://hen-api.com"
readme = "README.md"
keywords = [
"api",
"testing",
]
license = "MIT"
repository = "https://gitlab.com/ben_goodman/apps/hen"
[lib]
name = "hen"
path = "src/lib.rs"
[[bin]]
name = "hen"
path = "src/main.rs"
[[test]]
name = "binary_smoke"
path = "tests/binary_smoke.rs"
[[test]]
name = "non_interactive_cli"
path = "tests/non_interactive_cli.rs"
[[test]]
name = "output_cli"
path = "tests/output_cli.rs"
[[test]]
name = "verify_cli"
path = "tests/verify_cli.rs"
[dependencies.chrono]
version = "0.4.42"
[dependencies.clap]
version = "4.5.20"
features = ["derive"]
[dependencies.console]
version = "0.15"
[dependencies.dialoguer]
version = "0.11.0"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.http]
version = "1.1.0"
[dependencies.log]
version = "0.4.22"
[dependencies.pest]
version = "2.7.14"
[dependencies.pest_derive]
version = "2.7.14"
[dependencies.petgraph]
version = "0.6"
[dependencies.regex]
version = "1.10.4"
[dependencies.reqwest]
version = "0.12.8"
features = [
"json",
"multipart",
"gzip",
"cookies",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.simple_logger]
version = "5.0.0"
[dependencies.tokio]
version = "1.40.0"
features = [
"macros",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.28.0"
features = ["native-tls"]
[dependencies.uuid]
version = "1.18.1"
[dev-dependencies.tempfile]
version = "3.10"