replit_protocol/
lib.rs

1//! The unofficial [repl.it] container protocol for Rust.
2//! 
3//! The [container protocol] is what [repl.it] uses for communication with it's
4//! repl containers. This uses the `api.proto` file which can be found on the
5//! github repo to generate Rust using [prost] (which implements [protobuf]).
6//! 
7//! [repl.it]: https://repl.it
8//! [container protocol]: https://github.com/replit/protocol
9//! [prost]: https://crates.io/crates/prost
10//! [protobuf]: https://developers.google.com/protocol-buffers
11
12include!(concat!(env!("OUT_DIR"), "/api.rs"));