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.
To add the SDK to your project, include it in your Cargo.toml:
[dependencies]
make87 = "*" # replace with latest versionYou 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:
[dependencies]
make87 = { version = "*", features = ["zenoh", "protobuf", "yaml"] }interfaces::zenohis only available if thezenohfeature is enabled.encodings::protobufis only available if theprotobuffeature is enabled.encodings::yamlis only available if theyamlfeature is enabled.
To build the documentation locally, use the following command:
cargo doc --openWe 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.