From 3795b5d2d4366238f7c19a9e9af991e93df7aad2 Mon Sep 17 00:00:00 2001 From: Gowtham Suresh Kumar Date: Wed, 1 May 2024 13:14:22 +0100 Subject: [PATCH] Add allowed-duplicate-crates for clippy The newer version of rust clippy fails with "multiple_crate_versions" error even when src has "#![allow(clippy::multiple_crate_versions)]" This is solved by explicity adding the clippy.toml. Signed-off-by: Gowtham Suresh Kumar --- clippy.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 clippy.toml diff --git a/clippy.toml b/clippy.toml new file mode 100644 index 0000000..050dec5 --- /dev/null +++ b/clippy.toml @@ -0,0 +1 @@ +allowed-duplicate-crates = ["base64", "syn"]