iced/examples/websocket
Héctor Ramón 1923dbf7f0
Merge pull request #1393 from iced-rs/deprecate-stateful-widgets
Replace stateful widgets with the new `iced_pure` API
2022-08-06 00:32:57 +02:00
..
src Implement scrollable::snap_to operation 2022-08-04 03:55:41 +02:00
Cargo.toml Merge pull request #1393 from iced-rs/deprecate-stateful-widgets 2022-08-06 00:32:57 +02: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