kinetic-protobuf 0.1.0

Rust library for interfacing with Kinetic protocol buffers.
Documentation

kinetic-protobuf

Build Status License

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.

Usage

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

[dependencies.kinetic_protobuf]
git = "https://github.com/peterdelevoryas/kinetic-protobuf"
features = ["dynamic-gen"]

default

[dependencies.kinetic_protobuf]
git = "https://github.com/peterdelevoryas/kinetic-protobuf"

In your source,

extern crate kinetic_protobuf;