make87

Crates.iomake87
lib.rsmake87
version0.2.4
created_at2024-10-09 23:17:46.493713+00
updated_at2025-09-20 00:04:20.5049+00
descriptionRust SDK for make87 platform.
homepagehttps://www.make87.com
repositoryhttps://github.com/make87/make87-rust
max_upload_size
id1403188
size488,861
Nisse Knudsen (nisseknudsen)

documentation

README

make87 Banner Logo

make87 SDK for Rust

Overview

The make87 SDK for Rust provides tools and libraries to interact with the make87 platform. This SDK is designed to be compatible with Rust 2021 edition and supports optional features for different transports and encodings.

Installation

To add the SDK to your project, include it in your Cargo.toml:

[dependencies]
make87 = "*"  # replace with latest version

Optional Features

You can enable additional features for transport and encoding support:

  • zenoh → Enables Zenoh transport (enables interfaces::zenoh)
  • rerun → Enables Rerun gRPC transport (enables interfaces::rerun)
  • protobuf → Enables Protobuf encoding (enables encodings::protobuf)
  • yaml → Enables YAML encoding (enables encodings::yaml)

Example:

[dependencies]
make87 = { version = "*", features = ["zenoh", "protobuf", "yaml"] }

Usage

Feature-gated Modules

  • interfaces::zenoh is only available if the zenoh feature is enabled.

  • interfaces::rerun is only available if the rerun feature is enabled.

  • encodings::protobuf is only available if the protobuf feature is enabled.

  • encodings::yaml is only available if the yaml feature is enabled.

Documentation

To build the documentation locally, use the following command:

cargo doc --open

Contributing

We welcome contributions to the make87 SDK. Please follow these steps to contribute:

  1. Fork the repository.
  2. Create a new branch for your feature or bugfix.
  3. Make your changes.
  4. Ensure all tests pass (cargo test).
  5. Submit a pull request.
Commit count: 44

cargo fmt