A cross-platform simple voxel editor written is rust, using wgpu-rs. The UI elements are composed with the iced-wgpu wrapper
Download and install rustup
from https://rustup.rs/
You can test it with:
rustc -V
Install Linux gtk dependency
sudo apt update && sudo apt install libgtk-3-dev
Before building, first you need to fix an issue with the following command:
cargo update -p error-code --precise 2.0.0
You can build the project with:
cargo build --release
You can run the application with:
cargo run --release
You can build the app with "--debug" to get better backtrace.
You can run the tests with
cargo test