Skip to content

Commit f94b7e0

Browse files
committed
fix: move clippy::cargo lint to warn level
Multiple depedent crates are upgrading to to itoa 1.0, but not all are completed. Move multiple clippy::cargo to warning for now.
1 parent 6ca9f5e commit f94b7e0

File tree

1 file changed

+2
-2
lines changed
  • lambda-runtime-api-client/src

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#![deny(clippy::all, clippy::cargo)]
2-
#![warn(missing_docs, nonstandard_style, rust_2018_idioms)]
1+
#![deny(clippy::all)]
2+
#![warn(missing_docs, nonstandard_style, rust_2018_idioms, clippy::cargo)]
33

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

0 commit comments

Comments
 (0)