tokio-tungstenite_wasi

Crates.iotokio-tungstenite_wasi
lib.rstokio-tungstenite_wasi
version0.18.0
sourcesrc
created_at2023-02-04 03:07:34.483912
updated_at2023-02-04 03:07:34.483912
descriptionTokio binding for Tungstenite, the Lightweight stream-based WebSocket implementation
homepagehttps://github.com/WasmEdge/tokio-tungstenite
repositoryhttps://github.com/WasmEdge/tokio-tungstenite
max_upload_size
id776185
size103,242
Michael Yuan (juntao)

documentation

https://docs.rs/tokio-tungstenite/0.18.0

README

tokio-tungstenite

Asynchronous WebSockets for Tokio stack.

MIT licensed Crates.io Build Status

Documentation

Usage

Add this in your Cargo.toml:

[dependencies]
tokio-tungstenite = "*"

Take a look at the examples/ directory for client and server examples. You may also want to get familiar with Tokio if you don't have any experience with it.

What is tokio-tungstenite?

This crate is based on tungstenite-rs Rust WebSocket library and provides Tokio bindings and wrappers for it, so you can use it with non-blocking/asynchronous TcpStreams from and couple it together with other crates from Tokio stack.

Features

As with tungstenite-rs TLS is supported on all platforms using native-tls or rustls through feature flags: native-tls, rustls-tls-native-roots or rustls-tls-webpki-roots feature flags. Neither is enabled by default. See the Cargo.toml for more information. If you require support for secure WebSockets (wss://) enable one of them.

Commit count: 286

cargo fmt