Skip to content

Commit

Permalink
nightly fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Nov 17, 2024
1 parent 62c2356 commit b0b4d74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions maud/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,9 +419,7 @@ mod submillisecond_support {
#[doc(hidden)]
pub mod macro_private {
use crate::{display, Render};
pub use alloc::boxed::Box;
pub use alloc::string::String;
pub use alloc::vec::Vec;
pub use alloc::{boxed::Box, string::String, vec::Vec};
use core::fmt::Display;
#[cfg(feature = "hotreload")]
pub use std::collections::HashMap;
Expand Down
6 changes: 3 additions & 3 deletions maud_macros_impl/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use std::collections::HashMap;
use proc_macro2::{Delimiter, Group, TokenStream, TokenTree};
use quote::quote;

use crate::expand;
use crate::generate::desugar_attrs;
use crate::{ast::*, escape, expand_from_parsed, expand_runtime_from_parsed};
use crate::{
ast::*, escape, expand, expand_from_parsed, expand_runtime_from_parsed, generate::desugar_attrs,
};

pub fn generate(vars_ident: Option<TokenTree>, markups: Vec<Markup>) -> TokenStream {
let mut build = RuntimeBuilder::new(vars_ident.clone());
Expand Down

0 comments on commit b0b4d74

Please sign in to comment.