# drone-rs
A Rust SDK for drone flight control, telemetry, and communication protocols.
## Prerequisites
- **Rust**: the latest stable toolchain, via [rustup](https://rustup.rs/):
```bash
rustup toolchain install stable
rustup default stable
```
## Getting started
```bash
git clone git@github.com:teenygrad/drone-rs.git
cd drone-rs
cargo build
```
## Development
```bash
cargo build # Build
cargo test # Run all tests
cargo clippy -- -D warnings # Lint
cargo fmt # Format
cargo doc --open # Build and open docs locally
```