update toolchain to nightly-2019-11-04

This commit is contained in:
soruh
2019-11-04 18:26:32 +01:00
parent 5e153f1b5c
commit 352694eecd
11 changed files with 11 additions and 14 deletions

View File

@ -1,9 +1,6 @@
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![type_length_limit = "1664759"] #![type_length_limit = "1664759"]
#![feature( #![feature(trait_alias)]
trait_alias,
option_flattening, // Converts Option<Option<Item>> into Option<Item> TODO: Remove this once this feature becomes stable
)]
#[macro_use] #[macro_use]
extern crate serde_derive; extern crate serde_derive;

View File

@ -1 +1 @@
nightly-2019-10-03 nightly-2019-11-04

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = BipedLargeSkeleton; type Skeleton = BipedLargeSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = BirdMediumSkeleton; type Skeleton = BirdMediumSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = BirdSmallSkeleton; type Skeleton = BirdSmallSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = DragonSkeleton; type Skeleton = DragonSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = FishMediumSkeleton; type Skeleton = FishMediumSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = FishSmallSkeleton; type Skeleton = FishSmallSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = QuadrupedMediumSkeleton; type Skeleton = QuadrupedMediumSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -9,7 +9,7 @@ pub struct IdleAnimation;
impl Animation for IdleAnimation { impl Animation for IdleAnimation {
type Skeleton = QuadrupedSmallSkeleton; type Skeleton = QuadrupedSmallSkeleton;
type Dependency = (f64); type Dependency = f64;
fn update_skeleton( fn update_skeleton(
skeleton: &Self::Skeleton, skeleton: &Self::Skeleton,

View File

@ -1,6 +1,6 @@
#![deny(unsafe_code)] #![deny(unsafe_code)]
#![allow(incomplete_features)] #![allow(incomplete_features)]
#![feature(const_generics, option_flattening, label_break_value)] #![feature(const_generics, label_break_value)]
mod all; mod all;
mod block; mod block;