[package]
edition = "2024"
name = "wireframe_testing"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Helper utilities for exercising Wireframe applications in tests"
documentation = "https://docs.rs/wireframe_testing"
readme = "README.md"
keywords = [
"async",
"networking",
"binary-protocol",
"protocol",
"tokio",
]
categories = [
"network-programming",
"asynchronous",
]
license = "ISC"
repository = "https://github.com/leynos/wireframe"
[lib]
name = "wireframe_testing"
path = "src/lib.rs"
[[test]]
name = "integration_helpers"
path = "tests/integration_helpers.rs"
[dependencies.bincode]
version = "^2.0"
[dependencies.bytes]
version = "^1.0"
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.logtest]
version = "2"
[dependencies.metrics]
version = "0.24.3"
[dependencies.metrics-util]
version = "0.20"
[dependencies.rstest]
version = "0.18.2"
[dependencies.thiserror]
version = "2.0.16"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"io-util",
"net",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.wireframe]
version = "0.3.0"
features = ["testkit"]