mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-03 10:00:19 +00:00
8 lines
205 B
Rust
8 lines
205 B
Rust
use crate::Error;
|
|
|
|
pub fn no_support() -> Error {
|
|
Error::UnsupportedFormat {
|
|
reason: "BZip3 support is disabled for this build, possibly due to missing bindgen-cli dependency.".into(),
|
|
}
|
|
}
|