fix warnings; 27.2% cov

This commit is contained in:
🪞👃🪞 2025-03-04 01:03:13 +02:00
parent 5352a9d548
commit d5a304e645
5 changed files with 19 additions and 9 deletions

View file

@ -9,8 +9,7 @@ pub(crate) use self::Value::*;
pub(crate) use self::ParseError::*;
pub(crate) use konst::iter::{ConstIntoIter, IsIteratorKind};
pub(crate) use konst::string::{split_at, str_range, char_indices};
pub(crate) use std::error::Error;
pub(crate) use std::fmt::{Debug, Display, Formatter, Result as FormatResult};
pub(crate) use std::fmt::Debug;
/// Static iteration helper.
#[macro_export] macro_rules! iterate {
($expr:expr => $arg: pat => $body:expr) => {