From 16479964c0589de1c9d9577eb936cf269960b17e Mon Sep 17 00:00:00 2001 From: KitsuneCafe <10284516+kitsunecafe@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:15:26 -0500 Subject: [PATCH] remove unused imports --- src/lib.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 69c1436..ecbd892 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,11 +4,9 @@ use once_cell::sync::Lazy; use regex::{Captures, Regex, RegexBuilder}; use roxy_core::roxy::Parse; use syntect::{ - easy::HighlightLines, - highlighting::{Style, ThemeSet}, - html::{highlighted_html_for_string, styled_line_to_highlighted_html}, - parsing::SyntaxSet, - util::{as_24_bit_terminal_escaped, LinesWithEndings}, + highlighting::ThemeSet, + html::highlighted_html_for_string, + parsing::SyntaxSet }; const CODE_BLOCK_RE: Lazy = Lazy::new(|| {