websocket-lite 0.3.1-alpha.6

A fast, low-overhead WebSocket client
Documentation
[package]
name = "websocket-lite"
description = "A fast, low-overhead WebSocket client"
version = "0.3.1-alpha.6"
authors = ["Tim Robinson <tim.g.robinson@gmail.com>"]
repository = "https://github.com/1tgr/rust-websocket-lite"
license = "MIT"
edition = "2018"

[lib]
path = "src/lib.rs"

[[example]]
name = "async-autobahn-client"
path = "examples/async-autobahn-client.rs"

[[example]]
name = "autobahn-client"
path = "examples/autobahn-client.rs"

[[example]]
name = "hello-world-client"
path = "examples/hello-world-client.rs"

[[example]]
name = "wsdump"
path = "examples/wsdump.rs"

[dependencies]
base64 = "0.9"
bytes = "0.4"
futures-preview = "0.3.0-alpha.19"
native-tls = { version = "0.2", optional = true }
openssl = { version = "0.10", optional = true }
rand = "0.5"
tokio-codec = "0.2.0-alpha.6"
tokio-io = { version = "0.2.0-alpha.6", features = ["util"] }
tokio-openssl = { version = "0.4.0-alpha.6", optional = true }
tokio-net = { version = "0.2.0-alpha.6", features = ["tcp"] }
tokio-tls = { version = "0.3.0-alpha.6", optional = true }
url = "1"
websocket-codec = { version = "0.2.1-alpha.6", path = "../websocket-codec" }

[dev-dependencies]
structopt = "0.2"
tokio = "0.2.0-alpha.6"

[features]
default = ["ssl-native-tls"]
nightly = []
ssl-native-tls = ["native-tls", "tokio-tls"]
ssl-openssl = ["openssl", "tokio-openssl"]

## Uncomment to enable the SSLKEYLOGFILE environment variable when the ssl-openssl feature is used
# [patch.crates-io]
# openssl = { git = "https://github.com/sfackler/rust-openssl" }