From afc6e258ce0445c804707f7cee2daccde1df937d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 24 Jun 2024 07:13:44 +0200 Subject: [PATCH] feat: export `gix_validate` as `validate`. The crate appears in the public API of `gix_index::State::from_tree` but it's types weren't readily available. --- gix/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/gix/src/lib.rs b/gix/src/lib.rs index f193ecd74aa..43d7ef87e25 100644 --- a/gix/src/lib.rs +++ b/gix/src/lib.rs @@ -110,6 +110,7 @@ pub use gix_features::{ progress::{Count, DynNestedProgress, NestedProgress, Progress}, threading, }; +pub use gix_validate as validate; pub use gix_fs as fs; pub use gix_glob as glob; pub use gix_hash as hash;