[package]
edition = "2021"
rust-version = "1.96"
name = "churust-json"
version = "0.3.2"
authors = ["David Cruz Anaya <david.cruz@davthecoder.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON content-negotiation plugin (Json<T> extractor/responder) for the Churust web framework."
homepage = "https://github.com/davthecoder/Churust"
readme = "README.md"
keywords = [
"web",
"framework",
"http",
"ktor",
"async",
]
categories = [
"web-programming::http-server",
"asynchronous",
"network-programming",
]
license = "MIT"
repository = "https://github.com/davthecoder/Churust"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "churust_json"
path = "src/lib.rs"
[[test]]
name = "content_type"
path = "tests/content_type.rs"
[[test]]
name = "head_error_framing"
path = "tests/head_error_framing.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1"
[dependencies.churust-core]
version = "0.3.2"
[dependencies.http]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"io-util",
"time",
"sync",
"signal",
"macros",
]