about summary refs log tree commit diff
path: root/tvix/nix-compat/src/wire/mod.rs
blob: 83d4a7c9bbca6897af34c8e6bee829af295bc31b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//! 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::*;

pub mod worker_protocol;