Skip to content

Latest commit

 

History

History
97 lines (64 loc) · 1.27 KB

File metadata and controls

97 lines (64 loc) · 1.27 KB

DEVELOPMENT

We follow standard, cargo based operations for compiling and unit testing Rust code.

For advanced operations, such as linting, we further supplement with some software industry tools.

PREREQUISITES

Recommended

Postinstall

Register output of go env GOBIN to PATH environment variable.

Register ~/.cargo/bin to PATH environment variable.

TASKS

We automate engineering tasks.

Build

make

Install

make install

Uninstall

make uninstall

Security Audit

make audit

Lint

make lint

Test

make test

Crosscompile Binaries

make crit

Package Binaries

make package

Upload Packages

make upload

Publish Crate

make publish

Clean Workspace

make clean