clean up imports

This commit is contained in:
Carson McManus 2021-07-31 11:08:41 -04:00
parent 66731164d6
commit 7c58e28d56
2 changed files with 5 additions and 12 deletions

View file

@ -1,6 +1,6 @@
use std::collections::HashMap; use std::collections::HashMap;
use reqwest::{Url, cookie::{CookieStore}, header::COOKIE, header::{SET_COOKIE, USER_AGENT}}; use reqwest::{Url, cookie::{CookieStore}, header::COOKIE};
use serde::{Serialize, Deserialize}; use serde::Deserialize;
use serde_json::Value; use serde_json::Value;
use steamguard_cli::{SteamGuardAccount, steamapi::Session}; use steamguard_cli::{SteamGuardAccount, steamapi::Session};
use log::*; use log::*;

View file

@ -1,18 +1,11 @@
extern crate rpassword; extern crate rpassword;
use borrow::BorrowMut;
use collections::HashSet;
use io::{Write, stdout};
use steamapi::Session;
use steamguard_cli::*; use steamguard_cli::*;
use termion::{color::Color, raw::IntoRawMode, screen::AlternateScreen}; use std::collections::HashSet;
use ::std::*; use std::{io::{Write, stdout, stdin}, path::Path};
use text_io::read;
use std::{convert::TryInto, io::stdin, path::Path, sync::Arc};
use clap::{App, Arg, crate_version}; use clap::{App, Arg, crate_version};
use log::*; use log::*;
use regex::Regex; use regex::Regex;
use termion::event::{Key, Event}; use termion::{raw::IntoRawMode, screen::AlternateScreen, event::{Key, Event}, input::{TermRead}};
use termion::input::{TermRead};
#[macro_use] #[macro_use]
extern crate lazy_static; extern crate lazy_static;