From 3dfce86ea44f99a168052bf1a65ce82517c766b7 Mon Sep 17 00:00:00 2001 From: desbma Date: Wed, 11 Sep 2024 22:58:14 +0200 Subject: [PATCH] chore: lint --- src/syncthing_rest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syncthing_rest.rs b/src/syncthing_rest.rs index 1bef49c..e3715db 100644 --- a/src/syncthing_rest.rs +++ b/src/syncthing_rest.rs @@ -1,6 +1,6 @@ //! Syncthing types, taken from https://github.com/JayceFayne/syncthing-rs/blob/e5981950d59c210a380c0665a4e7a4b44f7ce37f/src/rest/events.rs, with some additional fixes -#![allow(clippy::missing_docs_in_private_items)] +#![allow(dead_code, clippy::missing_docs_in_private_items)] use std::collections::HashMap; use std::convert::TryFrom;