blob: cd7b87aacd85ed5d11d5e4e4a18211fd03cfa732 (
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.
#[cfg(feature = "async")]
pub mod bytes;
#[cfg(feature = "async")]
pub mod primitive;
#[cfg(feature = "async")]
pub mod worker_protocol;
|