# Zero Trust RPS
Play rock paper scissors online.
## Client
```sh
cargo install zero-trust-rps --no-default-features --features=client
rps-client --domain=blackjack.joshix.asozial.org
```
## Server
```sh
cargo install zero-trust-rps --no-default-features --features=server
rps-server --public ...
```
Make sure to open 8111/udp in the firewall.
## Development
### Server
```sh
cargo run server
```
### Client
```sh
cargo run client
```
## As dependency
```toml
[dependencies]
zero-trust-rps = { version = "0.0.3", default-features = false }
```