drone-rs 0.1.0

A Rust SDK for drone flight control, telemetry, and communication protocols.
Documentation
  • Coverage
  • 100%
    1 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 42.2 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 103.2 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • arshadm

drone-rs

A Rust SDK for drone flight control, telemetry, and communication protocols.

Prerequisites

  • Rust: the latest stable toolchain, via rustup:

    rustup toolchain install stable
    rustup default stable
    

Getting started

git clone git@github.com:teenygrad/drone-rs.git
cd drone-rs
cargo build

Development

cargo build               # Build
cargo test                # Run all tests
cargo clippy -- -D warnings  # Lint
cargo fmt                 # Format
cargo doc --open          # Build and open docs locally