Skip to content

Commit

Permalink
Allow clippy multiple_crate_versions checks, because they are trigger…
Browse files Browse the repository at this point in the history
…ed through the dependency graph in a way that we can't control.

Signed-off-by: Paul Howard <paul.howard@arm.com>
  • Loading branch information
paulhowardarm committed Apr 29, 2024
1 parent 787f03d commit 67fbdff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions c-wrapper/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2022 Contributors to the Veraison project.
// SPDX-License-Identifier: Apache-2.0

#![allow(clippy::multiple_crate_versions)]

use std::ffi::{c_void, CStr, CString};

use core::slice;
Expand Down
2 changes: 2 additions & 0 deletions rust-client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2022 Contributors to the Veraison project.
// SPDX-License-Identifier: Apache-2.0

#![allow(clippy::multiple_crate_versions)]

#[derive(thiserror::Error, PartialEq, Eq)]
pub enum Error {
#[error("configuration error: {0}")]
Expand Down

0 comments on commit 67fbdff

Please sign in to comment.