[package]
name = "mockd-http"
version = "0.2.0"
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
description = "Lightweight standalone mock HTTP server for local development, integration tests and CI/CD."
repository = "https://github.com/denislituev/mockd"
homepage = "https://github.com/denislituev/mockd"
authors = ["Mockd contributors"]
readme = "README.md"
keywords = ["mock", "http", "api", "testing", "server"]
categories = ["web-programming::http-server", "development-tools::testing"]
[lib]
name = "mockd"
path = "src/lib.rs"
[[bin]]
name = "mockd"
path = "src/main.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
axum = "0.7"
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
anyhow = "1"
thiserror = "1"
humantime = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4"] }
rand = "0.8"
time = { version = "0.3", features = ["formatting", "macros"] }
schemars = "0.8"
[dev-dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full", "test-util"] }
[profile.release]
lto = "thin"
codegen-units = 1