Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 624 Bytes

File metadata and controls

32 lines (21 loc) · 624 Bytes

Compiling from source

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.