From 6e37c21bf21f409e7c6a54452d00b486c85e4bc6 Mon Sep 17 00:00:00 2001 From: Breval Ferrari Date: Sat, 19 Apr 2025 18:03:21 -0400 Subject: [PATCH] add unimplemented tip when binary feature is disabled --- bingus/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bingus/src/lib.rs b/bingus/src/lib.rs index 376c089..3d21216 100644 --- a/bingus/src/lib.rs +++ b/bingus/src/lib.rs @@ -222,7 +222,7 @@ mod dynamic { buf }), #[cfg(not(feature = "binary"))] - _ => unimplemented!("no format available to open this thing"), + _ => unimplemented!("no format reader available to open this thing (turn on the 'binary' feature to default to binary data)"), }) }, )