diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-06-13 19:19:58 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-06-13 19:19:58 +0200 |
| commit | f887f3a4f9953483c16cb4d47fbd3c5cd72f967b (patch) | |
| tree | c325eabbc298f480eef38e328baef4a4a5baf335 | |
| parent | 1f41a6b9a439bab3f05e464d621eb3607116646e (diff) | |
| download | mum-f887f3a4f9953483c16cb4d47fbd3c5cd72f967b.tar.gz | |
add missing_abi lint
| -rw-r--r-- | mumd/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs index 4f611a4..8dc58df 100644 --- a/mumd/src/main.rs +++ b/mumd/src/main.rs @@ -1,5 +1,5 @@ #![warn(elided_lifetimes_in_paths, meta_variable_misuse)] -#![deny(keyword_idents, macro_use_extern_crate)] +#![deny(keyword_idents, macro_use_extern_crate, missing_abi)] mod audio; mod client; |
