Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Building from Source

Prerequisites

Build

git clone https://github.com/aorumbayev/lazylora.git
cd lazylora
cargo build --release

Binary: target/release/lazylora

Install Locally

cargo install --path .

Run Tests

# Install nextest (faster test runner)
cargo install cargo-nextest

# Run all tests
cargo t --all-features

# Run specific test
cargo t <test_name>

Development

cargo build          # debug build
cargo run            # run debug build
cargo clippy         # lint
cargo fmt            # format