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.
34mod bytes;
5pub use bytes::*;
67mod protocol_version;
8pub use protocol_version::ProtocolVersion;
910pub mod de;
11pub mod ser;