1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! 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
//! github repo to generate Rust using [prost] (which implements [protobuf]).
//! 
//! [repl.it]: https://repl.it
//! [container protocol]: https://github.com/replit/protocol
//! [prost]: https://crates.io/crates/prost
//! [protobuf]: https://developers.google.com/protocol-buffers

include!(concat!(env!("OUT_DIR"), "/api.rs"));