about summary refs log tree commit diff
path: root/tvix/nix-compat/src/lib.rs
blob: a71ede3eecf00511c69298add8ea1bbdad1735bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod aterm;
pub mod derivation;
pub mod nar;
pub mod narinfo;
pub mod nixbase32;
pub mod nixhash;
pub mod path_info;
pub mod store_path;

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

#[cfg(feature = "wire")]
mod nix_daemon;
#[cfg(feature = "wire")]
pub use nix_daemon::worker_protocol;
#[cfg(feature = "wire")]
pub use nix_daemon::ProtocolVersion;