about summary refs log blame commit diff
path: root/tvix/nix-compat/src/wire/mod.rs
blob: cb14e4d420b76858b3076f9bb847e22725c4a1b1 (plain) (tree)
1
2
3
4
5
6
7



                                                                        


                         




                                  
                  


                         
//! 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;