about summary refs log tree commit diff
path: root/tvix/derivation/src/lib.rs
blob: 01b7552a6f1882a5b8426e9bf16a265c517223f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod derivation;
mod errors;
mod nix_hash;
mod output;
mod string_escape;
mod validate;
mod write;

#[cfg(test)]
mod tests;

// Public API of the crate.

pub use derivation::Derivation;
pub use errors::{DerivationError, OutputError};
pub use output::{Hash, Output};