make87-0.2.1-dev1 has been yanked.
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)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.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
We welcome contributions to the make87 SDK. Please follow these steps to contribute:
- Fork the repository.
- Create a new branch for your feature or bugfix.
- Make your changes.
- Ensure all tests pass (
cargo test). - Submit a pull request.