solana-ws 0.2.0

Lightweight, event-driven WebSockets for Rust.
Documentation
[package]
authors = ["Solana Labs <maintainers@solana.com>"]
description = "Lightweight, event-driven WebSockets for Rust."
documentation = "https://ws-rs.org/docs"
keywords = [
    "websocket",
    "mio",
    "event-driven",
    "io",
    "web",
]
license = "MIT"
name = "solana-ws"
readme = "README.md"
repository = "https://github.com/solana-labs/ws-rs"
version = "0.2.0"

[dependencies]
byteorder = "1.2.1"
bytes = "0.4.6"
httparse = "1.2.4"
log = "0.4.1"
mio = "0.6.14"
mio-extras = "2.0"
rand = "0.4.2"
sha1 = "0.6.0"
slab = "0.4"
url = "1.7.0"

[dependencies.libc]
optional = true
version = "0.2.40"

[dependencies.libz-sys]
optional = true
version = "1.0.18"

[dependencies.openssl]
optional = true
version = "0.10"

[dependencies.native-tls]
optional = true
version = "0.1.5"

[dev-dependencies]
clap = "2.27"
env_logger = "0.4"
term = "0.4"
time = "0.1"

[features]
default = []
permessage-deflate = [
    "libz-sys",
    "libc",
]
ssl = ["openssl"]
nativetls = ["native-tls"]