4 releases (2 breaking)

0.7.0 May 7, 2023
0.6.0 Mar 30, 2023
0.5.1 Mar 28, 2023
0.4.2 Mar 8, 2023
0.1.0 Oct 28, 2022

#1950 in Network programming

Download history 239/week @ 2023-12-11 126/week @ 2023-12-18 7/week @ 2023-12-25 30/week @ 2024-01-01 48/week @ 2024-01-08 92/week @ 2024-01-15 29/week @ 2024-01-22 31/week @ 2024-01-29 68/week @ 2024-02-05 29/week @ 2024-02-12 31/week @ 2024-02-19 87/week @ 2024-02-26 80/week @ 2024-03-04 152/week @ 2024-03-11 143/week @ 2024-03-18 10/week @ 2024-03-25

387 downloads per month

Apache-2.0

27KB
466 lines

Introduction

This library is an implementation of the WebSocket protocol, which provides a way for two-way communication between a client and server over a single TCP connection. This library provides fastest and intuitive WebSocket implementation for both client and server-side applications.

Installation

To use this library, add it as a dependency to your Rust project by adding the following line to your Cargo.toml file:

[dependencies]
web-socket = "0.7"

Example

You can run this example with: cargo run --example minimal

use tokio::io::*;
use web_socket::*;

async fn example<IO>(mut ws: WebSocket<IO>) -> Result<()>
where
    IO: Unpin + AsyncRead + AsyncWrite,
{
    for _ in 0..3 {
        ws.send("Copy Cat!").await?;

        match ws.recv_event().await? {
            Event::Data { ty, data } => {
                assert!(matches!(ty, DataType::Complete(MessageType::Text)));
                assert_eq!(&*data, b"Copy Cat!");
            }
            Event::Ping(data) => ws.send_pong(data).await?,
            Event::Pong(..) => {}
            Event::Error(..) => return ws.close(CloseCode::ProtocolError).await,
            Event::Close { .. } => return ws.close(()).await,
        }
    }
    ws.close("bye!").await
}

For more examples, see ./examples directory.

It passed all test of the autobahn testsuite

License

This project is licensed under Apache License 2.0

Dependencies

~2.4–3.5MB
~54K SLoC