roa-core 0.5.0-beta

core components of roa web framework
Documentation
[package]
name = "roa-core"
version = "0.5.0-beta"
authors = ["Hexilee <i@hexilee.me>"]
edition = "2018"
license = "MIT"
readme = "./README.md"
repository = "https://github.com/Hexilee/roa"
documentation = "https://docs.rs/roa-core"
homepage = "https://github.com/Hexilee/roa/wiki"
description = "core components of roa web framework"
keywords = ["http", "web", "framework", "async"]
categories = ["network-programming", "asynchronous",
              "web-programming::http-server"]


[package.metadata.docs.rs]
features = ["runtime"]

[badges]
codecov = { repository = "Hexilee/roa" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures = "0.3"
bytes = "0.5"
http = "0.2"
hyper = { version = "0.13", default-features = false, features = ["stream"] }
log = "0.4"
tokio = "0.2"
async-trait = "0.1.24"
async-std = { version = "1.5.0", features = ["unstable"], optional = true }

[dev-dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }

[features]
runtime = ["async-std"]