This library compiles the Kinetic protocol buffer specification to a Rust library using
rust-protobuf
. Users can simply add the library as a dependency for their projects.
This is not an implementation of a Kinetic client library for Rust: for that, check
out tokio-kinetic
.
This library gives you the option of using dynamic compilation, using
rust-protobuf-build
. Otherwise, it will default to the file included
in the src/
directory.
dynamic-gen
toml
[dependencies.kinetic_protobuf]
git = "https://github.com/peterdelevoryas/kinetic-protobuf"
features = ["dynamic-gen"]
toml
[dependencies.kinetic_protobuf]
git = "https://github.com/peterdelevoryas/kinetic-protobuf"
In your source,
rust
extern crate kinetic_protobuf;