src: cargo clippy and fmt the project

Signed-off-by: Gunwant Jain <mail@wantguns.dev>
This commit is contained in:
Gunwant Jain 2022-01-20 03:44:01 +05:30
commit 689db9548a
5 changed files with 12 additions and 11 deletions

View file

@ -3,7 +3,10 @@ extern crate rocket;
use std::{fs, net::IpAddr, path::PathBuf};
use clap::Parser;
use rocket::{shield::{NoSniff, Shield}, figment::{providers::Env, Figment}};
use rocket::{
figment::{providers::Env, Figment},
shield::{NoSniff, Shield},
};
use rocket_dyn_templates::{tera::Tera, Template};
use rust_embed::RustEmbed;