chore: remove bump

This commit is contained in:
Jonathan Kelley 2021-10-19 22:40:43 -04:00
parent 79503f15c5
commit fcc6738f17
2 changed files with 0 additions and 3 deletions

View file

@ -12,7 +12,6 @@ description = "Core macro for Dioxus Virtual DOM"
proc-macro = true
[dependencies]
bumpalo = { version = "3.7.1", features = ["collections"] }
once_cell = "1.8"
proc-macro2 = { version = "1.0.6" }
quote = "1.0"

View file

@ -1,4 +1,3 @@
use bumpalo::Bump;
use proc_macro2::TokenStream as TokenStream2;
use quote::{quote, ToTokens, TokenStreamExt};
use syn::{
@ -17,7 +16,6 @@ pub struct CallBody<const AS: HtmlOrRsx> {
impl Parse for CallBody<AS_RSX> {
fn parse(input: ParseStream) -> Result<Self> {
let custom_context = try_parse_custom_context(input)?;
let arena = Bump::new();
let (_, roots, _) = BodyConfig::<AS_RSX>::new_call_body().parse_component_body(input)?;
Ok(Self {
custom_context,