laminar 0.5.0

A simple semi-reliable UDP protocol for multiplayer games
Documentation
version: '3'
services:
  server:
    image: "laminar-tester:latest"
    command: server --bind-host 0.0.0.0
    ports:
      - "2264:2264/udp"
    environment:
      - RUST_LOG=debug
      - RUST_BACKTRACE=1

  client:
    image: "laminar-tester:latest"
    command: client --connect-host server --bind-host 0.0.0.0
    ports:
      - "2265:2265/udp"
    environment:
      - RUST_LOG=debug
      - RUST_BACKTRACE=1
    depends_on:
      - server