⚠️ Deprecated (legacy make87 app-platform SDK)
This SDK supported the legacy make87 "application SDK integration" workflow. make87 has pivoted to a CLI/agent-based device management workflow.
This package is unmaintained and will receive no further updates or fixes. If you are still using it, pin your dependency and migrate off this package.
Status: Deprecated • Maintenance: none
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:
[]
= "*" # replace with latest version
Optional Features
You can enable additional features for transport and encoding support:
zenoh→ Enables Zenoh transport (enablesinterfaces::zenoh)rerun→ Enables Rerun gRPC transport (enablesinterfaces::rerun)protobuf→ Enables Protobuf encoding (enablesencodings::protobuf)yaml→ Enables YAML encoding (enablesencodings::yaml)
Example:
[]
= { = "*", = ["zenoh", "protobuf", "yaml"] }
Usage
Feature-gated Modules
interfaces::zenohis only available if thezenohfeature is enabled.interfaces::rerunis only available if thererunfeature is enabled.encodings::protobufis only available if theprotobuffeature is enabled.encodings::yamlis only available if theyamlfeature is enabled.
Documentation
To build the documentation locally, use the following command:
Contributing
This repository is archived and unmaintained. Issues and pull requests are not accepted.