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;
5#[cfg(feature = "nix-compat-derive")]
6mod serde;
7pub use bytes::*;
8
9mod protocol_version;
10pub use protocol_version::ProtocolVersion;
11
12pub mod de;
13pub mod ser;