From ec4f062e4ebc1593456f7e7f85725dde3bcf16cf Mon Sep 17 00:00:00 2001 From: "Darek N." Date: Fri, 4 Oct 2024 15:25:34 +0200 Subject: [PATCH] feat: Expose error types (#8) --- chromaprint/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chromaprint/src/lib.rs b/chromaprint/src/lib.rs index 343686e..bdf52b5 100644 --- a/chromaprint/src/lib.rs +++ b/chromaprint/src/lib.rs @@ -1,6 +1,7 @@ //! Pure Rust port of [chromaprint](https://acoustid.org/chromaprint) -pub use fingerprint_matcher::{match_fingerprints, Segment}; +pub use audio_processor::ResetError; +pub use fingerprint_matcher::{match_fingerprints, Segment, MatchError}; pub use fingerprinter::{Configuration, Fingerprinter}; mod audio_processor;