sley_protocol/lib.rs
1// sley#7: untrusted-input parsing crate — fallible ops propagate errors;
2// the only retained `expect`s would be documented compile-time invariants.
3#![cfg_attr(not(test), deny(clippy::unwrap_used, clippy::expect_used))]
4
5mod pktline;
6mod promisor;
7mod receive_pack;
8mod sideband;
9mod upload_pack;
10mod v0;
11mod v1;
12mod v2;
13
14#[cfg(test)]
15mod tests;
16
17pub use pktline::*;
18pub use promisor::*;
19pub use sideband::*;
20pub use v0::*;
21
22pub use receive_pack::*;
23pub use upload_pack::*;
24pub use v2::*;