An open API service indexing awesome lists of open source software.

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.

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
```