From b9e3e349c8c2817094f67d434d3eefde2d239d52 Mon Sep 17 00:00:00 2001 From: Simon Doppler Date: Mon, 19 Aug 2019 11:22:58 +0200 Subject: [PATCH] clean up warnings --- src/circuit.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/circuit.rs b/src/circuit.rs index e82eeb5..115c50f 100644 --- a/src/circuit.rs +++ b/src/circuit.rs @@ -2,7 +2,7 @@ use crate::Updateable; #[derive(Default)] pub struct Circuit { - updater: Vec>, + updater: Vec>, } impl Circuit { diff --git a/src/lib.rs b/src/lib.rs index 0e25e72..22d3fe2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![feature(nll, try_from, vec_remove_item)] +#![feature(vec_remove_item)] #![warn(missing_docs)] //! Logical is a digital network simulator. It is named after the german word "Logical" which