Reformat imports to a consistent style for imports
rustfmt.toml configuration: imports_granularity = "One" group_imports = "One"
This commit is contained in:
@ -1,14 +1,15 @@
|
||||
use clap::{
|
||||
crate_description, crate_name, crate_version, value_t, values_t, App, AppSettings, Arg,
|
||||
};
|
||||
use std::{
|
||||
env,
|
||||
ffi::OsStr,
|
||||
fs::File,
|
||||
io::{prelude::*, BufWriter},
|
||||
path::{Path, PathBuf},
|
||||
process::exit,
|
||||
process::Command,
|
||||
use {
|
||||
clap::{
|
||||
crate_description, crate_name, crate_version, value_t, values_t, App, AppSettings, Arg,
|
||||
},
|
||||
std::{
|
||||
env,
|
||||
ffi::OsStr,
|
||||
fs::File,
|
||||
io::{prelude::*, BufWriter},
|
||||
path::{Path, PathBuf},
|
||||
process::{exit, Command},
|
||||
},
|
||||
};
|
||||
|
||||
struct Config {
|
||||
|
Reference in New Issue
Block a user