websocket-lite 0.3.2

A fast, low-overhead WebSocket client
Documentation
[package]
name = "websocket-lite"
description = "A fast, low-overhead WebSocket client"
version = "0.3.2"
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.11"
bytes = "0.5"
futures = "0.3.1"
native-tls = { version = "0.2", optional = true }
openssl = { version = "0.10", optional = true }
rand = "0.7"
tokio-util = {version= "0.2", features=["codec"]}
tokio-openssl = { version = "0.4.0-alpha.6", optional = true }
tokio-tls = { version = "0.3", optional = true }
tokio = {version="0.2", features=["tcp", "io-util"]}
url = "2"
websocket-codec = { version = "0.2.2", path = "../websocket-codec" }

[dev-dependencies]
structopt = "0.3"
tokio = {version ="0.2.2", features=["macros", "time", "io-std"]}

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