diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-06-13 20:08:47 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-06-13 20:08:47 +0200 |
| commit | 78e1e35da23466126ce3411793f8985ab333140c (patch) | |
| tree | e671d083c7cf2a5c8369c140237c9ca3762e1c03 | |
| parent | 555b8195e651fcca8c906177c784c5c50a49475c (diff) | |
| download | mum-78e1e35da23466126ce3411793f8985ab333140c.tar.gz | |
move lints to separate lines
| -rw-r--r-- | mumd/src/main.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs index d592cec..514de7b 100644 --- a/mumd/src/main.rs +++ b/mumd/src/main.rs @@ -1,6 +1,9 @@ -#![warn(elided_lifetimes_in_paths, meta_variable_misuse)] +#![warn(elided_lifetimes_in_paths)] +#![warn(meta_variable_misuse)] #![warn(missing_debug_implementations)] //doesn't seem to work #![deny(keyword_idents, macro_use_extern_crate, missing_abi)] +#![deny(macro_use_extern_crate, missing_abi)] +#![deny(missing_abi)] mod audio; mod client; |
