Sort imports

This commit is contained in:
Curtis McEnroe 2017-08-23 16:06:18 -04:00
parent 51cff673ba
commit 466dbcf7b1
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
2 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
use std::error::Error; use std::error::Error;
use std::{fmt, io}; use std::{fmt, io};
use reqwest;
use serde_json; use serde_json;
use url; use url;
use reqwest;
use client::response::ParseError; use client::response::ParseError;
use error::OAuth2Error; use error::OAuth2Error;

View File

@ -158,9 +158,9 @@
extern crate serde_derive; extern crate serde_derive;
extern crate chrono; extern crate chrono;
extern crate reqwest;
extern crate serde_json; extern crate serde_json;
extern crate url; extern crate url;
extern crate reqwest;
pub mod token; pub mod token;
pub mod provider; pub mod provider;