1 parent ea8312f commit 1f2f2c4Copy full SHA for 1f2f2c4
1 file changed
src/lib.rs
@@ -8,7 +8,15 @@
8
//! assert_eq!(&output.unwrap(), "Finally! Some gtmpl for Rust");
9
//! ```
10
11
+// Allow pre-existing clippy warnings from upstream
12
#![allow(clippy::result_large_err)]
13
+#![allow(clippy::explicit_auto_deref)]
14
+#![allow(clippy::cloned_ref_to_slice_refs)]
15
+#![allow(clippy::iter_overeager_cloned)]
16
+#![allow(clippy::double_ended_iterator_last)]
17
+#![allow(clippy::to_string_in_format_args)]
18
+#![allow(clippy::needless_raw_string_hashes)]
19
+#![allow(clippy::doc_lazy_continuation)]
20
21
pub mod error;
22
mod exec;
0 commit comments