clean up imports
This commit is contained in:
parent
66731164d6
commit
7c58e28d56
2 changed files with 5 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
|||
use std::collections::HashMap;
|
||||
use reqwest::{Url, cookie::{CookieStore}, header::COOKIE, header::{SET_COOKIE, USER_AGENT}};
|
||||
use serde::{Serialize, Deserialize};
|
||||
use reqwest::{Url, cookie::{CookieStore}, header::COOKIE};
|
||||
use serde::Deserialize;
|
||||
use serde_json::Value;
|
||||
use steamguard_cli::{SteamGuardAccount, steamapi::Session};
|
||||
use log::*;
|
||||
|
|
13
src/main.rs
13
src/main.rs
|
@ -1,18 +1,11 @@
|
|||
extern crate rpassword;
|
||||
use borrow::BorrowMut;
|
||||
use collections::HashSet;
|
||||
use io::{Write, stdout};
|
||||
use steamapi::Session;
|
||||
use steamguard_cli::*;
|
||||
use termion::{color::Color, raw::IntoRawMode, screen::AlternateScreen};
|
||||
use ::std::*;
|
||||
use text_io::read;
|
||||
use std::{convert::TryInto, io::stdin, path::Path, sync::Arc};
|
||||
use std::collections::HashSet;
|
||||
use std::{io::{Write, stdout, stdin}, path::Path};
|
||||
use clap::{App, Arg, crate_version};
|
||||
use log::*;
|
||||
use regex::Regex;
|
||||
use termion::event::{Key, Event};
|
||||
use termion::input::{TermRead};
|
||||
use termion::{raw::IntoRawMode, screen::AlternateScreen, event::{Key, Event}, input::{TermRead}};
|
||||
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
|
Loading…
Reference in a new issue