Clear warnings

This commit is contained in:
Greg Johnston 2022-12-19 07:35:18 -05:00
parent da4b46e359
commit 5ee8b20770
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,5 @@
pub mod typed;
#[cfg(all(target_arch = "wasm32", feature = "web"))]
use crate::window;
use std::{borrow::Cow, cell::RefCell, collections::HashSet};
#[cfg(all(target_arch = "wasm32", feature = "web"))]
use wasm_bindgen::{

View File

@ -7,7 +7,7 @@ extern crate proc_macro_error;
use proc_macro::{TokenStream, TokenTree};
use quote::ToTokens;
use server::server_macro_impl;
use syn::{parse::Parse, parse_macro_input, DeriveInput};
use syn::{parse_macro_input, DeriveInput};
use syn_rsx::{parse, NodeElement};
#[derive(Copy, Clone, Debug, PartialEq, Eq)]