mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
hashsum: fix style violation
This commit is contained in:
parent
62e5c5a755
commit
23e67adfd3
1 changed files with 1 additions and 1 deletions
|
@ -24,12 +24,12 @@ use std::iter;
|
||||||
use std::num::ParseIntError;
|
use std::num::ParseIntError;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use uucore::error::{FromIo, UError, UResult};
|
use uucore::error::{FromIo, UError, UResult};
|
||||||
use uucore::{format_usage, help_about, help_usage};
|
|
||||||
use uucore::sum::{
|
use uucore::sum::{
|
||||||
Blake2b, Blake3, Digest, DigestWriter, Md5, Sha1, Sha224, Sha256, Sha384, Sha3_224, Sha3_256,
|
Blake2b, Blake3, Digest, DigestWriter, Md5, Sha1, Sha224, Sha256, Sha384, Sha3_224, Sha3_256,
|
||||||
Sha3_384, Sha3_512, Sha512, Shake128, Shake256,
|
Sha3_384, Sha3_512, Sha512, Shake128, Shake256,
|
||||||
};
|
};
|
||||||
use uucore::{crash, display::Quotable, show_warning};
|
use uucore::{crash, display::Quotable, show_warning};
|
||||||
|
use uucore::{format_usage, help_about, help_usage};
|
||||||
|
|
||||||
const NAME: &str = "hashsum";
|
const NAME: &str = "hashsum";
|
||||||
const ABOUT: &str = help_about!("hashsum.md");
|
const ABOUT: &str = help_about!("hashsum.md");
|
||||||
|
|
Loading…
Reference in a new issue