summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-12-28 16:14:27 +0000
committerGitHub <noreply@github.com>2022-12-28 16:14:27 +0000
commit1ae9cf9eb463f9fdcd5b843f3a6e979a72258e4d (patch)
tree56075181ade1b6514f80d5f336d05a1821912e0e /src/lib.rs
parentcb1f23e1126b6f097906729e6b775499f55a07df (diff)
parent7863c3bcf8c7ca37bfc5652ec92e620968e635e4 (diff)
Merge #3
3: Transform codebase to use thiserror r=matthiasbeyer a=matthiasbeyer Co-authored-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index bcb6ae0..67bce67 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,5 +16,8 @@ pub use node::*;
mod node_id;
pub use node_id::*;
+mod error;
+pub use error::*;
+
#[cfg(test)]
mod test_impl;