| Crates.io | tokio-tungstenite_wasi |
| lib.rs | tokio-tungstenite_wasi |
| version | 0.18.0 |
| created_at | 2023-02-04 03:07:34.483912+00 |
| updated_at | 2023-02-04 03:07:34.483912+00 |
| description | Tokio binding for Tungstenite, the Lightweight stream-based WebSocket implementation |
| homepage | https://github.com/WasmEdge/tokio-tungstenite |
| repository | https://github.com/WasmEdge/tokio-tungstenite |
| max_upload_size | |
| id | 776185 |
| size | 103,242 |
Asynchronous WebSockets for Tokio stack.
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.
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.
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.