about summary refs log tree commit diff
path: root/tvix/derivation/src/lib.rs
blob: 4f17c3906e4cd3c34d18d2f0a1b6d5a543e261bf (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::Derivation;
pub use errors::{DerivationError, OutputError};
pub use output::{Hash, Output};