| Crates.io | bevy_replicon_example_backend |
| lib.rs | bevy_replicon_example_backend |
| version | 0.38.0 |
| created_at | 2025-02-12 11:14:56.510508+00 |
| updated_at | 2026-01-13 22:48:23.567104+00 |
| description | A simple transport intended only for examples |
| homepage | |
| repository | https://github.com/simgine/bevy_replicon |
| max_upload_size | |
| id | 1552923 |
| size | 138,310 |
A simple TCP backend for running examples, testing backend API and serving as a reference for backend implementation.
[!WARNING] DO NOT USE this in a real project. Instead, choose a proper backend from Messaging backends.
To run an example use the following command:
cargo run -p bevy_replicon_example_backend --example <example name> -- <example CLI args>
Pass --help after the -- to see the available example CLI options.
In all examples, you need to start the server first since connecting via TCP in the Rust standard library is blocking. You won't have this issue with a real backend.