mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
sorted the extern crate, mod & use declarations
This commit is contained in:
parent
705ad72aee
commit
889eec364b
194 changed files with 804 additions and 870 deletions
|
@ -10,23 +10,22 @@
|
|||
//! with CORSRequest being expanded into FetchRequest (etc)
|
||||
|
||||
use hyper::client::Request;
|
||||
use hyper::header::{AccessControlMaxAge, AccessControlAllowOrigin};
|
||||
use hyper::header::{AccessControlRequestHeaders, AccessControlAllowHeaders};
|
||||
use hyper::header::{AccessControlRequestMethod, AccessControlAllowMethods};
|
||||
use hyper::header::{AccessControlAllowHeaders, AccessControlRequestHeaders};
|
||||
use hyper::header::{AccessControlAllowMethods, AccessControlRequestMethod};
|
||||
use hyper::header::{AccessControlAllowOrigin, AccessControlMaxAge};
|
||||
use hyper::header::{ContentType, Host};
|
||||
use hyper::header::{Headers, HeaderView};
|
||||
use hyper::header::{HeaderView, Headers};
|
||||
use hyper::method::Method;
|
||||
use hyper::mime::{Mime, TopLevel, SubLevel};
|
||||
use hyper::mime::{Mime, SubLevel, TopLevel};
|
||||
use hyper::status::StatusClass::Success;
|
||||
use net_traits::{AsyncResponseListener, ResponseAction, Metadata};
|
||||
use net_traits::{AsyncResponseListener, Metadata, ResponseAction};
|
||||
use network_listener::{NetworkListener, PreInvoke};
|
||||
use script_task::ScriptChan;
|
||||
use std::ascii::AsciiExt;
|
||||
use std::borrow::ToOwned;
|
||||
use std::cell::RefCell;
|
||||
use std::sync::{Arc, Mutex};
|
||||
use time;
|
||||
use time::{now, Timespec};
|
||||
use time::{self, Timespec, now};
|
||||
use unicase::UniCase;
|
||||
use url::{SchemeData, Url};
|
||||
use util::mem::HeapSizeOf;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue