cargo fmt crate_version_source.rs

Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
Jiahao XU 2025-06-06 01:06:37 +10:00 committed by GitHub
parent 563daa2bdd
commit 31a88f4124
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,8 @@
use std::{borrow::Cow, fmt::{self, Write as _}, str::FromStr}; use std::{
borrow::Cow,
fmt::{self, Write as _},
str::FromStr,
};
use binstalk_types::maybe_owned::MaybeOwned; use binstalk_types::maybe_owned::MaybeOwned;
use compact_str::CompactString; use compact_str::CompactString;
@ -136,7 +140,7 @@ impl fmt::Display for Source<'_> {
} else { } else {
f.write_char('/') f.write_char('/')
} }
}, }
} }
} }
} }