seawater

Semantic Versioning 2.0.0 Linux Windows made-with-rust GitHub license Github tag

A high performance entity component system useful as a backend for developing GUI applications and video games.

Table of contents

Prerequisites

Format the project

sh cargo fmt

Automatically format the project on change

sh cargo watch -x fmt

Lint the project

sh cargo clippy --all-features

Automatically lint the project on change

sh cargo watch -x "clippy --all-features"

Build the project

sh cargo build

Automatically build the project on change

sh cargo watch -x build

Test the project

sh cargo test

Automatically test the project on change

sh cargo watch -x test