iced/examples/websocket
Héctor Ramón Jiménez 11474bdc3e
Fix websocket example
2024-01-11 06:12:37 +01:00
..
src Fix websocket example 2024-01-11 06:12:37 +01:00
Cargo.toml Update async-tungstenite in websocket example 2023-12-11 10:57:48 +01:00
README.md Update README file of websocket example 2022-01-16 19:59:59 +07:00

Websocket

A simple example that keeps a WebSocket connection open to an echo server.

The example consists of 3 modules:

  • main contains the Application logic.
  • echo implements a WebSocket client for the echo::server with async-tungstenite.
  • echo::server implements a simple WebSocket echo server with warp.

You can run it with cargo run:

cargo run --package websocket