http-api-problem 0.23.0

A library to create HTTP error response content for APIs based on RFC 7807
Documentation
[package]
name = "http-api-problem"
version = "0.23.0"
authors = ["Christian Douven <chridou@users.noreply.github.com>"]
description = "A library to create HTTP error response content for APIs based on RFC 7807"
repository = "https://github.com/chridou/http-api-problem"
homepage = "https://github.com/chridou/http-api-problem"
documentation = "https://docs.rs/http-api-problem"
readme = "README.md"
keywords = ["http", "api", "json", "error", "7807"]
categories = ["web-programming"]
license = "Apache-2.0/MIT"
edition = "2018"

[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
http = { version = "0.2" }
hyper = { version = "0.14", optional = true }
actix-web-crate = { package = "actix-web", version = "3", optional = true }
actix = { version = "0.11", optional = true }
warp = { version = "0.3", optional = true, default-features = false }
salvo = { version = "0.9", optional = true, default-features = false }

[features]
default = []
actix-web = ["actix-web-crate", "actix"]
api-error = []

[package.metadata.docs.rs]
all-features = true