We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3b591b commit 519abebCopy full SHA for 519abeb
.github/workflows/tests.yml
@@ -56,6 +56,9 @@ jobs:
56
- name: Check no-default-features
57
run: cargo check --no-default-features
58
59
+ - name: Check no-default-features with std
60
+ run: cargo check --no-default-features --features std
61
+
62
tests:
63
64
name: Tests
src/errors.rs
@@ -5,7 +5,7 @@ use core::str::Utf8Error;
5
6
#[cfg(feature = "images")]
7
use image::ImageError;
8
-#[cfg(feature = "images")]
+#[cfg(feature = "std")]
9
use std::io::Error as IOError;
10
11
/// Error that can occur when reading and parsing bytes.
0 commit comments