aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index cd689ed..d0daf04 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,6 +2,16 @@
// SPDX-License-Identifier: GPL-3.0-only
#![feature(type_ascription)]
+#![deny(
+ warnings,
+ nonstandard_style,
+ unused,
+ future_incompatible,
+ rust_2018_idioms,
+ unsafe_code
+)]
+#![deny(clippy::all, clippy::pedantic)] // clippy::nursery
+#![recursion_limit = "128"]
#[macro_use]
extern crate actix_web;