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

#[cfg(test)]
mod tests;

// Public API of the crate.

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