gotham 0.5.0

A flexible web framework that promotes stability, safety, security and speed.
Documentation
[package]
name = "gotham"
version = "0.5.0" # Alter html_root_url in lib.rs also
authors = ["Shaun Mangelsdorf <s.mangelsdorf@gmail.com>",
          "Colin Bankier <colinbankier@gmail.com>",
		  "Dominic Meiser <git@msrd0.de>",
          "Isaac Whitfield <iw@whitfin.io>",
          "Judson Lester <nyarly@gmail.com>",
          "Bradley Beddoes <bradleybeddoes@gmail.com>"]
description = "A flexible web framework that promotes stability, safety, security and speed."
license = "MIT/Apache-2.0"
homepage = "https://gotham.rs"
repository = "https://github.com/gotham-rs/gotham"
readme = "README.md"
categories = ["web-programming::http-server"]
keywords = ["http", "async", "web", "framework", "server"]
edition = "2018"

[features]
default = ["rustls"]
rustls = ["tokio-rustls"]

[dependencies]
log = "0.4"
hyper = "0.13.1"
serde = "1.0"
serde_derive = "1.0"
bincode = "1.0"
mime = "0.3.15"
mime_guess = "2.0.1"
futures = "0.3.1"
tokio = { version = "0.2.6", features = ["full"] }
bytes = "0.5"
mio = "0.7"
borrow-bag = { path = "../misc/borrow_bag", version = "1.0" }
percent-encoding = "2.1"
pin-project = "0.4.20"
uuid = { version = "0.8", features = ["v4"] }
chrono = "0.4"
base64 = "0.12"
rand = "0.6"
rand_chacha = "0.1"
linked-hash-map = "0.5"
num_cpus = "1.8"
regex = "1.0"
cookie = "0.14"
http = "0.2"
httpdate = "0.3"
itertools = "0.9.0"
anyhow = "1.0"
tokio-rustls = { version = "0.14.0", optional = true }

[dev-dependencies]
gotham_derive = { path = "../gotham_derive" }

[badges]
travis-ci = { repository = "gotham-rs/gotham", branch = "master" }