Installation
Make sure your rust version is greater than or equal to 1.76.0, and then you can install moors directly from crates.io doing
cargo add moors
Make sure your python version is greater than or equal to 3.10 and then can install pymoors directly from PyPI doing
pip install pymoors
Development
Quick Start
# Fork & clone the repo
git clone https://github.com/your-username/moo-rs.git
cd moo-rs
# Setup development environment (syncs dependencies & hooks)
make setup
# Build everything (moors + pymoors)
make build-dev
# Run all tests
make test
# Format & lint code
make lint
make fmt
For detailed requirements and advanced commands, see the Developer Guide.