nix_compat/wire/
mod.rs

1//! Module parsing and emitting the wire format used by Nix, both in the
2//! nix-daemon protocol as well as in the NAR format.
3
4mod bytes;
5pub use bytes::*;
6
7mod protocol_version;
8pub use protocol_version::ProtocolVersion;
9
10pub mod de;
11pub mod ser;