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 1bf19cf commit c72c4a8Copy full SHA for c72c4a8
.github/workflows/ci.yml
@@ -98,6 +98,8 @@ jobs:
98
- name: Pin deps that break MSRV
99
if: matrix.rust_version == '1.71.0'
100
run: |
101
+ cargo update -p dpi --precise 0.1.1
102
+ cargo update -p zune-jpeg --precise 0.4.14
103
cargo update -p half --precise 2.4.1
104
cargo update -p bumpalo --precise 3.14.0
105
src/error.rs
@@ -204,6 +204,7 @@ impl<T> SwResultExt<T> for Option<T> {
204
///
205
/// This prevents `x11-dl` and `x11rb` from becoming public dependencies, since users cannot downcast
206
/// to this type.
207
+#[allow(dead_code)]
208
struct LibraryError<E>(E);
209
210
impl<E: fmt::Debug> fmt::Debug for LibraryError<E> {
0 commit comments