add unimplemented tip when binary feature is disabled

This commit is contained in:
Breval Ferrari 2025-04-19 18:03:21 -04:00
parent 9596264322
commit 6e37c21bf2
Signed by: breval
GPG key ID: A2EEBF62257FF960

View file

@ -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)"),
})
},
)