Disabled unsafe using lint level.

This commit is contained in:
Acrimon 2019-08-19 14:39:23 +02:00
parent d0f10115f4
commit a41cf1a83d
7 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#![deny(unsafe_code)]
use client::{Client, Event};
use common::{clock::Clock, comp};
use log::{error, info};

View File

@ -1,3 +1,4 @@
#![deny(unsafe_code)]
#![feature(label_break_value, duration_float, euclidean_division)]
pub mod error;

View File

@ -1,3 +1,4 @@
#![deny(unsafe_code)]
#![type_length_limit = "1664759"]
#![feature(
euclidean_division,

View File

@ -1,3 +1,5 @@
#![deny(unsafe_code)]
use common::clock::Clock;
use heaptrack::track_mem;
use log::info;

View File

@ -1,3 +1,4 @@
#![deny(unsafe_code)]
#![feature(drain_filter, bind_by_move_pattern_guards)]
pub mod auth_provider;

View File

@ -1,3 +1,4 @@
#![deny(unsafe_code)]
#![feature(duration_float, drain_filter)]
#![recursion_limit = "2048"]

View File

@ -1,3 +1,4 @@
#![deny(unsafe_code)]
#![feature(euclidean_division, bind_by_move_pattern_guards, option_flattening)]
mod all;