Build scripts utility for Exonum

Travis Build Status License: Apache-2.0 rust 1.41.0+ required

This crate simplifies writing build scripts for Exonum and Exonum services.

Since Protobuf is the Exonum default serialization format, build scripts are mostly used to compile Protobuf files and generate corresponding code. Generated code is used later by the Exonum core and services.

There are several predefined sets of protobuf sources available for use. Currently presented sets:

Consult the crate docs for more details.

Examples

Sample build.rs using exonum-build:

```rust use exonum_build::ProtobufGenerator;

fn main() { ProtobufGenerator::withmodname("protobufmod.rs") .withinputdir("src/proto") .withcrypto() .generate(); } ```

Usage

Include exonum-build as a dependency in your Cargo.toml:

toml [build-dependencies] exonum-build = "1.0.0-rc.3"

Known Issues

The [code generator][rust-protobuf] used by the crate does not support hierarchies, instead using a flat structure for the generated Rust modules. This means that compile errors can occur if the generator input (accounting for includes!) contains several Protobuf files with the same base name (e.g., foo/bar.proto and other/bar.proto).

License

exonum-build is licensed under the Apache License (Version 2.0). See LICENSE for details.