[package]
edition = "2024"
rust-version = "1.85"
name = "umbral-testing"
version = "0.0.4"
authors = ["Dalmas Ogembo <dalmasogembo@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Test helpers for umbral apps: TestClient, temp pools, response assertions, and model factories (factory_boy-style)."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dalmasonto/umbral"
[lib]
name = "umbral_testing"
path = "src/lib.rs"
[[test]]
name = "factory"
path = "tests/factory.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.fake]
version = "2"
[dependencies.http]
version = "1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"sqlite",
"postgres",
"runtime-tokio",
]
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = [
"sync",
"macros",
"rt",
]
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.umbral]
version = "0.0.4"
[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]