Updated toolchain version and a bunch of deps.

This commit is contained in:
Acrimon 2019-09-06 07:16:11 +02:00 committed by Forest
parent 6715f02a4e
commit 03bf74f414
5 changed files with 328 additions and 392 deletions

710
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,8 +1,6 @@
#![deny(unsafe_code)]
#![type_length_limit = "1664759"]
#![feature(
euclidean_division,
duration_float,
trait_alias,
bind_by_move_pattern_guards,
option_flattening, // Converts Option<Option<Item>> into Option<Item> TODO: Remove this once this feature becomes stable

View File

@ -1 +1 @@
nightly-2019-07-03
nightly-2019-09-03

View File

@ -1,5 +1,5 @@
#![deny(unsafe_code)]
#![feature(duration_float, drain_filter)]
#![feature(drain_filter)]
#![recursion_limit = "2048"]
#[cfg(feature = "discord")]
@ -197,7 +197,7 @@ fn main() {
);
#[cfg(feature = "msgbox")]
msgbox::create("Voxygen has panicked", &msg, msgbox::IconType::ERROR);
msgbox::create("Voxygen has panicked", &msg, msgbox::IconType::Error);
default_hook(panic_info);
}));