5 unstable releases

Uses old Rust 2015

0.11.1 Oct 28, 2021
0.11.0 Jul 14, 2021
0.10.1 Jul 8, 2021
0.10.0 Sep 17, 2020
0.8.0 Jan 28, 2019

#102 in WebSocket

Download history 2028/week @ 2023-12-18 760/week @ 2023-12-25 553/week @ 2024-01-01 1000/week @ 2024-01-08 1100/week @ 2024-01-15 1082/week @ 2024-01-22 680/week @ 2024-01-29 883/week @ 2024-02-05 1105/week @ 2024-02-12 1452/week @ 2024-02-19 1126/week @ 2024-02-26 1234/week @ 2024-03-04 818/week @ 2024-03-11 1429/week @ 2024-03-18 1446/week @ 2024-03-25 2082/week @ 2024-04-01

5,946 downloads per month
Used in 25 crates (4 directly)

MIT license

250KB
5.5K SLoC

WS-RS

Lightweight, event-driven WebSockets for Rust.


/// A WebSocket echo server
listen("127.0.0.1:3012", |out| {
    move |msg| {
        out.send(msg)
    }
})

This fork

Note this is (hopefuly) a temporary fork of the original crate until https://github.com/housleyjk/ws-rs/pull/328 gets merged.

Introduction

Build Status MIT licensed

Homepage

API Documentation

This library provides an implementation of WebSockets, RFC6455 using MIO. It allows for handling multiple connections on a single thread, and even spawning new client connections on the same thread. This makes for very fast and resource efficient WebSockets. The API design abstracts away the menial parts of the WebSocket protocol and allows you to focus on application code without worrying about protocol conformance. However, it is also possible to get low-level access to individual WebSocket frames if you need to write extensions or want to optimize around the WebSocket protocol.

Getting Started

For detailed installation and usage instructions, check out the guide.

Features

WS-RS provides a complete implementation of the WebSocket specification. There is also support for ssl and permessage-deflate.

Testing

WS-RS is thoroughly tested and passes the Autobahn Test Suite for WebSockets, including the tests for permessage-deflate. Visit ws-rs.org to view the results of the latest test run.

Contributing

Please report bugs and make feature requests here.

Dependencies

~3–16MB
~208K SLoC