rustfmt the code

This commit is contained in:
Sylvestre Ledru
2024-01-26 19:16:15 +01:00
parent 4280abe67c
commit 7c7f5fa5d4
4 changed files with 9 additions and 12 deletions
src/uu
lscpu
mountpoint
pwdx
renice

@ -3,11 +3,11 @@
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
use regex::Regex;
use uucore::{error::UResult, format_usage, help_about, help_usage};
use clap::{crate_version, Command};
use std::{fs};
use regex::Regex;
use std::fs;
use sysinfo::System;
use uucore::{error::UResult, format_usage, help_about, help_usage};
const ABOUT: &str = help_about!("lscpu.md");
const USAGE: &str = help_usage!("lscpu.md");
@ -41,7 +41,6 @@ fn get_architecture() -> String {
}
}
pub fn uu_app() -> Command {
Command::new(uucore::util_name())
.version(crate_version!())

@ -3,19 +3,18 @@
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
use clap::{crate_version, Command};
use std::env;
use std::fs;
use std::os::unix::fs::MetadataExt;
use std::process;
use uucore::{error::UResult, format_usage, help_about, help_usage};
use clap::{crate_version, Command};
const ABOUT: &str = help_about!("mountpoint.md");
const USAGE: &str = help_usage!("mountpoint.md");
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let args: Vec<String> = env::args().collect();
if args.len() != 2 {
@ -49,7 +48,6 @@ fn is_mountpoint(path: &str) -> bool {
}
}
pub fn uu_app() -> Command {
Command::new(uucore::util_name())
.version(crate_version!())

@ -3,11 +3,11 @@
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
use clap::{crate_version, Command};
use std::env;
use std::fs;
use std::path::Path;
use std::process;
use clap::{crate_version, Command};
use uucore::{error::UResult, format_usage, help_about, help_usage};