Avalon role game coded in Rust. Game Rules
git clone https://github.com/tul1/avalon-rs.git
cd ./avalon-rs
cargo build
cargo test
In case you don't want to install all the dependencies in your local machine you can run our project inside a Docker. With the commands beneath you'll be able to launch a Docker container and run try avalon-rs locally.
docker build -t avalon-rs:latest .
docker run -it --rm avalon-rs bash
cd avalon-rs
A public image is also available in dockerhub, you just have to run this command to get it.
docker pull tul1/avalon-rs:latest