salvo_extra 0.37.1

Salvo is a powerful and simplest web server framework in Rust world.
Documentation
[dependencies.async-compression]
features = ["brotli", "deflate", "gzip", "tokio"]
optional = true
version = "0.3"

[dependencies.async-session]
optional = true
version = "3"

[dependencies.base64]
optional = true
version = "0.13"

[dependencies.bytes]
optional = true
version = "1"

[dependencies.etag]
features = ["std"]
optional = true
version = "3"

[dependencies.fastrand]
optional = true
version = "1"

[dependencies.futures-util]
optional = true
version = "0.3"

[dependencies.hyper]
features = ["stream", "server", "http1", "http2", "tcp", "client"]
optional = true
version = "0.14"

[dependencies.hyper-rustls]
features = ["http1", "http2"]
optional = true
version = "0.23"

[dependencies.jsonwebtoken]
optional = true
version = "8"

[dependencies.once_cell]
optional = true
version = "1"

[dependencies.pin-project]
optional = true
version = "1"

[dependencies.salvo_core]
version = "0.37.1"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1"

[dependencies.serde_json]
optional = true
version = "1"

[dependencies.tokio]
optional = true
version = "1"

[dependencies.tokio-stream]
optional = true
version = "0.1"

[dependencies.tokio-tungstenite]
optional = true
version = "0.17"

[dependencies.tokio-util]
features = ["io"]
optional = true
version = "0.7"

[dependencies.tracing]
optional = true
version = "0.1"
[dev-dependencies.reqwest]
version = "0.11"

[dev-dependencies.time]
version = "0.3"

[dev-dependencies.tracing-test]
version = "0.2.1"

[features]
affix = []
basic-auth = ["dep:base64"]
caching-headers = ["dep:etag", "dep:tracing"]
compression = ["dep:async-compression", "dep:bytes", "tokio", "dep:tokio-stream", "dep:tokio-util", "dep:tracing"]
default = ["full"]
force-https = ["dep:tracing"]
full = ["affix", "basic-auth", "caching-headers", "force-https", "jwt-auth", "compression", "logging", "proxy", "sse", "size-limiter", "trailing-slash", "timeout", "ws"]
jwt-auth = ["dep:jsonwebtoken", "dep:once_cell", "dep:serde", "salvo_core/cookie", "dep:tracing"]
logging = ["dep:tracing"]
proxy = ["dep:fastrand", "dep:hyper", "hyper-rustls/webpki-tokio", "dep:once_cell", "tokio", "dep:tracing"]
size-limiter = []
sse = ["dep:futures-util", "dep:pin-project", "tokio", "dep:serde", "dep:serde_json", "dep:tracing"]
timeout = ["tokio/macros"]
trailing-slash = ["dep:tracing"]
ws = ["dep:futures-util", "dep:hyper", "tokio-tungstenite", "dep:tracing"]

[package]
authors = ["Chrislearn Young <chrislearn@hotmail.com>"]
categories = ["web-programming::http-server", "web-programming::websocket", "network-programming", "asynchronous"]
description = "Salvo is a powerful and simplest web server framework in Rust world.\n"
edition = "2021"
homepage = "https://salvo.rs"
keywords = ["http", "async", "web", "framework", "server"]
license = "MIT OR Apache-2.0"
name = "salvo_extra"
readme = "README.md"
repository = "https://github.com/salvo-rs/salvo"
resolver = "1"
version = "0.37.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]