15 releases

0.5.2 Jul 24, 2022
0.5.0 Dec 24, 2020
0.4.0 Nov 4, 2020
0.3.5 Jun 28, 2020
0.1.1 Apr 15, 2019

#178 in WebSocket

Download history 755/week @ 2023-12-11 469/week @ 2023-12-18 168/week @ 2023-12-25 314/week @ 2024-01-01 571/week @ 2024-01-08 454/week @ 2024-01-15 510/week @ 2024-01-22 525/week @ 2024-01-29 478/week @ 2024-02-05 1099/week @ 2024-02-12 791/week @ 2024-02-19 531/week @ 2024-02-26 607/week @ 2024-03-04 671/week @ 2024-03-11 556/week @ 2024-03-18 460/week @ 2024-03-25

2,306 downloads per month
Used in 10 crates (7 directly)

MIT license

42KB
936 lines

websocket-lite

CI

This repo contains three crates:

  • websocket-lite, a fast, low-overhead WebSocket client
  • websocket-codec, a Tokio codec implementation of the WebSocket protocol
  • hyper-websocket-lite, bindings between a hyper server and websocket-codec

websocket-lite

Documentation | Source

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.

websocket-codec

Documentation | Source

This is a standalone crate that does not do any I/O directly. For a full WebSocket client, see the websocket-lite crate.

hyper-websocket-lite

Documentation | Source

Provides the server_upgrade function, which bridges a client's HTTP Upgrade request to the WebSocket protocol.

Additional command line tools

async/await

Version 0.3.2 and above use std futures and the async and await keywords. They are based on tokio 0.2 and futures 0.3 and the earliest supported compiler is 1.39.

Version 0.2.4 is the release prior to async/await. It is based on tokio 0.1 and futures 0.1.

Dependencies

~3.5–5MB
~74K SLoC