run rustfmt on other files #5

merged
opened by bad-example.com targeting main from bad-example.com/at-advent: fmt

and ignore codegen lexicon stuff

Changed files
+4 -4
shared
src
web
src
handlers
templates
-1
shared/src/advent/day.rs
··· 169 169 Day::from(value.as_str()) 170 170 } 171 171 } 172 -
+1 -1
shared/src/assets.rs
··· 3 3 #[derive(Embed)] 4 4 #[folder = "challenges_markdown/"] 5 5 #[include = "*.md"] 6 - pub struct ChallengesMarkdown; 6 + pub struct ChallengesMarkdown;
+1
shared/src/lib.rs
··· 16 16 pub mod models; 17 17 pub mod web_helpers; 18 18 19 + #[rustfmt::skip] 19 20 pub mod lexicons; 20 21 21 22 /// OAuthClientType to make it easier to access the OAuthClient in web requests
+1 -1
web/src/handlers/mod.rs
··· 1 - pub mod day; 2 1 pub mod auth; 2 + pub mod day;
+1 -1
web/src/templates/mod.rs
··· 4 4 5 5 pub mod day; 6 6 pub mod error; 7 - pub mod login; 8 7 pub mod home; 8 + pub mod login; 9 9 10 10 pub struct HtmlTemplate<T>(pub T); 11 11