httpbis 0.3.1

Rust implementation of HTTP/2 protocol
Documentation
[package]
name = "httpbis" # because name "http2" has already been claimed by another user
version = "0.3.1"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Rust implementation of HTTP/2 protocol"
repository = "https://github.com/stepancheg/rust-http2"
keywords = ["http2"]

[lib]
doctest = false

[dependencies]

log             = "0.*"
futures         = "0.*"
futures-cpupool = "0.*"
tokio-core      = "0.*"
tokio-io        = "0.*"
tokio-timer     = "0.*"
tokio-tls-api   = "0.*"
tls-api         = "0.*"
tls-api-stub    = "0.*"
void            = "1"
net2 = "0.2"
bytes = "0.*"

[dev-dependencies]

env_logger         = "0.*"
regex              = "0.2"
tls-api-native-tls = "0.*"
tls-api-openssl    = "0.*"
url                = "1"

[workspace]
members = ["interop/with-rust"]