Skip to content

Commit 83513a5

Browse files
committed
fix: Allow multiple versions of crates
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 6ca9f5e commit 83513a5

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

+1
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)