Crates.io | sprocket_engine |
lib.rs | sprocket_engine |
version | 0.2.1 |
source | src |
created_at | 2020-10-10 15:49:49.063015 |
updated_at | 2020-10-10 15:49:49.063015 |
description | A vulkan game engine |
homepage | |
repository | |
max_upload_size | |
id | 298060 |
size | 41,528 |
A modular and extensible game engine and game framework written in Rust
Sprocket is still in very early development and no features are to be considered stable
Sprocket uses the cargo build system with which means that all rust dependencies are automatically downloaded.
There are however some additional dependencies that cannot be resolved automatically and need to be installed automatically
Install dependencies with your package manager
sudo apt install xorg-dev cmake # Debian/Ubuntu
sudo pacman -S xorg-server-devel cmake # Arch/Manjaro
sudo xbps-install libX11-devel cmake # Void
Make sure Rust is installed. See https://www.rust-lang.org/tools/install
Build the project
cargo build
The first build may take a while as it needs to download all Rust dependencies, but subsequent builds will take much less time.
Install Rust and cmake manually
cmake: https://cmake.org/download/
Rust: https://www.rust-lang.org/tools/install
Build the project
cargo build
cargo run -p sandbox
This will automatically build the project if it is out of date