envoy_http 0.0.8

A minimal and pragmatic Rust web application framework built for rapid development
Documentation
[package]
name = "envoy_http"
version = "0.0.8"
description = "A minimal and pragmatic Rust web application framework built for rapid development"
documentation = "https://docs.rs/envoy_http"
keywords = ["envoy", "http", "web", "framework", "async"]
categories = [
  "network-programming",
  "asynchronous",
  "web-programming::http-server"
]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/framework-tools/envoy"

[features]

[dependencies]
tokio-util = { version = "0.7.2", features = ["compat"]}
async-trait = "0.1.41"
tracing = "0.1.33"
pin-project-lite = "0.2.0"
serde = "1.0.117"
serde_json = "1.0.59"
routefinder = "0.5.0"
async_fn_traits = "0.1.1"
tokio = { version = "1.18.2", features = ["net"] }
hyper = { version = "0.14.19", features = ["full"] }
anyhow = "1.0.57"

[dev-dependencies]
tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"]}
async-std = { version = "1.6.5", features = ["unstable", "attributes"] }
criterion = "0.3.3"
lazy_static = "1.4.0"
logtest = "2.0.0"
portpicker = "0.1.0"
serde = { version = "1.0.117", features = ["derive"] }
tempfile = "3.1.0"