Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI by suppressing clippy::manual_non_exhaustive warning #828

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/error.rs
Expand Up @@ -5,6 +5,11 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Clippy complains about not using #[non_exhaustive] attribute but the
// attribute is not available in 1.37.0, which is MSRV of this library.
#![allow(clippy::manual_non_exhaustive)]

use super::Dimension;
use std::error::Error;
use std::fmt;
Expand Down