eggress-testkit 1.0.4

Test utilities for eggress proxy
Documentation
[package]
name = "eggress-testkit"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "Test utilities for eggress proxy"
keywords = ["proxy", "testing", "testkit", "fixtures"]
categories = ["development-tools::testing"]
readme = "README.md"

[[bin]]
name = "strict-report"
path = "src/bin/strict_report.rs"

[dependencies]
tokio.workspace = true
tempfile.workspace = true
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
thiserror.workspace = true
tokio-rustls.workspace = true
rustls.workspace = true
rcgen = "0.13"
regex.workspace = true

[dev-dependencies]
tokio-test.workspace = true
# Internal dev-deps kept path-only on purpose: they form a dev-dep cycle
# (eggress-testkit <-> eggress-runtime <-> eggress-testkit) that cannot be
# resolved against crates.io at publish time. The eggress-testkit library
# itself does not need these to compile, only the workspace integration
# tests do, and those run only from a local checkout.
eggress-config = { path = "../eggress-config" }
eggress-runtime = { path = "../eggress-runtime" }
eggress-pproxy-compat = { path = "../eggress-pproxy-compat" }

[lints]
workspace = true