Compiling from source
July 30, 2025 ยท View on GitHub
This file covers how to compile vertd from source.
Prerequisites
- Git
- A working Rust toolchain
Cloning the repository
To clone the repository, run:
$ git clone https://github.com/VERT-sh/vertd
$ cd vertd/
Compiling
You can compile vertd using cargo (Rust's package manager and build tool):
$ cargo build # for a debug build
$ cargo build --release # for a release build
You might also run it by using cargo run instead.