Skip to content

Commit 6da8fe9

Browse files
authored
fix: Allow multiple versions of crates (#388)
Downstream dependencies may have different versions of crates, and this could change at any time. Disable this lint so that clippy builds are not at the mercy of donwstream dependencies.
1 parent 3a43ed9 commit 6da8fe9

File tree

1 file changed

+1
-0
lines changed
  • lambda-runtime-api-client/src

1 file changed

+1
-0
lines changed

lambda-runtime-api-client/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![deny(clippy::all, clippy::cargo)]
22
#![warn(missing_docs, nonstandard_style, rust_2018_idioms)]
3+
#![warn(clippy::multiple_crate_versions)]
34

45
//! This crate includes a base HTTP client to interact with
56
//! the AWS Lambda Runtime API.

0 commit comments

Comments
 (0)