https://github.com/bschwind/sus
[WIP] An open-source clone of a popular impostor game.
https://github.com/bschwind/sus
Last synced: 8 months ago
JSON representation
[WIP] An open-source clone of a popular impostor game.
- Host: GitHub
- URL: https://github.com/bschwind/sus
- Owner: bschwind
- Created: 2020-10-25T08:33:07.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-07-17T06:19:11.000Z (almost 3 years ago)
- Last Synced: 2025-04-06T23:44:45.436Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 264 KB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sus
An open-source clone of a popular impostor game.
## Dependencies
- cargo
- rustc
- cmake (for building GLSL shaders with `shaderc`)
## Build
```
$ cargo build --release
```
## Run the Game
```
$ cargo run --bin client --release
```
## Run the Server
```
$ cargo run --bin server --release
```
## Testing
```
$ cargo test
```
## Code Format
The formatting options currently use nightly-only options.
```
$ cargo +nightly fmt
```
## Code Linting
```
$ cargo clippy
```