Skip to content

Commit

Permalink
Update +style_edition
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Oct 4, 2024
1 parent b56da18 commit f64253a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ group_imports = "StdExternalCrate"
imports_granularity = "Module"
newline_style = "Unix"
normalize_comments = true
style_edition = "2024"
unstable_features = true
use_field_init_shorthand = true
version = "Two"
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::borrow::Cow;
use std::env::args;
use std::fmt;
use std::str::{from_utf8, Utf8Error};
use std::str::{Utf8Error, from_utf8};

use tmpls::{Benchmark, BigTable, Output, Teams};

Expand Down
2 changes: 1 addition & 1 deletion tmpls/horrorshow/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use horrorshow::{html, Error, Template};
use horrorshow::{Error, Template, html};
use tmpls::{BigTable, Teams};

#[derive(Debug, Default)]
Expand Down
2 changes: 1 addition & 1 deletion tmpls/tinytemplate/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use tinytemplate::error::Error;
use tinytemplate::TinyTemplate;
use tinytemplate::error::Error;
use tmpls::{BigTable, Teams};

pub struct Benchmark {
Expand Down

0 comments on commit f64253a

Please sign in to comment.