about summary refs log tree commit diff
path: root/tvix/nix-compat/src/wire/mod.rs
blob: c3e88dda05ec187a1fbe548fdcb563083b2162e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! Module parsing and emitting the wire format used by Nix, both in the
//! nix-daemon protocol as well as in the NAR format.

mod bytes;
pub use bytes::*;

mod protocol_version;
pub use protocol_version::ProtocolVersion;

pub mod de;
pub mod ser;