sleep_protocol/
lib.rs

1//!  SLEEP Network Protocol protobuf definitions.
2//!  Generated using [`rust-protobuf`] according to the definitions in the [Dat paper].
3//!
4//!  [`rust-protobuf`]: https://github.com/stepancheg/rust-protobuf
5//!  [Dat paper]: https://github.com/datproject/docs/blob/master/papers/dat-paper.md
6
7extern crate protobuf;
8
9pub mod cancel;
10pub mod data;
11pub mod feed;
12pub mod handshake;
13pub mod have;
14pub mod info;
15pub mod request;
16pub mod unhave;
17pub mod unwant;
18pub mod want;