server: address some lint

This commit is contained in:
Bill Thiede 2024-08-05 15:54:26 -07:00
parent 530bd8e350
commit a84c9f0eaf
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ pub struct Email {
}
#[derive(SimpleObject)]
pub(crate) struct Tag {
pub struct Tag {
pub name: String,
pub fg_color: String,
pub bg_color: String,

View File

@ -5,7 +5,7 @@ pub mod nm;
use css_inline::{CSSInliner, InlineError, InlineOptions};
use linkify::{LinkFinder, LinkKind};
use log::{error, info};
use log::error;
use lol_html::{element, errors::RewritingError, rewrite_str, RewriteStrSettings};
use maplit::{hashmap, hashset};
use thiserror::Error;