From ce10efbeb6dab55ed7dd858eb12addd6611c7755 Mon Sep 17 00:00:00 2001 From: Hendrik Sollich Date: Thu, 2 Nov 2023 22:58:07 +0100 Subject: [PATCH] break fmt and clippy --- lang/default.pot | 2 +- src/lib.rs | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lang/default.pot b/lang/default.pot index 0a10e2720..064765c48 100644 --- a/lang/default.pot +++ b/lang/default.pot @@ -616,7 +616,7 @@ msgstr "" msgid "Project file is younger than pdf, continue anyway?" msgstr "" -#: /Users/hendrik/code/rust/asciii/src/lib.rs:82 +#: /Users/hendrik/code/rust/asciii/src/lib.rs:83 msgid "Documentation at: {}" msgstr "" diff --git a/src/lib.rs b/src/lib.rs index 3fe990403..d4fcac8bb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,8 +5,8 @@ #![allow(deprecated)] #![allow(clippy::uninlined_format_args)] #![warn(//missing_docs, - //missing_copy_implementations, - //missing_debug_implementations, + missing_copy_implementations, + missing_debug_implementations, unstable_features, unused_import_braces, // clippy::pedantic @@ -29,7 +29,8 @@ use lazy_static::lazy_static; #[cfg(feature = "serde")] #[macro_use] -extern crate serde_derive; + +extern crate serde_derive; #[cfg(feature = "serialization")] extern crate serde_json;