├── .gitignore ├── .travis.yml ├── .appveyor.yml ├── Cargo.toml ├── findomain.1 ├── README.md ├── LICENSE └── Cargo.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | test.* 4 | *.txt 5 | domains 6 | *.csv 7 | *.json 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | rust: 3 | - stable 4 | - beta 5 | - nightly 6 | matrix: 7 | allow_failures: 8 | - rust: nightly 9 | fast_finish: true 10 | -------------------------------------------------------------------------------- /.appveyor.yml: -------------------------------------------------------------------------------- 1 | environment: 2 | matrix: 3 | - TARGET: x86_64-pc-windows-msvc 4 | - TARGET: i686-pc-windows-msvc 5 | - TARGET: x86_64-pc-windows-gnu 6 | MINGW_PATH: 'C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin' 7 | - TARGET: i686-pc-windows-gnu 8 | MINGW_PATH: 'C:\MinGW\bin' 9 | install: 10 | - curl -sSf -o rustup-init.exe https://win.rustup.rs/ 11 | - rustup-init.exe -y --default-host %TARGET% 12 | - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin 13 | - if defined MINGW_PATH set PATH=%PATH%;%MINGW_PATH% 14 | - rustc -vV 15 | - cargo -vV 16 | build: false 17 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "findomain" 3 | version = "0.9.3" 4 | authors = ["Eduard Tolosa "] 5 | edition = "2018" 6 | description = "The fastest and cross-platform subdomain enumerator, don't waste your time." 7 | repository = "https://github.com/edu4rdshl/findomain" 8 | license = "GPL-3.0-or-later" 9 | keywords = ["discover-subdomains", "ct-logs", "search-subdomains", "enumerate-subdomains", "subdomain-scanner"] 10 | readme = "README.md" 11 | 12 | [dependencies] 13 | serde = { version = "1.0.102", features = ["derive"] } 14 | serde_derive = "1.0.102" 15 | reqwest = "0.9.22" 16 | trust-dns-resolver = { version = "0.12.0", features = ["dns-over-rustls"] } 17 | clap = { version = "2.33.0", features = ["yaml"] } 18 | lazy_static = "1.4.0" 19 | rand = "0.7.2" 20 | postgres = "0.15.2" 21 | failure = "0.1.6" 22 | rayon = "1.2.1" 23 | 24 | [target.arm-unknown-linux-gnueabihf.dependencies] 25 | openssl = { version = "0.10.26", features = ["vendored"] } 26 | 27 | [target.aarch64-unknown-linux-gnu.dependencies] 28 | openssl = { version = "0.10.26", features = ["vendored"] } 29 | -------------------------------------------------------------------------------- /findomain.1: -------------------------------------------------------------------------------- 1 | .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.11. 2 | .TH FINDOMAIN "1" "December 2019" "findomain 0.9.3" "User Commands" 3 | .SH NAME 4 | findomain \- manual page for findomain 0.9.3 5 | .SH DESCRIPTION 6 | findomain 0.9.3 7 | Eduard Tolosa 8 | The fastest and cross\-platform subdomain enumerator, don't waste your time. 9 | .SS "USAGE:" 10 | .IP 11 | findomain [FLAGS] [OPTIONS] 12 | .SS "FLAGS:" 13 | .TP 14 | \fB\-\-enable\-dot\fR 15 | Enable DNS over TLS for resolving subdomains IPs. 16 | .TP 17 | \fB\-h\fR, \fB\-\-help\fR 18 | Prints help information 19 | .TP 20 | \fB\-i\fR, \fB\-\-ip\fR 21 | Show/write the ip address of resolved subdomains. 22 | .TP 23 | \fB\-\-ipv4\-only\fR 24 | Perform a IPv4 lookup only. 25 | .TP 26 | \fB\-\-ipv6\-only\fR 27 | Perform a IPv6 lookup only. 28 | .TP 29 | \fB\-m\fR, \fB\-\-monitoring\-flag\fR 30 | Activate Findomain monitoring mode. 31 | .TP 32 | \fB\-o\fR, \fB\-\-output\fR 33 | Write to an output file. The name of the output file will be the target string with TXT 34 | format. 35 | .TP 36 | \fB\-\-query\-database\fR 37 | Query the findomain database to search subdomains that have already been discovered. 38 | .TP 39 | \fB\-q\fR, \fB\-\-quiet\fR 40 | Remove informative messages but show fatal errors or subdomains not found message. 41 | .TP 42 | \fB\-r\fR, \fB\-\-resolved\fR 43 | Show/write only resolved subdomains. 44 | .TP 45 | \fB\-V\fR, \fB\-\-version\fR 46 | Prints version information 47 | .SS "OPTIONS:" 48 | .TP 49 | \fB\-f\fR, \fB\-\-file\fR 50 | Use a list of subdomains writen in a file as input. 51 | .HP 52 | \fB\-\-import\-subdomains\fR ... 53 | .IP 54 | Import subdomains from one or multiple files. Subdomains need to be one per line in the file to import. 55 | .TP 56 | \fB\-\-postgres\-database\fR 57 | Postgresql database. 58 | .TP 59 | \fB\-\-postgres\-host\fR 60 | Postgresql host. 61 | .TP 62 | \fB\-\-postgres\-password\fR 63 | Postgresql password. 64 | .TP 65 | \fB\-\-postgres\-port\fR 66 | Postgresql port. 67 | .TP 68 | \fB\-\-postgres\-user\fR 69 | Postgresql username. 70 | .TP 71 | \fB\-\-resolver\fR 72 | Specify a resolver to use. [possible values: cloudflare, quad9] 73 | .TP 74 | \fB\-t\fR, \fB\-\-target\fR 75 | Target host. 76 | .TP 77 | \fB\-\-threads\fR 78 | Number of threads to use to perform subdomains resolution. 79 | .HP 80 | \fB\-u\fR, \fB\-\-unique\-output\fR 81 | .IP 82 | Write all the results for a target or a list of targets to a specified filename. 83 | .SH "SEE ALSO" 84 | The full documentation for 85 | .B findomain 86 | is maintained as a Texinfo manual. If the 87 | .B info 88 | and 89 | .B findomain 90 | programs are properly installed at your site, the command 91 | .IP 92 | .B info findomain 93 | .PP 94 | should give you access to the complete manual. 95 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Financial Contributors on Open Collective](https://opencollective.com/findomain/all/badge.svg?label=financial+contributors)](https://opencollective.com/findomain) [![Follow on Twitter](https://img.shields.io/twitter/follow/edu4rdshl.svg?logo=twitter)](https://twitter.com/edu4rdshl) 2 | [![Follow on Twitter](https://img.shields.io/twitter/follow/sechacklabs.svg?logo=twitter)](https://twitter.com/sechacklabs) 3 | 4 | ![Findomain](images/findomain.png) 5 | 6 | # Mixed feelings with Findomain? Show your love 7 | 8 | If you want to support the tool development and make it better, see [Contributing to Findomain](https://github.com/Edu4rdSHL/findomain/blob/master/README.md#contributors) 9 | 10 | # Findomain 11 | 12 | [![crates.io](https://img.shields.io/crates/v/findomain.svg)](https://crates.io/crates/findomain) 13 | [![Travis CI Status](https://travis-ci.org/edu4rdshl/findomain.svg?branch=master)](https://travis-ci.org/edu4rdshl/findomain) 14 | [![Appveyor CI Status](https://ci.appveyor.com/api/projects/status/github/edu4rdshl/findomain?branch=master&svg=true)](https://ci.appveyor.com/project/edu4rdshl/findomain) 15 | [![Build status](https://github.com/Edu4rdSHL/findomain/workflows/Github%20Actions/badge.svg)](https://github.com/Edu4rdSHL/findomain/actions) 16 | 17 | The fastest and cross-platform subdomain enumerator. 18 | 19 | # What Findomain can do? 20 | 21 | It table gives you a idea why you should use findomain and what it can do for you. The domain used for the test was aol.com in the following [BlackArch](https://blackarch.org) virtual machine: 22 | 23 | ``` 24 | Host: KVM/QEMU (Standard PC (i440FX + PIIX, 1996) pc-i440fx-3.1) 25 | Kernel: 5.2.6-arch1-1-ARCH 26 | CPU: Intel (Skylake, IBRS) (4) @ 2.904GHz 27 | Memory: 139MiB / 3943MiB 28 | ``` 29 | The tool used to calculate the time, is the `time` command in Linux. 30 | 31 | |Enumeration Tool|Search Time|Total Subdomains Found|CPU Usage|RAM Usage| 32 | |---|---|---|---|---| 33 | |Findomain|real 0m5.515s|84110|Very Low|Very Low| 34 | 35 | **Summary:** 84110 subdomains in 5.5 seconds. 36 | 37 | # Features 38 | 39 | * Subdomains monitoring: put data to Discord, Slack or Telegram webhooks. See [Subdomains Monitoring](README.md#subdomains-monitoring) for more information. 40 | * Multi-thread support for API querying, it makes that the maximun time that Findomain will take to search subdomains for any target is 20 seconds. 41 | * Parallel support for subdomains resolution, in good network conditions can resolv about 2000 subdomains per minute. 42 | * DNS over TLS support. 43 | * Specific IPv4 or IPv6 query support. 44 | * Discover subdomains without brute-force, it tool uses Certificate Transparency Logs and APIs. 45 | * Discover only resolved subdomains. 46 | * Discover subdomains IP for data analisis. 47 | * Read target from user argument (-t) or file (-f). 48 | * Write to one unique output file specified by the user all or only resolved subdomains. 49 | * Write results to automatically named TXT output file(s). 50 | * Hability to query directly the Findomain database created with [Subdomains Monitoring](README.md#subdomains-monitoring) for previous discovered subdomains. 51 | * Hability to import and work data discovered by other tools. 52 | * Quiet mode to run it silently. 53 | * Cross platform support: Any platform, it's written in Rust and Rust is multiplatform. See [the documentation](README.md#build-for-32-bits-or-another-platform) for instructions. 54 | * Multiple API support. 55 | 56 | # Findomain in depth 57 | 58 | See [Subdomains Enumeration: what is, how to do it, monitoring automation using webhooks and centralizing your findings](https://medium.com/@edu4rdshl/subdomains-enumeration-what-is-how-to-do-it-monitoring-automation-using-webhooks-and-5e0a0c6d9127) for a detailed guide including real world examples of how you get the most out of the tool. 59 | 60 | # How it works? 61 | It tool doesn't use the common methods for sub(domains) discover, the tool uses Certificate Transparency logs and specific well tested APIs to find subdomains. It method make it tool the most faster and reliable. The tool make use of multiple public available APIs to perform the search. If you want to know more about Certificate Transparency logs, read https://www.certificate-transparency.org/ 62 | 63 | APIs that we are using at the moment: 64 | 65 | - [Certspotter](https://api.certspotter.com/) 66 | - [Crt.sh](https://crt.sh) 67 | - [Virustotal](https://www.virustotal.com/ui/domains/) 68 | - [Sublist3r](https://api.sublist3r.com/) 69 | - [Facebook](https://developers.facebook.com/docs/certificate-transparency) `**` 70 | - [Spyse (CertDB)](https://certdb.com/apidocs#/Subdomains) `*` 71 | - [Bufferover](http://dns.bufferover.run/) 72 | - [Threadcrow](https://threatcrowd.org/) 73 | - [Virustotal with apikey](https://www.virustotal.com/) `**` 74 | 75 | **Notes** 76 | 77 | APIs marked with `**`, **require** an access token to work. Search in the [Findomain documentation](README.md#access-tokens-configuration) how to configure and use it. 78 | 79 | APIs marked with `*` can *optionally* be used with an access token, create one if you start experiencing problems with that APIs. Search in the [Findomain documentation](README.md#access-tokens-configuration) how to configure and use it. 80 | 81 | **More APIs?** 82 | 83 | If you know other APIs that should be added, comment [here](https://github.com/Edu4rdSHL/findomain/issues/7). 84 | 85 | # Development 86 | 87 | In order to make sure Findomain will not be broken on some commit I have created the [develop branch](https://github.com/Edu4rdSHL/findomain/tree/develop) where new features and improvements are pushed before they go to [master branch](https://github.com/Edu4rdSHL/findomain/tree/master). In resume the difference is: **develop branch and beta releases aren't ready for production purposes but testing or development purposes** and **master branch and non-beta releases are ready for production purposes**. If you are a developer or want to be a beta tester of the new features that are added to Findomain then use the develop branch, otherwise always use the master branch. Every new feature is tested before it goes to master by the Findomain beta testers that are only ([@sumgr0](https://github.com/sumgr0)) at the moment, I will appreciate if you join to the testing process, just send me a DM in Twitter ([@edu4rdshl](https://twitter.com/edu4rdshl)). 88 | 89 | **If you are a packager of Findomain for X system distribution always go for the master branch if using git or non-beta releases if using releases model**. 90 | 91 | **Build the development version:** 92 | 93 | You need to have [rust](https://rust-lang.org), [make](http://www.gnu.org/software/make) and [perl](https://www.perl.org/) installed in your system first. 94 | 95 | ```bash 96 | $ git clone https://github.com/Edu4rdSHL/findomain.git -b develop # Only the develop branch is needed 97 | $ cd findomain 98 | $ cargo build --release 99 | $ ./target/release/findomain 100 | ``` 101 | To update the repository when new commits are added, just go to the folder where Findomain's develop branch was cloned and excute: 102 | 103 | ``` 104 | $ git pull 105 | $ cargo build --release 106 | $ ./target/release/findomain 107 | ``` 108 | 109 | # Installation 110 | 111 | We offer binarys ready to use for the following platforms (all are for 64 bits only): 112 | 113 | * [Linux](README.md#installation-in-linux-using-compiled-artifacts) 114 | * [Windows](README.md#installation-windows) 115 | * [MacOS](README.md#installation-macos) 116 | * [Aarch64 (Raspberry Pi)](README.md#installation-aarch64-raspberry-pi) 117 | 118 | If you need to run Findomain in another platform, continue reading the documentation. 119 | 120 | # Build for 32 bits or another platform 121 | 122 | If you want to build the tool for your 32 bits system or another platform, follow it steps: 123 | 124 | **Note:** You need to have [rust](https://rust-lang.org), [make](http://www.gnu.org/software/make) and [perl](https://www.perl.org/) installed in your system first. 125 | 126 | Using the [crate](https://crates.io/crates/findomain): 127 | 128 | 1. `cargo install findomain` 129 | 2. Execute the tool from `$HOME/.cargo/bin`. See the [cargo-install documentation](https://doc.rust-lang.org/cargo/commands/cargo-install.html). 130 | 131 | Using the Github source code: 132 | 133 | 1. Clone the [repository](https://github.com/Edu4rdSHL/findomain) or download the [release source code](https://github.com/Edu4rdSHL/findomain/releases). 134 | 2. Extract the release source code (only needed if you downloaded the compressed file). 135 | 3. Go to the folder where the source code is. 136 | 4. Execute `cargo build --release` 137 | 5. Now your binary is in `target/release/findomain` and you can use it. 138 | 139 | # Installation Android (Termux) 140 | 141 | Install the [Termux](https://termux.com/) package, open it and follow it commands: 142 | 143 | ``` 144 | $ pkg install rust make perl 145 | $ cargo install findomain 146 | $ cd $HOME/.cargo/bin 147 | $ ./findomain 148 | ``` 149 | 150 | # Installation in Linux using source code 151 | If you want to install it, you can do that manually compiling the source or using the precompiled binary. 152 | 153 | **Manually:** 154 | You need to have [rust](https://rust-lang.org), [make](http://www.gnu.org/software/make) and [perl](https://www.perl.org/) installed in your system first. 155 | 156 | ```bash 157 | $ git clone https://github.com/Edu4rdSHL/findomain.git 158 | $ cd findomain 159 | $ cargo build --release 160 | $ sudo cp target/release/findomain /usr/bin/ 161 | $ findomain 162 | ``` 163 | 164 | # Installation in Linux using compiled artifacts 165 | 166 | ``` 167 | $ wget https://github.com/Edu4rdSHL/findomain/releases/latest/download/findomain-linux 168 | $ chmod +x findomain-linux 169 | $ ./findomain-linux 170 | ``` 171 | **If you are using the [BlackArch Linux](https://blackarch.org) distribution, you just need to use:** 172 | 173 | ``` 174 | $ sudo pacman -S findomain 175 | ``` 176 | 177 | # Installation Aarch64 (Raspberry Pi) 178 | 179 | ``` 180 | $ wget https://github.com/Edu4rdSHL/findomain/releases/latest/download/findomain-aarch64 181 | $ chmod +x findomain-aarch64 182 | $ ./findomain-aarch64 183 | ``` 184 | 185 | # Installation Windows 186 | 187 | Download the binary from https://github.com/Edu4rdSHL/findomain/releases/latest/download/findomain-windows.exe 188 | 189 | Open a CMD shell and go to the dir where findomain-windows.exe was downloaded. 190 | 191 | Exec: `findomain-windows` in the CMD shell. 192 | 193 | 194 | # Installation MacOS 195 | 196 | ``` 197 | $ wget https://github.com/Edu4rdSHL/findomain/releases/latest/download/findomain-osx 198 | $ chmod +x findomain-osx.dms 199 | $ ./findomain-osx.dms 200 | ``` 201 | 202 | # Updating Findomain to latest version 203 | 204 | To update Findomain to latest version, you can be in some scenarios: 205 | 206 | 1. **You downloaded a precompiled binary:** If you are using a precompiled binary, then you need to download the new binary. 207 | 2. **You are using it from BlackArch Linux:** Just run `pacman -Syu` 208 | 3. **You have cloned the repo and compiled it from source:** You just need to go to the folder where the repo is cloned and run: `git pull && cargo build --release`, when finish, you have your executable in `target/release/findomain`. 209 | 4. **You downloaded a source code release and compiled it:** You need to download the new source code release and compile it again. 210 | 5. **I used cargo install findomain:** then just run `cargo install --force findomain`. 211 | 212 | # Access tokens configuration 213 | 214 | In in section you can found the steps about how to configure APIs that need or can be used with access tokens. 215 | 216 | # Configuring the Facebook API 217 | 218 | **History** 219 | 220 | When I added the [Facebook CT API](https://developers.facebook.com/docs/certificate-transparency-api) in the beginning I was providing a [Webhook token](https://developers.facebook.com/docs/certificate-transparency/certificates-webhook) to search in the API, as consequence when a lot of users were using the same token the limit was reached and user can't search in the Facebook API anymore until Facebook unlocked it again. Since Findomain version 0.2.2, users can set their own Facebook Access Token for the webook and pass it to findomain setting the `findomain_fb_token` system variable. The change was introduced [here](https://github.com/Edu4rdSHL/findomain/commit/1716e264e2b15c96c67b692b80b32c78fe9aaf9a). Also since 23/08/2019 I have removed the webhook that was providing that API token and it will not work anymore, if you're using findomain < 0.2.2 you are affected, please use a version >= 0.2.2. 221 | 222 | Since Findomain 0.2.4 you don't need to explicity set the `findomain_fb_token` variable in your system, if you don't set that variable then Findomain will use one of our provided access tokens for the Facebook CT API, otherwise, if you set the environment variable then Findomain will use your token. See [it commit](https://github.com/Edu4rdSHL/findomain/commit/226575c370e32979a16fd377dfea1db10ca38f3b). **Please, if you can create your own token, do it. The usage limit of access tokens is reached when a lot of people use it and then the tool will fail.** 223 | 224 | **Getting the Webhook token** 225 | 226 | The first step is get your Facebook application token. You need to create a Webhook, follow the next steps: 227 | 228 | 1. Open https://developers.facebook.com/apps/ 229 | 2. Clic in "Create App", put the name that you want and send the information. 230 | 3. In the next screen, select "Configure" in the Webhooks option. 231 | 4. Go to "Configuration" -> "Basic" and clic on "Show" in the "App secret key" option. 232 | 5. Now open in your browser the following URL: https://graph.facebook.com/oauth/access_token?client_id=your-app-id&client_secret=your-secret-key&grant_type=client_credentials 233 | 234 | **Note:** replace `your-app-id` by the number of your webhook identifier and `your-secret-key` for the key that you got in the 4th step. 235 | 236 | 6. You should have a JSON like: 237 | 238 | ```json 239 | { 240 | "access_token": "xxxxxxxxxx|yyyyyyyyyyyyyyyyyyyyyyy", 241 | "token_type": "bearer" 242 | } 243 | ``` 244 | 7. Save the `access_token` value. 245 | 246 | Now you can use that value to set the access token as following: 247 | 248 | **Unix based systems (Linux, BSD, MacOS, Android with Termux, etc):** 249 | 250 | Put in your terminal: 251 | 252 | ``` 253 | $ findomain_fb_token="YourAccessToken" findomain -(options) 254 | ``` 255 | 256 | **Windows systems:** 257 | 258 | Put in the CMD command prompt: 259 | 260 | ``` 261 | > set findomain_fb_token=YourAccessToken && findomain -(options) 262 | ``` 263 | 264 | **Note:** In Windows you need to scape special characters like `|`, add `^` before the special character to scape it and don't quote the token. Example: `set findomain_fb_token=xxxxxxx^|yyyyyyyy && findomain -(options)` 265 | 266 | **Tip:** If you don't want to write the access token everytime that you run findomain, export the `findomain_fb_token` in Unix based systems like putting `export findomain_fb_token="YourAccessToken"` into your `.bashrc` and set the `findomain_fb_token` variable in your Windows system as [described here](https://www.computerhope.com/issues/ch000549.htm). 267 | 268 | # Configuring the Spyse API to use with token 269 | 270 | 1. Open https://account.spyse.com/register and make the registration process (include email verification). 271 | 2. Log in into your spyse account and go to https://account.spyse.com/user 272 | 3. Search for the "API token" section and clic in "Show". 273 | 4. Save that access token. 274 | 275 | Now you can use that value to set the access token as following: 276 | 277 | **Unix based systems (Linux, BSD, MacOS, Android with Termux, etc):** 278 | 279 | Put in your terminal: 280 | 281 | ``` 282 | $ findomain_spyse_token="YourAccessToken" findomain -(options) 283 | ``` 284 | 285 | **Windows systems:** 286 | 287 | Put in the CMD command prompt: 288 | 289 | ``` 290 | > set findomain_spyse_token=YourAccessToken && findomain -(options) 291 | ``` 292 | 293 | **Note:** In Windows you need to scape special characters like `|`, add `^` before the special character to scape it and don't quote the token. Example: `set findomain_spyse_token=xxxxxxx^|yyyyyyyy && findomain -(options)` 294 | 295 | **Tip:** If you don't want to write the access token everytime that you run findomain, export the `findomain_spyse_token` in Unix based systems like putting `export findomain_spyse_token="YourAccessToken"` into your `.bashrc` and set the `findomain_spyse_token` variable in your Windows system as [described here](https://www.computerhope.com/issues/ch000549.htm). 296 | 297 | # Configuring the Virustotal API to use with token 298 | 299 | 1. Open https://www.virustotal.com/gui/join-us and make the registration process (include email verification). 300 | 2. Log in into your spyse account and go to https://www.virustotal.com/gui/user/YourUsername/apikey 301 | 3. Search for the "API key" section. 302 | 4. Save that API key. 303 | 304 | Now you can use that value to set the access token as following: 305 | 306 | **Unix based systems (Linux, BSD, MacOS, Android with Termux, etc):** 307 | 308 | Put in your terminal: 309 | 310 | ``` 311 | $ findomain_virustotal_token="YourAccessToken" findomain -(options) 312 | ``` 313 | 314 | **Windows systems:** 315 | 316 | Put in the CMD command prompt: 317 | 318 | ``` 319 | > set findomain_virustotal_token=YourAccessToken && findomain -(options) 320 | ``` 321 | 322 | **Note:** In Windows you need to scape special characters like `|`, add `^` before the special character to scape it and don't quote the token. Example: `set findomain_virustotal_token=xxxxxxx^|yyyyyyyy && findomain -(options)` 323 | 324 | **Tip:** If you don't want to write the access token everytime that you run findomain, export the respective system variable in your OS. For Unix based systems it can be done putting `export VariableName="VariableValue"` into your `.bashrc`. For Windows system it can be done as [described here](https://www.computerhope.com/issues/ch000549.htm) or [here](https://www.dowdandassociates.com/blog/content/howto-set-an-environment-variable-in-windows-command-line-and-registry/). 325 | 326 | # Subdomains Monitoring 327 | 328 | Findomain is capable of monitor a specific domain or a list of domains for new subdomains and send the data to [Slack](https://slack.com/), [Discord](https://discordapp.com) or [Telegram](https://telegram.org) webhooks. All what you need is a server or your computer with [PostgreSQL](https://www.postgresql.org/) database server installed. Have in mind that you can have only a central server/computer with PostgreSQL installed and connect to it from anywhere to perform the monitoring tasks. 329 | 330 | **IMPORTANT NOTE:** Findomain is a subdomains enumeration and monitor tool, not a job scheduler. If you want to run findomain automatically then you need to configure a job scheduler like [systemd-timers](https://wiki.archlinux.org/index.php/Systemd/Timers) or the well known [CRON](https://wiki.archlinux.org/index.php/Cron) in \*NIX systems, Termux in Android or MAC and the [Windows Task Scheduler](https://docs.microsoft.com/en-us/windows/win32/taskschd/task-scheduler-start-page) in Windows. 331 | 332 | **Options** 333 | 334 | You can set the following command line options when using the subdomains monitoring feature: 335 | 336 | ``` 337 | --postgres-database Postgresql database. 338 | --postgres-host Postgresql host. 339 | --postgres-password Postgresql password. 340 | --postgres-port Postgresql port. 341 | --postgres-user Postgresql username. 342 | ``` 343 | 344 | **System variables that can be configured** 345 | 346 | Findomain reads system variables to make use of webhooks. Currently Findomain support the following webhooks (click on them to see how to setup the webhooks): 347 | 348 | * [Discord](https://support.discordapp.com/hc/en-us/articles/228383668-Intro-to-Webhooks). 349 | * [Slack](https://api.slack.com/incoming-webhooks). 350 | * [Telegram](docs/create_telegram_webhook.md). 351 | 352 | The available system variables that you have are: 353 | 354 | ``` 355 | findomain_discord_webhook: Discord webhook URL. 356 | findomain_slack_webhook: Slack webhook URL. 357 | findomain_telegrambot_token: Telegram bot autentication token. 358 | findomain_telegrambot_chat_id: Unique identifier for the target chat or username of the target channel. 359 | ``` 360 | 361 | **Tip:** If you don't want to write the webhook parameters everytime that you run findomain, export the respective system variable in your OS. For Unix based systems it can be done putting `export VariableName="VariableValue"` into your `.bashrc`. For Windows system it can be done as [described here](https://www.computerhope.com/issues/ch000549.htm) or [here](https://www.dowdandassociates.com/blog/content/howto-set-an-environment-variable-in-windows-command-line-and-registry/). 362 | 363 | **Default values while connecting to database server** 364 | 365 | Findomain have some default values that are used when they are not set. They are listed below: 366 | 367 | 1) If you only specify the `-m` flag without more arguments or don't specify one of the options Findomain sets: 368 | 369 | * Database host: localhost 370 | * Database username: postgres 371 | * Database password: postgres 372 | * Database port: 5432 373 | * Database: [Default PostgreSQL database cluster](https://www.postgresql.org/docs/current/app-initdb.html) 374 | 375 | **Subdomains monitoring examples** 376 | 377 | 1) **Connect to local computer and local PostgreSQL server with specific username, password and database and push the data to both Discord and Slack webhooks** 378 | 379 | ``` 380 | $ findomain_discord_webhook='https://discordapp.com/api/webhooks/XXXXXXXXXXXXXXX' findomain_slack_webhook='https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX' findomain -m -t example.com --postgres-database findomain --postgres-user findomain --postgres-host localhost --postgres-port 5432 381 | ``` 382 | 383 | 2) **Connect to remote computer/server and remote PostgreSQL server with specific username, password and database and push the data to both Discord and Slack webhooks** 384 | 385 | ``` 386 | $ findomain_discord_webhook='https://discordapp.com/api/webhooks/XXXXXXXXXXXXXXX' findomain_slack_webhook='https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX' findomain -m -t example.com --postgres-user postgres --postgres-password psql --postgres-host 192.168.122.130 --postgres-port 5432 387 | ``` 388 | 389 | 3) **Connect to remote computer/server and remote PostgreSQL server with specific username, password and database and push the data to Telegram webhook** 390 | 391 | ``` 392 | $ findomain_telegrambot_token="Your_Bot_Token_Here" findomain_telegrambot_chat_id="Your_Chat_ID_Here" findomain -m -t example.com --postgres-user postgres --postgres-password psql --postgres-host 192.168.122.130 --postgres-port 5432 393 | ``` 394 | 395 | 4) **Connect to local computer using the default values** 396 | 397 | ``` 398 | $ findomain_discord_webhook='https://discordapp.com/api/webhooks/XXXXXXXXXXXXXXX' findomain_slack_webhook='https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX' findomain -m -t example.com 399 | ``` 400 | 401 | # Usage 402 | 403 | See `findomain -h/--help` to see all the options. 404 | 405 | For subdomains monitoring examples [Subdomains Monitoring](https://github.com/Edu4rdSHL/findomain/blob/master/README.md#subdomains-monitoring) for more information. 406 | 407 | You can use the tool in two ways, only discovering the domain name or discovering the domain + the IP address. 408 | 409 | # Examples 410 | 411 | 1. Make a simple search of subdomains and print the info in the screen: 412 | 413 | `findomain -t example.com` 414 | 415 | 2. Make a search of subdomains and print the info in the screen: 416 | 417 | `findomain -t example.com` 418 | 419 | 3. Make a search of subdomains and export the data to a output file (the output file name in it case is example.com.txt): 420 | 421 | `findomain -t example.com -o` 422 | 423 | 4. Make a search of subdomains and export the data to a custom output file name: 424 | 425 | `findomain -t example.com -u example.txt` 426 | 427 | 5. Make a search of only resolvable subdomains: 428 | 429 | `findomain -t example.com -r` 430 | 431 | 6. Make a search of only resolvable subdomains, exporting the data to a custom output file. 432 | 433 | `findomain -t example.com -r -u example.txt` 434 | 435 | 7. Search subdomains from a list of domains passed using a file (you need to put a domain in every line into the file): 436 | 437 | `findomain -f file_with_domains.txt` 438 | 439 | 8. Search subdomains from a list of domains passed using a file (you need to put a domain in every line into the file) and save all the resolved domains into a custom file name: 440 | 441 | `findomain -f file_with_domains.txt -r -u multiple_domains.txt` 442 | 443 | 9. Query the Findomain database created with [Subdomains Monitoring](README.md#subdomains-monitoring). 444 | 445 | `findomain -t example.com --query-database` 446 | 447 | 10. Query the Findomain database created with [Subdomains Monitoring](README.md#subdomains-monitoring) and save results to a custom filename. 448 | 449 | `findomain -t example.com --query-database -u subdomains.txt` 450 | 451 | 11. Import subdomains from several files and work with they in the [Subdomains Monitoring](README.md#subdomains-monitoring) process: 452 | 453 | `findomain --import-subdomains file1.txt file2.txt file3.txt -m -t example.com` 454 | 455 | # TODO 456 | 457 | - [ ] Add more APIs (It's longterm because I depend of new requests, at the moment I have not more APIs in the mind). 458 | 459 | # Issues and requests 460 | 461 | If you have a problem or a feature request, open an [issue](https://github.com/Edu4rdSHL/findomain/issues). 462 | 463 | # Stargazers over time 464 | 465 | [![Stargazers over time](https://starchart.cc/Edu4rdSHL/findomain.svg)](https://starchart.cc/Edu4rdSHL/findomain) 466 | 467 | ## Contributors 468 | 469 | ### Code Contributors 470 | 471 | This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. 472 | 473 | 474 | ### Financial Contributors 475 | 476 | Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/findomain/contribute)] 477 | 478 | #### Individuals 479 | 480 | 481 | 482 | #### Organizations 483 | 484 | Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/findomain/contribute)] 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | -------------------------------------------------------------------------------- /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.4" 6 | source = "registry+https://github.com/rust-lang/crates.io-index" 7 | 8 | [[package]] 9 | name = "aho-corasick" 10 | version = "0.7.6" 11 | source = "registry+https://github.com/rust-lang/crates.io-index" 12 | dependencies = [ 13 | "memchr 2.2.1 (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.8 (registry+https://github.com/rust-lang/crates.io-index)", 22 | ] 23 | 24 | [[package]] 25 | name = "arrayref" 26 | version = "0.3.5" 27 | source = "registry+https://github.com/rust-lang/crates.io-index" 28 | 29 | [[package]] 30 | name = "atty" 31 | version = "0.2.13" 32 | source = "registry+https://github.com/rust-lang/crates.io-index" 33 | dependencies = [ 34 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 35 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 36 | ] 37 | 38 | [[package]] 39 | name = "autocfg" 40 | version = "0.1.6" 41 | source = "registry+https://github.com/rust-lang/crates.io-index" 42 | 43 | [[package]] 44 | name = "backtrace" 45 | version = "0.3.37" 46 | source = "registry+https://github.com/rust-lang/crates.io-index" 47 | dependencies = [ 48 | "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", 49 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 50 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 51 | "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", 52 | ] 53 | 54 | [[package]] 55 | name = "backtrace-sys" 56 | version = "0.1.31" 57 | source = "registry+https://github.com/rust-lang/crates.io-index" 58 | dependencies = [ 59 | "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", 60 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 61 | ] 62 | 63 | [[package]] 64 | name = "base64" 65 | version = "0.6.0" 66 | source = "registry+https://github.com/rust-lang/crates.io-index" 67 | dependencies = [ 68 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 69 | "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 70 | ] 71 | 72 | [[package]] 73 | name = "base64" 74 | version = "0.10.1" 75 | source = "registry+https://github.com/rust-lang/crates.io-index" 76 | dependencies = [ 77 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 78 | ] 79 | 80 | [[package]] 81 | name = "bitflags" 82 | version = "1.1.0" 83 | source = "registry+https://github.com/rust-lang/crates.io-index" 84 | 85 | [[package]] 86 | name = "block-buffer" 87 | version = "0.3.3" 88 | source = "registry+https://github.com/rust-lang/crates.io-index" 89 | dependencies = [ 90 | "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 91 | "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 92 | ] 93 | 94 | [[package]] 95 | name = "bumpalo" 96 | version = "2.6.0" 97 | source = "registry+https://github.com/rust-lang/crates.io-index" 98 | 99 | [[package]] 100 | name = "byte-tools" 101 | version = "0.2.0" 102 | source = "registry+https://github.com/rust-lang/crates.io-index" 103 | 104 | [[package]] 105 | name = "byteorder" 106 | version = "1.3.2" 107 | source = "registry+https://github.com/rust-lang/crates.io-index" 108 | 109 | [[package]] 110 | name = "bytes" 111 | version = "0.4.12" 112 | source = "registry+https://github.com/rust-lang/crates.io-index" 113 | dependencies = [ 114 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 115 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", 116 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 117 | ] 118 | 119 | [[package]] 120 | name = "c2-chacha" 121 | version = "0.2.2" 122 | source = "registry+https://github.com/rust-lang/crates.io-index" 123 | dependencies = [ 124 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 125 | "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", 126 | ] 127 | 128 | [[package]] 129 | name = "cc" 130 | version = "1.0.45" 131 | source = "registry+https://github.com/rust-lang/crates.io-index" 132 | 133 | [[package]] 134 | name = "cfg-if" 135 | version = "0.1.9" 136 | source = "registry+https://github.com/rust-lang/crates.io-index" 137 | 138 | [[package]] 139 | name = "clap" 140 | version = "2.33.0" 141 | source = "registry+https://github.com/rust-lang/crates.io-index" 142 | dependencies = [ 143 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 144 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", 145 | "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 146 | "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 147 | "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 148 | "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 149 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 150 | "yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 151 | ] 152 | 153 | [[package]] 154 | name = "cloudabi" 155 | version = "0.0.3" 156 | source = "registry+https://github.com/rust-lang/crates.io-index" 157 | dependencies = [ 158 | "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 159 | ] 160 | 161 | [[package]] 162 | name = "constant_time_eq" 163 | version = "0.1.4" 164 | source = "registry+https://github.com/rust-lang/crates.io-index" 165 | 166 | [[package]] 167 | name = "cookie" 168 | version = "0.12.0" 169 | source = "registry+https://github.com/rust-lang/crates.io-index" 170 | dependencies = [ 171 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 172 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 173 | ] 174 | 175 | [[package]] 176 | name = "cookie_store" 177 | version = "0.7.0" 178 | source = "registry+https://github.com/rust-lang/crates.io-index" 179 | dependencies = [ 180 | "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 181 | "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 182 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 183 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 184 | "publicsuffix 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", 185 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 186 | "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 187 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 188 | "try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 189 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 190 | ] 191 | 192 | [[package]] 193 | name = "core-foundation" 194 | version = "0.6.4" 195 | source = "registry+https://github.com/rust-lang/crates.io-index" 196 | dependencies = [ 197 | "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 198 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 199 | ] 200 | 201 | [[package]] 202 | name = "core-foundation-sys" 203 | version = "0.6.2" 204 | source = "registry+https://github.com/rust-lang/crates.io-index" 205 | 206 | [[package]] 207 | name = "crc32fast" 208 | version = "1.2.0" 209 | source = "registry+https://github.com/rust-lang/crates.io-index" 210 | dependencies = [ 211 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 212 | ] 213 | 214 | [[package]] 215 | name = "crossbeam-deque" 216 | version = "0.7.2" 217 | source = "registry+https://github.com/rust-lang/crates.io-index" 218 | dependencies = [ 219 | "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 220 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 221 | ] 222 | 223 | [[package]] 224 | name = "crossbeam-epoch" 225 | version = "0.8.0" 226 | source = "registry+https://github.com/rust-lang/crates.io-index" 227 | dependencies = [ 228 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 229 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 230 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 231 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 232 | "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 233 | "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 234 | ] 235 | 236 | [[package]] 237 | name = "crossbeam-queue" 238 | version = "0.1.2" 239 | source = "registry+https://github.com/rust-lang/crates.io-index" 240 | dependencies = [ 241 | "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", 242 | ] 243 | 244 | [[package]] 245 | name = "crossbeam-queue" 246 | version = "0.2.0" 247 | source = "registry+https://github.com/rust-lang/crates.io-index" 248 | dependencies = [ 249 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 250 | ] 251 | 252 | [[package]] 253 | name = "crossbeam-utils" 254 | version = "0.6.6" 255 | source = "registry+https://github.com/rust-lang/crates.io-index" 256 | dependencies = [ 257 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 258 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 259 | ] 260 | 261 | [[package]] 262 | name = "crossbeam-utils" 263 | version = "0.7.0" 264 | source = "registry+https://github.com/rust-lang/crates.io-index" 265 | dependencies = [ 266 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 267 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 268 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 269 | ] 270 | 271 | [[package]] 272 | name = "crypto-mac" 273 | version = "0.5.2" 274 | source = "registry+https://github.com/rust-lang/crates.io-index" 275 | dependencies = [ 276 | "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 277 | "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 278 | ] 279 | 280 | [[package]] 281 | name = "digest" 282 | version = "0.7.6" 283 | source = "registry+https://github.com/rust-lang/crates.io-index" 284 | dependencies = [ 285 | "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 286 | ] 287 | 288 | [[package]] 289 | name = "dtoa" 290 | version = "0.4.4" 291 | source = "registry+https://github.com/rust-lang/crates.io-index" 292 | 293 | [[package]] 294 | name = "either" 295 | version = "1.5.3" 296 | source = "registry+https://github.com/rust-lang/crates.io-index" 297 | 298 | [[package]] 299 | name = "encoding_rs" 300 | version = "0.8.20" 301 | source = "registry+https://github.com/rust-lang/crates.io-index" 302 | dependencies = [ 303 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 304 | ] 305 | 306 | [[package]] 307 | name = "enum-as-inner" 308 | version = "0.2.1" 309 | source = "registry+https://github.com/rust-lang/crates.io-index" 310 | dependencies = [ 311 | "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 312 | "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 313 | "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", 314 | ] 315 | 316 | [[package]] 317 | name = "error-chain" 318 | version = "0.12.1" 319 | source = "registry+https://github.com/rust-lang/crates.io-index" 320 | dependencies = [ 321 | "backtrace 0.3.37 (registry+https://github.com/rust-lang/crates.io-index)", 322 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 323 | ] 324 | 325 | [[package]] 326 | name = "failure" 327 | version = "0.1.6" 328 | source = "registry+https://github.com/rust-lang/crates.io-index" 329 | dependencies = [ 330 | "backtrace 0.3.37 (registry+https://github.com/rust-lang/crates.io-index)", 331 | "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 332 | ] 333 | 334 | [[package]] 335 | name = "failure_derive" 336 | version = "0.1.6" 337 | source = "registry+https://github.com/rust-lang/crates.io-index" 338 | dependencies = [ 339 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 340 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 341 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 342 | "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", 343 | ] 344 | 345 | [[package]] 346 | name = "fake-simd" 347 | version = "0.1.2" 348 | source = "registry+https://github.com/rust-lang/crates.io-index" 349 | 350 | [[package]] 351 | name = "fallible-iterator" 352 | version = "0.1.6" 353 | source = "registry+https://github.com/rust-lang/crates.io-index" 354 | 355 | [[package]] 356 | name = "findomain" 357 | version = "0.9.3" 358 | dependencies = [ 359 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", 360 | "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 361 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 362 | "openssl 0.10.26 (registry+https://github.com/rust-lang/crates.io-index)", 363 | "postgres 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", 364 | "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 365 | "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 366 | "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)", 367 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 368 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 369 | "trust-dns-resolver 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 370 | ] 371 | 372 | [[package]] 373 | name = "flate2" 374 | version = "1.0.11" 375 | source = "registry+https://github.com/rust-lang/crates.io-index" 376 | dependencies = [ 377 | "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 378 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 379 | "miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 380 | ] 381 | 382 | [[package]] 383 | name = "fnv" 384 | version = "1.0.6" 385 | source = "registry+https://github.com/rust-lang/crates.io-index" 386 | 387 | [[package]] 388 | name = "foreign-types" 389 | version = "0.3.2" 390 | source = "registry+https://github.com/rust-lang/crates.io-index" 391 | dependencies = [ 392 | "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 393 | ] 394 | 395 | [[package]] 396 | name = "foreign-types-shared" 397 | version = "0.1.1" 398 | source = "registry+https://github.com/rust-lang/crates.io-index" 399 | 400 | [[package]] 401 | name = "fuchsia-cprng" 402 | version = "0.1.1" 403 | source = "registry+https://github.com/rust-lang/crates.io-index" 404 | 405 | [[package]] 406 | name = "fuchsia-zircon" 407 | version = "0.3.3" 408 | source = "registry+https://github.com/rust-lang/crates.io-index" 409 | dependencies = [ 410 | "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 411 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 412 | ] 413 | 414 | [[package]] 415 | name = "fuchsia-zircon-sys" 416 | version = "0.3.3" 417 | source = "registry+https://github.com/rust-lang/crates.io-index" 418 | 419 | [[package]] 420 | name = "futures" 421 | version = "0.1.29" 422 | source = "registry+https://github.com/rust-lang/crates.io-index" 423 | 424 | [[package]] 425 | name = "futures-cpupool" 426 | version = "0.1.8" 427 | source = "registry+https://github.com/rust-lang/crates.io-index" 428 | dependencies = [ 429 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 430 | "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 431 | ] 432 | 433 | [[package]] 434 | name = "generic-array" 435 | version = "0.9.0" 436 | source = "registry+https://github.com/rust-lang/crates.io-index" 437 | dependencies = [ 438 | "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)", 439 | ] 440 | 441 | [[package]] 442 | name = "getrandom" 443 | version = "0.1.12" 444 | source = "registry+https://github.com/rust-lang/crates.io-index" 445 | dependencies = [ 446 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 447 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 448 | "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 449 | ] 450 | 451 | [[package]] 452 | name = "h2" 453 | version = "0.1.26" 454 | source = "registry+https://github.com/rust-lang/crates.io-index" 455 | dependencies = [ 456 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 457 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 458 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 459 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 460 | "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", 461 | "indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 462 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 463 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 464 | "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 465 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 466 | ] 467 | 468 | [[package]] 469 | name = "heck" 470 | version = "0.3.1" 471 | source = "registry+https://github.com/rust-lang/crates.io-index" 472 | dependencies = [ 473 | "unicode-segmentation 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 474 | ] 475 | 476 | [[package]] 477 | name = "hex" 478 | version = "0.2.0" 479 | source = "registry+https://github.com/rust-lang/crates.io-index" 480 | 481 | [[package]] 482 | name = "hmac" 483 | version = "0.5.0" 484 | source = "registry+https://github.com/rust-lang/crates.io-index" 485 | dependencies = [ 486 | "crypto-mac 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 487 | "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", 488 | ] 489 | 490 | [[package]] 491 | name = "hostname" 492 | version = "0.1.5" 493 | source = "registry+https://github.com/rust-lang/crates.io-index" 494 | dependencies = [ 495 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 496 | "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 497 | ] 498 | 499 | [[package]] 500 | name = "http" 501 | version = "0.1.18" 502 | source = "registry+https://github.com/rust-lang/crates.io-index" 503 | dependencies = [ 504 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 505 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 506 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 507 | ] 508 | 509 | [[package]] 510 | name = "http-body" 511 | version = "0.1.0" 512 | source = "registry+https://github.com/rust-lang/crates.io-index" 513 | dependencies = [ 514 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 515 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 516 | "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", 517 | "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 518 | ] 519 | 520 | [[package]] 521 | name = "httparse" 522 | version = "1.3.4" 523 | source = "registry+https://github.com/rust-lang/crates.io-index" 524 | 525 | [[package]] 526 | name = "hyper" 527 | version = "0.12.35" 528 | source = "registry+https://github.com/rust-lang/crates.io-index" 529 | dependencies = [ 530 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 531 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 532 | "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 533 | "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", 534 | "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", 535 | "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 536 | "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 537 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 538 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 539 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 540 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 541 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 542 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 543 | "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", 544 | "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 545 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 546 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 547 | "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 548 | "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 549 | "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", 550 | "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 551 | "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 552 | ] 553 | 554 | [[package]] 555 | name = "hyper-tls" 556 | version = "0.3.2" 557 | source = "registry+https://github.com/rust-lang/crates.io-index" 558 | dependencies = [ 559 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 560 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 561 | "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", 562 | "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 563 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 564 | ] 565 | 566 | [[package]] 567 | name = "idna" 568 | version = "0.1.5" 569 | source = "registry+https://github.com/rust-lang/crates.io-index" 570 | dependencies = [ 571 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 572 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 573 | "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 574 | ] 575 | 576 | [[package]] 577 | name = "idna" 578 | version = "0.2.0" 579 | source = "registry+https://github.com/rust-lang/crates.io-index" 580 | dependencies = [ 581 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 582 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 583 | "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 584 | ] 585 | 586 | [[package]] 587 | name = "indexmap" 588 | version = "1.2.0" 589 | source = "registry+https://github.com/rust-lang/crates.io-index" 590 | 591 | [[package]] 592 | name = "iovec" 593 | version = "0.1.2" 594 | source = "registry+https://github.com/rust-lang/crates.io-index" 595 | dependencies = [ 596 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 597 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 598 | ] 599 | 600 | [[package]] 601 | name = "ipconfig" 602 | version = "0.2.1" 603 | source = "registry+https://github.com/rust-lang/crates.io-index" 604 | dependencies = [ 605 | "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", 606 | "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 607 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 608 | "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 609 | ] 610 | 611 | [[package]] 612 | name = "itoa" 613 | version = "0.4.4" 614 | source = "registry+https://github.com/rust-lang/crates.io-index" 615 | 616 | [[package]] 617 | name = "js-sys" 618 | version = "0.3.30" 619 | source = "registry+https://github.com/rust-lang/crates.io-index" 620 | dependencies = [ 621 | "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 622 | ] 623 | 624 | [[package]] 625 | name = "kernel32-sys" 626 | version = "0.2.2" 627 | source = "registry+https://github.com/rust-lang/crates.io-index" 628 | dependencies = [ 629 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 630 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 631 | ] 632 | 633 | [[package]] 634 | name = "lazy_static" 635 | version = "1.4.0" 636 | source = "registry+https://github.com/rust-lang/crates.io-index" 637 | 638 | [[package]] 639 | name = "libc" 640 | version = "0.2.62" 641 | source = "registry+https://github.com/rust-lang/crates.io-index" 642 | 643 | [[package]] 644 | name = "linked-hash-map" 645 | version = "0.5.2" 646 | source = "registry+https://github.com/rust-lang/crates.io-index" 647 | 648 | [[package]] 649 | name = "lock_api" 650 | version = "0.1.5" 651 | source = "registry+https://github.com/rust-lang/crates.io-index" 652 | dependencies = [ 653 | "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 654 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 655 | ] 656 | 657 | [[package]] 658 | name = "log" 659 | version = "0.4.8" 660 | source = "registry+https://github.com/rust-lang/crates.io-index" 661 | dependencies = [ 662 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 663 | ] 664 | 665 | [[package]] 666 | name = "lru-cache" 667 | version = "0.1.2" 668 | source = "registry+https://github.com/rust-lang/crates.io-index" 669 | dependencies = [ 670 | "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 671 | ] 672 | 673 | [[package]] 674 | name = "matches" 675 | version = "0.1.8" 676 | source = "registry+https://github.com/rust-lang/crates.io-index" 677 | 678 | [[package]] 679 | name = "md5" 680 | version = "0.3.8" 681 | source = "registry+https://github.com/rust-lang/crates.io-index" 682 | 683 | [[package]] 684 | name = "memchr" 685 | version = "1.0.2" 686 | source = "registry+https://github.com/rust-lang/crates.io-index" 687 | dependencies = [ 688 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 689 | ] 690 | 691 | [[package]] 692 | name = "memchr" 693 | version = "2.2.1" 694 | source = "registry+https://github.com/rust-lang/crates.io-index" 695 | 696 | [[package]] 697 | name = "memoffset" 698 | version = "0.5.1" 699 | source = "registry+https://github.com/rust-lang/crates.io-index" 700 | dependencies = [ 701 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 702 | ] 703 | 704 | [[package]] 705 | name = "mime" 706 | version = "0.3.14" 707 | source = "registry+https://github.com/rust-lang/crates.io-index" 708 | 709 | [[package]] 710 | name = "mime_guess" 711 | version = "2.0.1" 712 | source = "registry+https://github.com/rust-lang/crates.io-index" 713 | dependencies = [ 714 | "mime 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", 715 | "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 716 | ] 717 | 718 | [[package]] 719 | name = "miniz_oxide" 720 | version = "0.3.2" 721 | source = "registry+https://github.com/rust-lang/crates.io-index" 722 | dependencies = [ 723 | "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 724 | ] 725 | 726 | [[package]] 727 | name = "mio" 728 | version = "0.6.19" 729 | source = "registry+https://github.com/rust-lang/crates.io-index" 730 | dependencies = [ 731 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 732 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 733 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 734 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 735 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 736 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 737 | "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 738 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 739 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 740 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 741 | ] 742 | 743 | [[package]] 744 | name = "mio-uds" 745 | version = "0.6.7" 746 | source = "registry+https://github.com/rust-lang/crates.io-index" 747 | dependencies = [ 748 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 749 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 750 | "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 751 | ] 752 | 753 | [[package]] 754 | name = "miow" 755 | version = "0.2.1" 756 | source = "registry+https://github.com/rust-lang/crates.io-index" 757 | dependencies = [ 758 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 759 | "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", 760 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 761 | "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 762 | ] 763 | 764 | [[package]] 765 | name = "native-tls" 766 | version = "0.2.3" 767 | source = "registry+https://github.com/rust-lang/crates.io-index" 768 | dependencies = [ 769 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 770 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 771 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 772 | "openssl 0.10.26 (registry+https://github.com/rust-lang/crates.io-index)", 773 | "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 774 | "openssl-sys 0.9.53 (registry+https://github.com/rust-lang/crates.io-index)", 775 | "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", 776 | "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 777 | "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 778 | "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 779 | ] 780 | 781 | [[package]] 782 | name = "net2" 783 | version = "0.2.33" 784 | source = "registry+https://github.com/rust-lang/crates.io-index" 785 | dependencies = [ 786 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 787 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 788 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 789 | ] 790 | 791 | [[package]] 792 | name = "nom" 793 | version = "4.2.3" 794 | source = "registry+https://github.com/rust-lang/crates.io-index" 795 | dependencies = [ 796 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 797 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 798 | ] 799 | 800 | [[package]] 801 | name = "num_cpus" 802 | version = "1.10.1" 803 | source = "registry+https://github.com/rust-lang/crates.io-index" 804 | dependencies = [ 805 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 806 | ] 807 | 808 | [[package]] 809 | name = "openssl" 810 | version = "0.10.26" 811 | source = "registry+https://github.com/rust-lang/crates.io-index" 812 | dependencies = [ 813 | "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 814 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 815 | "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 816 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 817 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 818 | "openssl-sys 0.9.53 (registry+https://github.com/rust-lang/crates.io-index)", 819 | ] 820 | 821 | [[package]] 822 | name = "openssl-probe" 823 | version = "0.1.2" 824 | source = "registry+https://github.com/rust-lang/crates.io-index" 825 | 826 | [[package]] 827 | name = "openssl-src" 828 | version = "111.6.0+1.1.1d" 829 | source = "registry+https://github.com/rust-lang/crates.io-index" 830 | dependencies = [ 831 | "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", 832 | ] 833 | 834 | [[package]] 835 | name = "openssl-sys" 836 | version = "0.9.53" 837 | source = "registry+https://github.com/rust-lang/crates.io-index" 838 | dependencies = [ 839 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 840 | "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", 841 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 842 | "openssl-src 111.6.0+1.1.1d (registry+https://github.com/rust-lang/crates.io-index)", 843 | "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", 844 | "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 845 | ] 846 | 847 | [[package]] 848 | name = "owning_ref" 849 | version = "0.4.0" 850 | source = "registry+https://github.com/rust-lang/crates.io-index" 851 | dependencies = [ 852 | "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 853 | ] 854 | 855 | [[package]] 856 | name = "parking_lot" 857 | version = "0.7.1" 858 | source = "registry+https://github.com/rust-lang/crates.io-index" 859 | dependencies = [ 860 | "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 861 | "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 862 | ] 863 | 864 | [[package]] 865 | name = "parking_lot_core" 866 | version = "0.4.0" 867 | source = "registry+https://github.com/rust-lang/crates.io-index" 868 | dependencies = [ 869 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 870 | "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 871 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 872 | "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 873 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 874 | ] 875 | 876 | [[package]] 877 | name = "percent-encoding" 878 | version = "1.0.1" 879 | source = "registry+https://github.com/rust-lang/crates.io-index" 880 | 881 | [[package]] 882 | name = "percent-encoding" 883 | version = "2.1.0" 884 | source = "registry+https://github.com/rust-lang/crates.io-index" 885 | 886 | [[package]] 887 | name = "phf" 888 | version = "0.7.24" 889 | source = "registry+https://github.com/rust-lang/crates.io-index" 890 | dependencies = [ 891 | "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 892 | ] 893 | 894 | [[package]] 895 | name = "phf_shared" 896 | version = "0.7.24" 897 | source = "registry+https://github.com/rust-lang/crates.io-index" 898 | dependencies = [ 899 | "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 900 | ] 901 | 902 | [[package]] 903 | name = "pkg-config" 904 | version = "0.3.16" 905 | source = "registry+https://github.com/rust-lang/crates.io-index" 906 | 907 | [[package]] 908 | name = "postgres" 909 | version = "0.15.2" 910 | source = "registry+https://github.com/rust-lang/crates.io-index" 911 | dependencies = [ 912 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 913 | "fallible-iterator 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 914 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 915 | "postgres-protocol 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 916 | "postgres-shared 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 917 | "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", 918 | ] 919 | 920 | [[package]] 921 | name = "postgres-protocol" 922 | version = "0.3.2" 923 | source = "registry+https://github.com/rust-lang/crates.io-index" 924 | dependencies = [ 925 | "base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 926 | "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 927 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 928 | "fallible-iterator 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 929 | "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 930 | "hmac 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 931 | "md5 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 932 | "memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 933 | "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 934 | "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 935 | "stringprep 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 936 | ] 937 | 938 | [[package]] 939 | name = "postgres-shared" 940 | version = "0.4.2" 941 | source = "registry+https://github.com/rust-lang/crates.io-index" 942 | dependencies = [ 943 | "fallible-iterator 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 944 | "hex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 945 | "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", 946 | "postgres-protocol 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 947 | ] 948 | 949 | [[package]] 950 | name = "ppv-lite86" 951 | version = "0.2.5" 952 | source = "registry+https://github.com/rust-lang/crates.io-index" 953 | 954 | [[package]] 955 | name = "proc-macro2" 956 | version = "0.4.30" 957 | source = "registry+https://github.com/rust-lang/crates.io-index" 958 | dependencies = [ 959 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 960 | ] 961 | 962 | [[package]] 963 | name = "proc-macro2" 964 | version = "1.0.4" 965 | source = "registry+https://github.com/rust-lang/crates.io-index" 966 | dependencies = [ 967 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 968 | ] 969 | 970 | [[package]] 971 | name = "publicsuffix" 972 | version = "1.5.3" 973 | source = "registry+https://github.com/rust-lang/crates.io-index" 974 | dependencies = [ 975 | "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", 976 | "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 977 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 978 | "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 979 | "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 980 | ] 981 | 982 | [[package]] 983 | name = "quick-error" 984 | version = "1.2.2" 985 | source = "registry+https://github.com/rust-lang/crates.io-index" 986 | 987 | [[package]] 988 | name = "quote" 989 | version = "0.6.13" 990 | source = "registry+https://github.com/rust-lang/crates.io-index" 991 | dependencies = [ 992 | "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 993 | ] 994 | 995 | [[package]] 996 | name = "quote" 997 | version = "1.0.2" 998 | source = "registry+https://github.com/rust-lang/crates.io-index" 999 | dependencies = [ 1000 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1001 | ] 1002 | 1003 | [[package]] 1004 | name = "rand" 1005 | version = "0.3.23" 1006 | source = "registry+https://github.com/rust-lang/crates.io-index" 1007 | dependencies = [ 1008 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1009 | "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1010 | ] 1011 | 1012 | [[package]] 1013 | name = "rand" 1014 | version = "0.4.6" 1015 | source = "registry+https://github.com/rust-lang/crates.io-index" 1016 | dependencies = [ 1017 | "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1018 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1019 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1020 | "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1021 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1022 | ] 1023 | 1024 | [[package]] 1025 | name = "rand" 1026 | version = "0.6.5" 1027 | source = "registry+https://github.com/rust-lang/crates.io-index" 1028 | dependencies = [ 1029 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1030 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1031 | "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1032 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1033 | "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1034 | "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1035 | "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 1036 | "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1037 | "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1038 | "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1039 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1040 | ] 1041 | 1042 | [[package]] 1043 | name = "rand" 1044 | version = "0.7.2" 1045 | source = "registry+https://github.com/rust-lang/crates.io-index" 1046 | dependencies = [ 1047 | "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1048 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1049 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1050 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 1051 | "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1052 | ] 1053 | 1054 | [[package]] 1055 | name = "rand_chacha" 1056 | version = "0.1.1" 1057 | source = "registry+https://github.com/rust-lang/crates.io-index" 1058 | dependencies = [ 1059 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1060 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1061 | ] 1062 | 1063 | [[package]] 1064 | name = "rand_chacha" 1065 | version = "0.2.1" 1066 | source = "registry+https://github.com/rust-lang/crates.io-index" 1067 | dependencies = [ 1068 | "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1069 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 1070 | ] 1071 | 1072 | [[package]] 1073 | name = "rand_core" 1074 | version = "0.3.1" 1075 | source = "registry+https://github.com/rust-lang/crates.io-index" 1076 | dependencies = [ 1077 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1078 | ] 1079 | 1080 | [[package]] 1081 | name = "rand_core" 1082 | version = "0.4.2" 1083 | source = "registry+https://github.com/rust-lang/crates.io-index" 1084 | 1085 | [[package]] 1086 | name = "rand_core" 1087 | version = "0.5.1" 1088 | source = "registry+https://github.com/rust-lang/crates.io-index" 1089 | dependencies = [ 1090 | "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1091 | ] 1092 | 1093 | [[package]] 1094 | name = "rand_hc" 1095 | version = "0.1.0" 1096 | source = "registry+https://github.com/rust-lang/crates.io-index" 1097 | dependencies = [ 1098 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1099 | ] 1100 | 1101 | [[package]] 1102 | name = "rand_hc" 1103 | version = "0.2.0" 1104 | source = "registry+https://github.com/rust-lang/crates.io-index" 1105 | dependencies = [ 1106 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 1107 | ] 1108 | 1109 | [[package]] 1110 | name = "rand_isaac" 1111 | version = "0.1.1" 1112 | source = "registry+https://github.com/rust-lang/crates.io-index" 1113 | dependencies = [ 1114 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1115 | ] 1116 | 1117 | [[package]] 1118 | name = "rand_jitter" 1119 | version = "0.1.4" 1120 | source = "registry+https://github.com/rust-lang/crates.io-index" 1121 | dependencies = [ 1122 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1123 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1124 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1125 | ] 1126 | 1127 | [[package]] 1128 | name = "rand_os" 1129 | version = "0.1.3" 1130 | source = "registry+https://github.com/rust-lang/crates.io-index" 1131 | dependencies = [ 1132 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 1133 | "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1134 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1135 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1136 | "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1137 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1138 | ] 1139 | 1140 | [[package]] 1141 | name = "rand_pcg" 1142 | version = "0.1.2" 1143 | source = "registry+https://github.com/rust-lang/crates.io-index" 1144 | dependencies = [ 1145 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1146 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1147 | ] 1148 | 1149 | [[package]] 1150 | name = "rand_xorshift" 1151 | version = "0.1.1" 1152 | source = "registry+https://github.com/rust-lang/crates.io-index" 1153 | dependencies = [ 1154 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1155 | ] 1156 | 1157 | [[package]] 1158 | name = "rayon" 1159 | version = "1.2.1" 1160 | source = "registry+https://github.com/rust-lang/crates.io-index" 1161 | dependencies = [ 1162 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1163 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", 1164 | "rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 1165 | ] 1166 | 1167 | [[package]] 1168 | name = "rayon-core" 1169 | version = "1.6.1" 1170 | source = "registry+https://github.com/rust-lang/crates.io-index" 1171 | dependencies = [ 1172 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1173 | "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1174 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1175 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1176 | "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 1177 | ] 1178 | 1179 | [[package]] 1180 | name = "rdrand" 1181 | version = "0.4.0" 1182 | source = "registry+https://github.com/rust-lang/crates.io-index" 1183 | dependencies = [ 1184 | "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1185 | ] 1186 | 1187 | [[package]] 1188 | name = "redox_syscall" 1189 | version = "0.1.56" 1190 | source = "registry+https://github.com/rust-lang/crates.io-index" 1191 | 1192 | [[package]] 1193 | name = "regex" 1194 | version = "1.3.1" 1195 | source = "registry+https://github.com/rust-lang/crates.io-index" 1196 | dependencies = [ 1197 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", 1198 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1199 | "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", 1200 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", 1201 | ] 1202 | 1203 | [[package]] 1204 | name = "regex-syntax" 1205 | version = "0.6.12" 1206 | source = "registry+https://github.com/rust-lang/crates.io-index" 1207 | 1208 | [[package]] 1209 | name = "remove_dir_all" 1210 | version = "0.5.2" 1211 | source = "registry+https://github.com/rust-lang/crates.io-index" 1212 | dependencies = [ 1213 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1214 | ] 1215 | 1216 | [[package]] 1217 | name = "reqwest" 1218 | version = "0.9.22" 1219 | source = "registry+https://github.com/rust-lang/crates.io-index" 1220 | dependencies = [ 1221 | "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 1222 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1223 | "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 1224 | "cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1225 | "encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)", 1226 | "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)", 1227 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1228 | "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", 1229 | "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)", 1230 | "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 1231 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1232 | "mime 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", 1233 | "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1234 | "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 1235 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 1236 | "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 1237 | "serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", 1238 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 1239 | "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", 1240 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1241 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1242 | "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", 1243 | "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 1244 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1245 | "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", 1246 | "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 1247 | ] 1248 | 1249 | [[package]] 1250 | name = "resolv-conf" 1251 | version = "0.6.2" 1252 | source = "registry+https://github.com/rust-lang/crates.io-index" 1253 | dependencies = [ 1254 | "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1255 | "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1256 | ] 1257 | 1258 | [[package]] 1259 | name = "ring" 1260 | version = "0.16.9" 1261 | source = "registry+https://github.com/rust-lang/crates.io-index" 1262 | dependencies = [ 1263 | "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)", 1264 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1265 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1266 | "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 1267 | "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1268 | "web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", 1269 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1270 | ] 1271 | 1272 | [[package]] 1273 | name = "rustc-demangle" 1274 | version = "0.1.16" 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" 1276 | 1277 | [[package]] 1278 | name = "rustc_version" 1279 | version = "0.2.3" 1280 | source = "registry+https://github.com/rust-lang/crates.io-index" 1281 | dependencies = [ 1282 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1283 | ] 1284 | 1285 | [[package]] 1286 | name = "rustls" 1287 | version = "0.16.0" 1288 | source = "registry+https://github.com/rust-lang/crates.io-index" 1289 | dependencies = [ 1290 | "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 1291 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1292 | "ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)", 1293 | "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 1294 | "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", 1295 | ] 1296 | 1297 | [[package]] 1298 | name = "ryu" 1299 | version = "1.0.0" 1300 | source = "registry+https://github.com/rust-lang/crates.io-index" 1301 | 1302 | [[package]] 1303 | name = "safemem" 1304 | version = "0.2.0" 1305 | source = "registry+https://github.com/rust-lang/crates.io-index" 1306 | 1307 | [[package]] 1308 | name = "schannel" 1309 | version = "0.1.16" 1310 | source = "registry+https://github.com/rust-lang/crates.io-index" 1311 | dependencies = [ 1312 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1313 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1314 | ] 1315 | 1316 | [[package]] 1317 | name = "scopeguard" 1318 | version = "0.3.3" 1319 | source = "registry+https://github.com/rust-lang/crates.io-index" 1320 | 1321 | [[package]] 1322 | name = "scopeguard" 1323 | version = "1.0.0" 1324 | source = "registry+https://github.com/rust-lang/crates.io-index" 1325 | 1326 | [[package]] 1327 | name = "sct" 1328 | version = "0.6.0" 1329 | source = "registry+https://github.com/rust-lang/crates.io-index" 1330 | dependencies = [ 1331 | "ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)", 1332 | "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1333 | ] 1334 | 1335 | [[package]] 1336 | name = "security-framework" 1337 | version = "0.3.1" 1338 | source = "registry+https://github.com/rust-lang/crates.io-index" 1339 | dependencies = [ 1340 | "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", 1341 | "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 1342 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1343 | "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1344 | ] 1345 | 1346 | [[package]] 1347 | name = "security-framework-sys" 1348 | version = "0.3.1" 1349 | source = "registry+https://github.com/rust-lang/crates.io-index" 1350 | dependencies = [ 1351 | "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 1352 | ] 1353 | 1354 | [[package]] 1355 | name = "semver" 1356 | version = "0.9.0" 1357 | source = "registry+https://github.com/rust-lang/crates.io-index" 1358 | dependencies = [ 1359 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1360 | ] 1361 | 1362 | [[package]] 1363 | name = "semver-parser" 1364 | version = "0.7.0" 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" 1366 | 1367 | [[package]] 1368 | name = "serde" 1369 | version = "1.0.102" 1370 | source = "registry+https://github.com/rust-lang/crates.io-index" 1371 | dependencies = [ 1372 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 1373 | ] 1374 | 1375 | [[package]] 1376 | name = "serde_derive" 1377 | version = "1.0.102" 1378 | source = "registry+https://github.com/rust-lang/crates.io-index" 1379 | dependencies = [ 1380 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1381 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1382 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1383 | ] 1384 | 1385 | [[package]] 1386 | name = "serde_json" 1387 | version = "1.0.40" 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" 1389 | dependencies = [ 1390 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 1391 | "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1392 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 1393 | ] 1394 | 1395 | [[package]] 1396 | name = "serde_urlencoded" 1397 | version = "0.5.5" 1398 | source = "registry+https://github.com/rust-lang/crates.io-index" 1399 | dependencies = [ 1400 | "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 1401 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 1402 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", 1403 | "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1404 | ] 1405 | 1406 | [[package]] 1407 | name = "sha2" 1408 | version = "0.7.1" 1409 | source = "registry+https://github.com/rust-lang/crates.io-index" 1410 | dependencies = [ 1411 | "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 1412 | "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1413 | "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", 1414 | "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1415 | ] 1416 | 1417 | [[package]] 1418 | name = "siphasher" 1419 | version = "0.2.3" 1420 | source = "registry+https://github.com/rust-lang/crates.io-index" 1421 | 1422 | [[package]] 1423 | name = "slab" 1424 | version = "0.4.2" 1425 | source = "registry+https://github.com/rust-lang/crates.io-index" 1426 | 1427 | [[package]] 1428 | name = "smallvec" 1429 | version = "0.6.10" 1430 | source = "registry+https://github.com/rust-lang/crates.io-index" 1431 | 1432 | [[package]] 1433 | name = "socket2" 1434 | version = "0.3.11" 1435 | source = "registry+https://github.com/rust-lang/crates.io-index" 1436 | dependencies = [ 1437 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1438 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1439 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 1440 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1441 | ] 1442 | 1443 | [[package]] 1444 | name = "sourcefile" 1445 | version = "0.1.4" 1446 | source = "registry+https://github.com/rust-lang/crates.io-index" 1447 | 1448 | [[package]] 1449 | name = "spin" 1450 | version = "0.5.2" 1451 | source = "registry+https://github.com/rust-lang/crates.io-index" 1452 | 1453 | [[package]] 1454 | name = "stable_deref_trait" 1455 | version = "1.1.1" 1456 | source = "registry+https://github.com/rust-lang/crates.io-index" 1457 | 1458 | [[package]] 1459 | name = "string" 1460 | version = "0.2.1" 1461 | source = "registry+https://github.com/rust-lang/crates.io-index" 1462 | dependencies = [ 1463 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1464 | ] 1465 | 1466 | [[package]] 1467 | name = "stringprep" 1468 | version = "0.1.2" 1469 | source = "registry+https://github.com/rust-lang/crates.io-index" 1470 | dependencies = [ 1471 | "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 1472 | "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1473 | ] 1474 | 1475 | [[package]] 1476 | name = "strsim" 1477 | version = "0.8.0" 1478 | source = "registry+https://github.com/rust-lang/crates.io-index" 1479 | 1480 | [[package]] 1481 | name = "syn" 1482 | version = "0.15.44" 1483 | source = "registry+https://github.com/rust-lang/crates.io-index" 1484 | dependencies = [ 1485 | "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 1486 | "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 1487 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1488 | ] 1489 | 1490 | [[package]] 1491 | name = "syn" 1492 | version = "1.0.5" 1493 | source = "registry+https://github.com/rust-lang/crates.io-index" 1494 | dependencies = [ 1495 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1496 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1497 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1498 | ] 1499 | 1500 | [[package]] 1501 | name = "synstructure" 1502 | version = "0.12.1" 1503 | source = "registry+https://github.com/rust-lang/crates.io-index" 1504 | dependencies = [ 1505 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1506 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1507 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1508 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1509 | ] 1510 | 1511 | [[package]] 1512 | name = "tempfile" 1513 | version = "3.1.0" 1514 | source = "registry+https://github.com/rust-lang/crates.io-index" 1515 | dependencies = [ 1516 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1517 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1518 | "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1519 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 1520 | "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 1521 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1522 | ] 1523 | 1524 | [[package]] 1525 | name = "textwrap" 1526 | version = "0.11.0" 1527 | source = "registry+https://github.com/rust-lang/crates.io-index" 1528 | dependencies = [ 1529 | "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1530 | ] 1531 | 1532 | [[package]] 1533 | name = "thread_local" 1534 | version = "0.3.6" 1535 | source = "registry+https://github.com/rust-lang/crates.io-index" 1536 | dependencies = [ 1537 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1538 | ] 1539 | 1540 | [[package]] 1541 | name = "time" 1542 | version = "0.1.42" 1543 | source = "registry+https://github.com/rust-lang/crates.io-index" 1544 | dependencies = [ 1545 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1546 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 1547 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1548 | ] 1549 | 1550 | [[package]] 1551 | name = "tokio" 1552 | version = "0.1.22" 1553 | source = "registry+https://github.com/rust-lang/crates.io-index" 1554 | dependencies = [ 1555 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1556 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1557 | "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 1558 | "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 1559 | "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1560 | "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1561 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1562 | "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1563 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1564 | "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1565 | "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1566 | "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1567 | "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", 1568 | "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 1569 | "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1570 | "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", 1571 | ] 1572 | 1573 | [[package]] 1574 | name = "tokio-buf" 1575 | version = "0.1.1" 1576 | source = "registry+https://github.com/rust-lang/crates.io-index" 1577 | dependencies = [ 1578 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1579 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", 1580 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1581 | ] 1582 | 1583 | [[package]] 1584 | name = "tokio-codec" 1585 | version = "0.1.1" 1586 | source = "registry+https://github.com/rust-lang/crates.io-index" 1587 | dependencies = [ 1588 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1589 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1590 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1591 | ] 1592 | 1593 | [[package]] 1594 | name = "tokio-current-thread" 1595 | version = "0.1.6" 1596 | source = "registry+https://github.com/rust-lang/crates.io-index" 1597 | dependencies = [ 1598 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1599 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1600 | ] 1601 | 1602 | [[package]] 1603 | name = "tokio-executor" 1604 | version = "0.1.8" 1605 | source = "registry+https://github.com/rust-lang/crates.io-index" 1606 | dependencies = [ 1607 | "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", 1608 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1609 | ] 1610 | 1611 | [[package]] 1612 | name = "tokio-fs" 1613 | version = "0.1.6" 1614 | source = "registry+https://github.com/rust-lang/crates.io-index" 1615 | dependencies = [ 1616 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1617 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1618 | "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", 1619 | ] 1620 | 1621 | [[package]] 1622 | name = "tokio-io" 1623 | version = "0.1.12" 1624 | source = "registry+https://github.com/rust-lang/crates.io-index" 1625 | dependencies = [ 1626 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1627 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1628 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1629 | ] 1630 | 1631 | [[package]] 1632 | name = "tokio-reactor" 1633 | version = "0.1.9" 1634 | source = "registry+https://github.com/rust-lang/crates.io-index" 1635 | dependencies = [ 1636 | "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", 1637 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1638 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1639 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1640 | "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 1641 | "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 1642 | "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 1643 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1644 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1645 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1646 | "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1647 | ] 1648 | 1649 | [[package]] 1650 | name = "tokio-rustls" 1651 | version = "0.10.2" 1652 | source = "registry+https://github.com/rust-lang/crates.io-index" 1653 | dependencies = [ 1654 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1655 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1656 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1657 | "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", 1658 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1659 | "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", 1660 | ] 1661 | 1662 | [[package]] 1663 | name = "tokio-sync" 1664 | version = "0.1.6" 1665 | source = "registry+https://github.com/rust-lang/crates.io-index" 1666 | dependencies = [ 1667 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 1668 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1669 | ] 1670 | 1671 | [[package]] 1672 | name = "tokio-tcp" 1673 | version = "0.1.3" 1674 | source = "registry+https://github.com/rust-lang/crates.io-index" 1675 | dependencies = [ 1676 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1677 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1678 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1679 | "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 1680 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1681 | "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1682 | ] 1683 | 1684 | [[package]] 1685 | name = "tokio-threadpool" 1686 | version = "0.1.15" 1687 | source = "registry+https://github.com/rust-lang/crates.io-index" 1688 | dependencies = [ 1689 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1690 | "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1691 | "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", 1692 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1693 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1694 | "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 1695 | "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 1696 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1697 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1698 | ] 1699 | 1700 | [[package]] 1701 | name = "tokio-timer" 1702 | version = "0.2.11" 1703 | source = "registry+https://github.com/rust-lang/crates.io-index" 1704 | dependencies = [ 1705 | "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", 1706 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1707 | "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1708 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1709 | ] 1710 | 1711 | [[package]] 1712 | name = "tokio-udp" 1713 | version = "0.1.5" 1714 | source = "registry+https://github.com/rust-lang/crates.io-index" 1715 | dependencies = [ 1716 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1717 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1718 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1719 | "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 1720 | "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1721 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1722 | "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1723 | ] 1724 | 1725 | [[package]] 1726 | name = "tokio-uds" 1727 | version = "0.2.5" 1728 | source = "registry+https://github.com/rust-lang/crates.io-index" 1729 | dependencies = [ 1730 | "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", 1731 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1732 | "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1733 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1734 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1735 | "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", 1736 | "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)", 1737 | "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1738 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1739 | "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1740 | ] 1741 | 1742 | [[package]] 1743 | name = "trust-dns-proto" 1744 | version = "0.8.0" 1745 | source = "registry+https://github.com/rust-lang/crates.io-index" 1746 | dependencies = [ 1747 | "enum-as-inner 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1748 | "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1749 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1750 | "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1751 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1752 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1753 | "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 1754 | "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1755 | "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", 1756 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1757 | "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 1758 | "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1759 | "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1760 | "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 1761 | "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1762 | "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1763 | ] 1764 | 1765 | [[package]] 1766 | name = "trust-dns-resolver" 1767 | version = "0.12.0" 1768 | source = "registry+https://github.com/rust-lang/crates.io-index" 1769 | dependencies = [ 1770 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1771 | "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1772 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1773 | "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1774 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1775 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1776 | "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1777 | "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 1778 | "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", 1779 | "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1780 | "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", 1781 | "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1782 | "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1783 | "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1784 | "trust-dns-proto 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 1785 | "trust-dns-rustls 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1786 | "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", 1787 | ] 1788 | 1789 | [[package]] 1790 | name = "trust-dns-rustls" 1791 | version = "0.7.0" 1792 | source = "registry+https://github.com/rust-lang/crates.io-index" 1793 | dependencies = [ 1794 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1795 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1796 | "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)", 1797 | "tokio-rustls 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", 1798 | "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1799 | "trust-dns-proto 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 1800 | "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", 1801 | ] 1802 | 1803 | [[package]] 1804 | name = "try-lock" 1805 | version = "0.2.2" 1806 | source = "registry+https://github.com/rust-lang/crates.io-index" 1807 | 1808 | [[package]] 1809 | name = "try_from" 1810 | version = "0.3.2" 1811 | source = "registry+https://github.com/rust-lang/crates.io-index" 1812 | dependencies = [ 1813 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1814 | ] 1815 | 1816 | [[package]] 1817 | name = "typenum" 1818 | version = "1.11.2" 1819 | source = "registry+https://github.com/rust-lang/crates.io-index" 1820 | 1821 | [[package]] 1822 | name = "unicase" 1823 | version = "2.5.1" 1824 | source = "registry+https://github.com/rust-lang/crates.io-index" 1825 | dependencies = [ 1826 | "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1827 | ] 1828 | 1829 | [[package]] 1830 | name = "unicode-bidi" 1831 | version = "0.3.4" 1832 | source = "registry+https://github.com/rust-lang/crates.io-index" 1833 | dependencies = [ 1834 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1835 | ] 1836 | 1837 | [[package]] 1838 | name = "unicode-normalization" 1839 | version = "0.1.8" 1840 | source = "registry+https://github.com/rust-lang/crates.io-index" 1841 | dependencies = [ 1842 | "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1843 | ] 1844 | 1845 | [[package]] 1846 | name = "unicode-segmentation" 1847 | version = "1.5.0" 1848 | source = "registry+https://github.com/rust-lang/crates.io-index" 1849 | 1850 | [[package]] 1851 | name = "unicode-width" 1852 | version = "0.1.6" 1853 | source = "registry+https://github.com/rust-lang/crates.io-index" 1854 | 1855 | [[package]] 1856 | name = "unicode-xid" 1857 | version = "0.1.0" 1858 | source = "registry+https://github.com/rust-lang/crates.io-index" 1859 | 1860 | [[package]] 1861 | name = "unicode-xid" 1862 | version = "0.2.0" 1863 | source = "registry+https://github.com/rust-lang/crates.io-index" 1864 | 1865 | [[package]] 1866 | name = "untrusted" 1867 | version = "0.7.0" 1868 | source = "registry+https://github.com/rust-lang/crates.io-index" 1869 | 1870 | [[package]] 1871 | name = "url" 1872 | version = "1.7.2" 1873 | source = "registry+https://github.com/rust-lang/crates.io-index" 1874 | dependencies = [ 1875 | "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1876 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1877 | "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1878 | ] 1879 | 1880 | [[package]] 1881 | name = "url" 1882 | version = "2.1.0" 1883 | source = "registry+https://github.com/rust-lang/crates.io-index" 1884 | dependencies = [ 1885 | "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1886 | "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1887 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1888 | ] 1889 | 1890 | [[package]] 1891 | name = "uuid" 1892 | version = "0.7.4" 1893 | source = "registry+https://github.com/rust-lang/crates.io-index" 1894 | dependencies = [ 1895 | "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 1896 | ] 1897 | 1898 | [[package]] 1899 | name = "vcpkg" 1900 | version = "0.2.7" 1901 | source = "registry+https://github.com/rust-lang/crates.io-index" 1902 | 1903 | [[package]] 1904 | name = "vec_map" 1905 | version = "0.8.1" 1906 | source = "registry+https://github.com/rust-lang/crates.io-index" 1907 | 1908 | [[package]] 1909 | name = "version_check" 1910 | version = "0.1.5" 1911 | source = "registry+https://github.com/rust-lang/crates.io-index" 1912 | 1913 | [[package]] 1914 | name = "want" 1915 | version = "0.2.0" 1916 | source = "registry+https://github.com/rust-lang/crates.io-index" 1917 | dependencies = [ 1918 | "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", 1919 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1920 | "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1921 | ] 1922 | 1923 | [[package]] 1924 | name = "wasi" 1925 | version = "0.7.0" 1926 | source = "registry+https://github.com/rust-lang/crates.io-index" 1927 | 1928 | [[package]] 1929 | name = "wasm-bindgen" 1930 | version = "0.2.53" 1931 | source = "registry+https://github.com/rust-lang/crates.io-index" 1932 | dependencies = [ 1933 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1934 | "wasm-bindgen-macro 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 1935 | ] 1936 | 1937 | [[package]] 1938 | name = "wasm-bindgen-backend" 1939 | version = "0.2.53" 1940 | source = "registry+https://github.com/rust-lang/crates.io-index" 1941 | dependencies = [ 1942 | "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 1943 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1944 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1945 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1946 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1947 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1948 | "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 1949 | ] 1950 | 1951 | [[package]] 1952 | name = "wasm-bindgen-macro" 1953 | version = "0.2.53" 1954 | source = "registry+https://github.com/rust-lang/crates.io-index" 1955 | dependencies = [ 1956 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1957 | "wasm-bindgen-macro-support 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 1958 | ] 1959 | 1960 | [[package]] 1961 | name = "wasm-bindgen-macro-support" 1962 | version = "0.2.53" 1963 | source = "registry+https://github.com/rust-lang/crates.io-index" 1964 | dependencies = [ 1965 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1966 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1967 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1968 | "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 1969 | "wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 1970 | ] 1971 | 1972 | [[package]] 1973 | name = "wasm-bindgen-shared" 1974 | version = "0.2.53" 1975 | source = "registry+https://github.com/rust-lang/crates.io-index" 1976 | 1977 | [[package]] 1978 | name = "wasm-bindgen-webidl" 1979 | version = "0.2.53" 1980 | source = "registry+https://github.com/rust-lang/crates.io-index" 1981 | dependencies = [ 1982 | "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1983 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1984 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1985 | "proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1986 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1987 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1988 | "wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 1989 | "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", 1990 | ] 1991 | 1992 | [[package]] 1993 | name = "web-sys" 1994 | version = "0.3.30" 1995 | source = "registry+https://github.com/rust-lang/crates.io-index" 1996 | dependencies = [ 1997 | "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1998 | "js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", 1999 | "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 2000 | "wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 2001 | "wasm-bindgen-webidl 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)", 2002 | ] 2003 | 2004 | [[package]] 2005 | name = "webpki" 2006 | version = "0.21.0" 2007 | source = "registry+https://github.com/rust-lang/crates.io-index" 2008 | dependencies = [ 2009 | "ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)", 2010 | "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 2011 | ] 2012 | 2013 | [[package]] 2014 | name = "webpki-roots" 2015 | version = "0.17.0" 2016 | source = "registry+https://github.com/rust-lang/crates.io-index" 2017 | dependencies = [ 2018 | "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", 2019 | ] 2020 | 2021 | [[package]] 2022 | name = "weedle" 2023 | version = "0.10.0" 2024 | source = "registry+https://github.com/rust-lang/crates.io-index" 2025 | dependencies = [ 2026 | "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 2027 | ] 2028 | 2029 | [[package]] 2030 | name = "widestring" 2031 | version = "0.4.0" 2032 | source = "registry+https://github.com/rust-lang/crates.io-index" 2033 | 2034 | [[package]] 2035 | name = "winapi" 2036 | version = "0.2.8" 2037 | source = "registry+https://github.com/rust-lang/crates.io-index" 2038 | 2039 | [[package]] 2040 | name = "winapi" 2041 | version = "0.3.8" 2042 | source = "registry+https://github.com/rust-lang/crates.io-index" 2043 | dependencies = [ 2044 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 2045 | "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 2046 | ] 2047 | 2048 | [[package]] 2049 | name = "winapi-build" 2050 | version = "0.1.1" 2051 | source = "registry+https://github.com/rust-lang/crates.io-index" 2052 | 2053 | [[package]] 2054 | name = "winapi-i686-pc-windows-gnu" 2055 | version = "0.4.0" 2056 | source = "registry+https://github.com/rust-lang/crates.io-index" 2057 | 2058 | [[package]] 2059 | name = "winapi-x86_64-pc-windows-gnu" 2060 | version = "0.4.0" 2061 | source = "registry+https://github.com/rust-lang/crates.io-index" 2062 | 2063 | [[package]] 2064 | name = "winreg" 2065 | version = "0.6.2" 2066 | source = "registry+https://github.com/rust-lang/crates.io-index" 2067 | dependencies = [ 2068 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 2069 | ] 2070 | 2071 | [[package]] 2072 | name = "winutil" 2073 | version = "0.1.1" 2074 | source = "registry+https://github.com/rust-lang/crates.io-index" 2075 | dependencies = [ 2076 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 2077 | ] 2078 | 2079 | [[package]] 2080 | name = "ws2_32-sys" 2081 | version = "0.2.1" 2082 | source = "registry+https://github.com/rust-lang/crates.io-index" 2083 | dependencies = [ 2084 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 2085 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 2086 | ] 2087 | 2088 | [[package]] 2089 | name = "yaml-rust" 2090 | version = "0.3.5" 2091 | source = "registry+https://github.com/rust-lang/crates.io-index" 2092 | 2093 | [metadata] 2094 | "checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2" 2095 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" 2096 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 2097 | "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" 2098 | "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" 2099 | "checksum autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875" 2100 | "checksum backtrace 0.3.37 (registry+https://github.com/rust-lang/crates.io-index)" = "5180c5a20655b14a819b652fd2378fa5f1697b6c9ddad3e695c2f9cedf6df4e2" 2101 | "checksum backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "82a830b4ef2d1124a711c71d263c5abdc710ef8e907bd508c88be475cebc422b" 2102 | "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" 2103 | "checksum base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96434f987501f0ed4eb336a411e0631ecd1afa11574fe148587adc4ff96143c9" 2104 | "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" 2105 | "checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" 2106 | "checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" 2107 | "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" 2108 | "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" 2109 | "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" 2110 | "checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" 2111 | "checksum cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)" = "4fc9a35e1f4290eb9e5fc54ba6cf40671ed2a2514c3eeb2b2a908dda2ea5a1be" 2112 | "checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" 2113 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" 2114 | "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 2115 | "checksum constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "995a44c877f9212528ccc74b21a232f66ad69001e40ede5bcee2ac9ef2657120" 2116 | "checksum cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5" 2117 | "checksum cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c" 2118 | "checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" 2119 | "checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" 2120 | "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" 2121 | "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" 2122 | "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" 2123 | "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" 2124 | "checksum crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfd6515864a82d2f877b42813d4553292c6659498c9a2aa31bab5a15243c2700" 2125 | "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" 2126 | "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" 2127 | "checksum crypto-mac 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0999b4ff4d3446d4ddb19a63e9e00c1876e75cd7000d20e57a693b4b3f08d958" 2128 | "checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" 2129 | "checksum dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e" 2130 | "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" 2131 | "checksum encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)" = "87240518927716f79692c2ed85bfe6e98196d18c6401ec75355760233a7e12e9" 2132 | "checksum enum-as-inner 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3d58266c97445680766be408285e798d3401c6d4c378ec5552e78737e681e37d" 2133 | "checksum error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ab49e9dcb602294bc42f9a7dfc9bc6e936fca4418ea300dbfb84fe16de0b7d9" 2134 | "checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" 2135 | "checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" 2136 | "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 2137 | "checksum fallible-iterator 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eb7217124812dc5672b7476d0c2d20cfe9f7c0f1ba0904b674a9762a0212f72e" 2138 | "checksum flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "2adaffba6388640136149e18ed080b77a78611c1e1d6de75aedcdf78df5d4682" 2139 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" 2140 | "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2141 | "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2142 | "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 2143 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 2144 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 2145 | "checksum futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef" 2146 | "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" 2147 | "checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" 2148 | "checksum getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "473a1265acc8ff1e808cd0a1af8cee3c2ee5200916058a2ca113c29f2d903571" 2149 | "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" 2150 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" 2151 | "checksum hex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d6a22814455d41612f41161581c2883c0c6a1c41852729b17d5ed88f01e153aa" 2152 | "checksum hmac 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44f3bdb08579d99d7dc761c0e266f13b5f2ab8c8c703b9fc9ef333cd8f48f55e" 2153 | "checksum hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "21ceb46a83a85e824ef93669c8b390009623863b5c195d1ba747292c0c72f94e" 2154 | "checksum http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "372bcb56f939e449117fb0869c2e8fd8753a8223d92a172c6e808cf123a5b6e4" 2155 | "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" 2156 | "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" 2157 | "checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6" 2158 | "checksum hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" 2159 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 2160 | "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9" 2161 | "checksum indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a61202fbe46c4a951e9404a720a0180bcf3212c750d735cb5c4ba4dc551299f3" 2162 | "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" 2163 | "checksum ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa79fa216fbe60834a9c0737d7fcd30425b32d1c58854663e24d4c4b328ed83f" 2164 | "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" 2165 | "checksum js-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "a60f6ca5eb7ae3014e3ab34e3189a1560267245216e19f76a021a4c669817e62" 2166 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 2167 | "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2168 | "checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba" 2169 | "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" 2170 | "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" 2171 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" 2172 | "checksum lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2173 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 2174 | "checksum md5 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "79c56d6a0b07f9e19282511c83fc5b086364cbae4ba8c7d5f190c3d9b0425a48" 2175 | "checksum memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a" 2176 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" 2177 | "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" 2178 | "checksum mime 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "dd1d63acd1b78403cc0c325605908475dd9b9a3acbf65ed8bcab97e27014afcf" 2179 | "checksum mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599" 2180 | "checksum miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7108aff85b876d06f22503dcce091e29f76733b2bfdd91eebce81f5e68203a10" 2181 | "checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" 2182 | "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125" 2183 | "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" 2184 | "checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e" 2185 | "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" 2186 | "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" 2187 | "checksum num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273" 2188 | "checksum openssl 0.10.26 (registry+https://github.com/rust-lang/crates.io-index)" = "3a3cc5799d98e1088141b8e01ff760112bbd9f19d850c124500566ca6901a585" 2189 | "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 2190 | "checksum openssl-src 111.6.0+1.1.1d (registry+https://github.com/rust-lang/crates.io-index)" = "b9c2da1de8a7a3f860919c01540b03a6db16de042405a8a07a5e9d0b4b825d9c" 2191 | "checksum openssl-sys 0.9.53 (registry+https://github.com/rust-lang/crates.io-index)" = "465d16ae7fc0e313318f7de5cecf57b2fbe7511fd213978b457e1c96ff46736f" 2192 | "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" 2193 | "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" 2194 | "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" 2195 | "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 2196 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 2197 | "checksum phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" 2198 | "checksum phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" 2199 | "checksum pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "72d5370d90f49f70bd033c3d75e87fc529fbfff9d6f7cccef07d6170079d91ea" 2200 | "checksum postgres 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "115dde90ef51af573580c035857badbece2aa5cde3de1dfb3c932969ca92a6c5" 2201 | "checksum postgres-protocol 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2487e66455bf88a1b247bf08a3ce7fe5197ac6d67228d920b0ee6a0e97fd7312" 2202 | "checksum postgres-shared 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ffac35b3e0029b404c24a3b82149b4e904f293e8ca4a327eefa24d3ca50df36f" 2203 | "checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" 2204 | "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 2205 | "checksum proc-macro2 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "afdc77cc74ec70ed262262942ebb7dac3d479e9e5cfa2da1841c0806f6cdabcc" 2206 | "checksum publicsuffix 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9bf259a81de2b2eb9850ec990ec78e6a25319715584fd7652b9b26f96fcb1510" 2207 | "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" 2208 | "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 2209 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" 2210 | "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" 2211 | "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 2212 | "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 2213 | "checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" 2214 | "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 2215 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" 2216 | "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 2217 | "checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 2218 | "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2219 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 2220 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2221 | "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 2222 | "checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 2223 | "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 2224 | "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 2225 | "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 2226 | "checksum rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43739f8831493b276363637423d3622d4bd6394ab6f0a9c4a552e208aeb7fddd" 2227 | "checksum rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8bf17de6f23b05473c437eb958b9c850bfc8af0961fe17b4cc92d5a627b4791" 2228 | "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 2229 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" 2230 | "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" 2231 | "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" 2232 | "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" 2233 | "checksum reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)" = "2c2064233e442ce85c77231ebd67d9eca395207dec2127fe0bbedde4bd29a650" 2234 | "checksum resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b263b4aa1b5de9ffc0054a2386f96992058bb6870aab516f8cdeb8a667d56dcb" 2235 | "checksum ring 0.16.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6747f8da1f2b1fabbee1aaa4eb8a11abf9adef0bf58a41cee45db5d59cecdfac" 2236 | "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" 2237 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 2238 | "checksum rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e" 2239 | "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" 2240 | "checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f" 2241 | "checksum schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "87f550b06b6cba9c8b8be3ee73f391990116bf527450d2556e9b9ce263b9a021" 2242 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" 2243 | "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" 2244 | "checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c" 2245 | "checksum security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2" 2246 | "checksum security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56" 2247 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 2248 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 2249 | "checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" 2250 | "checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" 2251 | "checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704" 2252 | "checksum serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a" 2253 | "checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" 2254 | "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" 2255 | "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" 2256 | "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" 2257 | "checksum socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "e8b74de517221a2cb01a53349cf54182acdc31a074727d3079068448c0676d85" 2258 | "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" 2259 | "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2260 | "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" 2261 | "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" 2262 | "checksum stringprep 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 2263 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 2264 | "checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 2265 | "checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" 2266 | "checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" 2267 | "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" 2268 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 2269 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" 2270 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" 2271 | "checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" 2272 | "checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" 2273 | "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f" 2274 | "checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443" 2275 | "checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac" 2276 | "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af" 2277 | "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926" 2278 | "checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce" 2279 | "checksum tokio-rustls 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1df2fa53ac211c136832f530ccb081af9af891af22d685a9493e232c7a359bc2" 2280 | "checksum tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7" 2281 | "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119" 2282 | "checksum tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "90ca01319dea1e376a001e8dc192d42ebde6dd532532a5bad988ac37db365b19" 2283 | "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e" 2284 | "checksum tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f02298505547f73e60f568359ef0d016d5acd6e830ab9bc7c4a5b3403440121b" 2285 | "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" 2286 | "checksum trust-dns-proto 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05457ece29839d056d8cb66ec080209d34492b3d2e7e00641b486977be973db9" 2287 | "checksum trust-dns-resolver 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb1b3a41ee784f8da051cd342c6f42a3a75ee45818164acad867eac8f2f85332" 2288 | "checksum trust-dns-rustls 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63e93c47f21cdff372a9139700663c59d35ba3a105a670e9c1c49c30f07b973e" 2289 | "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" 2290 | "checksum try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b" 2291 | "checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9" 2292 | "checksum unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150" 2293 | "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 2294 | "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" 2295 | "checksum unicode-segmentation 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49f5526225fd8b77342d5986ab5f6055552e9c0776193b5b63fd53b46debfad7" 2296 | "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" 2297 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 2298 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" 2299 | "checksum untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece" 2300 | "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 2301 | "checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61" 2302 | "checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" 2303 | "checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" 2304 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" 2305 | "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" 2306 | "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" 2307 | "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" 2308 | "checksum wasm-bindgen 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "4c29d57d5c3b3bc53bbe35c5a4f4a0df994d870b7d3cb0ad1c2065e21822ae41" 2309 | "checksum wasm-bindgen-backend 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "aa2868fa93e5bf36a9364d1277a0f97392748a8217d9aa0ec3f1cdbdf7ad1a60" 2310 | "checksum wasm-bindgen-macro 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "41e80594782a241bf3d92ee5d1247b8fb496250a8a2ff1e136942d433fbbce14" 2311 | "checksum wasm-bindgen-macro-support 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "74b9950355b1d92ca09de0984bdd4de7edda5e8af12daf0c052a0a075e8c9157" 2312 | "checksum wasm-bindgen-shared 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "7493fe67ad99672ef3de3e6ba513fb03db276358c8cc9588ce5a008c6e48ad68" 2313 | "checksum wasm-bindgen-webidl 0.2.53 (registry+https://github.com/rust-lang/crates.io-index)" = "8272d9a8831be66b30908996b71b3eaf9b83de050f89e4dc34826a19980eb59d" 2314 | "checksum web-sys 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)" = "0232f38e5c66384edaedaa726ae2d6313e3ed3ae860693c497a3193af3e161ce" 2315 | "checksum webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e664e770ac0110e2384769bcc59ed19e329d81f555916a6e072714957b81b4" 2316 | "checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" 2317 | "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164" 2318 | "checksum widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effc0e4ff8085673ea7b9b2e3c73f6bd4d118810c9009ed8f1e16bd96c331db6" 2319 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2320 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" 2321 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 2322 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2323 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2324 | "checksum winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" 2325 | "checksum winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7daf138b6b14196e3830a588acf1e86966c694d3e8fb026fb105b8b5dca07e6e" 2326 | "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 2327 | "checksum yaml-rust 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992" 2328 | --------------------------------------------------------------------------------