iotics-grpc-client 0.3.0

IOTICS gRPC client
Documentation

iotics-grpc-client-rs

Crates Crates.io CI dependency status license
IOTICS gRPC client in Rust.

Usage

iotics-grpc-client = "0.3"

API Docs

Running the examples

Rename .env-sample to .env and give values to the environment variables.

cargo run --example search

Contributing

Proto files

Incrementing the API version

Run

cd api
git fetch --all --tags
git checkout tags/vX.X.X
cd ..
git add api

git commit -m "Updated api to vX.X.X"
git push

Updating the API version

git submodule update --remote

PRs

Should contain a summary of the changes in CHANGELOG.md under the Unreleased section.

Releasing

    git push
    git tag -a vX.X.X -m "vX.X.X"
    git push origin vX.X.X