Skip to content

Commit

Permalink
Merge pull request #515 from Superhepper/clippy-1.77.1-lint-problem
Browse files Browse the repository at this point in the history
Disables the clippy multiple_crate_versions lint error.
  • Loading branch information
ionut-arm authored Apr 2, 2024
2 parents e1d708a + 3740a84 commit f327371
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tss-esapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "tss-esapi"
version = "8.0.0-alpha"
authors = ["Parsec Project Contributors"]
edition = "2018"
edition = "2018" # TODO Update edition to 2021 - Remove the disabled lints that are due to using old edition.
description = "Rust-native wrapper around TSS 2.0 Enhanced System API"
readme = "README.md"
keywords = ["tpm", "tss", "esys", "esapi"]
Expand Down
5 changes: 4 additions & 1 deletion tss-esapi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
missing_copy_implementations,
rustdoc::broken_intra_doc_links,
)]

// This comes from Zeroize they changed version of Syn used
// when zeroize_derive was updated to Rust Edition 2021.
// TODO: Remove this when updating Rust Edition.
#![allow(clippy::multiple_crate_versions)]
//! # TSS 2.0 Rust Wrapper over Enhanced System API
//! This crate exposes the functionality of the TCG Software Stack Enhanced System API to
//! Rust developers, both directly through FFI bindings and through more Rust-tailored interfaces
Expand Down

0 comments on commit f327371

Please sign in to comment.