[package]
name = "aitch"
version = "0.1.1"
authors = ["Michael Killough <michaeljkillough@gmail.com>"]
description = "A HTTP server toolkit, loosely based on Go's net/http."
readme = "README.md"
license = "MIT"
repository = "https://github.com/mjkillough/aitch"
[dependencies.bytes]
version = "0.4"
[dependencies.futures]
version = "0.1"
[dependencies.http]
version = "0.1"
[dependencies.hyper]
version = "0.12"
optional = true
[dependencies.mime_guess]
version = "1.8.5"
optional = true
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.tiny_http]
version = "0.6.0"
optional = true
[dependencies.tokio-threadpool]
version = "0.1"
optional = true
[dev-dependencies.reqwest]
version = "0.8"
[dev-dependencies.serde_derive]
version = "1.0"
[features]
default = ["json", "server-hyper", "server-tiny-http", "mime_guess"]
json = ["serde", "serde_json"]
server-hyper = ["hyper"]
server-tiny-http = ["tiny_http", "tokio-threadpool"]
[badges.travis-ci]
branch = "master"
repository = "https://github.com/mjkillough/aitch"