roa-core 0.5.0-alpha

core components of roa web framework
Documentation
[package]
name = "roa-core"
version = "0.5.0-alpha"
authors = ["Hexilee <hexileee@gmail.com>"]
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"
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"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[badges]
github = { repository = "Hexilee/roa" }

[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"]