Prerequisites

Install Rust

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Clone Hyperfile

git clone https://github.com/hyperfile/hyperfile.git

Compile

# default in reactor mode
cargo build --release

# enable WAL feature
cargo build --release --features wal

# compile for blocking mode
cargo build --release --no-default-features --features blocking