mirror of
https://github.com/clap-rs/clap
synced 2025-01-07 10:18:48 +00:00
refactor: Make use refactor friendly
This commit is contained in:
parent
bf771a266c
commit
6886109fa6
1 changed files with 7 additions and 9 deletions
|
@ -1,15 +1,13 @@
|
||||||
#![allow(deprecated)]
|
#![allow(deprecated)]
|
||||||
|
|
||||||
// Std
|
// Std
|
||||||
use std::{
|
use std::collections::HashMap;
|
||||||
collections::HashMap,
|
use std::env;
|
||||||
env,
|
use std::ffi::OsString;
|
||||||
ffi::OsString,
|
use std::fmt;
|
||||||
fmt,
|
use std::io::{self, Write};
|
||||||
io::{self, Write},
|
use std::ops::Index;
|
||||||
ops::Index,
|
use std::path::Path;
|
||||||
path::Path,
|
|
||||||
};
|
|
||||||
|
|
||||||
// Third Party
|
// Third Party
|
||||||
use os_str_bytes::RawOsStr;
|
use os_str_bytes::RawOsStr;
|
||||||
|
|
Loading…
Reference in a new issue