diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-06-13 20:50:04 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-06-13 20:50:04 +0200 |
| commit | 492efc8b0dd5087991b580787ad75f0d3b57e7e7 (patch) | |
| tree | c9de8b9ec49bf465421dae241a0ed47deda29864 /mumd/src | |
| parent | 465f21da46a7194e25894043ca2cca9ba958e11c (diff) | |
| download | mum-492efc8b0dd5087991b580787ad75f0d3b57e7e7.tar.gz | |
forbid unsafe
Diffstat (limited to 'mumd/src')
| -rw-r--r-- | mumd/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs index 6b863c1..0db6d35 100644 --- a/mumd/src/main.rs +++ b/mumd/src/main.rs @@ -6,6 +6,7 @@ #![deny(keyword_idents)] #![deny(macro_use_extern_crate)] #![deny(missing_abi)] +#![forbid(unsafe_code)] pub mod audio; pub mod client; |
