coreemu-rs
This is a client library to use the gRPC interface of coreemu from rust. All gRPC functions are exposed in their raw form as produced by tonic-build but there are is also a thin (and incomplete) wrapper to make the API a bit more usable.
To use this library add the following dependency to your Cargo.toml:
coreemu = "*"
or just call:
cargo add coreemu
Example
The following example connects to the local coreemu instance and prints all node information from the first running instance found.
use Client;
async