| Crates.io | clak |
| lib.rs | clak |
| version | 0.1.0 |
| created_at | 2024-12-19 10:21:16.722131+00 |
| updated_at | 2024-12-19 10:21:16.722131+00 |
| description | Minimal Rust implementation of SWIM group membership protocol |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1488990 |
| size | 46,164 |
Minimal Rust implementation of SWIM group membership protocol.
Create cluster:
HOST=127.0.0.1 PORT=4242 RUST_LOG=info cargo run --example basic
Join cluster:
HOST=127.0.0.1 PORT=4243 JOIN_HOST=127.0.0.1 JOIN_PORT=4242 RUST_LOG=info cargo run --example basic
Subscribe to events:
HOST=127.0.0.1 PORT=4244 JOIN_HOST=127.0.0.1 JOIN_PORT=4242 cargo run --example subscription