1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# bmo build recipes
_default:
just --list
# Run all tests
test:
cargo test
# Check formatting and run clippy
check:
just lint
cargo check --all
# Alias for check
lint:
cargo fmt --check
cargo clippy --all-targets --all-features -- -D warnings
# Release build
build:
cargo build --release
# Remove build artifacts
clean:
cargo clean
# Install binary to Cargo bin path
install:
cargo install --path .
# Run cargo fmt
fmt:
cargo fmt
# Run the demo
demo:
cargo run --example demo