refactor(tvix/glue): Make a single errors.rs module
To pave the way for adding a new error type for builtins in this crate, move DerivationError to a new builtins::errors module. Change-Id: I65fcad63e43ed40ad39c2c6540a2ab80fdd90fd4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11016 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Autosubmit: aspen <root@gws.fyi>
This commit is contained in:
parent
782cfa9e33
commit
ffb134398d
2 changed files with 9 additions and 10 deletions
|
|
@ -5,12 +5,11 @@ use std::rc::Rc;
|
|||
use crate::tvix_store_io::TvixStoreIO;
|
||||
|
||||
mod derivation;
|
||||
mod derivation_error;
|
||||
mod errors;
|
||||
mod fetchers;
|
||||
|
||||
mod import;
|
||||
|
||||
pub use derivation_error::Error as DerivationError;
|
||||
pub use errors::DerivationError;
|
||||
|
||||
/// Adds derivation-related builtins to the passed [tvix_eval::Evaluation].
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue