websocket-lite 0.2.2

A fast, low-overhead WebSocket client
Documentation
# websocket-lite

[Documentation](https://docs.rs/websocket-lite)

A fast, low-overhead WebSocket client.

This crate is optimised for receiving a high volume of messages over a long period. A key feature is that it makes
no memory allocations once the connection is set up and the initial messages have been sent and received; it reuses
a single pair of buffers, which are sized for the longest message seen so far.

You can use this crate in both asynchronous (futures-based) and synchronous code.
`native_tls` provides the TLS functionality for `wss://...` servers.

This crate is fully conformant with the fuzzingserver module in the
[Autobahn test suite](https://github.com/crossbario/autobahn-testsuite).