From e9c74c2f1bd5281bd36488d2b5a42aa6abc0bee3 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..ab6a3d6 --- /dev/null +++ b/clippy.toml @@ -0,0 +1 @@ +allowed-duplicate-crates = ["base64", "syn"] \ No newline at end of file