[package]
edition = "2024"
name = "vespera_inprocess"
version = "0.1.50"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-process HTTP dispatch for axum — drive a Router via oneshot without a TCP socket"
readme = false
license = "Apache-2.0"
repository = "https://github.com/dev-five-git/vespera"
resolver = "2"
[lib]
name = "vespera_inprocess"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
[dependencies.http]
version = "1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["rt"]
[dependencies.tower]
version = "0.5"
features = ["util"]
[lints.clippy]
collection_is_never_read = "warn"
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "warn"
redundant_pub_crate = "warn"
use_self = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]