Prerequisites
There a few required applications you will need in order to build and develop
artemis
.
artemis
is written in Rust. So you will need to download and install the Rust programming language- Git
- Rust analzyer
- An IDE or text editor. VSCode or VSCodium are great choices. IntelliJ with the Rust plugin also works.
artemis
has been developed on:
- macOS 12 (Monterey) and higher
- Windows 10 and higher
Building
Once you have Rust and Git installed you can build artemis
.
- Clone
artemis
repo at https://github.com/puffycid/artemis - Navigate to the source code
- Run
cargo build
. By default cargo builds adebug
version of the binary. If you want to build therelease
version of the binary runcargo build --release
# Download artemis source code
git clone https://github.com/puffycid/artemis
cd artemis
# Build debug version
cargo build
# Build release version
cargo build --release