We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c1d7c02 + c8c56ae commit f71b7a0Copy full SHA for f71b7a0
gix-index/src/lib.rs
@@ -10,7 +10,10 @@ use bstr::{BStr, ByteSlice};
10
use std::{ops::Range, path::PathBuf};
11
12
use filetime::FileTime;
13
+/// `gix_hash` is made available as it's part of the public API in various places.
14
pub use gix_hash as hash;
15
+/// A re-export to allow calling [`State::from_tree()`].
16
+pub use gix_validate as validate;
17
18
///
19
#[allow(clippy::empty_docs)]
gix/src/lib.rs
@@ -140,6 +140,7 @@ pub use gix_url as url;
140
#[doc(inline)]
141
pub use gix_url::Url;
142
pub use gix_utils as utils;
143
144
pub use hash::{oid, ObjectId};
145
146
pub mod interrupt;
0 commit comments