ksud: rust FMT

This commit is contained in:
Rifat Azad
2025-06-25 13:25:28 +06:00
parent 39f20bf573
commit 78eb3b0b22
20 changed files with 45 additions and 53 deletions

View File

@@ -1,11 +1,11 @@
use anyhow::{Result, bail};
use anyhow::{bail, Result};
use derive_new::new;
use nom::{
AsChar, IResult, Parser,
branch::alt,
bytes::complete::{tag, take_while, take_while_m_n, take_while1},
bytes::complete::{tag, take_while, take_while1, take_while_m_n},
character::complete::{space0, space1},
combinator::map,
AsChar, IResult, Parser,
};
use std::{ffi, path::Path, vec};