replit-protocol 0.1.1

Repl.it's container protocol in Rust.
[![crates.io](https://img.shields.io/crates/v/replit-protocol)](https://crates.io/crates/replit-protocol) [![docs.rs](https://docs.rs/replit-protocol/badge.svg)](https://docs.rs/replit-protocol) ![crates.io](https://img.shields.io/crates/l/replit-protocol)

The unofficial [repl.it] container protocol for Rust.

The container protocol is what [repl.it] uses for communication with it's
repl containers. This uses the `api.proto` file which can be found on the
[protocol] github repo to generate Rust using [prost] (which implements
[protobuf]).

All files in the generated `api.rs` file are available from the root of this
crate.

## Building
When building this crate with `cargo build`, it's required that the `OUT_DIR`
enviornment variable to `src/`. This way the crate can properly include the
`api.rs` file which is created from the `api.proto` file by [prost-build].

[repl.it]: https://repl.it
[protocol]: https://github.com/replit/protocol
[prost]: https://crates.io/crates/prost
[prost-build]: https://crates.io/crates/prost-build
[protobuf]: https://developers.google.com/protocol-buffers