Installation
As a Library (Recommended)
Section titled “As a Library (Recommended)”Add Redlite to your Cargo.toml:
cargo add redliteOr manually add to Cargo.toml:
[dependencies]redlite = "0.1"Building from Source
Section titled “Building from Source”git clone https://github.com/russellromney/redlitecd redlitecargo build --releaseThe binary will be at ./target/release/redlite.
Pre-built Binaries
Section titled “Pre-built Binaries”Pre-built binaries are available for major platforms via GitHub Releases. Download the latest release for your platform:
- macOS (Apple Silicon):
redlite-aarch64-apple-darwin - macOS (Intel):
redlite-x86_64-apple-darwin - Linux (x86_64):
redlite-x86_64-unknown-linux-gnu
Or build from source for other platforms.
Requirements
Section titled “Requirements”- Rust (latest stable recommended, for building from source)
- SQLite is bundled — no system dependencies needed
- redis-cli (optional, for testing server mode)