about summary refs log tree commit diff
path: root/tvix/nix-compat/src/lib.rs
blob: f30c557889a8d4c6ad69cd2a8b11401432f85f4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
extern crate self as nix_compat;

pub(crate) mod aterm;
pub mod derivation;
pub mod nar;
pub mod narinfo;
pub mod nix_http;
pub mod nixbase32;
pub mod nixcpp;
pub mod nixhash;
pub mod path_info;
pub mod store_path;

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

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