instruction_serialiser 0.0.6

This package helps developers serialising calculation instructions for reusing or archiving them.
Documentation
# Instruction Serialiser Rust


This is the Rust implementation of the instruction serialiser.

## Using the library

Install the library as described on its
[page on crates.io](https://crates.io/crates/instruction_serialiser).

## Extending the library

This implementation uses Rust's build script to automatically compile
the current definitions when the library is compiled.

The implementation of the program logic can be found in the
[src directory](src). The [lib.rs](src/lib.rs) file exposes the
functionality.

Tests can be found right inside the files which also contain the program
logic. If you want to write your own tests please put them there.

## Publishing new versions

All files required for building need to reside inside the working directory.
References to external files like the proto definitions residing in the
parent directory cause the resulting package to be invalid. Therefore,
[a script](publish.sh) temporarily importing external dependencies to the
working directory, updating relative paths and performing the publish
operation is provided. It accepts all commandline arguments `cargo publish`
accepts as well.