├── Cargo.toml ├── README.md ├── src ├── erodirlib.rs └── erodir.rs ├── LICENSE └── Cargo.lock /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "erodir" 3 | version = "0.1.8" 4 | authors = ["PinkP4nther "] 5 | 6 | [lib] 7 | name = "erodirlib" 8 | path = "src/erodirlib.rs" 9 | 10 | [[bin]] 11 | name = "erodir" 12 | path = "src/erodir.rs" 13 | 14 | [dependencies] 15 | reqwest = "0.9.20" 16 | clap = "2.33.0" 17 | serde_derive = "1.0.99" 18 | base64 = "0.10.1" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EroDir 2 | A fast web directory/file enumeration tool written in Rust 3 | 4 | 5 | ## Setup 6 | 7 | ### Debian/Ubuntu 8 | ``` sh 9 | $ apt -y update && apt install libssl-dev pkg-config 10 | $ curl https://sh.rustup.rs -sSf | sh 11 | $ source ~/.profile 12 | $ git clone https://github.com/PinkP4nther/EroDir 13 | $ cd EroDir && cargo build --release 14 | $ target/release/erodir --help 15 | ``` 16 | 17 | ### Windows 18 | ``` 19 | Download rustup-init.exe here: https://win.rustup.rs 20 | Run rustup-init.exe and install Rust 21 | Download ZIP of EroDir: https://github.com/PinkP4nther/EroDir/archive/master.zip 22 | Unzip it into EroDir/ 23 | Open CMD: 24 | > cd EroDir\ 25 | > cargo build --release 26 | > target\release\erodir --help 27 | ``` 28 | ## Demo 29 | 30 | ![gif](https://imgur.com/PmFleau.gif) 31 | -------------------------------------------------------------------------------- /src/erodirlib.rs: -------------------------------------------------------------------------------- 1 | extern crate reqwest; 2 | use reqwest::{Client, RedirectPolicy, Proxy, header::{HeaderMap}}; 3 | use std::sync::{Arc, Mutex}; 4 | 5 | #[derive(Debug)] 6 | pub struct TargetBustInfo { 7 | pub url: String, 8 | pub thread_count: u32, 9 | pub entry_lines: Vec, 10 | pub extension_lines: Vec, 11 | pub ext_flag: bool, 12 | pub max_retries: u32, 13 | pub wlines: Vec, 14 | pub wfile_name: String, 15 | pub wf_flag: i8, 16 | pub dir_mode: bool, 17 | } 18 | 19 | impl TargetBustInfo { 20 | pub fn new() -> TargetBustInfo { 21 | TargetBustInfo { 22 | url: String::new(), 23 | thread_count: 0, 24 | entry_lines: Vec::new(), 25 | extension_lines: Vec::new(), 26 | ext_flag: false, 27 | max_retries: 3, 28 | wlines: Vec::new(), 29 | wfile_name: String::new(), 30 | wf_flag: 0, 31 | dir_mode: false, 32 | } 33 | } 34 | 35 | pub fn set_url(&mut self, url: &String) { 36 | self.url = url.clone(); 37 | } 38 | 39 | pub fn set_thread_count(&mut self, tc: u32) { 40 | self.thread_count = tc; 41 | } 42 | 43 | pub fn set_entryl(&mut self, el: &Vec) { 44 | self.entry_lines = el.clone(); 45 | } 46 | 47 | pub fn set_extension_lines(&mut self, exl: &Vec) { 48 | self.extension_lines = exl.clone(); 49 | } 50 | 51 | pub fn set_ext_flag(&mut self, flag: bool) { 52 | self.ext_flag = flag; 53 | } 54 | } 55 | 56 | #[derive(Debug)] 57 | pub struct HttpClientInfo { 58 | pub web_client: Client, 59 | pub custom_redirect_policy: RedirectPolicy, 60 | pub web_proxy: Proxy, 61 | pub proxy_flag: bool, 62 | pub web_headers: HeaderMap, 63 | pub invalid_certs: bool, 64 | pub cookie_flag: bool, 65 | pub filter_codes: Vec, 66 | pub timeout: u64, 67 | } 68 | 69 | impl HttpClientInfo { 70 | 71 | pub fn new() -> HttpClientInfo { 72 | HttpClientInfo { 73 | web_client: Client::new(), 74 | custom_redirect_policy: RedirectPolicy::none(), 75 | web_proxy: Proxy::all("http://none").unwrap(), 76 | proxy_flag: false, 77 | web_headers: HeaderMap::new(), 78 | invalid_certs: false, 79 | cookie_flag: false, 80 | filter_codes: Vec::new(), 81 | timeout: 5, 82 | } 83 | } 84 | 85 | pub fn set_crp(&mut self, crp: RedirectPolicy) { 86 | self.custom_redirect_policy = crp; 87 | } 88 | 89 | pub fn set_web_proxy(&mut self, wp: Proxy) { 90 | self.web_proxy = wp; 91 | } 92 | 93 | pub fn set_proxy_flag(&mut self, pf: bool) { 94 | self.proxy_flag = pf; 95 | } 96 | 97 | } 98 | 99 | pub struct ThreadBuildHandle { 100 | pub cloned_http_cli: Client, 101 | pub robj: Arc>, 102 | pub fhc: Vec, 103 | } 104 | 105 | impl ThreadBuildHandle { 106 | pub fn new() -> ThreadBuildHandle { 107 | ThreadBuildHandle { 108 | cloned_http_cli: Client::new(), 109 | robj: Arc::new(Mutex::new(TargetBustInfo::new())), 110 | fhc: Vec::new(), 111 | } 112 | } 113 | } -------------------------------------------------------------------------------- /src/erodir.rs: -------------------------------------------------------------------------------- 1 | extern crate base64; 2 | extern crate clap; 3 | extern crate erodirlib; 4 | extern crate reqwest; 5 | extern crate serde_derive; 6 | 7 | use base64::encode; 8 | use erodirlib::{TargetBustInfo,HttpClientInfo,ThreadBuildHandle}; 9 | use clap::{App, Arg}; 10 | use reqwest::{Url, UrlError, Client, RedirectPolicy, Proxy, header::{self,HeaderMap,HeaderValue}}; 11 | use std::sync::{Arc, Mutex, mpsc}; 12 | use std::thread; 13 | use std::fs::{File,OpenOptions}; 14 | use std::io::{stdout,Write,BufRead,BufReader}; 15 | use std::time::{Duration,Instant}; 16 | use std::process; 17 | 18 | const VERSION: &str = "1.8"; 19 | 20 | fn main() { 21 | 22 | let args = App::new("-=[- EroDir") 23 | .version(format!("{} ---------------------------------------------]=-",VERSION).as_str()) 24 | .author("-=[- @Pink_P4nther -------------]=-") 25 | .about("-=[- A web directory/file enumeration tool ------------------]=-") 26 | .arg(Arg::with_name("url") 27 | .short("u") 28 | .long("url") 29 | .value_name("http(s)://example.com:80/") 30 | .help("Target URL to bruteforce") 31 | .required(true) 32 | .takes_value(true)) 33 | .arg(Arg::with_name("entrylist") 34 | .short("e") 35 | .long("entrylist") 36 | .value_name("entries.lst") 37 | .help("File of entries for bruteforcing") 38 | .required(true) 39 | .takes_value(true)) 40 | .arg(Arg::with_name("extensionlist") 41 | .short("-x") 42 | .long("extlist") 43 | .value_name("extensions.lst") 44 | .help("File of extensions") 45 | .takes_value(true)) 46 | .arg(Arg::with_name("threads") 47 | .short("t") 48 | .long("threads") 49 | .value_name("15") 50 | .help("Amount of threads to use (Default: 15)") 51 | .takes_value(true)) 52 | .arg(Arg::with_name("proxy") 53 | .short("p") 54 | .long("proxy") 55 | .value_name("http(s)://proxy:port") 56 | .help("HTTP proxy to run traffic through") 57 | .takes_value(true)) 58 | // Add proxy authentication headers / arguments 59 | .arg(Arg::with_name("useragent") 60 | .short("U") 61 | .long("useragent") 62 | .value_name(format!("EroDir/{}",VERSION).as_str()) 63 | .help("Change the default user agent") 64 | .takes_value(true)) 65 | // Add Basic auth header / arguments 66 | .arg(Arg::with_name("basic-auth") 67 | .short("b") 68 | .long("bauth") 69 | .value_name("admin:pass") 70 | .help("Basic auth header") 71 | .takes_value(true)) 72 | .arg(Arg::with_name("vhost") 73 | .short("v") 74 | .long("vhost") 75 | .value_name("v.host.com") 76 | .help("Change the host header") 77 | .takes_value(true)) 78 | .arg(Arg::with_name("max-retries") 79 | .short("r") 80 | .long("max-retries") 81 | .value_name("3") 82 | .help("Tune the maximum retries per request (Default: 3)") 83 | .takes_value(true)) 84 | .arg(Arg::with_name("invalid-cert") 85 | .short("-i") 86 | .long("invalid-cert") 87 | .help("Allows self-signed certificates from sites") 88 | .takes_value(false)) 89 | .arg(Arg::with_name("cookie") 90 | .short("c") 91 | .long("cookie") 92 | .value_name("cookie=value") 93 | .help("Set cookie value") 94 | .takes_value(true)) 95 | .arg(Arg::with_name("filter-codes") 96 | .short("f") 97 | .long("filter-codes") 98 | .value_name("200,302,301") 99 | .help("Shows specified HTTP codes (Default: 200,301,302,401,403)") 100 | .takes_value(true)) 101 | .arg(Arg::with_name("timeout") 102 | .short("T") 103 | .long("timeout") 104 | .value_name("5") 105 | .help("Set the HTTP request timeout in seconds (Default: 5)") 106 | .takes_value(true)) 107 | .arg(Arg::with_name("output") 108 | .short("o") 109 | .long("output") 110 | .value_name("outfile") 111 | .help("Output results to file (Extensions are autodetected Ex. output.xml)") 112 | .takes_value(true)) 113 | .arg(Arg::with_name("dirmode") 114 | .short("d") 115 | .long("dirmode") 116 | .help("Enables directory mode (Attempts a request with an appended '/' instead of a blank)") 117 | .takes_value(false)) 118 | .get_matches(); 119 | 120 | let mut url = match args.value_of("url") { 121 | Some(url) => String::from(url), 122 | _ => String::from("") 123 | }; 124 | 125 | // Check URL is good 126 | match Url::parse(url.as_str()) { 127 | Ok(_) => {}, 128 | Err(pe) => { 129 | match pe { 130 | UrlError::EmptyHost => {println!("[!] --url can't have empty host!");process::exit(1)}, 131 | UrlError::RelativeUrlWithoutBase => {println!("[!] --url value needs a base!");process::exit(1)}, 132 | UrlError::IdnaError => {println!("[!] --url invalid international domain name!");process::exit(1)}, 133 | UrlError::InvalidPort => {println!("[!] --url invalid port!");process::exit(1)}, 134 | UrlError::InvalidIpv4Address => {println!("[!] --url invalid IPv4 address!");process::exit(1)}, 135 | UrlError::InvalidIpv6Address => {println!("[!] --url invalid IPv6 address!");process::exit(1)}, 136 | UrlError::InvalidDomainCharacter => {println!("[!] --url invalid domain character!");process::exit(1)}, 137 | UrlError::RelativeUrlWithCannotBeABaseBase => {println!("[!] --url bad URL base!");process::exit(1)}, 138 | UrlError::SetHostOnCannotBeABaseUrl => {println!("[!] --url bad URL base doesn't have a host!");process::exit(1)}, 139 | UrlError::Overflow => {println!("[!] --url aw fuzzing my tool are we? URL can't be over 4GB long!");process::exit(1)} 140 | } 141 | } 142 | } 143 | 144 | let efile = match args.value_of("entrylist") { 145 | Some(entry) => String::from(entry), 146 | _ => String::from("") 147 | }; 148 | 149 | let threads = match args.value_of("threads") { 150 | Some(t) => match String::from(t).parse::() { 151 | Ok(i) => { 152 | if i >= 1 { 153 | i 154 | } else { 155 | println!("[!] --threads must have more than 0 threads!"); 156 | return; 157 | }}, 158 | Err(_) => { 159 | println!("[!] --threads must be a number!"); return; 160 | } 161 | }, 162 | None => 15 163 | }; 164 | 165 | println!("+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"); 166 | println!("+-=[ EroDir v{} ]=-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+",VERSION); 167 | println!("+-=[ @Pink_P4nther ]=-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"); 168 | println!("+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"); 169 | if !url.ends_with("/") {url.push_str("/");} 170 | println!("[+] Target: \t\t[{}]",url); 171 | println!("[+] Entry List: \t[{}]",efile); 172 | 173 | if args.is_present("extensionlist") { 174 | println!("[+] Extension List: \t[{}]", match args.value_of("extensionlist") { 175 | Some(xe) => xe, 176 | None => "None" 177 | }); 178 | } 179 | 180 | // Create TargetBustInfo object 181 | let mut erodir_obj = TargetBustInfo::new(); 182 | erodir_obj.set_url(&url); 183 | erodir_obj.set_thread_count(threads); 184 | if args.is_present("max-retries") { 185 | println!("[+] Max Retries: \t[{}]", match args.value_of("max-retries") { 186 | Some(mr) => { 187 | erodir_obj.max_retries = match mr.parse::() { 188 | Ok(i) => i, 189 | Err(_) => {println!("[!] --max-retries must be a number!");process::exit(1);} 190 | }; // End of match that sets max_retries 191 | 192 | match mr.parse::() { 193 | Ok(i) => i, 194 | Err(_) => {println!("[!] --max-retries must be a number!");process::exit(1);} 195 | }// End of match that returns u32 to println! 196 | }, 197 | None => 3 198 | }); // End of println! and match args.value_of 199 | } 200 | 201 | // Create HTTP Info object 202 | let mut http_cli_obj = HttpClientInfo::new(); 203 | http_cli_obj.set_crp(RedirectPolicy::none()); 204 | 205 | // Check if proxy enabled 206 | if args.is_present("proxy") { 207 | println!("[+] Proxy: \t\t[{}]", match args.value_of("proxy") { 208 | Some(p) => { 209 | http_cli_obj.set_proxy_flag(true); 210 | // if prox auth true do stuff here 211 | http_cli_obj.set_web_proxy(match Proxy::all(p) { 212 | Ok(t) => t, 213 | Err(t) => {println!("[!] Could not set web proxy: [{}]",t);process::exit(1);} 214 | }); 215 | p}, 216 | None => "None" 217 | }); 218 | } 219 | 220 | if args.is_present("dirmode") { 221 | println!("[+] DirMode: \t\t[Active]"); 222 | erodir_obj.dir_mode = true; 223 | } 224 | 225 | if args.is_present("timeout") { 226 | println!("[+] Timeout: \t\t[{}]", match args.value_of("timeout") { 227 | Some(to) => { 228 | http_cli_obj.timeout = match to.parse::() { 229 | Ok(i) => i, 230 | Err(_) => {println!("[!] --timeout must be a number!");process::exit(1);} 231 | }; // End of set timeout 232 | 233 | match to.parse::() { 234 | Ok(i) => i, 235 | Err(_) => {println!("[!] --timeout must be a number!");process::exit(1)} 236 | } // End of return timeout as u64 to println 237 | }, 238 | None => 5 239 | }); // End of value of match 240 | } else { 241 | println!("[+] Timeout: \t\t[5]"); 242 | http_cli_obj.timeout = 5; 243 | } 244 | 245 | // Set default headers for http request 246 | let mut headers = HeaderMap::new(); 247 | 248 | if args.is_present("useragent") { 249 | println!("[+] User-Agent: \t[{}]", match args.value_of("useragent") { 250 | Some(ua) => { 251 | headers.insert(header::USER_AGENT,HeaderValue::from_str(ua).unwrap()); 252 | ua}, 253 | None => "None" 254 | }); 255 | } else { 256 | headers.insert(header::USER_AGENT,HeaderValue::from_str(format!("EroDir/{}",VERSION).as_str()).unwrap()); 257 | } 258 | 259 | if args.is_present("vhost") { 260 | println!("[+] Virtual Host: \t[{}]", match args.value_of("vhost") { 261 | Some(vh) => { 262 | headers.insert(header::HOST, HeaderValue::from_str(vh).unwrap()); 263 | vh}, 264 | None => "None" 265 | }); 266 | } 267 | 268 | if args.is_present("basic-auth") { 269 | println!("[+] Authorization: \t[{}]", match args.value_of("basic-auth") { 270 | Some(ba) => { 271 | headers.insert(header::AUTHORIZATION, HeaderValue::from_str(format!("Basic {}",encode(ba)).as_str()).unwrap()); 272 | ba}, 273 | None => "None" 274 | }); 275 | } 276 | 277 | if args.is_present("invalid-cert") { 278 | println!("[+] Invalid Certs: \t[Allow]"); 279 | http_cli_obj.invalid_certs = true; 280 | } 281 | 282 | if args.is_present("cookie") { 283 | println!("[+] Cookie: \t\t[{}]", match args.value_of("cookie") { 284 | Some(cv) => { 285 | headers.insert(header::COOKIE, HeaderValue::from_str(cv).unwrap()); 286 | cv}, 287 | None => "None" 288 | }); 289 | } 290 | 291 | if args.is_present("filter-codes") { 292 | println!("[+] HTTP codes: \t[{}]", match args.value_of("filter-codes") { 293 | Some(fc) => { 294 | for sfc in fc.split(",") { 295 | http_cli_obj.filter_codes.push(sfc.parse::().unwrap()); 296 | } 297 | fc}, 298 | None => "None" 299 | }); 300 | } else { 301 | println!("[+] HTTP codes: \t[200,301,302,401,403]"); 302 | http_cli_obj.filter_codes = vec![200,301,302,401,403]; 303 | } 304 | 305 | if args.is_present("output") { 306 | println!("[+] OutFile: \t\t[{}]", match args.value_of("output") { 307 | Some(of) => { 308 | erodir_obj.wfile_name = of.to_string(); 309 | if erodir_obj.wfile_name.as_str().ends_with(".xml") { 310 | erodir_obj.wf_flag = 2; // Maybe makes this an enum with the types of files 311 | } else { 312 | erodir_obj.wf_flag = 1; 313 | } 314 | of}, 315 | None => "None" 316 | }); 317 | } else { 318 | erodir_obj.wf_flag = 0; 319 | } 320 | 321 | http_cli_obj.web_headers = headers; 322 | 323 | println!("[+] Threads: \t\t[{}]",threads); 324 | println!("+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"); 325 | 326 | // Get lines of entry list file and put into vector 327 | println!("[*] Reading lines.."); 328 | let entrylines: Vec = read_lines(&read_file(&efile)); 329 | erodir_obj.set_entryl(&entrylines); 330 | 331 | 332 | // Build HTTP client 333 | http_cli_obj.web_client = build_http_client(&http_cli_obj); 334 | 335 | let (tx, rx) = mpsc::channel(); 336 | 337 | thread::spawn(move || { 338 | stat_verb(rx); 339 | process::exit(1); 340 | }); 341 | 342 | // Check if there is extension list 343 | if args.is_present("extensionlist") { 344 | let xfile = match args.value_of("extensionlist") { 345 | Some(xe) => String::from(xe), 346 | _ => String::from("") 347 | }; 348 | erodir_obj.set_extension_lines(&read_lines(&read_file(&xfile))); 349 | erodir_obj.set_ext_flag(true); 350 | println!("[*] Bruteforcing {} entries!",(entrylines.len() * erodir_obj.extension_lines.len()) + entrylines.len()); 351 | thread_gen(&http_cli_obj, threads,&Arc::new(Mutex::new(erodir_obj)),tx); 352 | } else { 353 | println!("[*] Bruteforcing {} entries!",entrylines.len()); 354 | thread_gen(&http_cli_obj, threads,&Arc::new(Mutex::new(erodir_obj)),tx); 355 | } 356 | 357 | }// End of main 358 | 359 | fn stat_verb(rx: mpsc::Receiver) { 360 | 361 | let mut p_flag: u32 = 0; 362 | let syms = vec!["-","\\","|","/"]; 363 | let mut i: usize = 3; 364 | 365 | loop { 366 | match rx.recv() { 367 | Ok(_) => { 368 | if p_flag == 100 { 369 | print!(" [{}]\r",syms[i]); 370 | match stdout().flush() { 371 | Ok(_) => {}, 372 | Err(_) => {return;} 373 | } 374 | if i == 3 {i = 0;} else { 375 | i = i + 1;} 376 | p_flag = 1; 377 | } else { 378 | p_flag = p_flag + 1; 379 | }}, 380 | Err(_) => {return;} 381 | } 382 | } 383 | }// End of stat_verb 384 | 385 | fn build_http_client(hci: &HttpClientInfo) -> Client { 386 | if hci.proxy_flag { 387 | match Client::builder() 388 | .redirect(RedirectPolicy::none()) 389 | .danger_accept_invalid_certs(hci.invalid_certs) 390 | .proxy(hci.web_proxy.clone()) 391 | .default_headers(hci.web_headers.clone()) 392 | .timeout(Duration::from_secs(hci.timeout)) 393 | .build() { 394 | Ok(hc) => hc, 395 | Err(_) => {println!("[!] Could not create http client!");process::exit(1);} 396 | } 397 | } else if !hci.proxy_flag { 398 | match Client::builder() 399 | .redirect(RedirectPolicy::none()) 400 | .danger_accept_invalid_certs(hci.invalid_certs) 401 | .default_headers(hci.web_headers.clone()) 402 | .timeout(Duration::from_secs(hci.timeout)) 403 | .build() { 404 | Ok(hc) => hc, 405 | Err(_) => {println!("[!] Could not create http client!");process::exit(1);} 406 | } 407 | } else { 408 | println!("[!] Failed to parse options for http client creation!"); 409 | process::exit(1); 410 | } 411 | }// End of build_http_client 412 | 413 | fn read_file(file_name: &String) -> File { 414 | match File::open(file_name) { 415 | Ok(f) => f, 416 | Err(_) => { 417 | println!("[!] Could not open file: {}",file_name); 418 | process::exit(1); 419 | } 420 | } 421 | }// End of read_file 422 | 423 | fn read_lines(f: &File) -> Vec { 424 | let mut v: Vec = Vec::new(); 425 | let mut c: u32 = 1; 426 | for line in BufReader::new(f).lines() { 427 | v.insert(0, match line { 428 | Ok(l) => l, 429 | Err(e) => { 430 | /* 431 | println!("ERROR: {}",e,);*/ 432 | println!("[!] Failed to read line {} of file! Reason: [{}]",c,e); 433 | println!("[!] Try converting all files to UTF-8."); 434 | println!("[!] Skipping line!"); 435 | continue; 436 | } 437 | }); 438 | c = c + 1; 439 | } 440 | v 441 | }// End of read_lines 442 | 443 | fn write_erodir_file(wf_name: &String, lines: &Vec) 444 | { 445 | let mut file = match OpenOptions::new() 446 | .append(true) 447 | .create(true) 448 | .open(wf_name) { 449 | Ok(f) => f, 450 | Err(e) => { 451 | println!("[!] Could not create file: {}",e); 452 | process::exit(1); 453 | } 454 | }; 455 | 456 | for l in lines { 457 | if let Err(e) = writeln!(file,"{}",l) { 458 | eprintln!("Couldn't write to file: {}",e); 459 | } 460 | } 461 | println!("[+] Wrote output file!"); 462 | }// End of write_erodir_file 463 | 464 | fn thread_gen(hci: &HttpClientInfo, thread_count: u32,erodir_obj: &Arc>, tx: mpsc::Sender) { 465 | // Set handle vector and start timer 466 | let mut build_handles: Vec = Vec::new(); 467 | let mut t_handles: Vec> = Vec::new(); 468 | 469 | // Initialize threads 470 | for _ in 0..thread_count { 471 | 472 | 473 | let mut bh = ThreadBuildHandle::new(); 474 | // Clone Http Client from HttpClientInfo 475 | bh.cloned_http_cli = hci.web_client.clone(); 476 | 477 | // Clone Arc pointer 478 | bh.robj = erodir_obj.clone(); 479 | 480 | // Clone filtered HTTP codes vector 481 | bh.fhc = hci.filter_codes.clone(); 482 | 483 | // Clone other values that I don't want to clone during thread 484 | // None yet 485 | 486 | build_handles.push(bh); 487 | 488 | } 489 | 490 | println!("[*] Threads Built: {}",build_handles.len()); 491 | println!("+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"); 492 | 493 | let now = Instant::now(); 494 | 495 | //Spawn threads 496 | for th in build_handles { 497 | let tx = mpsc::Sender::clone(&tx); 498 | 499 | t_handles.push(thread::spawn(move || { 500 | request_engine(&th.robj, &th.cloned_http_cli, &th.fhc, tx); 501 | })); 502 | } 503 | 504 | for th in t_handles { 505 | th.join().unwrap(); 506 | } 507 | 508 | let elapsed_time: u64 = now.elapsed().as_secs(); 509 | println!("+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"); 510 | println!("[+] Time elapsed: {} Seconds.",elapsed_time); 511 | 512 | 513 | let h = erodir_obj.lock().unwrap(); 514 | 515 | if h.wf_flag == 0 { 516 | } else if h.wf_flag == 1 { 517 | write_erodir_file(&h.wfile_name,&h.wlines); 518 | } else if h.wf_flag == 2 { 519 | write_xml_file(&h.wfile_name, &h.wlines,&h.url); 520 | } 521 | println!("[+] Finished!"); 522 | }// End of thread_gen 523 | 524 | fn write_xml_file(wf_name: &String, lines: &Vec,url: &String) { 525 | let mut file = match OpenOptions::new() 526 | .append(true) 527 | .create(true) 528 | .open(wf_name) { 529 | Ok(f) => f, 530 | Err(e) => { 531 | println!("[!] Could not create file: {}",e); 532 | process::exit(1); 533 | } 534 | }; 535 | if let Err(e) = writeln!(file,"") { 536 | eprintln!("Couldn't write to file: {}",e); 537 | } 538 | if let Err(e) = writeln!(file,"") { 539 | eprintln!("Couldn't write to file: {}",e); 540 | } 541 | if let Err(e) = writeln!(file,"{}",url) { 542 | eprintln!("Couldn't write to file: {}",e); 543 | } 544 | 545 | 546 | for l in lines { 547 | /* Format line and format XML */ 548 | let mut i = 0; 549 | let sections: Vec<&str> = l.split(",").collect(); 550 | for section in sections { 551 | if i == 0 { 552 | if let Err(e) = writeln!(file,"{}",section) { 553 | eprintln!("Couldn't write to file: {}",e); 554 | } 555 | } 556 | else if i == 1 { 557 | if let Err(e) = writeln!(file,"{}",section) { 558 | eprintln!("Couldn't write to file: {}",e); 559 | } 560 | } 561 | i += 1; 562 | } 563 | } 564 | if let Err(e) = writeln!(file,"") { 565 | eprintln!("Couldn't write to file: {}",e); 566 | } 567 | println!("[+] Wrote output file!"); 568 | } 569 | 570 | fn request_engine(robj: &Arc>, http_cli: &Client, fhc: &Vec, tx: mpsc::Sender) { 571 | let mut lines: Vec = Vec::new(); 572 | let tmpl = robj.lock().unwrap(); 573 | let wf_f = tmpl.wf_flag; 574 | let dirmode_f = tmpl.dir_mode; 575 | drop(tmpl); 576 | 577 | loop { 578 | // Get Mutex handle 579 | let mut entry = robj.lock().unwrap(); 580 | 581 | // Check that there are still entries left 582 | if entry.entry_lines.len() == 0 { 583 | drop(entry); 584 | break; 585 | } 586 | 587 | // Get next entry 588 | let e = match entry.entry_lines.pop() { 589 | Some(e) => { 590 | if e == "" {continue;} else {e} 591 | }, 592 | None => continue 593 | }; 594 | 595 | let mut full_url = entry.url.clone(); 596 | full_url.push_str(e.as_str()); 597 | 598 | let mr = entry.max_retries; 599 | 600 | if entry.ext_flag { 601 | let ex = entry.extension_lines.clone(); 602 | drop(entry); 603 | if dirmode_f { 604 | let mut durl = full_url.clone(); 605 | durl.push_str("/"); 606 | make_req(&durl, &http_cli, mr, &fhc, &mut lines, &wf_f); 607 | tx.send(1).unwrap(); 608 | } else { 609 | make_req(&full_url, &http_cli, mr, &fhc, &mut lines, &wf_f); 610 | tx.send(1).unwrap(); 611 | 612 | } 613 | 614 | for ext in ex.iter() { 615 | if ext == "" {continue;} else { 616 | let mut full_ext_url = full_url.clone(); 617 | full_ext_url.push_str(ext.as_str()); 618 | make_req(&full_ext_url, &http_cli, mr, &fhc, &mut lines, &wf_f); 619 | tx.send(1).unwrap(); 620 | } 621 | } 622 | } else { 623 | drop(entry); 624 | if dirmode_f { 625 | let mut durl = full_url.clone(); 626 | durl.push_str("/"); 627 | make_req(&durl, &http_cli, mr, &fhc, &mut lines, &wf_f); 628 | tx.send(1).unwrap(); 629 | } else { 630 | make_req(&full_url, &http_cli, mr, &fhc, &mut lines, &wf_f); 631 | tx.send(1).unwrap(); 632 | } 633 | } 634 | } 635 | 636 | let mut tbi_handle = robj.lock().unwrap(); 637 | for l in lines { 638 | tbi_handle.wlines.push(l); 639 | } 640 | }// End of request_engine 641 | 642 | fn make_req(url: &String, http_cli: &Client, mr: u32, fhc: &Vec, lines: &mut Vec, wff: &i8) { 643 | 644 | let mut retry_counter = 0; 645 | 646 | loop { 647 | match http_cli.get(url.as_str()).send() { 648 | Ok(r) => { 649 | if fhc.contains(&r.status().as_u16()) { 650 | /* Filter body size here */ 651 | println!(" => {} (Status: {})",url,r.status().as_str()); 652 | if *wff != 0 { 653 | lines.push(format!("[{}],[{}]",url,r.status().as_str())); 654 | } 655 | } 656 | break; 657 | }, 658 | Err(e) => { 659 | if retry_counter < mr { 660 | retry_counter = retry_counter + 1; 661 | } else { 662 | req_error(e); 663 | break; 664 | } 665 | } 666 | }; 667 | } 668 | }// End of make_req 669 | 670 | fn req_error(e: reqwest::Error) { 671 | 672 | if e.is_http() { 673 | match e.url() { 674 | Some(url) => { 675 | println!("[!] Could not make request to: {}",url); 676 | match e.get_ref() { 677 | None => {}, 678 | Some(err) => println!("[!] ERROR: {}",err) 679 | } 680 | process::exit(1); 681 | }, 682 | None => println!("No URL specified"), 683 | } 684 | 685 | } else if e.is_server_error() { 686 | match e.url() { 687 | Some(url) => println!("[!] Server error at {}",url), 688 | None => {}, 689 | } 690 | } else if e.is_client_error() { 691 | match e.url() { 692 | Some(url) => println!("[!] Client error at {}",url), 693 | None => {}, 694 | } 695 | } else { 696 | println!("[!] Reached Timeout! Is server down?"); 697 | process::exit(1); 698 | } 699 | }// End of req_error -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | [[package]] 4 | name = "adler32" 5 | version = "1.0.3" 6 | source = "registry+https://github.com/rust-lang/crates.io-index" 7 | 8 | [[package]] 9 | name = "aho-corasick" 10 | version = "0.7.3" 11 | source = "registry+https://github.com/rust-lang/crates.io-index" 12 | dependencies = [ 13 | "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 14 | ] 15 | 16 | [[package]] 17 | name = "ansi_term" 18 | version = "0.11.0" 19 | source = "registry+https://github.com/rust-lang/crates.io-index" 20 | dependencies = [ 21 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 22 | ] 23 | 24 | [[package]] 25 | name = "arrayvec" 26 | version = "0.4.8" 27 | source = "registry+https://github.com/rust-lang/crates.io-index" 28 | dependencies = [ 29 | "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", 30 | ] 31 | 32 | [[package]] 33 | name = "atty" 34 | version = "0.2.11" 35 | source = "registry+https://github.com/rust-lang/crates.io-index" 36 | dependencies = [ 37 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 38 | "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 39 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 40 | ] 41 | 42 | [[package]] 43 | name = "autocfg" 44 | version = "0.1.2" 45 | source = "registry+https://github.com/rust-lang/crates.io-index" 46 | 47 | [[package]] 48 | name = "backtrace" 49 | version = "0.3.15" 50 | source = "registry+https://github.com/rust-lang/crates.io-index" 51 | dependencies = [ 52 | "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 53 | "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", 54 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 55 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 56 | "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", 57 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 58 | ] 59 | 60 | [[package]] 61 | name = "backtrace-sys" 62 | version = "0.1.28" 63 | source = "registry+https://github.com/rust-lang/crates.io-index" 64 | dependencies = [ 65 | "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", 66 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 67 | ] 68 | 69 | [[package]] 70 | name = "base64" 71 | version = "0.10.1" 72 | source = "registry+https://github.com/rust-lang/crates.io-index" 73 | dependencies = [ 74 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 75 | ] 76 | 77 | [[package]] 78 | name = "bitflags" 79 | version = "1.0.4" 80 | source = "registry+https://github.com/rust-lang/crates.io-index" 81 | 82 | [[package]] 83 | name = "build_const" 84 | version = "0.2.1" 85 | source = "registry+https://github.com/rust-lang/crates.io-index" 86 | 87 | [[package]] 88 | name = "byteorder" 89 | version = "1.2.7" 90 | source = "registry+https://github.com/rust-lang/crates.io-index" 91 | 92 | [[package]] 93 | name = "bytes" 94 | version = "0.4.11" 95 | source = "registry+https://github.com/rust-lang/crates.io-index" 96 | dependencies = [ 97 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 98 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 99 | ] 100 | 101 | [[package]] 102 | name = "cc" 103 | version = "1.0.26" 104 | source = "registry+https://github.com/rust-lang/crates.io-index" 105 | 106 | [[package]] 107 | name = "cfg-if" 108 | version = "0.1.6" 109 | source = "registry+https://github.com/rust-lang/crates.io-index" 110 | 111 | [[package]] 112 | name = "clap" 113 | version = "2.33.0" 114 | source = "registry+https://github.com/rust-lang/crates.io-index" 115 | dependencies = [ 116 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 117 | "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 118 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 119 | "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 120 | "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 121 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 122 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 123 | ] 124 | 125 | [[package]] 126 | name = "cloudabi" 127 | version = "0.0.3" 128 | source = "registry+https://github.com/rust-lang/crates.io-index" 129 | dependencies = [ 130 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 131 | ] 132 | 133 | [[package]] 134 | name = "cookie" 135 | version = "0.12.0" 136 | source = "registry+https://github.com/rust-lang/crates.io-index" 137 | dependencies = [ 138 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 139 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 140 | ] 141 | 142 | [[package]] 143 | name = "cookie_store" 144 | version = "0.7.0" 145 | source = "registry+https://github.com/rust-lang/crates.io-index" 146 | dependencies = [ 147 | "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 148 | "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 149 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 150 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 151 | "publicsuffix 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 152 | "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", 153 | "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", 154 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 155 | "try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 156 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 157 | ] 158 | 159 | [[package]] 160 | name = "core-foundation" 161 | version = "0.5.1" 162 | source = "registry+https://github.com/rust-lang/crates.io-index" 163 | dependencies = [ 164 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 165 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 166 | ] 167 | 168 | [[package]] 169 | name = "core-foundation-sys" 170 | version = "0.5.1" 171 | source = "registry+https://github.com/rust-lang/crates.io-index" 172 | dependencies = [ 173 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 174 | ] 175 | 176 | [[package]] 177 | name = "crc" 178 | version = "1.8.1" 179 | source = "registry+https://github.com/rust-lang/crates.io-index" 180 | dependencies = [ 181 | "build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 182 | ] 183 | 184 | [[package]] 185 | name = "crc32fast" 186 | version = "1.1.2" 187 | source = "registry+https://github.com/rust-lang/crates.io-index" 188 | dependencies = [ 189 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 190 | ] 191 | 192 | [[package]] 193 | name = "crossbeam-deque" 194 | version = "0.6.2" 195 | source = "registry+https://github.com/rust-lang/crates.io-index" 196 | dependencies = [ 197 | "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 198 | "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", 199 | ] 200 | 201 | [[package]] 202 | name = "crossbeam-epoch" 203 | version = "0.6.1" 204 | source = "registry+https://github.com/rust-lang/crates.io-index" 205 | dependencies = [ 206 | "arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 207 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 208 | "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", 209 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 210 | "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 211 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 212 | ] 213 | 214 | [[package]] 215 | name = "crossbeam-utils" 216 | version = "0.6.3" 217 | source = "registry+https://github.com/rust-lang/crates.io-index" 218 | dependencies = [ 219 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 220 | ] 221 | 222 | [[package]] 223 | name = "dtoa" 224 | version = "0.4.3" 225 | source = "registry+https://github.com/rust-lang/crates.io-index" 226 | 227 | [[package]] 228 | name = "encoding_rs" 229 | version = "0.8.13" 230 | source = "registry+https://github.com/rust-lang/crates.io-index" 231 | dependencies = [ 232 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 233 | ] 234 | 235 | [[package]] 236 | name = "erodir" 237 | version = "0.1.8" 238 | dependencies = [ 239 | "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 240 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", 241 | "reqwest 0.9.20 (registry+https://github.com/rust-lang/crates.io-index)", 242 | "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 243 | ] 244 | 245 | [[package]] 246 | name = "error-chain" 247 | version = "0.12.0" 248 | source = "registry+https://github.com/rust-lang/crates.io-index" 249 | dependencies = [ 250 | "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 251 | ] 252 | 253 | [[package]] 254 | name = "failure" 255 | version = "0.1.5" 256 | source = "registry+https://github.com/rust-lang/crates.io-index" 257 | dependencies = [ 258 | "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 259 | "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 260 | ] 261 | 262 | [[package]] 263 | name = "failure_derive" 264 | version = "0.1.5" 265 | source = "registry+https://github.com/rust-lang/crates.io-index" 266 | dependencies = [ 267 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", 268 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 269 | "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)", 270 | "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 271 | ] 272 | 273 | [[package]] 274 | name = "flate2" 275 | version = "1.0.7" 276 | source = "registry+https://github.com/rust-lang/crates.io-index" 277 | dependencies = [ 278 | "crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 279 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 280 | "miniz_oxide_c_api 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 281 | ] 282 | 283 | [[package]] 284 | name = "fnv" 285 | version = "1.0.6" 286 | source = "registry+https://github.com/rust-lang/crates.io-index" 287 | 288 | [[package]] 289 | name = "foreign-types" 290 | version = "0.3.2" 291 | source = "registry+https://github.com/rust-lang/crates.io-index" 292 | dependencies = [ 293 | "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 294 | ] 295 | 296 | [[package]] 297 | name = "foreign-types-shared" 298 | version = "0.1.1" 299 | source = "registry+https://github.com/rust-lang/crates.io-index" 300 | 301 | [[package]] 302 | name = "fuchsia-zircon" 303 | version = "0.3.3" 304 | source = "registry+https://github.com/rust-lang/crates.io-index" 305 | dependencies = [ 306 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 307 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 308 | ] 309 | 310 | [[package]] 311 | name = "fuchsia-zircon-sys" 312 | version = "0.3.3" 313 | source = "registry+https://github.com/rust-lang/crates.io-index" 314 | 315 | [[package]] 316 | name = "futures" 317 | version = "0.1.25" 318 | source = "registry+https://github.com/rust-lang/crates.io-index" 319 | 320 | [[package]] 321 | name = "futures-cpupool" 322 | version = "0.1.8" 323 | source = "registry+https://github.com/rust-lang/crates.io-index" 324 | dependencies = [ 325 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 326 | "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 327 | ] 328 | 329 | [[package]] 330 | name = "h2" 331 | version = "0.1.14" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | dependencies = [ 334 | "byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 335 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 336 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 337 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 338 | "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", 339 | "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 340 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 341 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 342 | "string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 343 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 344 | ] 345 | 346 | [[package]] 347 | name = "http" 348 | version = "0.1.17" 349 | source = "registry+https://github.com/rust-lang/crates.io-index" 350 | dependencies = [ 351 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 352 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 353 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", 354 | ] 355 | 356 | [[package]] 357 | name = "httparse" 358 | version = "1.3.3" 359 | source = "registry+https://github.com/rust-lang/crates.io-index" 360 | 361 | [[package]] 362 | name = "hyper" 363 | version = "0.12.27" 364 | source = "registry+https://github.com/rust-lang/crates.io-index" 365 | dependencies = [ 366 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 367 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 368 | "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 369 | "h2 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", 370 | "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", 371 | "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 372 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 373 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", 374 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 375 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 376 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 377 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 378 | "tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", 379 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 380 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 381 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 382 | "tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 383 | "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 384 | "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 385 | "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 386 | ] 387 | 388 | [[package]] 389 | name = "hyper-tls" 390 | version = "0.3.2" 391 | source = "registry+https://github.com/rust-lang/crates.io-index" 392 | dependencies = [ 393 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 394 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 395 | "hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)", 396 | "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 397 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 398 | ] 399 | 400 | [[package]] 401 | name = "idna" 402 | version = "0.1.5" 403 | source = "registry+https://github.com/rust-lang/crates.io-index" 404 | dependencies = [ 405 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 406 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 407 | "unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 408 | ] 409 | 410 | [[package]] 411 | name = "indexmap" 412 | version = "1.0.2" 413 | source = "registry+https://github.com/rust-lang/crates.io-index" 414 | 415 | [[package]] 416 | name = "iovec" 417 | version = "0.1.2" 418 | source = "registry+https://github.com/rust-lang/crates.io-index" 419 | dependencies = [ 420 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 421 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 422 | ] 423 | 424 | [[package]] 425 | name = "itoa" 426 | version = "0.4.3" 427 | source = "registry+https://github.com/rust-lang/crates.io-index" 428 | 429 | [[package]] 430 | name = "kernel32-sys" 431 | version = "0.2.2" 432 | source = "registry+https://github.com/rust-lang/crates.io-index" 433 | dependencies = [ 434 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 435 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 436 | ] 437 | 438 | [[package]] 439 | name = "lazy_static" 440 | version = "1.2.0" 441 | source = "registry+https://github.com/rust-lang/crates.io-index" 442 | 443 | [[package]] 444 | name = "lazycell" 445 | version = "1.2.1" 446 | source = "registry+https://github.com/rust-lang/crates.io-index" 447 | 448 | [[package]] 449 | name = "libc" 450 | version = "0.2.45" 451 | source = "registry+https://github.com/rust-lang/crates.io-index" 452 | 453 | [[package]] 454 | name = "lock_api" 455 | version = "0.1.5" 456 | source = "registry+https://github.com/rust-lang/crates.io-index" 457 | dependencies = [ 458 | "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 459 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 460 | ] 461 | 462 | [[package]] 463 | name = "log" 464 | version = "0.4.6" 465 | source = "registry+https://github.com/rust-lang/crates.io-index" 466 | dependencies = [ 467 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 468 | ] 469 | 470 | [[package]] 471 | name = "matches" 472 | version = "0.1.8" 473 | source = "registry+https://github.com/rust-lang/crates.io-index" 474 | 475 | [[package]] 476 | name = "memchr" 477 | version = "2.2.0" 478 | source = "registry+https://github.com/rust-lang/crates.io-index" 479 | 480 | [[package]] 481 | name = "memoffset" 482 | version = "0.2.1" 483 | source = "registry+https://github.com/rust-lang/crates.io-index" 484 | 485 | [[package]] 486 | name = "mime" 487 | version = "0.3.12" 488 | source = "registry+https://github.com/rust-lang/crates.io-index" 489 | dependencies = [ 490 | "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 491 | ] 492 | 493 | [[package]] 494 | name = "mime_guess" 495 | version = "2.0.1" 496 | source = "registry+https://github.com/rust-lang/crates.io-index" 497 | dependencies = [ 498 | "mime 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", 499 | "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 500 | ] 501 | 502 | [[package]] 503 | name = "miniz_oxide" 504 | version = "0.2.1" 505 | source = "registry+https://github.com/rust-lang/crates.io-index" 506 | dependencies = [ 507 | "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 508 | ] 509 | 510 | [[package]] 511 | name = "miniz_oxide_c_api" 512 | version = "0.2.1" 513 | source = "registry+https://github.com/rust-lang/crates.io-index" 514 | dependencies = [ 515 | "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", 516 | "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 517 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 518 | "miniz_oxide 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 519 | ] 520 | 521 | [[package]] 522 | name = "mio" 523 | version = "0.6.16" 524 | source = "registry+https://github.com/rust-lang/crates.io-index" 525 | dependencies = [ 526 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 527 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 528 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 529 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 530 | "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 531 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 532 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 533 | "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 534 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 535 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 536 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 537 | ] 538 | 539 | [[package]] 540 | name = "miow" 541 | version = "0.2.1" 542 | source = "registry+https://github.com/rust-lang/crates.io-index" 543 | dependencies = [ 544 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 545 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 546 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 547 | "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 548 | ] 549 | 550 | [[package]] 551 | name = "native-tls" 552 | version = "0.2.2" 553 | source = "registry+https://github.com/rust-lang/crates.io-index" 554 | dependencies = [ 555 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 556 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 557 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 558 | "openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)", 559 | "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 560 | "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", 561 | "schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", 562 | "security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 563 | "security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 564 | "tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 565 | ] 566 | 567 | [[package]] 568 | name = "net2" 569 | version = "0.2.33" 570 | source = "registry+https://github.com/rust-lang/crates.io-index" 571 | dependencies = [ 572 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 573 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 574 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 575 | ] 576 | 577 | [[package]] 578 | name = "nodrop" 579 | version = "0.1.13" 580 | source = "registry+https://github.com/rust-lang/crates.io-index" 581 | 582 | [[package]] 583 | name = "num_cpus" 584 | version = "1.9.0" 585 | source = "registry+https://github.com/rust-lang/crates.io-index" 586 | dependencies = [ 587 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 588 | ] 589 | 590 | [[package]] 591 | name = "openssl" 592 | version = "0.10.15" 593 | source = "registry+https://github.com/rust-lang/crates.io-index" 594 | dependencies = [ 595 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 596 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 597 | "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 598 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 599 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 600 | "openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)", 601 | ] 602 | 603 | [[package]] 604 | name = "openssl-probe" 605 | version = "0.1.2" 606 | source = "registry+https://github.com/rust-lang/crates.io-index" 607 | 608 | [[package]] 609 | name = "openssl-sys" 610 | version = "0.9.39" 611 | source = "registry+https://github.com/rust-lang/crates.io-index" 612 | dependencies = [ 613 | "cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", 614 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 615 | "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", 616 | "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", 617 | ] 618 | 619 | [[package]] 620 | name = "owning_ref" 621 | version = "0.4.0" 622 | source = "registry+https://github.com/rust-lang/crates.io-index" 623 | dependencies = [ 624 | "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 625 | ] 626 | 627 | [[package]] 628 | name = "parking_lot" 629 | version = "0.6.4" 630 | source = "registry+https://github.com/rust-lang/crates.io-index" 631 | dependencies = [ 632 | "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 633 | "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 634 | ] 635 | 636 | [[package]] 637 | name = "parking_lot_core" 638 | version = "0.3.1" 639 | source = "registry+https://github.com/rust-lang/crates.io-index" 640 | dependencies = [ 641 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 642 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", 643 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 644 | "smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", 645 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 646 | ] 647 | 648 | [[package]] 649 | name = "percent-encoding" 650 | version = "1.0.1" 651 | source = "registry+https://github.com/rust-lang/crates.io-index" 652 | 653 | [[package]] 654 | name = "pkg-config" 655 | version = "0.3.14" 656 | source = "registry+https://github.com/rust-lang/crates.io-index" 657 | 658 | [[package]] 659 | name = "proc-macro2" 660 | version = "0.4.24" 661 | source = "registry+https://github.com/rust-lang/crates.io-index" 662 | dependencies = [ 663 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 664 | ] 665 | 666 | [[package]] 667 | name = "proc-macro2" 668 | version = "1.0.2" 669 | source = "registry+https://github.com/rust-lang/crates.io-index" 670 | dependencies = [ 671 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 672 | ] 673 | 674 | [[package]] 675 | name = "publicsuffix" 676 | version = "1.5.2" 677 | source = "registry+https://github.com/rust-lang/crates.io-index" 678 | dependencies = [ 679 | "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 680 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 681 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 682 | "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 683 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 684 | ] 685 | 686 | [[package]] 687 | name = "quote" 688 | version = "0.6.10" 689 | source = "registry+https://github.com/rust-lang/crates.io-index" 690 | dependencies = [ 691 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", 692 | ] 693 | 694 | [[package]] 695 | name = "quote" 696 | version = "1.0.2" 697 | source = "registry+https://github.com/rust-lang/crates.io-index" 698 | dependencies = [ 699 | "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 700 | ] 701 | 702 | [[package]] 703 | name = "rand" 704 | version = "0.5.5" 705 | source = "registry+https://github.com/rust-lang/crates.io-index" 706 | dependencies = [ 707 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 708 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 709 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 710 | "rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 711 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 712 | ] 713 | 714 | [[package]] 715 | name = "rand" 716 | version = "0.6.1" 717 | source = "registry+https://github.com/rust-lang/crates.io-index" 718 | dependencies = [ 719 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 720 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 721 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 722 | "rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 723 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 724 | "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 725 | "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 726 | "rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 727 | "rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 728 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 729 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 730 | ] 731 | 732 | [[package]] 733 | name = "rand_chacha" 734 | version = "0.1.0" 735 | source = "registry+https://github.com/rust-lang/crates.io-index" 736 | dependencies = [ 737 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 738 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 739 | ] 740 | 741 | [[package]] 742 | name = "rand_core" 743 | version = "0.2.2" 744 | source = "registry+https://github.com/rust-lang/crates.io-index" 745 | dependencies = [ 746 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 747 | ] 748 | 749 | [[package]] 750 | name = "rand_core" 751 | version = "0.3.0" 752 | source = "registry+https://github.com/rust-lang/crates.io-index" 753 | 754 | [[package]] 755 | name = "rand_hc" 756 | version = "0.1.0" 757 | source = "registry+https://github.com/rust-lang/crates.io-index" 758 | dependencies = [ 759 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 760 | ] 761 | 762 | [[package]] 763 | name = "rand_isaac" 764 | version = "0.1.1" 765 | source = "registry+https://github.com/rust-lang/crates.io-index" 766 | dependencies = [ 767 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 768 | ] 769 | 770 | [[package]] 771 | name = "rand_pcg" 772 | version = "0.1.1" 773 | source = "registry+https://github.com/rust-lang/crates.io-index" 774 | dependencies = [ 775 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 776 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 777 | ] 778 | 779 | [[package]] 780 | name = "rand_xorshift" 781 | version = "0.1.0" 782 | source = "registry+https://github.com/rust-lang/crates.io-index" 783 | dependencies = [ 784 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 785 | ] 786 | 787 | [[package]] 788 | name = "redox_syscall" 789 | version = "0.1.44" 790 | source = "registry+https://github.com/rust-lang/crates.io-index" 791 | 792 | [[package]] 793 | name = "redox_termios" 794 | version = "0.1.1" 795 | source = "registry+https://github.com/rust-lang/crates.io-index" 796 | dependencies = [ 797 | "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 798 | ] 799 | 800 | [[package]] 801 | name = "regex" 802 | version = "1.1.6" 803 | source = "registry+https://github.com/rust-lang/crates.io-index" 804 | dependencies = [ 805 | "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", 806 | "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 807 | "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", 808 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", 809 | "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 810 | ] 811 | 812 | [[package]] 813 | name = "regex-syntax" 814 | version = "0.6.6" 815 | source = "registry+https://github.com/rust-lang/crates.io-index" 816 | dependencies = [ 817 | "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 818 | ] 819 | 820 | [[package]] 821 | name = "remove_dir_all" 822 | version = "0.5.1" 823 | source = "registry+https://github.com/rust-lang/crates.io-index" 824 | dependencies = [ 825 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 826 | ] 827 | 828 | [[package]] 829 | name = "reqwest" 830 | version = "0.9.20" 831 | source = "registry+https://github.com/rust-lang/crates.io-index" 832 | dependencies = [ 833 | "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 834 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 835 | "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 836 | "cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 837 | "encoding_rs 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)", 838 | "flate2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", 839 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 840 | "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", 841 | "hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)", 842 | "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 843 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 844 | "mime 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)", 845 | "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 846 | "native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 847 | "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", 848 | "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", 849 | "serde_urlencoded 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", 850 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 851 | "tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", 852 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 853 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 854 | "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 855 | "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 856 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 857 | "uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 858 | "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 859 | ] 860 | 861 | [[package]] 862 | name = "rustc-demangle" 863 | version = "0.1.14" 864 | source = "registry+https://github.com/rust-lang/crates.io-index" 865 | 866 | [[package]] 867 | name = "rustc_version" 868 | version = "0.2.3" 869 | source = "registry+https://github.com/rust-lang/crates.io-index" 870 | dependencies = [ 871 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 872 | ] 873 | 874 | [[package]] 875 | name = "ryu" 876 | version = "0.2.7" 877 | source = "registry+https://github.com/rust-lang/crates.io-index" 878 | 879 | [[package]] 880 | name = "schannel" 881 | version = "0.1.14" 882 | source = "registry+https://github.com/rust-lang/crates.io-index" 883 | dependencies = [ 884 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 885 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 886 | ] 887 | 888 | [[package]] 889 | name = "scopeguard" 890 | version = "0.3.3" 891 | source = "registry+https://github.com/rust-lang/crates.io-index" 892 | 893 | [[package]] 894 | name = "security-framework" 895 | version = "0.2.1" 896 | source = "registry+https://github.com/rust-lang/crates.io-index" 897 | dependencies = [ 898 | "core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 899 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 900 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 901 | "security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 902 | ] 903 | 904 | [[package]] 905 | name = "security-framework-sys" 906 | version = "0.2.1" 907 | source = "registry+https://github.com/rust-lang/crates.io-index" 908 | dependencies = [ 909 | "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 910 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 911 | ] 912 | 913 | [[package]] 914 | name = "semver" 915 | version = "0.9.0" 916 | source = "registry+https://github.com/rust-lang/crates.io-index" 917 | dependencies = [ 918 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 919 | ] 920 | 921 | [[package]] 922 | name = "semver-parser" 923 | version = "0.7.0" 924 | source = "registry+https://github.com/rust-lang/crates.io-index" 925 | 926 | [[package]] 927 | name = "serde" 928 | version = "1.0.90" 929 | source = "registry+https://github.com/rust-lang/crates.io-index" 930 | dependencies = [ 931 | "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 932 | ] 933 | 934 | [[package]] 935 | name = "serde_derive" 936 | version = "1.0.99" 937 | source = "registry+https://github.com/rust-lang/crates.io-index" 938 | dependencies = [ 939 | "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 940 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 941 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 942 | ] 943 | 944 | [[package]] 945 | name = "serde_json" 946 | version = "1.0.39" 947 | source = "registry+https://github.com/rust-lang/crates.io-index" 948 | dependencies = [ 949 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", 950 | "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 951 | "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", 952 | ] 953 | 954 | [[package]] 955 | name = "serde_urlencoded" 956 | version = "0.5.4" 957 | source = "registry+https://github.com/rust-lang/crates.io-index" 958 | dependencies = [ 959 | "dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", 960 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", 961 | "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", 962 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 963 | ] 964 | 965 | [[package]] 966 | name = "slab" 967 | version = "0.4.1" 968 | source = "registry+https://github.com/rust-lang/crates.io-index" 969 | 970 | [[package]] 971 | name = "smallvec" 972 | version = "0.6.7" 973 | source = "registry+https://github.com/rust-lang/crates.io-index" 974 | dependencies = [ 975 | "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 976 | ] 977 | 978 | [[package]] 979 | name = "stable_deref_trait" 980 | version = "1.1.1" 981 | source = "registry+https://github.com/rust-lang/crates.io-index" 982 | 983 | [[package]] 984 | name = "string" 985 | version = "0.1.2" 986 | source = "registry+https://github.com/rust-lang/crates.io-index" 987 | 988 | [[package]] 989 | name = "strsim" 990 | version = "0.8.0" 991 | source = "registry+https://github.com/rust-lang/crates.io-index" 992 | 993 | [[package]] 994 | name = "syn" 995 | version = "0.15.23" 996 | source = "registry+https://github.com/rust-lang/crates.io-index" 997 | dependencies = [ 998 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", 999 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1000 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1001 | ] 1002 | 1003 | [[package]] 1004 | name = "syn" 1005 | version = "1.0.5" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | dependencies = [ 1008 | "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1009 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1010 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1011 | ] 1012 | 1013 | [[package]] 1014 | name = "synstructure" 1015 | version = "0.10.1" 1016 | source = "registry+https://github.com/rust-lang/crates.io-index" 1017 | dependencies = [ 1018 | "proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)", 1019 | "quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1020 | "syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)", 1021 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1022 | ] 1023 | 1024 | [[package]] 1025 | name = "tempfile" 1026 | version = "3.0.5" 1027 | source = "registry+https://github.com/rust-lang/crates.io-index" 1028 | dependencies = [ 1029 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1030 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 1031 | "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 1032 | "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 1033 | "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 1034 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 1035 | ] 1036 | 1037 | [[package]] 1038 | name = "termion" 1039 | version = "1.5.1" 1040 | source = "registry+https://github.com/rust-lang/crates.io-index" 1041 | dependencies = [ 1042 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 1043 | "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 1044 | "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1045 | ] 1046 | 1047 | [[package]] 1048 | name = "textwrap" 1049 | version = "0.11.0" 1050 | source = "registry+https://github.com/rust-lang/crates.io-index" 1051 | dependencies = [ 1052 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1053 | ] 1054 | 1055 | [[package]] 1056 | name = "thread_local" 1057 | version = "0.3.6" 1058 | source = "registry+https://github.com/rust-lang/crates.io-index" 1059 | dependencies = [ 1060 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1061 | ] 1062 | 1063 | [[package]] 1064 | name = "time" 1065 | version = "0.1.42" 1066 | source = "registry+https://github.com/rust-lang/crates.io-index" 1067 | dependencies = [ 1068 | "libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", 1069 | "redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)", 1070 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 1071 | ] 1072 | 1073 | [[package]] 1074 | name = "tokio" 1075 | version = "0.1.17" 1076 | source = "registry+https://github.com/rust-lang/crates.io-index" 1077 | dependencies = [ 1078 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 1079 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1080 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", 1081 | "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1082 | "tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 1083 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1084 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 1085 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 1086 | "tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1087 | "tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1088 | "tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 1089 | "tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1090 | ] 1091 | 1092 | [[package]] 1093 | name = "tokio-current-thread" 1094 | version = "0.1.4" 1095 | source = "registry+https://github.com/rust-lang/crates.io-index" 1096 | dependencies = [ 1097 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1098 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1099 | ] 1100 | 1101 | [[package]] 1102 | name = "tokio-executor" 1103 | version = "0.1.5" 1104 | source = "registry+https://github.com/rust-lang/crates.io-index" 1105 | dependencies = [ 1106 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1107 | ] 1108 | 1109 | [[package]] 1110 | name = "tokio-io" 1111 | version = "0.1.10" 1112 | source = "registry+https://github.com/rust-lang/crates.io-index" 1113 | dependencies = [ 1114 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 1115 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1116 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1117 | ] 1118 | 1119 | [[package]] 1120 | name = "tokio-reactor" 1121 | version = "0.1.7" 1122 | source = "registry+https://github.com/rust-lang/crates.io-index" 1123 | dependencies = [ 1124 | "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", 1125 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1126 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1127 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1128 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", 1129 | "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1130 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", 1131 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 1132 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1133 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 1134 | ] 1135 | 1136 | [[package]] 1137 | name = "tokio-tcp" 1138 | version = "0.1.2" 1139 | source = "registry+https://github.com/rust-lang/crates.io-index" 1140 | dependencies = [ 1141 | "bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", 1142 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1143 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1144 | "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", 1145 | "tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", 1146 | "tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 1147 | ] 1148 | 1149 | [[package]] 1150 | name = "tokio-threadpool" 1151 | version = "0.1.9" 1152 | source = "registry+https://github.com/rust-lang/crates.io-index" 1153 | dependencies = [ 1154 | "crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 1155 | "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", 1156 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1157 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1158 | "num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1159 | "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 1160 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1161 | ] 1162 | 1163 | [[package]] 1164 | name = "tokio-timer" 1165 | version = "0.2.8" 1166 | source = "registry+https://github.com/rust-lang/crates.io-index" 1167 | dependencies = [ 1168 | "crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", 1169 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1170 | "slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 1171 | "tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1172 | ] 1173 | 1174 | [[package]] 1175 | name = "tokio-trace-core" 1176 | version = "0.1.0" 1177 | source = "registry+https://github.com/rust-lang/crates.io-index" 1178 | dependencies = [ 1179 | "lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1180 | ] 1181 | 1182 | [[package]] 1183 | name = "try-lock" 1184 | version = "0.2.2" 1185 | source = "registry+https://github.com/rust-lang/crates.io-index" 1186 | 1187 | [[package]] 1188 | name = "try_from" 1189 | version = "0.3.2" 1190 | source = "registry+https://github.com/rust-lang/crates.io-index" 1191 | dependencies = [ 1192 | "cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1193 | ] 1194 | 1195 | [[package]] 1196 | name = "ucd-util" 1197 | version = "0.1.3" 1198 | source = "registry+https://github.com/rust-lang/crates.io-index" 1199 | 1200 | [[package]] 1201 | name = "unicase" 1202 | version = "2.5.1" 1203 | source = "registry+https://github.com/rust-lang/crates.io-index" 1204 | dependencies = [ 1205 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1206 | ] 1207 | 1208 | [[package]] 1209 | name = "unicode-bidi" 1210 | version = "0.3.4" 1211 | source = "registry+https://github.com/rust-lang/crates.io-index" 1212 | dependencies = [ 1213 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1214 | ] 1215 | 1216 | [[package]] 1217 | name = "unicode-normalization" 1218 | version = "0.1.7" 1219 | source = "registry+https://github.com/rust-lang/crates.io-index" 1220 | 1221 | [[package]] 1222 | name = "unicode-width" 1223 | version = "0.1.5" 1224 | source = "registry+https://github.com/rust-lang/crates.io-index" 1225 | 1226 | [[package]] 1227 | name = "unicode-xid" 1228 | version = "0.1.0" 1229 | source = "registry+https://github.com/rust-lang/crates.io-index" 1230 | 1231 | [[package]] 1232 | name = "unicode-xid" 1233 | version = "0.2.0" 1234 | source = "registry+https://github.com/rust-lang/crates.io-index" 1235 | 1236 | [[package]] 1237 | name = "unreachable" 1238 | version = "1.0.0" 1239 | source = "registry+https://github.com/rust-lang/crates.io-index" 1240 | dependencies = [ 1241 | "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1242 | ] 1243 | 1244 | [[package]] 1245 | name = "url" 1246 | version = "1.7.2" 1247 | source = "registry+https://github.com/rust-lang/crates.io-index" 1248 | dependencies = [ 1249 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1250 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1251 | "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1252 | ] 1253 | 1254 | [[package]] 1255 | name = "utf8-ranges" 1256 | version = "1.0.2" 1257 | source = "registry+https://github.com/rust-lang/crates.io-index" 1258 | 1259 | [[package]] 1260 | name = "uuid" 1261 | version = "0.7.1" 1262 | source = "registry+https://github.com/rust-lang/crates.io-index" 1263 | dependencies = [ 1264 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", 1265 | ] 1266 | 1267 | [[package]] 1268 | name = "vcpkg" 1269 | version = "0.2.6" 1270 | source = "registry+https://github.com/rust-lang/crates.io-index" 1271 | 1272 | [[package]] 1273 | name = "vec_map" 1274 | version = "0.8.1" 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" 1276 | 1277 | [[package]] 1278 | name = "version_check" 1279 | version = "0.1.5" 1280 | source = "registry+https://github.com/rust-lang/crates.io-index" 1281 | 1282 | [[package]] 1283 | name = "void" 1284 | version = "1.0.2" 1285 | source = "registry+https://github.com/rust-lang/crates.io-index" 1286 | 1287 | [[package]] 1288 | name = "want" 1289 | version = "0.0.6" 1290 | source = "registry+https://github.com/rust-lang/crates.io-index" 1291 | dependencies = [ 1292 | "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", 1293 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1294 | "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1295 | ] 1296 | 1297 | [[package]] 1298 | name = "winapi" 1299 | version = "0.2.8" 1300 | source = "registry+https://github.com/rust-lang/crates.io-index" 1301 | 1302 | [[package]] 1303 | name = "winapi" 1304 | version = "0.3.7" 1305 | source = "registry+https://github.com/rust-lang/crates.io-index" 1306 | dependencies = [ 1307 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1308 | "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1309 | ] 1310 | 1311 | [[package]] 1312 | name = "winapi-build" 1313 | version = "0.1.1" 1314 | source = "registry+https://github.com/rust-lang/crates.io-index" 1315 | 1316 | [[package]] 1317 | name = "winapi-i686-pc-windows-gnu" 1318 | version = "0.4.0" 1319 | source = "registry+https://github.com/rust-lang/crates.io-index" 1320 | 1321 | [[package]] 1322 | name = "winapi-x86_64-pc-windows-gnu" 1323 | version = "0.4.0" 1324 | source = "registry+https://github.com/rust-lang/crates.io-index" 1325 | 1326 | [[package]] 1327 | name = "winreg" 1328 | version = "0.6.2" 1329 | source = "registry+https://github.com/rust-lang/crates.io-index" 1330 | dependencies = [ 1331 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 1332 | ] 1333 | 1334 | [[package]] 1335 | name = "ws2_32-sys" 1336 | version = "0.2.1" 1337 | source = "registry+https://github.com/rust-lang/crates.io-index" 1338 | dependencies = [ 1339 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 1340 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1341 | ] 1342 | 1343 | [metadata] 1344 | "checksum adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c" 1345 | "checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c" 1346 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 1347 | "checksum arrayvec 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f405cc4c21cd8b784f6c8fc2adf9bc00f59558f0049b5ec21517f875963040cc" 1348 | "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" 1349 | "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" 1350 | "checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637" 1351 | "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" 1352 | "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" 1353 | "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" 1354 | "checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39" 1355 | "checksum byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "94f88df23a25417badc922ab0f5716cc1330e87f71ddd9203b3a3ccd9cedf75d" 1356 | "checksum bytes 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa" 1357 | "checksum cc 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "389803e36973d242e7fecb092b2de44a3d35ac62524b3b9339e51d577d668e02" 1358 | "checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" 1359 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" 1360 | "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 1361 | "checksum cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5" 1362 | "checksum cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c" 1363 | "checksum core-foundation 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980" 1364 | "checksum core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa" 1365 | "checksum crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" 1366 | "checksum crc32fast 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e91d5240c6975ef33aeb5f148f35275c25eda8e8a5f95abe421978b05b8bf192" 1367 | "checksum crossbeam-deque 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4fe1b6f945f824c7a25afe44f62e25d714c0cc523f8e99d8db5cd1026e1269d3" 1368 | "checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8" 1369 | "checksum crossbeam-utils 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "41ee4864f4797060e52044376f7d107429ce1fb43460021b126424b7180ee21a" 1370 | "checksum dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd" 1371 | "checksum encoding_rs 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1a8fa54e6689eb2549c4efed8d00d7f3b2b994a064555b0e8df4ae3764bcc4be" 1372 | "checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" 1373 | "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" 1374 | "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" 1375 | "checksum flate2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f87e68aa82b2de08a6e037f1385455759df6e445a8df5e005b4297191dbf18aa" 1376 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" 1377 | "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1378 | "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1379 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 1380 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 1381 | "checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" 1382 | "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" 1383 | "checksum h2 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "1ac030ae20dee464c5d0f36544d8b914a6bc606da44a57e052d2b0f5dae129e0" 1384 | "checksum http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "eed324f0f0daf6ec10c474f150505af2c143f251722bf9dbd1261bd1f2ee2c1a" 1385 | "checksum httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83" 1386 | "checksum hyper 0.12.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4f2777434f26af6e4ce4fdcdccd3bed9d861d11e87bcbe72c0f51ddaca8ff848" 1387 | "checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" 1388 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 1389 | "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" 1390 | "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" 1391 | "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" 1392 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1393 | "checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" 1394 | "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" 1395 | "checksum libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)" = "2d2857ec59fadc0773853c664d2d18e7198e83883e7060b63c924cb077bd5c74" 1396 | "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" 1397 | "checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" 1398 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 1399 | "checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" 1400 | "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" 1401 | "checksum mime 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)" = "0a907b83e7b9e987032439a387e187119cddafc92d5c2aaeb1d92580a793f630" 1402 | "checksum mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599" 1403 | "checksum miniz_oxide 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c468f2369f07d651a5d0bb2c9079f8488a66d5466efe42d0c5c6466edcb7f71e" 1404 | "checksum miniz_oxide_c_api 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b7fe927a42e3807ef71defb191dc87d4e24479b221e67015fe38ae2b7b447bab" 1405 | "checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" 1406 | "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" 1407 | "checksum native-tls 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2" 1408 | "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" 1409 | "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" 1410 | "checksum num_cpus 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238" 1411 | "checksum openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)" = "5e1309181cdcbdb51bc3b6bedb33dfac2a83b3d585033d3f6d9e22e8c1928613" 1412 | "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 1413 | "checksum openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)" = "278c1ad40a89aa1e741a1eed089a2f60b18fab8089c3139b542140fc7d674106" 1414 | "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" 1415 | "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" 1416 | "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" 1417 | "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 1418 | "checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" 1419 | "checksum proc-macro2 0.4.24 (registry+https://github.com/rust-lang/crates.io-index)" = "77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09" 1420 | "checksum proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "175a40b9cf564ce9bf050654633dbf339978706b8ead1a907bb970b63185dd95" 1421 | "checksum publicsuffix 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5afecba86dcf1e4fd610246f89899d1924fe12e1e89f555eb7c7f710f3c5ad1d" 1422 | "checksum quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c" 1423 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" 1424 | "checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c" 1425 | "checksum rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a" 1426 | "checksum rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a" 1427 | "checksum rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372" 1428 | "checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db" 1429 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 1430 | "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 1431 | "checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05" 1432 | "checksum rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3" 1433 | "checksum redox_syscall 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)" = "a84bcd297b87a545980a2d25a0beb72a1f490c31f0a9fde52fca35bfbb1ceb70" 1434 | "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" 1435 | "checksum regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58" 1436 | "checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" 1437 | "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" 1438 | "checksum reqwest 0.9.20 (registry+https://github.com/rust-lang/crates.io-index)" = "0f6d896143a583047512e59ac54a215cb203c29cc941917343edea3be8df9c78" 1439 | "checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" 1440 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1441 | "checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" 1442 | "checksum schannel 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "0e1a231dc10abf6749cfa5d7767f25888d484201accbd919b66ab5413c502d56" 1443 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" 1444 | "checksum security-framework 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "697d3f3c23a618272ead9e1fb259c1411102b31c6af8b93f1d64cca9c3b0e8e0" 1445 | "checksum security-framework-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab01dfbe5756785b5b4d46e0289e5a18071dfa9a7c2b24213ea00b9ef9b665bf" 1446 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 1447 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1448 | "checksum serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)" = "aa5f7c20820475babd2c077c3ab5f8c77a31c15e16ea38687b4c02d3e48680f4" 1449 | "checksum serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425" 1450 | "checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" 1451 | "checksum serde_urlencoded 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d48f9f99cd749a2de71d29da5f948de7f2764cc5a9d7f3c97e3514d4ee6eabf2" 1452 | "checksum slab 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5f9776d6b986f77b35c6cf846c11ad986ff128fe0b2b63a3628e3755e8d3102d" 1453 | "checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db" 1454 | "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" 1455 | "checksum string 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98998cced76115b1da46f63388b909d118a37ae0be0f82ad35773d4a4bc9d18d" 1456 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1457 | "checksum syn 0.15.23 (registry+https://github.com/rust-lang/crates.io-index)" = "9545a6a093a3f0bd59adb472700acc08cad3776f860f16a897dfce8c88721cbc" 1458 | "checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" 1459 | "checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" 1460 | "checksum tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "7e91405c14320e5c79b3d148e1c86f40749a36e490642202a31689cb1a3452b2" 1461 | "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" 1462 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1463 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" 1464 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" 1465 | "checksum tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "1021bb1f4150435ab8f222eb7ed37c60b2d57037def63ba43085a79f387512d7" 1466 | "checksum tokio-current-thread 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "331c8acc267855ec06eb0c94618dcbbfea45bed2d20b77252940095273fb58f6" 1467 | "checksum tokio-executor 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c117b6cf86bb730aab4834f10df96e4dd586eff2c3c27d3781348da49e255bde" 1468 | "checksum tokio-io 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "7392fe0a70d5ce0c882c4778116c519bd5dbaa8a7c3ae3d04578b3afafdcda21" 1469 | "checksum tokio-reactor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "502b625acb4ee13cbb3b90b8ca80e0addd263ddacf6931666ef751e610b07fb5" 1470 | "checksum tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ad235e9dadd126b2d47f6736f65aa1fdcd6420e66ca63f44177bc78df89f912" 1471 | "checksum tokio-threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "56c5556262383032878afad66943926a1d1f0967f17e94bd7764ceceb3b70e7f" 1472 | "checksum tokio-timer 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4f37f0111d76cc5da132fe9bc0590b9b9cfd079bc7e75ac3846278430a299ff8" 1473 | "checksum tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "350c9edade9830dc185ae48ba45667a445ab59f6167ef6d0254ec9d2430d9dd3" 1474 | "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" 1475 | "checksum try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b" 1476 | "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" 1477 | "checksum unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150" 1478 | "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 1479 | "checksum unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25" 1480 | "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" 1481 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 1482 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" 1483 | "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" 1484 | "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 1485 | "checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" 1486 | "checksum uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dab5c5526c5caa3d106653401a267fed923e7046f35895ffcb5ca42db64942e6" 1487 | "checksum vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "def296d3eb3b12371b2c7d0e83bfe1403e4db2d7a0bba324a12b21c4ee13143d" 1488 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" 1489 | "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" 1490 | "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 1491 | "checksum want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "797464475f30ddb8830cc529aaaae648d581f99e2036a928877dfde027ddf6b3" 1492 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 1493 | "checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" 1494 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 1495 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1496 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1497 | "checksum winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" 1498 | "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 1499 | --------------------------------------------------------------------------------