wip: cargo fix

This commit is contained in:
Jonathan Kelley 2021-07-13 16:54:07 -04:00
parent beceda511c
commit 84c3e9fcb1
3 changed files with 6 additions and 19 deletions

View file

@ -1,18 +1,12 @@
use crate::innerlude::*;
use crate::{innerlude::*};
use futures_util::FutureExt;
use futures_util::{FutureExt};
use std::borrow::BorrowMut;
use std::marker::PhantomData;
use std::{
any::{Any, TypeId},
cell::{Cell, RefCell},
collections::{HashMap, HashSet, VecDeque},
fmt::Debug,
any::TypeId,
cell::RefCell,
future::Future,
ops::Deref,
pin::Pin,

View file

@ -5,7 +5,7 @@
use crate::{
events::VirtualEvent,
innerlude::{Context, Properties, RealDom, RealDomNode, Scope, ScopeIdx, FC},
innerlude::{Context, Properties, RealDomNode, Scope, ScopeIdx, FC},
};
use std::{
cell::{Cell, RefCell},

View file

@ -1,18 +1,11 @@
use crate::hooklist::HookList;
use crate::{arena::SharedArena, innerlude::*};
use std::{
any::{Any, TypeId},
cell::{Cell, RefCell},
collections::{HashMap, HashSet, VecDeque},
fmt::Debug,
collections::{HashMap, HashSet},
future::Future,
ops::Deref,
pin::Pin,
rc::Rc,
};