blob: 65c053d58e21073aef6a621e961a611927ecf7f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
//! 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 primitive;
pub use primitive::*;
|