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

#[cfg(feature = "async")]
pub mod bytes;

#[cfg(feature = "async")]
mod bytes_writer;
#[cfg(feature = "async")]
pub use bytes_writer::BytesWriter;

#[cfg(feature = "async")]
pub mod primitive;

#[cfg(feature = "async")]
pub mod worker_protocol;