mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-17 06:08:26 +00:00
chore: remove bump
This commit is contained in:
parent
79503f15c5
commit
fcc6738f17
2 changed files with 0 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue