From 7e3ca9c62027cab5894d79ac62d3f917e0f7a711 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Fri, 14 Feb 2020 14:07:26 +0100 Subject: [PATCH] Generate working nix expression to build the nix package --- Cargo.nix | 6723 ++++++++++++++++++++++++++++----------------- crate-hashes.json | 243 +- 2 files changed, 4176 insertions(+), 2790 deletions(-) diff --git a/Cargo.nix b/Cargo.nix index 343a06e..9b00a11 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -1,122 +1,179 @@ -# Generated by crate2nix 0.6.1 with the command: +# This file was @generated by crate2nix 0.7.0-rc.2 with the command: # "generate" # See https://github.com/kolloch/crate2nix for more info. -{ pkgs? import { config = {}; }, - lib? pkgs.lib, - callPackage? pkgs.callPackage, - stdenv? pkgs.stdenv, - buildRustCrate? pkgs.buildRustCrate, - fetchurl? pkgs.fetchurl, - fetchCrate? pkgs.fetchCrate, - defaultCrateOverrides? pkgs.defaultCrateOverrides, +{ pkgs ? import { config = {}; } +, lib ? pkgs.lib +, stdenv ? pkgs.stdenv +, buildRustCrate ? pkgs.buildRustCrate + # This is used as the `crateOverrides` argument for `buildRustCrate`. +, defaultCrateOverrides ? pkgs.defaultCrateOverrides # The features to enable for the root_crate or the workspace_members. - rootFeatures? ["default"]}: +, rootFeatures ? [ "default" ] + # If true, throw errors instead of issueing deprecation warnings. +, strictDeprecation ? false +}: rec { # # "public" attributes that we attempt to keep stable with new versions of crate2nix. # - rootCrate = { + rootCrate = rec { packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; # Use this attribute to refer to the derivation building your root crate package. # You can override the features with rootCrate.build.override { features = [ "default" "feature1" ... ]; }. - build = buildRustCrateWithFeatures { - packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; - features = rootFeatures; + build = internal.buildRustCrateWithFeatures { + inherit packageId; }; + + # Debug support which might change between releases. + # File a bug if you depend on any for non-debug work! + debug = internal.debugCrate { inherit packageId; }; }; root_crate = - builtins.trace "root_crate is deprecated since crate2nix 0.4. Please use rootCrate instead." rootCrate.build; + internal.deprecationWarning + "root_crate is deprecated since crate2nix 0.4. Please use rootCrate instead." + rootCrate.build; # Refer your crate build derivation by name here. # You can override the features with # workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }. workspaceMembers = { - "hoc" = { + "hoc" = rec { packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; - build = buildRustCrateWithFeatures { + build = internal.buildRustCrateWithFeatures { packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; - features = rootFeatures; }; + + # Debug support which might change between releases. + # File a bug if you depend on any for non-debug work! + debug = internal.debugCrate { inherit packageId; }; }; }; workspace_members = - builtins.trace + internal.deprecationWarning "workspace_members is deprecated in crate2nix 0.4. Please use workspaceMembers instead." lib.mapAttrs (n: v: v.build) workspaceMembers; # - # "private" attributes that may change in every new version of crate2nix. + # "internal" ("private") attributes that may change in every new version of crate2nix. # - # Build and dependency information for crates. - # Many of the fields are passed one-to-one to buildRustCrate. - # - # Noteworthy: - # * `crateBin = [{name = ","; path = ",";}];`: a hack to disable building the binary. - # * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate. - # but with additional information which is used during dependency/feature resolution. - # * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging. + internal = rec { + # Build and dependency information for crates. + # Many of the fields are passed one-to-one to buildRustCrate. + # + # Noteworthy: + # * `crateBin = [{name = ","; path = ",";}];`: a hack to disable building the binary. + # * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate. + # but with additional information which is used during dependency/feature resolution. + # * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging. + # * `devDependencies` as of now not used by `buildRustCrate` but used to + # inject test dependencies into the build - crates = { - "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + crates = { + "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-codec"; version = "0.2.0"; edition = "2018"; - sha256 = "0q0c8l8pqhacgakmaz53az6fszdwdb0nwr5ds6cac9r9zz8ywagi"; + sha256 = "100k0n155fnnjqjz2s1gnwim2fp7s1mw942x0famg89cbh55zr89"; libName = "actix_codec"; authors = [ "Nikolay Kim " ]; - dependencies = { - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-core" = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-sink" = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = { + dependencies = [ + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-core"; + packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-sink"; + packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "tokio-util" = { + } + { + name = "tokio-util"; packageId = "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "codec" ]; - }; - }; - features = { - }; + } + ]; + }; - "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-connect"; version = "1.0.2"; edition = "2018"; - sha256 = "0c5dwgi9z1z4d319mdji3y97p3nsbla5jgi9546gf88wgi3q4jqa"; + sha256 = "0v77m394gzbrrzg12xkqgli11vwhig0zcxy3yhmq1s91j9bcjp69"; libName = "actix_connect"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-utils" = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "derive_more" = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "either" = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "http" = { + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-utils"; + packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "derive_more"; + packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "either"; + packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "trust-dns-proto" = "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "trust-dns-resolver" = "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "trust-dns-proto"; + packageId = "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "trust-dns-resolver"; + packageId = "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "uri" ]; "openssl" = [ "open-ssl" "tokio-openssl" ]; @@ -125,67 +182,184 @@ rec { }; resolvedDefaultFeatures = [ "default" "http" "uri" ]; }; - "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-http"; version = "1.0.1"; edition = "2018"; - sha256 = "0kly08m5idjk91mawpz3xz5b2b08gvqb2c43h82mkmhi3fbvcih0"; + sha256 = "06chrs9asbxmxzgiw5sw7ky97yrin9g88nmd6w407a6y9z668rn1"; libName = "actix_http"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-connect" = "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-threadpool" = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-utils" = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "base64" = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "brotli2" = { + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-connect"; + packageId = "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-threadpool"; + packageId = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-utils"; + packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "base64"; + packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "brotli2"; packageId = "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "chrono" = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "copyless" = "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "derive_more" = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "either" = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "encoding_rs" = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; - "failure" = { + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "chrono"; + packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "copyless"; + packageId = "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "derive_more"; + packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "either"; + packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "encoding_rs"; + packageId = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "failure"; packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "fail-ure"; optional = true; - }; - "flate2" = { + } + { + name = "flate2"; packageId = "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "futures-channel" = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-core" = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-util" = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "fxhash" = "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "h2" = "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "http" = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "httparse" = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "indexmap" = "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "language-tags" = "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "mime" = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; - "percent-encoding" = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "pin-project" = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "rand" = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "regex" = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_json" = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_urlencoded" = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "sha1" = "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "time" = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "futures-channel"; + packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-core"; + packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-util"; + packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fxhash"; + packageId = "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "h2"; + packageId = "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http"; + packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "httparse"; + packageId = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "indexmap"; + packageId = "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "language-tags"; + packageId = "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "mime"; + packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "percent-encoding"; + packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pin-project"; + packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "rand"; + packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "regex"; + packageId = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_json"; + packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_urlencoded"; + packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "sha1"; + packageId = "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "slab"; + packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "time"; + packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "actix-connect"; + packageId = "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "openssl" ]; + } + ]; features = { "compress" = [ "flate2" "brotli2" ]; "failure" = [ "fail-ure" ]; @@ -195,183 +369,311 @@ rec { }; resolvedDefaultFeatures = [ "brotli2" "compress" "default" "fail-ure" "failure" "flate2" ]; }; - "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-macros"; version = "0.1.1"; edition = "2018"; - sha256 = "0q7pww0k53vknmqs80qadrg605wxva7y3d9q8l4n82lz4h89i3xg"; + sha256 = "1dhn4fvw79pfnq5sc12pbq0wc06di4xfg4288fcbrr5vfvf5lw11"; procMacro = true; authors = [ "Nikolay Kim " ]; - dependencies = { - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; - }; - }; - features = { - }; + } + ]; + }; - "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-router"; version = "0.2.4"; edition = "2018"; - sha256 = "0y3bah2wqsmd72q4xqh8byk62g5b034pr52yhaz9lxz8ls2yrxma"; + sha256 = "1j1y7l4k2dfj3h72p81waskajyxrl6mp6lbwm3kwis4l9p510ylx"; libName = "actix_router"; authors = [ "Nikolay Kim " ]; - dependencies = { - "bytestring" = "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "http" = { + dependencies = [ + { + name = "bytestring"; + packageId = "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "regex" = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "regex"; + packageId = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "http"; + packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "http" ]; }; resolvedDefaultFeatures = [ "default" "http" ]; }; - "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-rt"; version = "1.0.0"; edition = "2018"; - sha256 = "0ls65i028lmdsbxq5bs5pyv3qhr99waldlhvv1w23jsbbgvkc592"; + sha256 = "0vgvnljgc4i40xwy5zxgiiyfcraam0k0sbvb94d48ikha1ahlsiz"; libName = "actix_rt"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-macros" = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-threadpool" = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "copyless" = "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = { + dependencies = [ + { + name = "actix-macros"; + packageId = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-threadpool"; + packageId = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "copyless"; + packageId = "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "rt-core" "rt-util" "io-driver" "tcp" "uds" "udp" "time" "signal" "stream" ]; - }; - }; - features = { - }; + } + ]; + }; - "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-server"; version = "1.0.1"; edition = "2018"; - sha256 = "1xb87xrblkncpq259zsfn53kfzp021ij2yd7xwfxfd3p3n0br47c"; + sha256 = "06l4y449sc74rd62a9snf4gqcjw8bjrjx0kvkpja6g60m9g4blsi"; libName = "actix_server"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-utils" = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "mio" = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; - "mio-uds" = "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)"; - "net2" = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; - "num_cpus" = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-utils"; + packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "mio"; + packageId = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "mio-uds"; + packageId = "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "net2"; + packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "num_cpus"; + packageId = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "slab"; + packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; - "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-service"; version = "1.0.5"; edition = "2018"; - sha256 = "0g6yv4rxxw51z5p05b0c1ibvdmm2lbjqq040ga3va8zb6xf6y7ad"; + sha256 = "0r3m51fackpwj73awg2fkr4yic4abyw4dfyhn9ql3qm7vyazrr6k"; libName = "actix_service"; authors = [ "Nikolay Kim " ]; - dependencies = { - "futures-util" = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "pin-project" = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "futures-util"; + packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pin-project"; + packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-testing"; version = "1.0.0"; edition = "2018"; - sha256 = "1fv0hb97dk29madnzmqxp4lns1vys0vnrk9r4pz3c2x6aq7c17q0"; + sha256 = "04f969nz596y9v0f07h8sw1yx8r2nvwslx7q1kzsh3idnx2lfja8"; libName = "actix_testing"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-macros" = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-server" = "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "net2" = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "actix-macros"; + packageId = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-server"; + packageId = "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "net2"; + packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-threadpool"; version = "0.3.1"; edition = "2018"; - sha256 = "1f1ccns3k90fx2x3vqs4hlw911pffd4yg58z64fjz3v55kvpmbga"; + sha256 = "0kp8qqihll3s6r7v4zxgqhdnmjl19pw9yw0k60q5zph14qcq4h6g"; libName = "actix_threadpool"; authors = [ "Nikolay Kim " ]; - dependencies = { - "derive_more" = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-channel" = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "num_cpus" = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "parking_lot" = "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "threadpool" = "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "derive_more"; + packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-channel"; + packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "num_cpus"; + packageId = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "parking_lot"; + packageId = "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "threadpool"; + packageId = "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-tls"; version = "1.0.0"; edition = "2018"; - sha256 = "0r657y880jjshqf9ikh9xqa62if2fkkijr334n9qsxcxrq6rvxvp"; + sha256 = "1a4m96jz6vzmknpk5m803c337c6dillnqq4w71nrlphhmzxb9rd4"; libName = "actix_tls"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-utils" = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "derive_more" = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "either" = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-utils"; + packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "derive_more"; + packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "either"; + packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "nativetls" = [ "native-tls" "tokio-tls" ]; "openssl" = [ "open-ssl" "tokio-openssl" ]; @@ -379,77 +681,184 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-utils"; version = "1.0.6"; edition = "2018"; - sha256 = "0vcbppj7a1jnap2svn969pka0br64nb480w5h7p4xiffswys1m7x"; + sha256 = "0kkz2hfz8r2k1gxcjk2qq1h1qxlb487g023q4v1dw6ph3dizby7w"; libName = "actix_utils"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "either" = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "pin-project" = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "either"; + packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pin-project"; + packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "slab"; + packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-web"; version = "2.0.0"; edition = "2018"; - sha256 = "1vkzd9irjmc59c8lm852367na5ra9g1lhkxvdz9z6yg09xi4kynm"; + sha256 = "0dgnn7xiw2yhvrx7l7b57gwra7yfqawka5xz1lpq4h0h8qifhn1i"; libName = "actix_web"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-http" = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-macros" = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-router" = "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-server" = "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-testing" = "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-threadpool" = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-tls" = "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-utils" = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-web-codegen" = "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "awc" = { + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-http"; + packageId = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-macros"; + packageId = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-router"; + packageId = "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-server"; + packageId = "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-testing"; + packageId = "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-threadpool"; + packageId = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-tls"; + packageId = "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-utils"; + packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-web-codegen"; + packageId = "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "awc"; packageId = "awc 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "derive_more" = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "encoding_rs" = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "fxhash" = "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "mime" = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; - "net2" = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; - "pin-project" = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "regex" = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = { + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "derive_more"; + packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "encoding_rs"; + packageId = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fxhash"; + packageId = "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "mime"; + packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "net2"; + packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pin-project"; + packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "regex"; + packageId = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "derive" ]; - }; - "serde_json" = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_urlencoded" = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "time" = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; - "url" = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "serde_json"; + packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_urlencoded"; + packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "time"; + packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "url"; + packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "compress" = [ "actix-http/compress" "awc/compress" ]; "default" = [ "compress" "failure" ]; @@ -460,100 +869,99 @@ rec { }; resolvedDefaultFeatures = [ "compress" "default" "failure" ]; }; - "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-web-codegen"; version = "0.2.0"; edition = "2018"; - sha256 = "0iws52fmafp3w39wbfa6n4hh2wnqnhblkqq55i61nphk3xqk2ab6"; + sha256 = "1mdxlzag8i217qfj3z5s0fbi3l4z68w66fkiliq3fqk21srph26y"; procMacro = true; authors = [ "Nikolay Kim " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" "parsing" ]; - }; - }; - features = { - }; + } + ]; + }; - "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "adler32"; version = "1.0.4"; edition = "2015"; - sha256 = "157bfkgcy4p3cclfv378x7clxcj3l23jj7sckjbqkmdjbi72y134"; + sha256 = "1hnan4fgmnidgn2k84hh2i67c3wp2c5iwd5hs61yi7gwwx1p6bjx"; authors = [ "Remi Rampin " ]; - features = { - }; + }; - "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "aho-corasick"; version = "0.7.8"; edition = "2015"; - sha256 = "0nclvmhz967mvqrg2040is0a21grjd0xhmmmm5pi7qwx0mxprgvk"; + sha256 = "048q5vr1qac4lf90z80lw8kcya6qmlxw857xhwxsssk832jdafkl"; libName = "aho_corasick"; authors = [ "Andrew Gallant " ]; - dependencies = { - "memchr" = { + dependencies = [ + { + name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "std" ]; "std" = [ "memchr/use_std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ansi_term"; version = "0.11.0"; edition = "2015"; - sha256 = "08fk0p2xvkqpmz3zlrwnf6l8sj2vngw464rvzspzp31sbgxbwm4v"; + sha256 = "16wpvrghvd0353584i1idnsgm0r3vchg8fyrm0x8ayv1rgvbljgf"; authors = [ "ogham@bsago.me" "Ryan Scheel (Havvy) " "Josh Triplett " ]; - dependencies = { - "winapi" = { + dependencies = [ + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "windows"); + target = { target, features }: (target."os" == "windows"); features = [ "errhandlingapi" "consoleapi" "processenv" ]; - }; - }; - features = { - }; + } + ]; + }; - "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "antidote"; version = "1.0.0"; edition = "2015"; - sha256 = "1x2wgaw603jcjwsfvc8s2rpaqjv0aqj8mvws2ahhkvfnwkdf7icw"; + sha256 = "19g2sw2qa2ibnh4x7j1snk46593jgx6y7rnvva496ynq61af5z9l"; authors = [ "Steven Fackler " ]; - features = { - }; + }; - "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "anyhow"; version = "1.0.26"; edition = "2018"; - sha256 = "1b7488a848vyb98kb4nf80syn0g2crnm1ns63dfjl6cicb603c6k"; + sha256 = "0g6mzcxyj88k8bv8rr3zx4yczgimqvvgr12n14a29sqj6s1zc9bq"; authors = [ "David Tolnay " ]; @@ -562,126 +970,181 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "arc-swap"; version = "0.4.4"; edition = "2015"; - sha256 = "1hkqmz1f5y28ir5bxgv75sa3i1q5kgdvrd8fyhhp7ip9mbx9gb90"; + sha256 = "1zwswfi9n7n3hiq51w1xv34572k2diazx680rrxlc9w07c9akf6p"; authors = [ "Michal 'vorner' Vaner " ]; features = { }; }; - "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "arrayvec"; version = "0.4.12"; edition = "2015"; - sha256 = "0g11if4ihxifdiiwk6brnywkpgbvfbfwxgfqw5a407hprcq3s49f"; + sha256 = "1fdiv5m627gh6flp4mpmi1mh647imm9x423licsr11psz97d97yd"; authors = [ "bluss" ]; - dependencies = { - "nodrop" = { + dependencies = [ + { + name = "nodrop"; packageId = "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "std" ]; "serde-1" = [ "serde" ]; }; resolvedDefaultFeatures = [ "array-sizes-33-128" "default" "std" ]; }; - "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "async-trait"; version = "0.1.24"; edition = "2018"; - sha256 = "1cpavs8f1bdl8wpxc4d1v8gr4kspsvdrzb4sazqzyak11q9kxc7q"; + sha256 = "1qd6h0bkcwn95k4gj9dk76xz2zyw9j7w008gv84d3bfzl4w1q2vm"; procMacro = true; authors = [ "David Tolnay " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" "visit-mut" ]; - }; - }; + } + ]; features = { }; }; - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "atty"; version = "0.2.14"; edition = "2015"; - sha256 = "18x3dv3clg1qyf0skj16b9zd9679dav2r81in85zdmb5aqd25564"; + sha256 = "1s7yslcs6a28c5vz7jwj63lkfgyx8mx99fdirlhi9lbhhzhrpcyr"; authors = [ "softprops " ]; - dependencies = { - "hermit-abi" = { + dependencies = [ + { + name = "hermit-abi"; packageId = "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "hermit"); - }; - "libc" = { + target = { target, features }: (target."os" == "hermit"); + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = target."unix"; - }; - "winapi" = { + target = { target, features }: target."unix"; + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ]; - }; - }; - features = { - }; + } + ]; + }; - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "autocfg"; version = "1.0.0"; edition = "2015"; - sha256 = "1hhgqh551gmws22z9rxbnsvlppwxvlj0nszj7n1x56pqa3j3swy7"; + sha256 = "17cv6pwb4q08s0ynpr4n8hv5299hcmhdgvdchzixfpw8y5qcgapq"; authors = [ "Josh Stone " ]; - features = { - }; + }; - "awc 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "awc 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "awc"; version = "1.0.1"; edition = "2018"; - sha256 = "1cjrb59gpgq6q5jmhy37z6l7sl2il1scjxhhpbz1ylmy0apjv6dj"; + sha256 = "1idacmq7n3irmdjkbxc5kdwspxk9w1gip94pcmfk7wky3m6isq6p"; authors = [ "Nikolay Kim " ]; - dependencies = { - "actix-codec" = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-http" = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-service" = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "base64" = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "derive_more" = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-core" = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "mime" = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; - "percent-encoding" = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "rand" = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_json" = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_urlencoded" = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "actix-codec"; + packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-http"; + packageId = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-service"; + packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "base64"; + packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "derive_more"; + packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-core"; + packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "mime"; + packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "percent-encoding"; + packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "rand"; + packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_json"; + packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_urlencoded"; + packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "actix-http"; + packageId = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "openssl" ]; + } + ]; features = { "compress" = [ "actix-http/compress" ]; "default" = [ "compress" ]; @@ -690,27 +1153,34 @@ rec { }; resolvedDefaultFeatures = [ "compress" ]; }; - "backtrace 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "backtrace 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "backtrace"; version = "0.3.44"; edition = "2018"; - sha256 = "19i5ary8nwk14k0z7gwdwlhs6h3ha9s44942qdy54xi0sbmwqnv0"; + sha256 = "0djmbf6caj7qm2p7jw6wzjxc83sji9gdd8vjp9mg2g0gyjdnn0z4"; authors = [ "The Rust Project Developers" ]; - dependencies = { - "backtrace-sys" = { + dependencies = [ + { + name = "backtrace-sys"; packageId = "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = { + } + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "rustc-demangle" = "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "rustc-demangle"; + packageId = "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" "libunwind" "libbacktrace" "dladdr" "dbghelp" ]; "gimli-symbolize" = [ "addr2line" "findshlibs" "memmap" "goblin" ]; @@ -722,51 +1192,57 @@ rec { }; resolvedDefaultFeatures = [ "backtrace-sys" "dbghelp" "default" "dladdr" "libbacktrace" "libunwind" "std" ]; }; - "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "backtrace-sys"; version = "0.1.32"; edition = "2015"; - sha256 = "1jrb7450v9kyqrjc97vzckbpwj9jakvc1jkq95i46g6mn9kvqkgr"; + sha256 = "14c406z8bdmms8a5l8cv79jfkz1mk10qk5p97izf4vai53qparax"; authors = [ "Alex Crichton " ]; - dependencies = { - "libc" = { + dependencies = [ + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - buildDependencies = { - "cc" = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + ]; + buildDependencies = [ + { + name = "cc"; + packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; - "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "badge"; version = "0.2.0"; edition = "2015"; - sha256 = "0qmd6kyyh223zr0x7k7dsh126sqz6mdd6rqxdayasif5b5816fnv"; + sha256 = "014np5njm4alz5xsavj2wky8hpx500rs6zq2d87vjdklcbza5f46"; libPath = "badge.rs"; authors = [ "Onur Aslan " ]; - dependencies = { - "base64" = "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "rusttype" = "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "base64"; + packageId = "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "rusttype"; + packageId = "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "base64"; version = "0.11.0"; edition = "2018"; - sha256 = "1idkqdfza39zyhl7ml4i2wq6dv2y331vj2nm9lshvmqbrc23j890"; + sha256 = "1iqmims6yvr6vwzyy54qd672zw29ipjj17p8klcr578c9ajpw6xl"; authors = [ "Alice Maz " "Marshall Pierce " @@ -776,29 +1252,32 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "base64"; version = "0.9.3"; edition = "2015"; - sha256 = "11hhz8ln4zbpn2h2gm9fbbb9j254wrd4fpmddlyah2rrnqsmmqkd"; + sha256 = "0hs62r35bgxslawyrn1vp9rmvrkkm76fqv0vqcwd048vs876r7a8"; authors = [ "Alice Maz " "Marshall Pierce " ]; - dependencies = { - "byteorder" = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "safemem" = "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "byteorder"; + packageId = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "safemem"; + packageId = "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bitflags"; version = "1.2.1"; edition = "2015"; - sha256 = "0b77awhpn7yaqjjibm69ginfn996azx5vkzfjj39g3wbsqs7mkxg"; + sha256 = "14qnd5nq8p2almk79m4m8ydqhd413yaxsyjp5xd19g3mikzf47fg"; authors = [ "The Rust Project Developers" ]; @@ -806,46 +1285,53 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "brotli-sys"; version = "0.3.2"; edition = "2015"; - sha256 = "0b68xckd06a5gvdykimgr5f0f2whrhj0lwqq6scy0viaargqkdnl"; + sha256 = "1kdfdbcba6zwa13xpjwgiplblkdf6vigxjbwwp6l2ascbylxwia4"; authors = [ "Alex Crichton " ]; - dependencies = { - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "cc" = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "cc"; + packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "brotli2"; version = "0.3.2"; edition = "2015"; - sha256 = "1daqrhn50rr8k03h7dd2zkjc0qn2c45q6hrmi642fnz0y5rfwm5y"; + sha256 = "13jnhpmfkqy2xar4lxrsk3rx3i12bgnarnsxq4arhc6yxb1kdc0c"; authors = [ "Alex Crichton " ]; - dependencies = { - "brotli-sys" = "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "brotli-sys"; + packageId = "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bumpalo"; version = "3.2.0"; edition = "2018"; - sha256 = "1kidhyyvar7mw59c6fbbrlfhwrym1qq35jn1kbwf2q98vc3fdzf2"; + sha256 = "0hpp4wfcn04gnl1ji4a80b85xwknsci81xqyllq174gq9z0rsd8z"; authors = [ "Nick Fitzgerald " ]; @@ -853,12 +1339,11 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bytecount"; version = "0.6.0"; edition = "2018"; - sha256 = "1jgxppazbx9802if2s9wbwhq8dg5fxmm0ylp3ipfzys818wba2fj"; + sha256 = "0vplsx73zncb7mz8x0fs3k0p0rz5bmavj09vjk5nqn4z6fa7h0dh"; authors = [ "Andre Bogus " "Joshua Landau " @@ -867,12 +1352,11 @@ rec { "generic-simd" = [ "packed_simd" ]; }; }; - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "byteorder"; version = "1.3.4"; edition = "2015"; - sha256 = "1hi7ixdls5qssw39wgp1gm8d20yjghgawc3m4xr2wkxmxsv08krz"; + sha256 = "1pkjfhgjnq898g1d38ygcfi0msg3m6756cwv0sgysj1d26p8mi08"; authors = [ "Andrew Gallant " ]; @@ -881,12 +1365,11 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bytes"; version = "0.5.4"; edition = "2018"; - sha256 = "0v7dcwfzya64c65haqydhyhkjk0czfrma14lrm7wkqmz4j4skpwh"; + sha256 = "1q9r7si1l8vndg4n2ny2nv833ghp5vyqzk5indb9rmhd5ibaq2hk"; authors = [ "Carl Lerche " "Sean McArthur " @@ -896,37 +1379,38 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bytestring"; version = "0.1.4"; edition = "2018"; - sha256 = "0yxdckappaf966a727vx45brb8jzgy5a1cf79vvfj4aa7y21sv22"; + sha256 = "1m7advs49l66s7nj72ic6scx1c1y8ah64k06fj4crxlfymkp89pw"; authors = [ "Nikolay Kim " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "c2-chacha"; version = "0.2.3"; edition = "2018"; - sha256 = "04vh0cc9g94cj6cq96sfv3lks7rx486jdn43rmqcvb2syh4y9dqj"; + sha256 = "1fzn2n9k51b8wp4m41pkdzwlk1dbkjb6ha9rqdp4jfmzl753hhi1"; authors = [ "The CryptoCorrosion Contributors" ]; - dependencies = { - "ppv-lite86" = { + dependencies = [ + { + name = "ppv-lite86"; packageId = "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "ppv-lite86"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "std" "simd" "rustcrypto_api" ]; "rustcrypto_api" = [ "stream-cipher" "byteorder" ]; @@ -935,34 +1419,33 @@ rec { }; resolvedDefaultFeatures = [ "simd" "std" ]; }; - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "cc"; version = "1.0.50"; edition = "2018"; # Hack to suppress building binaries - crateBin = [{name = ","; path = ",";}]; - sha256 = "1di84m338b9c42vfq86g5lyq5s03i0zfvvf59dvb6mr37z063h1d"; + crateBin = [ { name = ","; path = ","; } ]; + sha256 = "1kdqm8ka7xg9h56b694pcz29ka33fsz27mzrphqc78gx96h8zqlm"; authors = [ "Alex Crichton " ]; - dependencies = { - "jobserver" = { + dependencies = [ + { + name = "jobserver"; packageId = "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "parallel" = [ "jobserver" ]; }; resolvedDefaultFeatures = [ "jobserver" "parallel" ]; }; - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "cfg-if"; version = "0.1.10"; edition = "2018"; - sha256 = "0x52qzpbyl2f2jqs7kkqzgfki2cpq99gpfjjigdp8pwwfqk01007"; + sha256 = "08h80ihs74jcyp24cd75wwabygbbdgl05k6p5dmq8akbr78vv1a7"; authors = [ "Alex Crichton " ]; @@ -970,30 +1453,32 @@ rec { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; - "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "chrono"; version = "0.4.10"; edition = "2015"; - sha256 = "13yj8csdvzzcrw8g4946rip5wgvviafg6cg01m1r32vgnssb2kr5"; + sha256 = "00dw7k11hmkm7yhc1v9pi0lrk0n28k4r3rh9g9pk3bkb9m50p19i"; authors = [ "Kang Seonghoon " "Brandon W Maister " ]; - dependencies = { - "num-integer" = { + dependencies = [ + { + name = "num-integer"; packageId = "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "num-traits" = { + } + { + name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "time" = { + } + { + name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "bench" = [ "std" ]; "clock" = [ "time" "std" ]; @@ -1002,37 +1487,49 @@ rec { }; resolvedDefaultFeatures = [ "clock" "default" "std" "time" ]; }; - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "clap"; version = "2.33.0"; edition = "2015"; - sha256 = "054n9ngh6pkknpmd4acgdsp40iw6f5jzq8a4h2b76gnbvk6p5xjh"; + sha256 = "1nf6ld3bims1n5vfzhkvcb55pdzh04bbhzf8nil5vvw05nxzarsh"; authors = [ "Kevin K. " ]; - dependencies = { - "ansi_term" = { + dependencies = [ + { + name = "ansi_term"; packageId = "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = (!target."windows"); - }; - "atty" = { + target = { target, features }: (!target."windows"); + } + { + name = "atty"; packageId = "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "strsim" = { + } + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "strsim"; packageId = "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "textwrap" = "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "unicode-width" = "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"; - "vec_map" = { + } + { + name = "textwrap"; + packageId = "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "unicode-width"; + packageId = "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "vec_map"; packageId = "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "color" = [ "ansi_term" "atty" ]; "default" = [ "suggestions" "color" "vec_map" ]; @@ -1044,52 +1541,55 @@ rec { }; resolvedDefaultFeatures = [ "ansi_term" "atty" "color" "default" "strsim" "suggestions" "vec_map" ]; }; - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "cloudabi"; version = "0.0.3"; edition = "2015"; - sha256 = "1z9lby5sr6vslfd14d6igk03s7awf91mxpsfmsp3prxbxlk0x7h5"; + sha256 = "0kxcg83jlihy0phnd2g8c2c303px3l2p3pkjz357ll6llnd5pz6x"; libPath = "cloudabi.rs"; authors = [ "Nuxi (https://nuxi.nl/) and contributors" ]; - dependencies = { - "bitflags" = { + dependencies = [ + { + name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "default" = [ "bitflags" ]; }; resolvedDefaultFeatures = [ "bitflags" "default" ]; }; - "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "copyless"; version = "0.1.4"; edition = "2018"; - sha256 = "0dql42yb58lc9020mvb92jms5j9q0am1wp1ap8z0k0sjl1gcphzb"; + sha256 = "09s1fagd14fqch3xq9ijschay014la2i8hqfxw2rr95jkxncbybg"; authors = [ "Dzmitry Malyshau " ]; - features = { - }; + }; - "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "core-foundation"; version = "0.6.4"; edition = "2015"; - sha256 = "1kabsqxh01m6l2b1gz8wgn0d1k6fyczww9kaks0sbmsz5g78ngzx"; + sha256 = "0va97wf49c8dzm9c8pgyk1jn7z21rl0bj1syf2zz5m2z2hzy1f95"; authors = [ "The Servo Project Developers" ]; - dependencies = { - "core-foundation-sys" = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "core-foundation-sys"; + packageId = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ]; "mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ]; @@ -1097,78 +1597,82 @@ rec { "with-uuid" = [ "uuid" ]; }; }; - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "core-foundation-sys"; version = "0.6.2"; edition = "2015"; - sha256 = "1n2v6wlqkmqwhl7k6y50irx51p37xb0fcm3njbman82gnyq8di2c"; + sha256 = "0fzsw1j9g1x598yhwklg59l15hwzc0pyvs01w9fg2kin4598mjp7"; authors = [ "The Servo Project Developers" ]; features = { }; }; - "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "crc32fast"; version = "1.2.0"; edition = "2015"; - sha256 = "1mx88ndqln6vzg7hjhjp8b7g0qggpqggsjrlsdqrfsrbpdzffcn8"; + sha256 = "1c9dhkvf3brrzzplcijaywxi2w8wv5578i0ryhcm7x8dmzi5s4ms"; authors = [ "Sam Rijs " "Alex Crichton " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "derive_more"; version = "0.99.2"; edition = "2018"; - sha256 = "1jv55l4fmwsxwwvv3y59cnzcfnh28yvrc291b45nnh8qj3fdz5jz"; + sha256 = "1s6a87q7izsj3i786gify9swf05h9c1ygg0mhgk6v5kr542bwn91"; procMacro = true; authors = [ "Jelte Fennema " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "extra-traits" ]; - }; - }; + } + ]; features = { "default" = [ "add_assign" "add" "as_mut" "as_ref" "constructor" "deref" "deref_mut" "display" "from" "from_str" "index" "index_mut" "into" "into_iterator" "iterator" "mul_assign" "mul" "not" "sum" "try_into" ]; "generate-parsing-rs" = [ "peg" ]; }; resolvedDefaultFeatures = [ "add" "add_assign" "as_mut" "as_ref" "constructor" "default" "deref" "deref_mut" "display" "from" "from_str" "index" "index_mut" "into" "into_iterator" "iterator" "mul" "mul_assign" "not" "sum" "try_into" ]; }; - "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "dtoa"; version = "0.4.5"; edition = "2015"; - sha256 = "15npcbjlkd9wm82x7gf1al7sn4rfd3jqzq5ysiy4qz1wsbrlsghv"; + sha256 = "18qycvcp0vaqzw0j784ansbxgs39l54ini9v719cy2cs3ghsjn23"; authors = [ "David Tolnay " ]; - features = { - }; + }; - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "either"; version = "1.5.3"; edition = "2015"; - sha256 = "040fgh0jahqra9ascwb986zgll1ss88ky9bfvn0zfay42zsyz83n"; + sha256 = "1qyz1b1acad6w0k5928jw5zaq900zhsk7p8dlcp4hh61w4f6n7xv"; authors = [ "bluss" ]; @@ -1177,61 +1681,74 @@ rec { }; resolvedDefaultFeatures = [ "default" "use_std" ]; }; - "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "encoding_rs"; version = "0.8.22"; edition = "2015"; - sha256 = "04y2jav1ckrajvba1pp2jxmfc3iyjk9d6nhnl23x70b59qbkwrnl"; + sha256 = "0a5wckbnpjjgxvvycahy5vw31br7x2xxgylxc0qi837ylzx073fd"; authors = [ "Henri Sivonen " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "fast-legacy-encode" = [ "fast-hangul-encode" "fast-hanja-encode" "fast-kanji-encode" "fast-gb-hanzi-encode" "fast-big5-hanzi-encode" ]; "simd-accel" = [ "packed_simd" "packed_simd/into_bits" ]; }; }; - "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "enum-as-inner"; version = "0.3.0"; edition = "2018"; - sha256 = "1i7widx9ddr6vg6qn2ihwnmaqxfqjc76w846ymsydnksrn175rh9"; + sha256 = "0bj914fh5b57j1ij66m021l9pdhvp1bnpwpahhl4qgsjprznq2lh"; procMacro = true; authors = [ "Benjamin Fry " ]; - dependencies = { - "heck" = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "heck"; + packageId = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; + packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "failure"; version = "0.1.6"; edition = "2015"; - sha256 = "09qsxzrxzqz7h76sd5klfk6nq407way77j898519ll7pr5yk3j65"; + sha256 = "1nay5c2cgi40kp84rbiir1dgwlh9aap9jazbnxfmqrkpr49ky9zq"; authors = [ "Without Boats " ]; - dependencies = { - "backtrace" = { + dependencies = [ + { + name = "backtrace"; packageId = "backtrace 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "failure_derive" = { + } + { + name = "failure_derive"; packageId = "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "default" = [ "std" "derive" ]; "derive" = [ "failure_derive" ]; @@ -1239,43 +1756,68 @@ rec { }; resolvedDefaultFeatures = [ "backtrace" "default" "derive" "failure_derive" "std" ]; }; - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "failure_derive"; version = "0.1.6"; edition = "2015"; - sha256 = "00ps2s591hh2sicdv3ix6gv3qf39n5qf67q0mjff90ha8hvsykpj"; + sha256 = "022xfb9wcs1bdssfm2airsrfxpn2ccpbyh1ld2wf9483isvjbhhb"; procMacro = true; authors = [ "Without Boats " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; - "synstructure" = "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; + packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "synstructure"; + packageId = "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { }; }; - "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "flate2"; version = "1.0.13"; edition = "2018"; - sha256 = "18ky7mpla3mpw29ix5xb47vag294s32491mm5pxbrx7ywybay095"; + sha256 = "03rwyh691j20ih2vcskwp1sinhf9paggrkv32fvzwli9fpsddmkb"; authors = [ "Alex Crichton " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "crc32fast" = "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "miniz_oxide" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "crc32fast"; + packageId = "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "miniz_oxide"; packageId = "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."arch" == "wasm32") && (!(target."os" == "emscripten"))); - }; - }; + optional = true; + } + { + name = "miniz_oxide"; + packageId = "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)"; + target = { target, features }: ((target."arch" == "wasm32") && (!(target."os" == "emscripten"))); + } + ]; features = { "default" = [ "rust_backend" ]; "rust_backend" = [ "miniz_oxide" ]; @@ -1284,116 +1826,121 @@ rec { }; resolvedDefaultFeatures = [ "default" "miniz_oxide" "rust_backend" ]; }; - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fnv"; version = "1.0.6"; edition = "2015"; - sha256 = "128mlh23y3gg6ag5h8iiqlcbl59smisdzraqy88ldrf75kbw27ip"; + sha256 = "1ww56bi1r5b8id3ns9j3qxbi7w5h005rzhiryy0zi9h97raqbb9g"; libPath = "lib.rs"; authors = [ "Alex Crichton " ]; - features = { - }; + }; - "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "foreign-types"; version = "0.3.2"; edition = "2015"; - sha256 = "105n8sp2djb1s5lzrw04p7ss3dchr5qa3canmynx396nh3vwm2p8"; + sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn"; authors = [ "Steven Fackler " ]; - dependencies = { - "foreign-types-shared" = "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "foreign-types-shared"; + packageId = "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "foreign-types-shared"; version = "0.1.1"; edition = "2015"; - sha256 = "0b6cnvqbflws8dxywk4589vgbz80049lz4x1g9dfy4s1ppd3g4z5"; + sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"; authors = [ "Steven Fackler " ]; - features = { - }; + }; - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fuchsia-zircon"; version = "0.3.3"; edition = "2015"; - sha256 = "0jrf4shb1699r4la8z358vri8318w4mdi6qzfqy30p2ymjlca4gk"; + sha256 = "10jxc5ks1x06gpd0xg51kcjrxr35nj6qhx2zlc5n7bmskv3675rf"; authors = [ "Raph Levien " ]; - dependencies = { - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "fuchsia-zircon-sys" = "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fuchsia-zircon-sys"; + packageId = "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fuchsia-zircon-sys"; version = "0.3.3"; edition = "2015"; - sha256 = "08jp1zxrm9jbrr6l26bjal4dbm8bxfy57ickdgibsqxr1n9j3hf5"; + sha256 = "19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix"; authors = [ "Raph Levien " ]; - features = { - }; + }; - "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures"; version = "0.3.4"; edition = "2018"; - sha256 = "0x84abzfq22q2n91ki0qxnxj2234vz2l8wriqppw6ycc4p8a0990"; + sha256 = "105p5bwjf2dsclvi95g784n6b51az8ibdhjgmr2gn0imfpl9lcjw"; authors = [ "Alex Crichton " ]; - dependencies = { - "futures-channel" = { + dependencies = [ + { + name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "sink" ]; - }; - "futures-core" = { + } + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-executor" = { + } + { + name = "futures-executor"; packageId = "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - }; - "futures-io" = { + } + { + name = "futures-io"; packageId = "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-sink" = { + } + { + name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-task" = { + } + { + name = "futures-task"; packageId = "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-util" = { + } + { + name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "sink" ]; - }; - }; + } + ]; features = { "alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ]; "async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ]; @@ -1410,26 +1957,27 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "async-await" "default" "executor" "futures-executor" "std" ]; }; - "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-channel"; version = "0.3.4"; edition = "2018"; - sha256 = "0y193rdyniid2nzad1mhwhp5a9lplb5my25yw8lwhcfaddqzcfhz"; + sha256 = "1a7iq7m4ggq2njrm7h1x2v2gxzxkd2160awk0fwrrpcfrq27vizh"; authors = [ "Alex Crichton " ]; - dependencies = { - "futures-core" = { + dependencies = [ + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-sink" = { + } + { + name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "alloc" = [ "futures-core/alloc" ]; "cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" ]; @@ -1440,12 +1988,11 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ]; }; - "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-core"; version = "0.3.4"; edition = "2018"; - sha256 = "03046fyq5s9qyfsary392jc1h65vdw4piya5ksnajd21g8ma6kdz"; + sha256 = "0jj6mjvjbvv36r6w86lmjkh62mwndz901nsq4fwqjpl2d7vr4mgj"; authors = [ "Alex Crichton " ]; @@ -1455,29 +2002,31 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; - "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-executor"; version = "0.3.4"; edition = "2018"; - sha256 = "0q6jf2caqbccpj54041zmziz5ap1l5zvwhq4q46yygpvn8hwkwp9"; + sha256 = "1fj1jw8g7l5v1sf7lh0w0smq596vmxaxzklh98l3fnxipkhz6x7n"; authors = [ "Alex Crichton " ]; - dependencies = { - "futures-core" = { + dependencies = [ + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-task" = { + } + { + name = "futures-task"; packageId = "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-util" = { + } + { + name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "std" ]; "std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ]; @@ -1485,12 +2034,11 @@ rec { }; resolvedDefaultFeatures = [ "std" ]; }; - "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-io"; version = "0.3.4"; edition = "2018"; - sha256 = "0nmhb0lfw5h79qfkklr1hrrvpzz1cdnjq7xqq60qbii71b5mp7qk"; + sha256 = "1ihd1429kyfncxpc4mvina1hbppywfqzql6zrnjcflk1m6d9af56"; authors = [ "Alex Crichton " ]; @@ -1499,35 +2047,42 @@ rec { }; resolvedDefaultFeatures = [ "std" ]; }; - "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-macro"; version = "0.3.4"; edition = "2018"; - sha256 = "1b2hvhvl5f0haky329kwdlak6rcfinvnv33nxh1p3qczqqk97fqy"; + sha256 = "19r3akc8y0br6jbx0lh1cfq07n8f23g7qfaag4m59xz17nm82l4s"; procMacro = true; authors = [ "Taylor Cramer " "Taiki Endo " ]; - dependencies = { - "proc-macro-hack" = "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro-hack"; + packageId = "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; - }; - }; - features = { - }; + } + ]; + }; - "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-sink"; version = "0.3.4"; edition = "2018"; - sha256 = "0363cl3srph7xzd01lq8vigh8vyx8g15ha3hv95k3vzcn4nsqdvr"; + sha256 = "19n88jlh8cwam4gqzj4vj9g130vg9ir0m1bv11dxj5619cdq4ril"; authors = [ "Alex Crichton " ]; @@ -1537,12 +2092,11 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; - "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-task"; version = "0.3.4"; edition = "2018"; - sha256 = "0xh5apdfk9kna15yiax57601n21x7qrmbqzmf86acv6qwp474z11"; + sha256 = "09ss6zg7w36s3y2715bnvfrnwr3b8vnklmxag00wvkgn7kjk82kv"; authors = [ "Alex Crichton " ]; @@ -1552,64 +2106,76 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "std" ]; }; - "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-util"; version = "0.3.4"; edition = "2018"; - sha256 = "0dbra0yqszrp8rfhqr87gayyy5zskikn42sxfsargxzxwa06id4m"; + sha256 = "1i84h30q2q93y4l4bk2g22mp96aws02a0k9qy3nnnc34bpr6qxi2"; authors = [ "Alex Crichton " ]; - dependencies = { - "futures-channel" = { + dependencies = [ + { + name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; - }; - "futures-core" = { + } + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-io" = { + } + { + name = "futures-io"; packageId = "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; - }; - "futures-macro" = { + } + { + name = "futures-macro"; packageId = "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - }; - "futures-sink" = { + } + { + name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - }; - "futures-task" = { + } + { + name = "futures-task"; packageId = "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "memchr" = { + } + { + name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "pin-utils" = "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro-hack" = { + } + { + name = "pin-utils"; + packageId = "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro-hack"; packageId = "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "proc-macro-nested" = { + } + { + name = "proc-macro-nested"; packageId = "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "slab" = { + } + { + name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "alloc" = [ "futures-core/alloc" "futures-task/alloc" ]; "async-await-macro" = [ "async-await" "futures-macro" "proc-macro-hack" "proc-macro-nested" ]; @@ -1626,76 +2192,97 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "proc-macro-hack" "proc-macro-nested" "sink" "slab" "std" ]; }; - "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fxhash"; version = "0.2.1"; edition = "2015"; - sha256 = "0p4mfqswwxhkkskdpjld581ksg3cipfs85jbw7znljhkz40l9fjj"; + sha256 = "037mb9ichariqi45xm6mz0b11pa92gj38ba0409z3iz239sns6y3"; libPath = "lib.rs"; authors = [ "cbreeden " ]; - dependencies = { - "byteorder" = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "byteorder"; + packageId = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "getrandom"; version = "0.1.14"; edition = "2018"; - sha256 = "1i6r4q7i24zdy6v5h3l966a1cf8a1aip2fi1pmdsi71sk1m3w7wr"; + sha256 = "1sq30li71h19rhnhs1h6576ja68insajx8wvh1nn088r8pc8vg3s"; authors = [ "The Rand Project Developers" ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = target."unix"; - }; - "wasi" = { + target = { target, features }: target."unix"; + } + { + name = "wasi"; packageId = "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "wasi"); - }; - }; + target = { target, features }: (target."os" == "wasi"); + } + ]; features = { "rustc-dep-of-std" = [ "compiler_builtins" "core" ]; "test-in-browser" = [ "wasm-bindgen" ]; }; resolvedDefaultFeatures = [ "std" ]; }; - "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "git2"; version = "0.11.0"; edition = "2018"; - sha256 = "0s8spbbf8p50arh5pawnwj7vq454vv24vr7hnagmnxxr0hl4bf6k"; + sha256 = "1i0fgsr91r97hsjbgqnymkcyiyg0057m7m04116k3vmyqpvrwlbp"; authors = [ "Josh Triplett " "Alex Crichton " ]; - dependencies = { - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "libgit2-sys" = "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "openssl-probe" = { + dependencies = [ + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libgit2-sys"; + packageId = "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "openssl-probe"; packageId = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = (target."unix" && (!(target."os" == "macos"))); - }; - "openssl-sys" = { + target = { target, features }: (target."unix" && (!(target."os" == "macos"))); + } + { + name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = (target."unix" && (!(target."os" == "macos"))); - }; - "url" = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + target = { target, features }: (target."unix" && (!(target."os" == "macos"))); + } + { + name = "url"; + packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "ssh" "https" "ssh_key_from_memory" ]; "https" = [ "libgit2-sys/https" "openssl-sys" "openssl-probe" ]; @@ -1705,181 +2292,277 @@ rec { }; resolvedDefaultFeatures = [ "default" "https" "openssl-probe" "openssl-sys" "ssh" "ssh_key_from_memory" ]; }; - "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "h2"; version = "0.2.1"; edition = "2018"; - sha256 = "1pcpj3s6a8gqnhvsskn9fjczj984f7348k6pzaprn1rfdyhlpphc"; + sha256 = "1lc87gmqzk83inanqrigk6idfj5iq0gnf6x6smpp7hbiwiqkshxr"; authors = [ "Carl Lerche " "Sean McArthur " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "fnv" = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-core" = { + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fnv"; + packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-sink" = { + } + { + name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-util" = { + } + { + name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "http" = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "indexmap" = "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = { + } + { + name = "http"; + packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "indexmap"; + packageId = "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "slab"; + packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "io-util" "sync" ]; - }; - "tokio-util" = { + } + { + name = "tokio-util"; packageId = "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "codec" ]; - }; - }; + } + ]; + devDependencies = [ + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "dns" "macros" "rt-core" "tcp" ]; + } + ]; features = { }; }; - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "heck"; version = "0.3.1"; edition = "2015"; - sha256 = "1q7vmnlh62kls6cvkfhbcacxkawaznaqa5wwm9dg1xkcza846c3d"; + sha256 = "01a2v7yvkiqxakdqz4hw3w3g4sm52ivz9cs3qcsv2arxsmw4wmi0"; authors = [ "Without Boats " ]; - dependencies = { - "unicode-segmentation" = "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "unicode-segmentation"; + packageId = "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hermit-abi"; version = "0.1.6"; edition = "2015"; - sha256 = "1kzjq2qhy927jq3anycz2ijpskfx5d38p4vp68mz60c8ffzjkr5s"; + sha256 = "0wippj5nkw9q5yyyaqpdrgdhag3l3nbrwja7149cwn7ii1nnbwpg"; authors = [ "Stefan Lankes" ]; - dependencies = { - "libc" = { + dependencies = [ + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "rustc-dep-of-std" = [ "core" "compiler_builtins/rustc-dep-of-std" "libc/rustc-dep-of-std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; - "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)" - = rec { + "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)" = rec { crateName = "hoc"; version = "0.11.5"; edition = "2018"; + crateBin = [ + { name = "hoc"; path = "src/main.rs"; } + ]; src = (builtins.filterSource sourceFilter ./.); authors = [ "Valentin Brandl " ]; - dependencies = { - "actix-rt" = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "actix-web" = "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "badge" = "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "git2" = "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "log4rs" = "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "number_prefix" = "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "openssl-probe" = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "reqwest" = "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_derive" = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde_json" = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; - "structopt" = "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "ructe" = "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "vergen" = "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "actix-rt"; + packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "actix-web"; + packageId = "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "badge"; + packageId = "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "git2"; + packageId = "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log4rs"; + packageId = "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "number_prefix"; + packageId = "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "openssl-probe"; + packageId = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "reqwest"; + packageId = "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_derive"; + packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde_json"; + packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "structopt"; + packageId = "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "ructe"; + packageId = "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "vergen"; + packageId = "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hostname"; version = "0.1.5"; edition = "2015"; - sha256 = "1383lcnzmiqm0bz0i0h33rvbl5ma125ca5lfnx4qzx1dzdz0wl2a"; + sha256 = "0kprf862qaa7lwdms6aw7f3275h0j2rwhs9nz5784pm8hdmb9ki1"; authors = [ "fengcen " ]; - dependencies = { - "libc" = { + dependencies = [ + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."unix" || (target."os" == "redox")); - }; - "winutil" = { + target = { target, features }: (target."unix" || (target."os" == "redox")); + } + { + name = "winutil"; packageId = "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - }; + target = { target, features }: target."windows"; + } + ]; features = { }; }; - "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "http"; version = "0.2.0"; edition = "2018"; - sha256 = "0n2nk147bscbgs02rmfzlfwbyq5rlc2xwbw39v0p4hsprra16clz"; + sha256 = "0sqm60mi6ha9x9cfx393qqg5s6hjg8dadfakdw15jd290rzwq25p"; authors = [ "Alex Crichton " "Carl Lerche " "Sean McArthur " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "fnv" = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "itoa" = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fnv"; + packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "itoa"; + packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "http-body"; version = "0.3.1"; edition = "2018"; - sha256 = "179g14kk0fjhnanr0ah1dkvjwwxi1lbcxsczhkph2jyc847cnzd0"; + sha256 = "06qi0ni45lb92w3ml260c0bxbq5zd4snjmz0a9k69xq6021zzm8k"; authors = [ "Carl Lerche " "Lucio Franco " "Sean McArthur " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "http" = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http"; + packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "httparse"; version = "1.3.4"; edition = "2015"; - sha256 = "0dggj4s0cq69bn63q9nqzzay5acmwl33nrbhjjsh5xys8sk2x4jw"; + sha256 = "1yf23ldnjwfkkhkca7f4w15mky9961gjz28dlwyybhphc7l9l5yd"; authors = [ "Sean McArthur " ]; @@ -1888,60 +2571,113 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "humantime"; version = "1.3.0"; edition = "2015"; - sha256 = "1y7q207gg33jr5rnlnb0h08k00i54g9fypf3drjk8g1sq2swn92r"; + sha256 = "0krwgbf35pd46xvkqg14j070vircsndabahahlv3rwhflpy4q06z"; authors = [ "Paul Colomiets " ]; - dependencies = { - "quick-error" = "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "quick-error"; + packageId = "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hyper"; version = "0.13.2"; edition = "2018"; - sha256 = "1ih989i3hmcpz6pfzsh3d7d8mama9z3r58qbd4fvk7vyipywn2l6"; + sha256 = "0gl973c5qw3wkckicsa1ylhb1fzrvvjf8cdslwmffjv3pixm477s"; authors = [ "Sean McArthur " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-channel" = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-core" = { + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-channel"; + packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "futures-util" = { + } + { + name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "h2" = "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "http" = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "http-body" = "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "httparse" = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "itoa" = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "net2" = { + } + { + name = "h2"; + packageId = "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http"; + packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http-body"; + packageId = "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "httparse"; + packageId = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "itoa"; + packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "pin-project" = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "time" = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = { + } + { + name = "pin-project"; + packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "time"; + packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "sync" ]; - }; - "tower-service" = "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "want" = "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "tower-service"; + packageId = "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "want"; + packageId = "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "futures-util"; + packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + usesDefaultFeatures = false; + features = [ "alloc" ]; + } + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "fs" "macros" "io-std" "rt-util" "sync" "time" "test-util" ]; + } + ]; features = { "default" = [ "runtime" "stream" ]; "runtime" = [ "tcp" "tokio/rt-core" ]; @@ -1949,138 +2685,166 @@ rec { }; resolvedDefaultFeatures = [ "net2" "tcp" ]; }; - "hyper-tls 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "hyper-tls 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hyper-tls"; version = "0.4.1"; edition = "2018"; - sha256 = "1cq3lh1q8i3xl24z6bpvmhlszr27d516hhx515y10cc141cw1myz"; + sha256 = "1amg79v9dmcc7r4s471544w8pr57fxmw7s9l0xim759b804d7p1s"; authors = [ "Sean McArthur " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "hyper" = { + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "hyper"; packageId = "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "tcp" ]; - }; - "native-tls" = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio-tls" = "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "native-tls"; + packageId = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio-tls"; + packageId = "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "io-std" "macros" ]; + } + ]; features = { "vendored" = [ "native-tls/vendored" ]; }; }; - "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "idna"; version = "0.2.0"; edition = "2015"; - sha256 = "1mm05aq43qc5n492njnac5xn4rhiraii25xc0hwppr471jzijh8d"; + sha256 = "1a9066imqpdrm1aavfasdyb1zahqaz8jmdcwdawvb1pf60y6gqh2"; authors = [ "The rust-url developers" ]; - dependencies = { - "matches" = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "unicode-bidi" = "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "unicode-normalization" = "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "matches"; + packageId = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "unicode-bidi"; + packageId = "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "unicode-normalization"; + packageId = "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "indexmap"; version = "1.3.2"; edition = "2015"; - sha256 = "0dkidxq5q2a17symqni0k6m2jfap339bxnd3dd83dr556jh5dz89"; + sha256 = "14i2gmq9pwaafvlxmsc12j6539hjgqk4j4jz40fz763vbcn08vq7"; authors = [ "bluss" "Josh Stone " ]; - buildDependencies = { - "autocfg" = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + buildDependencies = [ + { + name = "autocfg"; + packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "serde-1" = [ "serde" ]; }; }; - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "iovec"; version = "0.1.4"; edition = "2015"; - sha256 = "1wy7rsm8rx6y4rjy98jws1aqxdy0v5wbz9whz73p45cwpsg4prfa"; + sha256 = "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj"; authors = [ "Carl Lerche " ]; - dependencies = { - "libc" = { + dependencies = [ + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - }; - features = { - }; + target = { target, features }: target."unix"; + } + ]; + }; - "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ipconfig"; version = "0.2.1"; edition = "2018"; - sha256 = "1lik8g8wrp9i2i8y5i9l8w21023cvd42m9rxmw04hq72f8hfmk4v"; + sha256 = "0gyqiqr4nk2dw9ild1aq3hnv6984sgydfdq7ki586q5ydwhzlyda"; authors = [ "Liran Ringel " ]; - dependencies = { - "socket2" = { + dependencies = [ + { + name = "socket2"; packageId = "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - "widestring" = { + target = { target, features }: target."windows"; + } + { + name = "widestring"; packageId = "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - "winapi" = { + target = { target, features }: target."windows"; + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - "winreg" = { + target = { target, features }: target."windows"; + } + { + name = "winreg"; packageId = "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - }; - features = { - }; + target = { target, features }: target."windows"; + } + ]; + }; - "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "itertools"; version = "0.8.2"; edition = "2015"; - sha256 = "08ibirc0yiijx66aqszx4psz08zkn4fp4627dym94xcrib12na9r"; + sha256 = "1154j48aw913v5jnyhpxialxhdn2sfpl4d7bwididyb1r05jsspm"; authors = [ "bluss" ]; - dependencies = { - "either" = { + dependencies = [ + { + name = "either"; packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "use_std" ]; }; resolvedDefaultFeatures = [ "default" "use_std" ]; }; - "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "itoa"; version = "0.4.5"; edition = "2015"; - sha256 = "102dgh2d1779jyi63kgah61d4d92ql05ydmq7iwlcykdv9pabnpx"; + sha256 = "13nxqrfnh83a7x5rw4wq2ilp8nxvwy74dxzysdg59dbxqk0agdxq"; authors = [ "David Tolnay " ]; @@ -2089,64 +2853,67 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "jobserver"; version = "0.1.21"; edition = "2018"; - sha256 = "04zhb31lfnjyp97ggq80c9k1zflj31j5mvkcccji9d3xynnlwhzs"; + sha256 = "1wm7h76xf7a4d0q6583agbsyl2s46vndrlnr015zffclpcz32waw"; authors = [ "Alex Crichton " ]; - dependencies = { - "libc" = { + dependencies = [ + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - }; - features = { - }; + target = { target, features }: target."unix"; + } + ]; + }; - "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "js-sys"; version = "0.3.35"; edition = "2018"; - sha256 = "1gp32jxksz3pkn1plkm18zyymw0lfql4a31wa225f5ajr6r1zyl6"; + sha256 = "1ybwazllkbif71i195dadgrsw64k6l04ggk5yimiy5c2cb1wg2bq"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "wasm-bindgen" = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "wasm-bindgen"; + packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "kernel32-sys"; version = "0.2.2"; edition = "2015"; - sha256 = "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj"; + sha256 = "1389av0601a9yz8dvx5zha9vmkd6ik7ax0idpb032d28555n41vm"; libName = "kernel32"; authors = [ "Peter Atashian " ]; - dependencies = { - "winapi" = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "winapi-build" = "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "winapi"; + packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "winapi-build"; + packageId = "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "language-tags"; version = "0.2.2"; edition = "2015"; - sha256 = "1zkrdzsqzzc7509kd7nngdwrp461glm2g09kqpzaqksp82frjdvy"; + sha256 = "16hrjdpa827carq5x4b8zhas24d8kg4s16m6nmmn1kb7cr5qh7d9"; authors = [ "Pyfisch " ]; @@ -2154,12 +2921,11 @@ rec { "heap_size" = [ "heapsize" "heapsize_plugin" ]; }; }; - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lazy_static"; version = "1.4.0"; edition = "2015"; - sha256 = "13h6sdghdcy7vcqsm2gasfw3qg7ssa0fl3sw7lq6pdkbk52wbyfr"; + sha256 = "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2"; authors = [ "Marvin Löbel " ]; @@ -2167,31 +2933,41 @@ rec { "spin_no_std" = [ "spin" ]; }; }; - "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lexical-core"; version = "0.4.6"; edition = "2015"; - sha256 = "1vx2z1alab53r1fwwqzaixxxc9h803k6rr8cf4zyzmjp1zc7s6hi"; + sha256 = "056bqpjbpkv2fwbd9630d32af0havx3x4da8787h4jwc4b5vq113";type = [ "lib" "staticlib" "cdylib" ]; authors = [ "Alex Huszagh " ]; - dependencies = { - "arrayvec" = { + dependencies = [ + { + name = "arrayvec"; packageId = "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; features = [ "array-sizes-33-128" ]; - }; - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "ryu" = { + } + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "ryu"; packageId = "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "static_assertions" = "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "rustc_version" = "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "static_assertions"; + packageId = "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "rustc_version"; + packageId = "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "correct" = [ "arrayvec" "table" ]; "default" = [ "correct" "ryu" "std" ]; @@ -2199,12 +2975,11 @@ rec { }; resolvedDefaultFeatures = [ "arrayvec" "correct" "default" "ryu" "std" "table" ]; }; - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libc"; version = "0.2.66"; edition = "2015"; - sha256 = "0wz5fdpjpj8qp7wx7gq9rqckd2bdv7hcm5631hq03amxy5ikhi3l"; + sha256 = "0n0mwry21fxfwc063k33mvxk8xj7ia5ar8m42c9ymbam2ksb25fm"; authors = [ "The Rust Project Developers" ]; @@ -2215,105 +2990,137 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libgit2-sys"; version = "0.10.0"; edition = "2018"; - sha256 = "0li02hwq7s5s2bh34bss81insgm2zajba4yqrvkzpv2ji63w02p6"; + sha256 = "0l9fvki7qxsl97vgzqwlv75nl213a5vxw7b1jaik97ala356pv6r"; libName = "libgit2_sys"; libPath = "lib.rs"; authors = [ "Josh Triplett " "Alex Crichton " ]; - dependencies = { - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "libssh2-sys" = { + dependencies = [ + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libssh2-sys"; packageId = "libssh2-sys 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "libz-sys" = "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)"; - "openssl-sys" = { + } + { + name = "libz-sys"; + packageId = "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = target."unix"; - }; - }; - buildDependencies = { - "cc" = { + target = { target, features }: target."unix"; + } + ]; + buildDependencies = [ + { + name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "parallel" ]; - }; - "pkg-config" = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "pkg-config"; + packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "https" = [ "openssl-sys" ]; "ssh" = [ "libssh2-sys" ]; }; resolvedDefaultFeatures = [ "https" "libssh2-sys" "openssl-sys" "ssh" "ssh_key_from_memory" ]; }; - "libssh2-sys 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "libssh2-sys 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libssh2-sys"; version = "0.2.14"; edition = "2015"; - sha256 = "063kbca6fx1p9hp572529w1y6ywqq0vamxhvr181s4pbayzmrsjd"; + sha256 = "042gsgbvxgm5by4mk906j3zm4qdvzcfhjxrb55is1lrr6f0nxain"; libName = "libssh2_sys"; libPath = "lib.rs"; authors = [ "Alex Crichton " "Wez Furlong " ]; - dependencies = { - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "libz-sys" = "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)"; - "openssl-sys" = { + dependencies = [ + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libz-sys"; + packageId = "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - }; - buildDependencies = { - "cc" = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; - "pkg-config" = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; - "vcpkg" = { + target = { target, features }: target."unix"; + } + ]; + buildDependencies = [ + { + name = "cc"; + packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pkg-config"; + packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "vcpkg"; packageId = "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."env" == "msvc"); - }; - }; + target = {target, features}: (target."env" == "msvc"); + } + ]; features = { "vendored-openssl" = [ "openssl-sys/vendored" ]; }; }; - "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libz-sys"; version = "1.0.25"; edition = "2015"; - sha256 = "195jzg8mgjbvmkbpx1rzkzrqm0g2fdivk79v44c9lzl64r3f9fym"; + sha256 = "1gjycyl2283525abks98bhxa4r259m617xfm5z52p3p3c8ry9d9f"; authors = [ "Alex Crichton " ]; - dependencies = { - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "cc" = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; - "pkg-config" = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; - "vcpkg" = { + dependencies = [ + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "cc"; + packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pkg-config"; + packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "vcpkg"; packageId = "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."env" == "msvc"); - }; - }; + target = {target, features}: (target."env" == "msvc"); + } + ]; features = { }; }; - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "linked-hash-map"; version = "0.5.2"; edition = "2015"; - sha256 = "17bpcphlhrxknzvikmihiqm690wwyr0zridyilh1dlxgmrxng7pd"; + sha256 = "10qgbvh00q36ql0jh00rxh2jlq6qvl11n6mig0cvkpf4xf5bd4df"; authors = [ "Stepan Koltsov " "Andrew Paseltiner " @@ -2323,135 +3130,156 @@ rec { "serde_impl" = [ "serde" "serde_test" ]; }; }; - "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lock_api"; version = "0.3.3"; edition = "2018"; - sha256 = "1a58wdkns5zvk0kvjjvg71z6zp0zwwzyppsl07mh76d6rczjhzi7"; + sha256 = "0yzlz7f5xl5sm129dq8jqsrcrkyv7jjnqwd4zr4ijsdlxjaxxckr"; authors = [ "Amanieu d'Antras " ]; - dependencies = { - "scopeguard" = { + dependencies = [ + { + name = "scopeguard"; packageId = "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { }; }; - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "log"; version = "0.4.8"; edition = "2015"; - sha256 = "0wvzzzcn89dai172rrqcyz06pzldyyy0lf0w71csmn206rdpnb15"; + sha256 = "1xz18ixccl5c6np4linv3ypc7hpmmgpc5zzd2ymp2ssfx0mhbdhl"; authors = [ "The Rust Project Developers" ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "kv_unstable_sval" = [ "kv_unstable" "sval/fmt" ]; }; resolvedDefaultFeatures = [ "serde" "std" ]; }; - "log-mdc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "log-mdc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "log-mdc"; version = "0.1.0"; edition = "2015"; - sha256 = "0lqdid3dbi6ikikbqnmnlm7rm488x58k4b5mw39qmkxl3i00v74h"; + sha256 = "1iw1x3qhjvrac35spikn5h06a1rxd9vw216jk8h52jhz9i0j2kd9"; authors = [ "Steven Fackler " ]; - features = { - }; + }; - "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "log4rs"; version = "0.10.0"; edition = "2018"; - sha256 = "1gnri2phb7pzhmq77a9q0nz12ys1p6g8k9shmmlrhbiv496m8yz2"; + sha256 = "0wgf8jh6zk0pyamadila02smrpa1cm4bwz82rzfri5y54jbbjgc5"; authors = [ "Steven Fackler " "Evan Simmons " ]; - dependencies = { - "antidote" = { + dependencies = [ + { + name = "antidote"; packageId = "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "arc-swap" = "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "chrono" = { + } + { + name = "arc-swap"; + packageId = "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "chrono"; packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "flate2" = { + } + { + name = "flate2"; packageId = "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "fnv" = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "humantime" = { + } + { + name = "fnv"; + packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "humantime"; packageId = "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "libc" = { + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = (!target."windows"); - }; - "log" = { + target = { target, features }: (!target."windows"); + } + { + name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "std" ]; - }; - "log-mdc" = { + } + { + name = "log-mdc"; packageId = "log-mdc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "serde" = { + } + { + name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "serde-value" = { + } + { + name = "serde-value"; packageId = "serde-value 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "serde_derive" = { + } + { + name = "serde_derive"; packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "serde_json" = { + } + { + name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "serde_yaml" = { + } + { + name = "serde_yaml"; packageId = "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "thread-id" = { + } + { + name = "thread-id"; packageId = "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "typemap" = { + } + { + name = "typemap"; packageId = "typemap 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "winapi" = { + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "handleapi" "minwindef" "processenv" "winbase" "wincon" ]; - }; - }; + } + ]; features = { "all_components" = [ "console_appender" "file_appender" "rolling_file_appender" "compound_policy" "delete_roller" "fixed_window_roller" "size_trigger" "json_encoder" "pattern_encoder" "threshold_filter" ]; "console_appender" = [ "console_writer" "simple_writer" "pattern_encoder" ]; @@ -2470,41 +3298,40 @@ rec { }; resolvedDefaultFeatures = [ "all_components" "ansi_writer" "antidote" "chrono" "compound_policy" "console_appender" "console_writer" "default" "delete_roller" "file" "file_appender" "fixed_window_roller" "flate2" "gzip" "humantime" "json_encoder" "libc" "log-mdc" "pattern_encoder" "rolling_file_appender" "serde" "serde-value" "serde_derive" "serde_json" "serde_yaml" "simple_writer" "size_trigger" "thread-id" "threshold_filter" "typemap" "winapi" "yaml_format" ]; }; - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lru-cache"; version = "0.1.2"; edition = "2015"; - sha256 = "0h5qj65hiibsgw01zmy940c654rh0a34cwirrlc57pxyq4cpk0gq"; + sha256 = "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii"; authors = [ "Stepan Koltsov " ]; - dependencies = { - "linked-hash-map" = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "linked-hash-map"; + packageId = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "heapsize_impl" = [ "heapsize" "linked-hash-map/heapsize_impl" ]; }; }; - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "matches"; version = "0.1.8"; edition = "2015"; - sha256 = "03hl636fg6xggy0a26200xs74amk3k9n0908rga2szn68agyz3cv"; + sha256 = "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z"; libPath = "lib.rs"; authors = [ "Simon Sapin " ]; - features = { - }; + }; - "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "md5"; version = "0.7.0"; edition = "2015"; - sha256 = "0wm8p4xr40sgl0mdvqvs7w42s5v9jpaianmadkszsclmkmy8a5zc"; + sha256 = "0wcps37hrhz59fkhf8di1ppdnqld6l1w5sdy7jp7p51z0i4c8329"; authors = [ "Ivan Ukhov " "Kamal Ahmad " @@ -2521,12 +3348,11 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "memchr"; version = "2.3.0"; edition = "2015"; - sha256 = "0sf6y998273290a6zxx5c28ps196vzz3q9yd0v5jxflpm3bp52f1"; + sha256 = "08r2qw1wwvvahicjj94ci05qx3ya5ixgrpbiq23kya6vgq6f55ri"; authors = [ "Andrew Gallant " "bluss" @@ -2537,234 +3363,282 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" "use_std" ]; }; - "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mime"; version = "0.3.16"; edition = "2015"; - sha256 = "1bq7n29iaqvdw0csrc24mdsij890x0sfar9wbi01k84y9kd3i292"; + sha256 = "13dcm9lh01hdwfjcg74ppljyjfj1c6w3a3cwkhxf0w8wa37cfq1a"; authors = [ "Sean McArthur " ]; - features = { - }; + }; - "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mime_guess"; version = "2.0.1"; edition = "2015"; - sha256 = "18wrpddfxipwhhw5q7wdykdcp0sm0zq7jizjrcvdnrg80kyg8nsk"; + sha256 = "16c5ssgali30db6jh1cndy77dd1qgcykhshiyfyjvxxf94wx03hs"; authors = [ "Austin Bonander " ]; - dependencies = { - "mime" = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; - "unicase" = "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "unicase" = "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "mime"; + packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "unicase"; + packageId = "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "unicase"; + packageId = "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "rev-mappings" ]; }; resolvedDefaultFeatures = [ "default" "rev-mappings" ]; }; - "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "miniz_oxide"; version = "0.3.6"; edition = "2018"; - sha256 = "1b1fzsj3y60fqnx6n2pi0g1lanav9hw0sy9vyah3dq1ilrbfa17s"; + sha256 = "198n4hfpq0qcxf275l6fpzh7b9cl7ck2xs6pjgpds74bazv9yrxa"; authors = [ "Frommi " "oyvindln " ]; - dependencies = { - "adler32" = "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "adler32"; + packageId = "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mio"; version = "0.6.21"; edition = "2015"; - sha256 = "08z31q5fx4irmp3hsvlzqy541swda8ixhs69adm95j97xz5ikmys"; + sha256 = "13q02a7cwc140aygf8amadpzpl5lyj3p2r4wnvgydfpnphifqb9h"; authors = [ "Carl Lerche " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "fuchsia-zircon" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fuchsia-zircon"; packageId = "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "fuchsia"); - }; - "fuchsia-zircon-sys" = { + target = { target, features }: (target."os" == "fuchsia"); + } + { + name = "fuchsia-zircon-sys"; packageId = "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "fuchsia"); - }; - "iovec" = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "kernel32-sys" = { + target = { target, features }: (target."os" == "fuchsia"); + } + { + name = "iovec"; + packageId = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "kernel32-sys"; packageId = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - "libc" = { + target = { target, features }: target."windows"; + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "miow" = { + target = { target, features }: target."unix"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "miow"; packageId = "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - "net2" = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; - "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "winapi" = { + target = { target, features }: target."windows"; + } + { + name = "net2"; + packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "slab"; + packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "winapi"; packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - }; + target = { target, features }: target."windows"; + } + ]; features = { "default" = [ "with-deprecated" ]; }; resolvedDefaultFeatures = [ "default" "with-deprecated" ]; }; - "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mio-uds"; version = "0.6.7"; edition = "2015"; - sha256 = "1gff9908pvvysv7zgxvyxy7x34fnhs088cr0j8mgwj8j24mswrhm"; + sha256 = "09gimdbnj7b9yca99pk8lxh9jhl79msj795c8fxi2sqr9slmfqln"; authors = [ "Alex Crichton " ]; - dependencies = { - "iovec" = { + dependencies = [ + { + name = "iovec"; packageId = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - "libc" = { + target = { target, features }: target."unix"; + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - "mio" = { + target = { target, features }: target."unix"; + } + { + name = "mio"; packageId = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - }; - features = { - }; + target = { target, features }: target."unix"; + } + ]; + }; - "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "miow"; version = "0.2.1"; edition = "2015"; - sha256 = "14f8zkc6ix7mkyis1vsqnim8m29b6l55abkba3p2yz7j1ibcvrl0"; + sha256 = "06g9b8sqlh5gxakwqq4rrib07afwanfnxgxajrldwcgk3hxjy7wc"; authors = [ "Alex Crichton " ]; - dependencies = { - "kernel32-sys" = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "net2" = { + dependencies = [ + { + name = "kernel32-sys"; + packageId = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "winapi" = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "ws2_32-sys" = "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + } + { + name = "winapi"; + packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "ws2_32-sys"; + packageId = "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "native-tls"; version = "0.2.3"; edition = "2015"; - sha256 = "19bmkzcj2qvyxchlqa1yg2g5awjmk6sigm20mfwajfcczbq3dc6j"; + sha256 = "0ki7cj4wzyd2nach4qdjly69sp7rs0yz3n3z2ii4mm1gqajg2bab"; authors = [ "Steven Fackler " ]; - dependencies = { - "lazy_static" = { + dependencies = [ + { + name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."os" == "macos") || (target."os" == "ios")); - }; - "libc" = { + target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."os" == "macos") || (target."os" == "ios")); - }; - "log" = { + target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); + } + { + name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); - }; - "openssl" = { + target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); + } + { + name = "openssl"; packageId = "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); - }; - "openssl-probe" = { + target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); + } + { + name = "openssl-probe"; packageId = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); - }; - "openssl-sys" = { + target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); + } + { + name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); - }; - "schannel" = { + target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); + } + { + name = "schannel"; packageId = "schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "windows"); - }; - "security-framework" = { + target = { target, features }: (target."os" == "windows"); + } + { + name = "security-framework"; packageId = "security-framework 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."os" == "macos") || (target."os" == "ios")); - }; - "security-framework-sys" = { + target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); + } + { + name = "security-framework-sys"; packageId = "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."os" == "macos") || (target."os" == "ios")); - }; - "tempfile" = { + target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); + } + { + name = "tempfile"; packageId = "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."os" == "macos") || (target."os" == "ios")); - }; - }; + target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); + } + ]; features = { "vendored" = [ "openssl/vendored" ]; }; }; - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "net2"; version = "0.2.33"; edition = "2015"; - sha256 = "1qnmajafgybj5wyxz9iffa8x5wgbwd2znfklmhqj7vl6lw1m65mq"; + sha256 = "126g3fgfxp06zimc1l9iyxnn9cif1hjsg7sd81nlls5nnyghsma2"; authors = [ "Alex Crichton " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = ((target."os" == "redox") || target."unix"); - }; - "winapi" = { + target = { target, features }: ((target."os" == "redox") || target."unix"); + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "handleapi" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ]; - }; - }; + } + ]; features = { "default" = [ "duration" ]; }; resolvedDefaultFeatures = [ "default" "duration" ]; }; - "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "nodrop"; version = "0.1.14"; edition = "2015"; - sha256 = "0b4adir378n2irr76z8grc9jxif8vlyy01rid8j4r716y9y4dg9r"; + sha256 = "1fz1v9r8ijacf0hlq0pdv5l9mz8vgqg1snmhvpjmi9aci1b4mvvj"; authors = [ "bluss" ]; @@ -2773,24 +3647,27 @@ rec { "use_union" = [ "nodrop-union" ]; }; }; - "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "nom"; version = "4.2.3"; edition = "2015"; - sha256 = "0rg7n0nif70052wlaffmgxmmlvi6xm7zpqmzfq9d8wr9376lpn2h"; + sha256 = "1mkvby8b4m61p4g1px0pwr58yfkphyp1jcfbp4qfp7l6iqdaklia"; authors = [ "contact@geoffroycouprie.com" ]; - dependencies = { - "memchr" = { + dependencies = [ + { + name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - buildDependencies = { - "version_check" = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + ]; + buildDependencies = [ + { + name = "version_check"; + packageId = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" ]; "regexp" = [ "regex" ]; @@ -2800,28 +3677,32 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; - "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "nom"; version = "5.1.0"; edition = "2018"; - sha256 = "0y2pfcnbvkhny93mv984xg2gwrw47cbj1wxaifl7m1jv25gspsbw"; + sha256 = "01sfs72wrrfbicb2dz41w682d7qb7ahjygajg3zyfv7y0paz8cy4"; authors = [ "contact@geoffroycouprie.com" ]; - dependencies = { - "lexical-core" = { + dependencies = [ + { + name = "lexical-core"; packageId = "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "memchr" = { + } + { + name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - buildDependencies = { - "version_check" = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + ]; + buildDependencies = [ + { + name = "version_check"; + packageId = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" "lexical" ]; "lexical" = [ "lexical-core" ]; @@ -2831,87 +3712,94 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "default" "lexical" "lexical-core" "std" ]; }; - "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num-integer"; version = "0.1.42"; edition = "2015"; - sha256 = "08kffmbar1bl9hy4zlv3qnns29fwvm4c7vl0dlklkcw0k9lbg2wc"; + sha256 = "1fpw8yr9xwsf3qrh91rm7mzqaiwlc2dmnalsxv9pr9w1klpacviz"; authors = [ "The Rust Project Developers" ]; - dependencies = { - "num-traits" = { + dependencies = [ + { + name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - buildDependencies = { - "autocfg" = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + ]; + buildDependencies = [ + { + name = "autocfg"; + packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" ]; "i128" = [ "num-traits/i128" ]; "std" = [ "num-traits/std" ]; }; }; - "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num-traits"; version = "0.1.43"; edition = "2015"; - sha256 = "1zdzx78vrcg3f39w94pqjs1mwxl1phyv7843hwgwkzggwcxhhf6s"; + sha256 = "0c9whknf2dm74a3cqirafy6gj83a76gl56g4v3g19k6lkwz13rcj"; authors = [ "The Rust Project Developers" ]; - dependencies = { - "num-traits" = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "num-traits"; + packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num-traits"; version = "0.2.11"; edition = "2015"; - sha256 = "0vr6ca475yglxdz7qriasdziq0cqn54z0z1xkmiqlnjx30plwmbl"; + sha256 = "15khrlm1bra50nd48ijl1vln13m9xg4fxzghf28jp16ic5zf8ay6"; authors = [ "The Rust Project Developers" ]; - buildDependencies = { - "autocfg" = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + buildDependencies = [ + { + name = "autocfg"; + packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num_cpus"; version = "1.12.0"; edition = "2015"; - sha256 = "053115487n4v2v045gjp0wh0q3lziribn67hwxjdddqq95l2m45m"; + sha256 = "1riw641hsmp2vwb9wz7d26dsycrjbw3zf4nd6p18kzw5y1a3a826"; authors = [ "Sean McArthur " ]; - dependencies = { - "hermit-abi" = { + dependencies = [ + { + name = "hermit-abi"; packageId = "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (((target."arch" == "x86_64") || (target."arch" == "aarch64")) && (target."os" == "hermit")); - }; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + target = { target, features }: (((target."arch" == "x86_64") || (target."arch" == "aarch64")) && (target."os" == "hermit")); + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "number_prefix"; version = "0.3.0"; edition = "2015"; - sha256 = "1dpvqrrvv87wx662iv1gjjjqz6dgyqfw4ywg9slrvpsa9qykxdxa"; + sha256 = "0slm4mqmpgs6hvz22ycny9lvyvl9ivs80a1lncslp7lszz02zc0p"; authors = [ "Benjamin Sago " ]; @@ -2920,120 +3808,154 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "openssl"; version = "0.10.28"; edition = "2015"; - sha256 = "1gfnzmhzrpyzhhcimmn9khxz4x65c5llm6blq04p1jmd2i6xmszx"; + sha256 = "0llb6xhl4albcm616nf40sgv278d7d91xnnnf1ixvmr2k1s96clp"; authors = [ "Steven Fackler " ]; - dependencies = { - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "foreign-types" = "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "openssl-sys" = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "foreign-types"; + packageId = "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "openssl-sys"; + packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "vendored" = [ "openssl-sys/vendored" ]; }; }; - "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "openssl-probe"; version = "0.1.2"; edition = "2015"; - sha256 = "1a89fznx26vvaxyrxdvgf6iwai5xvs6xjvpjin68fgvrslv6n15a"; + sha256 = "1pijrdifgsdwd45b08c2g0dsmnhz7c3kmagb70839ngrd7d29bvp"; authors = [ "Alex Crichton " ]; - features = { - }; + }; - "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "openssl-sys"; version = "0.9.54"; edition = "2015"; - sha256 = "161hmrb747c6j5178hdl5i7pabhxrl963ji8jz2xk0fdzw2y7wkg"; + sha256 = "11h98n78nk5c2ar57qs4yfjrb41s4lzxm9l7a1ahl83ljyjw090h"; build = "build/main.rs"; authors = [ "Alex Crichton " "Steven Fackler " ]; - dependencies = { - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "autocfg" = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "cc" = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; - "pkg-config" = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; - "vcpkg" = { + dependencies = [ + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "autocfg"; + packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "cc"; + packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pkg-config"; + packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "vcpkg"; packageId = "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."env" == "msvc"); - }; - }; + target = {target, features}: (target."env" == "msvc"); + } + ]; features = { "vendored" = [ "openssl-src" ]; }; }; - "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ordered-float"; version = "0.5.2"; edition = "2015"; - sha256 = "0fi22n6q4n9wimkfhacbryy76k128x8mjrzh38wffsnchpwg5gbn"; + sha256 = "17b6ck0kvdwfch742ndixbbj9fivylnnn53s5hlkyp948fb2bdby"; authors = [ "Jonathan Reem " ]; - dependencies = { - "num-traits" = { + dependencies = [ + { + name = "num-traits"; packageId = "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "unreachable" = "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + } + { + name = "unreachable"; + packageId = "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ordered-float"; version = "1.0.2"; edition = "2015"; - sha256 = "1bwjh1gkh2n6zqb2q1a04gkskgz3hxbj3w7fvhx6yd7l0nbmbd1b"; + sha256 = "0625x96987kspdxbikry5mb7hsf5pdc5bbanxd8wjwqlx0ar71hq"; authors = [ "Jonathan Reem " "Matt Brubeck " ]; - dependencies = { - "num-traits" = { + dependencies = [ + { + name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "std" ]; "std" = [ "num-traits/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "parking_lot"; version = "0.10.0"; edition = "2018"; - sha256 = "18lcl51vf9phcav52cci3wqqrszy175vxw7yfhn875sigwyf60sy"; + sha256 = "1z0wgf2sd1266y768kxxs3313zjfzj9r3k7j4arfaz0bmd4qrscj"; authors = [ "Amanieu d'Antras " ]; - dependencies = { - "lock_api" = "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "parking_lot_core" = "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "lock_api"; + packageId = "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "parking_lot_core"; + packageId = "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ]; "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ]; @@ -3042,134 +3964,138 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "parking_lot_core"; version = "0.7.0"; edition = "2018"; - sha256 = "1xg0cylxi94vj3vfy8dpcb774i5hpzz64yaks3nzxy6hgznr36v2"; + sha256 = "1wdbrvh35nn09ga570vl5062dpwfbrwgzyrlhhy78ifzhj2870km"; authors = [ "Amanieu d'Antras " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "cloudabi" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "cloudabi"; packageId = "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "cloudabi"); - }; - "libc" = { + target = { target, features }: (target."os" == "cloudabi"); + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - "redox_syscall" = { + target = { target, features }: target."unix"; + } + { + name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "redox"); - }; - "smallvec" = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "winapi" = { + target = { target, features }: (target."os" == "redox"); + } + { + name = "smallvec"; + packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ]; - }; - }; + } + ]; features = { "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ]; }; }; - "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "percent-encoding"; version = "2.1.0"; edition = "2015"; - sha256 = "0i838f2nr81585ckmfymf8l1x1vdmx6n8xqvli0lgcy60yl2axy3"; + sha256 = "0bp3zrsk3kr47fbpipyczidbbx4g54lzxdm77ni1i3qws10mdzfl"; libPath = "lib.rs"; authors = [ "The rust-url developers" ]; - features = { - }; + }; - "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-project"; version = "0.4.8"; edition = "2018"; - sha256 = "0wb1j947sinyr5sqc5wjxljs250rpfsm7aazy0mswg9jcv1v4zss"; + sha256 = "0b3pfbqfy3hhgq62zvbw7m0a4d55mrgnll9w8l9jymyrm1is813q"; authors = [ "Taiki Endo " ]; - dependencies = { - "pin-project-internal" = { + dependencies = [ + { + name = "pin-project-internal"; packageId = "pin-project-internal 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - features = { - }; + } + ]; + }; - "pin-project-internal 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "pin-project-internal 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-project-internal"; version = "0.4.8"; edition = "2018"; - sha256 = "11gzk6fx0s6cyh5fhzwvfy6ds864szw93df8xb7m3s4f2kiblr0n"; + sha256 = "0gwvrd8y9x1zfhwqw9qg3l2yi1969ad58aldqq839krfbyj24lrq"; procMacro = true; authors = [ "Taiki Endo " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" "visit-mut" ]; - }; - }; - features = { - }; + } + ]; + }; - "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-project-lite"; version = "0.1.4"; edition = "2018"; - sha256 = "01pjrqsjxh1ypqcy07wk7jwmns89mkq8zgjmanjnzx261sw69s79"; + sha256 = "1bljczwz9yyb6jskjhbkilcbdg7v1mhfwzp2mxknzf7v1isl8y13"; authors = [ "Taiki Endo " ]; - features = { - }; + }; - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-utils"; version = "0.1.0-alpha.4"; edition = "2018"; - sha256 = "1fl7h1f6gr7qj903k3ir2vw993gbj4dd775s0idq4pzsbjqjj3x1"; + sha256 = "11xmyx00n4m37d546by2rxb8ryxs12v55cc172i3yak1rqccd52q"; authors = [ "Josef Brandl " ]; - features = { - }; + }; - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pkg-config"; version = "0.3.17"; edition = "2015"; - sha256 = "0f83cnls5a6y97k8b3a54xhmyrjybj29qq6rwvz450qdsy5ff8vj"; + sha256 = "0xynnaxdv0gzadlw4h79j855k0q7rj4zb9xb1vk00nc6ss559nh5"; authors = [ "Alex Crichton " ]; - features = { - }; + }; - "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ppv-lite86"; version = "0.2.6"; edition = "2018"; - sha256 = "1mlbp0713frbyvcbjmc5vl062b0vr58agkv3ar2qqi5plgy9b7ib"; + sha256 = "06zs492wbms7j5qhy58cs3976c7kyc47rx0d6fn63rgvp580njbl"; authors = [ "The CryptoCorrosion Contributors" ]; @@ -3178,168 +4104,213 @@ rec { }; resolvedDefaultFeatures = [ "simd" "std" ]; }; - "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-error"; version = "0.4.8"; edition = "2018"; - sha256 = "0cs1yy9bd7xxl2p0nn05imz5qi5glhrjya0qag8yh6805arnrwrc"; + sha256 = "02jfpscv0fcqdi98a9rzkk423csmh4flgm0ac45s4bzjk9spfl47"; authors = [ "CreepySkeleton " ]; - dependencies = { - "proc-macro-error-attr" = "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro-error-attr"; + packageId = "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - buildDependencies = { - "rustversion" = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + } + ]; + buildDependencies = [ + { + name = "rustversion"; + packageId = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "rustversion"; + packageId = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-error-attr"; version = "0.4.8"; edition = "2018"; - sha256 = "06i00rh8rj1wxdywfs08yfji0ykqc3w65pyh11nrgwjkcjq8dfkb"; + sha256 = "0yiwdy12lhv1l1jwnhnb46jh377hdppsafyp3sh52hv6lagpswf5"; procMacro = true; authors = [ "CreepySkeleton " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "rustversion" = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "rustversion"; + packageId = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "derive" "parsing" "proc-macro" ]; - }; - "syn-mid" = "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + } + { + name = "syn-mid"; + packageId = "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-hack"; version = "0.5.11"; edition = "2018"; - sha256 = "0cnpfl5x7cac9d94in5r93b29frski33jhvgp7n6qih9gpsxqn80"; + sha256 = "1idz5vmnjjhvr51yvwyjb45mza18wa53fr05m1skqvbdyw15gm7c"; procMacro = true; authors = [ "David Tolnay " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; + packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-nested"; version = "0.1.3"; edition = "2015"; - sha256 = "1xbai316ygv2gxc9vjb8b2nr6xia3ahc19nh66vkwnvz1nc90gya"; + sha256 = "0bmlksm8vl44wkwihmwr7jsjznhbg0n7aibcw1cs2jgjcp86x6in"; authors = [ "David Tolnay " ]; - features = { - }; + }; - "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro2"; version = "1.0.8"; edition = "2018"; - sha256 = "1xly6h56wzyg4lazds659vzxfj8g3fd392jjpzh6fh8a7dp1w543"; + sha256 = "0j45p176fnw0d02dzcky9sxyr4fadiggq07skmblwspqdxy33jrs"; authors = [ "Alex Crichton " ]; - dependencies = { - "unicode-xid" = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "unicode-xid"; + packageId = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "quick-error"; version = "1.2.3"; edition = "2015"; - sha256 = "17gqp7ifp6j5pcnk450f964a5jkqmy71848x69ahmsa9gyzhkh7x"; + sha256 = "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51"; authors = [ "Paul Colomiets " "Colin Kiegel " ]; - features = { - }; + }; - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "quote"; version = "1.0.2"; edition = "2018"; - sha256 = "0r7030w7dymarn92gjgm02hsm04fwsfs6f1l20wdqiyrm9z8rs5q"; + sha256 = "1zkc46ryacf2jdkc6krsy2z615xbk1x8kp1830rcxz3irj5qqfh5"; authors = [ "David Tolnay " ]; - dependencies = { - "proc-macro2" = { + dependencies = [ + { + name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand"; version = "0.7.3"; edition = "2018"; - sha256 = "1amg6qj53ylq3ix22n27kmj1gyj6i15my36mkayr30ndymny0b8r"; + sha256 = "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva"; authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; - dependencies = { - "getrandom" = { + dependencies = [ + { + name = "getrandom"; packageId = "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "getrandom_package"; optional = true; - }; - "libc" = { + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - target = target."unix"; - }; - "rand_chacha" = { + target = { target, features }: target."unix"; + } + { + name = "rand_chacha"; packageId = "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = (!(target."os" == "emscripten")); - }; - "rand_core" = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "rand_hc" = { + target = { target, features }: (!(target."os" == "emscripten")); + } + { + name = "rand_core"; + packageId = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "rand_hc"; packageId = "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "emscripten"); - }; - }; + target = { target, features }: (target."os" == "emscripten"); + } + ]; + devDependencies = [ + { + name = "rand_hc"; + packageId = "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "alloc" = [ "rand_core/alloc" ]; "default" = [ "std" ]; @@ -3353,108 +4324,113 @@ rec { }; resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "getrandom_package" "libc" "std" ]; }; - "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand_chacha"; version = "0.2.1"; edition = "2018"; - sha256 = "0zpp3wmxhhmripb6bywhzhx5rfwl4dfbny85hpalwdj0sncv0p0k"; + sha256 = "0lv8imzzl4h2glm6sjj8mkvasgi8jym23ya48dakyln7m06sk8h3"; authors = [ "The Rand Project Developers" "The Rust Project Developers" "The CryptoCorrosion Contributors" ]; - dependencies = { - "c2-chacha" = { + dependencies = [ + { + name = "c2-chacha"; packageId = "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "simd" ]; - }; - "rand_core" = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "rand_core"; + packageId = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" "simd" ]; "std" = [ "c2-chacha/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand_core"; version = "0.5.1"; edition = "2018"; - sha256 = "19qfnh77bzz0x2gfsk91h0gygy0z1s5l3yyc2j91gmprq60d6s3r"; + sha256 = "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch"; authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; - dependencies = { - "getrandom" = { + dependencies = [ + { + name = "getrandom"; packageId = "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "serde1" = [ "serde" ]; "std" = [ "alloc" "getrandom" "getrandom/std" ]; }; resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ]; }; - "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand_hc"; version = "0.2.0"; edition = "2018"; - sha256 = "0592q9kqcna9aiyzy6vp3fadxkkbpfkmi2cnkv48zhybr0v2yf01"; + sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa"; authors = [ "The Rand Project Developers" ]; - dependencies = { - "rand_core" = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "rand_core"; + packageId = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "redox_syscall"; version = "0.1.56"; edition = "2015"; - sha256 = "0jcp8nd947zcy938bz09pzlmi3vyxfdzg92pjxdvvk0699vwcc26"; + sha256 = "110y7dyfm2vci4x5vk7gr0q551dvp31npl99fnsx2fb17wzwcf94"; libName = "syscall"; authors = [ "Jeremy Soller " ]; - features = { - }; + }; - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "regex"; version = "1.3.4"; edition = "2015"; - sha256 = "1ad2vwdvayclgw0g263zy6y7na5id400wqbyad61n6riw09286c2"; + sha256 = "1a1mh9mgr8jipnxdaykla6xlw4a6kjn2bzkq3cifx8xy4ivzjb1j"; authors = [ "The Rust Project Developers" ]; - dependencies = { - "aho-corasick" = { + dependencies = [ + { + name = "aho-corasick"; packageId = "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "memchr" = { + } + { + name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "regex-syntax" = { + } + { + name = "regex-syntax"; packageId = "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "thread_local" = { + } + { + name = "thread_local"; packageId = "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; features = { "default" = [ "std" "perf" "unicode" ]; "perf" = [ "perf-cache" "perf-dfa" "perf-inline" "perf-literal" ]; @@ -3473,12 +4449,11 @@ rec { }; resolvedDefaultFeatures = [ "aho-corasick" "default" "memchr" "perf" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "std" "thread_local" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; - "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "regex-syntax"; version = "0.6.14"; edition = "2015"; - sha256 = "1jlyibmmpp3skv1lxpif5mfq57aqgx566asdkq6gjgvj8k0grala"; + sha256 = "01myl8xqpbnird23xnsb92sjmz1cmp69r6m7y3dwbpmsx4zzx3dj"; authors = [ "The Rust Project Developers" ]; @@ -3488,147 +4463,200 @@ rec { }; resolvedDefaultFeatures = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; - "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "remove_dir_all"; version = "0.5.2"; edition = "2015"; - sha256 = "04sxg2ppvxiljc2i13bwvpbi540rf9d2a89cq0wmqf9pjvr3a1wm"; + sha256 = "0bkrlyg26mgizpiy1yb2hhpgscxcag8r5fnckqsvk25608vzm0sa"; authors = [ "Aaronepower " ]; - dependencies = { - "winapi" = { + dependencies = [ + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "std" "errhandlingapi" "winerror" "fileapi" "winbase" ]; - }; - }; - features = { - }; + } + ]; + }; - "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "reqwest"; version = "0.10.1"; edition = "2018"; - sha256 = "0gpqslgmnzij48nfbpvlipm531k8d9knrqa2hh873lxq7gb98a88"; + sha256 = "1r1z26di07vf09x8b8867d40x0mcx7ij4iih1b1zd2r5kvhriry0"; authors = [ "Sean McArthur " ]; - dependencies = { - "base64" = { + dependencies = [ + { + name = "base64"; packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "encoding_rs" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "encoding_rs"; packageId = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "futures-core" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = (!(target."arch" == "wasm32")); - }; - "futures-util" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = (!(target."arch" == "wasm32")); - }; - "http" = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "http-body" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "http"; + packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "http-body"; packageId = "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "hyper" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "hyper"; packageId = "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = (!(target."arch" == "wasm32")); + target = { target, features }: (!(target."arch" == "wasm32")); features = [ "tcp" ]; - }; - "hyper-tls" = { + } + { + name = "hyper-tls"; packageId = "hyper-tls 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = (!(target."arch" == "wasm32")); - }; - "js-sys" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "js-sys"; packageId = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."arch" == "wasm32"); - }; - "lazy_static" = { + target = { target, features }: (target."arch" == "wasm32"); + } + { + name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "log" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "mime" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "mime"; packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "mime_guess" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "mime_guess"; packageId = "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "native-tls" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "native-tls"; packageId = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "native-tls-crate"; optional = true; - target = (!(target."arch" == "wasm32")); - }; - "percent-encoding" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "percent-encoding"; packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "pin-project-lite" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "pin-project-lite"; packageId = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "serde" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "serde_urlencoded" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "serde_urlencoded"; packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "time" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (!(target."arch" == "wasm32")); - }; - "tokio" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - target = (!(target."arch" == "wasm32")); + target = { target, features }: (!(target."arch" == "wasm32")); features = [ "tcp" "time" ]; - }; - "tokio-tls" = { + } + { + name = "tokio-tls"; packageId = "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = (!(target."arch" == "wasm32")); - }; - "url" = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "wasm-bindgen" = { + target = { target, features }: (!(target."arch" == "wasm32")); + } + { + name = "url"; + packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "wasm-bindgen"; packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."arch" == "wasm32"); + target = { target, features }: (target."arch" == "wasm32"); features = [ "serde-serialize" ]; - }; - "wasm-bindgen-futures" = { + } + { + name = "wasm-bindgen-futures"; packageId = "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."arch" == "wasm32"); - }; - "web-sys" = { + target = { target, features }: (target."arch" == "wasm32"); + } + { + name = "web-sys"; packageId = "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."arch" == "wasm32"); + target = { target, features }: (target."arch" == "wasm32"); features = [ "Headers" "Request" "RequestInit" "RequestMode" "Response" "Window" ]; - }; - "winreg" = { + } + { + name = "winreg"; packageId = "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - }; + target = { target, features }: target."windows"; + } + ]; + devDependencies = [ + { + name = "hyper"; + packageId = "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)"; + usesDefaultFeatures = false; + target = {target, features}: (!(target."arch" == "wasm32")); + features = [ "tcp" "stream" ]; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + target = {target, features}: (!(target."arch" == "wasm32")); + features = [ "derive" ]; + } + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + usesDefaultFeatures = false; + target = {target, features}: (!(target."arch" == "wasm32")); + features = [ "macros" ]; + } + ]; features = { "blocking" = [ "futures-util/io" "tokio/rt-threaded" "tokio/rt-core" "tokio/sync" ]; "cookies" = [ "cookie_crate" "cookie_store" ]; @@ -3643,44 +4671,61 @@ rec { }; resolvedDefaultFeatures = [ "__tls" "default" "default-tls" "hyper-tls" "native-tls-crate" "tokio-tls" ]; }; - "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "resolv-conf"; version = "0.6.2"; edition = "2015"; - sha256 = "1vm5lk75n5bzaygf0cjh5fv31m29955pwpkk1d04ls9ix631rhdk"; + sha256 = "1jvdsmksdf6yiipm3aqahyv8n1cjd7wqc8sa0p0gzsax3fmb8qxj"; libName = "resolv_conf"; authors = [ "paul@colomiets.name" ]; - dependencies = { - "hostname" = { + dependencies = [ + { + name = "hostname"; packageId = "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "quick-error" = "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "quick-error"; + packageId = "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "system" = [ "hostname" ]; }; resolvedDefaultFeatures = [ "hostname" "system" ]; }; - "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ructe"; version = "0.9.2"; edition = "2015"; - sha256 = "0ly2r85vxrs2ccv369lawlrqlxc4z2g0wd439552bpjik8190p1p"; + sha256 = "17qns867zs3i5v1gr6qkg767dv2dj1bgm41xv5qai23g0jw20mn8"; authors = [ "Rasmus Kaj " ]; - dependencies = { - "base64" = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "bytecount" = "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "itertools" = "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "md5" = "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "nom" = "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "base64"; + packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "bytecount"; + packageId = "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "itertools"; + packageId = "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "md5"; + packageId = "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "nom"; + packageId = "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "mime03" = [ "mime" ]; "sass" = [ "rsass" ]; @@ -3688,12 +4733,11 @@ rec { "warp02" = [ "mime03" ]; }; }; - "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rustc-demangle"; version = "0.1.16"; edition = "2015"; - sha256 = "0zmn448d0f898ahfkz7cir0fi0vk84dabjpw84mk6a1r6nf9vzmi"; + sha256 = "10qp42sl1wrdbgbbh8rnay2grm976z7hqgz32c4y09l1c071qsac"; authors = [ "Alex Crichton " ]; @@ -3701,81 +4745,93 @@ rec { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rustc_version"; version = "0.2.3"; edition = "2015"; - sha256 = "0rgwzbgs3i9fqjm1p4ra3n7frafmpwl29c8lw85kv1rxn7n2zaa7"; + sha256 = "02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk"; authors = [ "Marvin Löbel " ]; - dependencies = { - "semver" = "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "semver"; + packageId = "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rusttype"; version = "0.4.3"; edition = "2015"; - sha256 = "00pfzybl59kc784x3pdw7vr8vy8crcby7gh2p1sqzhylrhkhjnr7"; + sha256 = "16aryqlcqwsrqg3kpf8kl1pbv6pz0gnmxiayxsxl1lzn0bd07zqi"; authors = [ "Dylan Ede " "Jeremy Soller " ]; - dependencies = { - "arrayvec" = "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)"; - "ordered-float" = "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "stb_truetype" = "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "arrayvec"; + packageId = "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "ordered-float"; + packageId = "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "stb_truetype"; + packageId = "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "bench" = [ "gpu_cache" ]; "gpu_cache" = [ "linked-hash-map" "fnv" ]; }; }; - "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rustversion"; version = "1.0.2"; edition = "2018"; - sha256 = "1gf0ca7pskk27177p1v0sbxr1676ikb0mxymb4plf8lb6qjk8hra"; + sha256 = "1xkr1g792w728py2qpg2zj0vfviv2xzmxkkd9w6035l9d5ss3fxk"; procMacro = true; build = "build/build.rs"; authors = [ "David Tolnay " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; - }; - }; - features = { - }; + } + ]; + }; - "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ryu"; version = "1.0.2"; edition = "2015"; - sha256 = "04pxfhps9ix078qyml7hifjdmy4bg1n047ki0wx6i1007z85wjp1"; + sha256 = "1j0h74f1xqf9hjkhanp8i20mqc1aw35kr1iq9i79q7713mn51a5z"; authors = [ "David Tolnay " ]; features = { }; }; - "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "safemem"; version = "0.3.3"; edition = "2015"; - sha256 = "0ki36sicpw6m4840n3rscj0ssz3v2a6ykzmb8sjvricgib9pkl3k"; + sha256 = "0wp0d2b2284lw11xhybhaszsczpbq1jbdklkxgifldcknmy3nw7g"; authors = [ "Austin Bonander " ]; @@ -3784,32 +4840,33 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "schannel"; version = "0.1.17"; edition = "2015"; - sha256 = "189a24k6cyv1jmf27vy44hlk4ah38iy02l0fyrw8ihdqylhifpvi"; + sha256 = "15gjmg99gxpwm03vpf7i0ry6bxzxc8z2j44spc74w2pyixp9wyjh"; authors = [ "Steven Fackler " "Steffen Butzer " ]; - dependencies = { - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "winapi" = { + dependencies = [ + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "lmcons" "minschannel" "securitybaseapi" "schannel" "sspi" "sysinfoapi" "timezoneapi" "winbase" "wincrypt" "winerror" ]; - }; - }; - features = { - }; + } + ]; + }; - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "scopeguard"; version = "1.0.0"; edition = "2015"; - sha256 = "15vrix0jx3i4naqnjswddzn4m036krrv71a8vkh3b1zq4hxmrb0q"; + sha256 = "03aay84r1f6w87ckbpj6cc4rnsxkxcfs13n5ynxjia0qkgjiabml"; authors = [ "bluss" ]; @@ -3817,22 +4874,33 @@ rec { "default" = [ "use_std" ]; }; }; - "security-framework 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "security-framework 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "security-framework"; version = "0.3.4"; edition = "2015"; - sha256 = "1v41gp96fnd377kmjkirjb54ssw5cwhc559ml198dr0c44d0rl9v"; + sha256 = "1pqn79cl9njnnhsmjvvphkzx8is5jhfd8bhxpllgvrgggjfl5wlf"; authors = [ "Steven Fackler " "Kornel " ]; - dependencies = { - "core-foundation" = "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "core-foundation-sys" = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "security-framework-sys" = "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "core-foundation"; + packageId = "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "core-foundation-sys"; + packageId = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "security-framework-sys"; + packageId = "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ]; "OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ]; @@ -3841,19 +4909,21 @@ rec { "OSX_10_9" = [ "security-framework-sys/OSX_10_9" ]; }; }; - "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "security-framework-sys"; version = "0.3.3"; edition = "2015"; - sha256 = "0x785njxla84f5xh2gmy9vpkqapha2gs6ba3yxjlyg0bzwj4sks3"; + sha256 = "15gqhhi206lzynd0pcbswxhvqc4p9bmpl2h9qnwfnpb16zy96573"; authors = [ "Steven Fackler " "Kornel " ]; - dependencies = { - "core-foundation-sys" = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "core-foundation-sys"; + packageId = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "OSX_10_10" = [ "OSX_10_9" ]; "OSX_10_11" = [ "OSX_10_10" ]; @@ -3861,118 +4931,138 @@ rec { "OSX_10_13" = [ "OSX_10_12" ]; }; }; - "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "semver"; version = "0.9.0"; edition = "2015"; - sha256 = "0azak2lb2wc36s3x15az886kck7rpnksrw14lalm157rg9sc9z63"; + sha256 = "00q4lkcj0rrgbhviv9sd4p6qmdsipkwkbra7rh11jrhq5kpvjzhx"; authors = [ "Steve Klabnik " "The Rust Project Developers" ]; - dependencies = { - "semver-parser" = "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "semver-parser"; + packageId = "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "ci" = [ "serde" ]; }; resolvedDefaultFeatures = [ "default" ]; }; - "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "semver-parser"; version = "0.7.0"; edition = "2015"; - sha256 = "1da66c8413yakx0y15k8c055yna5lyb6fr0fw9318kdwkrk5k12h"; + sha256 = "18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"; authors = [ "Steve Klabnik " ]; - features = { - }; + }; - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde"; version = "1.0.104"; edition = "2015"; - sha256 = "0dsn86dafbfm5hhngzay7s4pmb4hskpjjyw2f9l7wm9s28gs5ckf"; + sha256 = "0ja4mgw4p42syjk7jkzwhj2yg6llfrfm7vn8rvy7v3c1bzr1aha1"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; - dependencies = { - "serde_derive" = { + dependencies = [ + { + name = "serde_derive"; packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - }; + } + ]; + devDependencies = [ + { + name = "serde_derive"; + packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "std" ]; "derive" = [ "serde_derive" ]; }; resolvedDefaultFeatures = [ "default" "derive" "serde_derive" "std" ]; }; - "serde-value 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "serde-value 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde-value"; version = "0.6.0"; edition = "2015"; - sha256 = "1sc1j3rbnid5ysdxfyf3qvmn3baa21d2r10qhd2b7xfkh318p8py"; + sha256 = "1swh6870pr1cxr6ha769rv4wdnyfxdvsc42cmvf8lmla38lsfras"; authors = [ "arcnmx" ]; - dependencies = { - "ordered-float" = "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "ordered-float"; + packageId = "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_derive"; version = "1.0.104"; edition = "2015"; - sha256 = "0c29n10yb2n9gfsaxk86w3ap7zdciiirmqf6i7vwd0fk3y0mpkc8"; + sha256 = "0r7gjlwfry44b4ylz524ynjp9v3qiwdj4c588lh94aas78q9x3qj"; procMacro = true; authors = [ "Erick Tryzelaar " "David Tolnay " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "visit" ]; - }; - }; + } + ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; - "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_json"; version = "1.0.47"; edition = "2018"; - sha256 = "1lpjphndivd7dmqzf18qh882wfbn9ajr52apad7mzp5ljnf9hd1f"; + sha256 = "145z9ilww45kc6wjrks287rksand7wbd8bykmxafh2qynsaki48m"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; - dependencies = { - "itoa" = { + dependencies = [ + { + name = "itoa"; packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "ryu" = "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = { + } + { + name = "ryu"; + packageId = "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "alloc" = [ "serde/alloc" ]; "default" = [ "std" ]; @@ -3981,89 +5071,109 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_urlencoded"; version = "0.6.1"; edition = "2015"; - sha256 = "1q1alszz71dh30by1fplz00rcbhi3y4k3j6z795xlv7ck735f78c"; + sha256 = "15rcwfkff0md5i231m2ym5756ksw1mkh5b5g2rw72wsc5mzdgicy"; authors = [ "Anthony Ramine " ]; - dependencies = { - "dtoa" = "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "itoa" = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - "url" = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "dtoa"; + packageId = "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "itoa"; + packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "url"; + packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_yaml"; version = "0.8.11"; edition = "2018"; - sha256 = "0727jwg07binrwimzxqpbpp26lyssiy9krrn73sdhal75ba4mzyn"; + sha256 = "0d9wdjrlx9gxg80kzc6pvdwz5pwhja2n8n0bxja9vv61kzqif6v9"; authors = [ "David Tolnay " ]; - dependencies = { - "dtoa" = "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; - "linked-hash-map" = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; - "yaml-rust" = "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "dtoa"; + packageId = "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "linked-hash-map"; + packageId = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; + packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "yaml-rust"; + packageId = "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "sha1"; version = "0.6.0"; edition = "2015"; - sha256 = "12cp2b8f3hbwhfpnv1j1afl285xxmmbxh9w4npzvwbdh7xfyww8v"; + sha256 = "03gs2q4m67rn2p8xcdfxhip6mpgahdwm12bnb3vh90ahv9grhy95"; authors = [ "Armin Ronacher " ]; features = { }; }; - "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "signal-hook-registry"; version = "1.2.0"; edition = "2015"; - sha256 = "0sap7brbb8fp3641nrvfm4rk024hjcmxix0y0zn9sc8vgvnfivxb"; + sha256 = "0haz828bif1lbp3alx17zkcy5hwy15bbpmvks72j8iznx7npix4l"; authors = [ "Michal 'vorner' Vaner " "Masaki Hara " ]; - dependencies = { - "arc-swap" = "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "arc-swap"; + packageId = "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "slab"; version = "0.4.2"; edition = "2015"; - sha256 = "0h1l2z7qy6207kv0v3iigdf2xfk9yrhbwj1svlxk6wxjmdxvgdl7"; + sha256 = "1y59xsa27jk84sxzswjk60xcjf8b4fm5960jwpznrrcmasyva4f1"; authors = [ "Carl Lerche " ]; - features = { - }; + }; - "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "smallvec"; version = "1.2.0"; edition = "2018"; - sha256 = "0nr0h34bsl3szp3maja8npg8mavgkijr8fj7g3sq54jp6vz24s7i"; + sha256 = "1z6f47i3qpg9pdjzzvb0g5i1vvdm2ymk3kqc1mdnl8fdkgnb4bsw"; libPath = "lib.rs"; authors = [ "Simon Sapin " @@ -4071,131 +5181,134 @@ rec { features = { }; }; - "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "socket2"; version = "0.3.11"; edition = "2018"; - sha256 = "06v07j2i8miv484vdgbj0k6npk6115x756yi0x3gvd3424nj3yjx"; + sha256 = "11bdcz04i106g4q7swkll0qxrb4287srqd2k3aq2q6i22zjlvdz8"; authors = [ "Alex Crichton " ]; - dependencies = { - "cfg-if" = { + dependencies = [ + { + name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."unix" || (target."os" == "redox")); - }; - "libc" = { + target = { target, features }: (target."unix" || (target."os" == "redox")); + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."unix" || (target."os" == "redox")); - }; - "redox_syscall" = { + target = { target, features }: (target."unix" || (target."os" == "redox")); + } + { + name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "redox"); - }; - "winapi" = { + target = { target, features }: (target."os" == "redox"); + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "handleapi" "ws2def" "ws2ipdef" "ws2tcpip" "minwindef" ]; - }; - }; - features = { - }; - }; - "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { - crateName = "sourcefile"; - version = "0.1.4"; - edition = "2015"; - sha256 = "0fzkmnxgi8dw1kcbf33dhn65v55y8sab68wxi38cyklx00s6l1wq"; - authors = [ - "Richard Dodd " + } ]; features = { }; }; - "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { + crateName = "sourcefile"; + version = "0.1.4"; + edition = "2015"; + sha256 = "1lwa6973zs4bgj29my7agfjgk4nw9hp6j7dfnr13nid85fw7rxsb"; + authors = [ + "Richard Dodd " + ]; + + }; + "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "static_assertions"; version = "0.3.4"; edition = "2015"; - sha256 = "0prjbn3kyqw0497nmghwwi1vnmf3103bq0plkaxz9zh9dbfd53y4"; + sha256 = "1lw33i89888yb3x29c6dv4mrkg3534n0rlg3r7qzh4p58xmv6gkz"; authors = [ "Nikolai Vazquez" ]; features = { }; }; - "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "stb_truetype"; version = "0.2.8"; edition = "2018"; - sha256 = "16xa9y3dgg41fwmlnf80hy63i8dmhrlnkk4lb1yc912bm5w5xffp"; + sha256 = "0pa2rfqjlkh015lny0ls8w28r38y8pw2kgff1xl5lk19h91yq6wx"; authors = [ "Dylan Ede " "Alex Butler " ]; - dependencies = { - "stb_truetype" = { + dependencies = [ + { + name = "stb_truetype"; packageId = "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "stb_truetype_next"; - }; - }; - features = { - }; + } + ]; + }; - "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "stb_truetype"; version = "0.3.1"; edition = "2018"; - sha256 = "1aa3jjx8ga7i02v64kjcf3xkr2b60znqmqzickx1l42wb28qwm5l"; + sha256 = "0lgvnh3ma6cz811bk8imj45djz76zs47b8327sgnmik2x03nnyzp"; authors = [ "Dylan Ede " "Alex Butler " ]; - dependencies = { - "byteorder" = { + dependencies = [ + { + name = "byteorder"; packageId = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; + } + ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "strsim"; version = "0.8.0"; edition = "2015"; - sha256 = "0d3jsdz22wgjyxdakqnvdgmwjdvkximz50d9zfk4qlalw635qcvy"; + sha256 = "0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"; authors = [ "Danny Guo " ]; - features = { - }; + }; - "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "structopt"; version = "0.3.9"; edition = "2018"; - sha256 = "162yqi7s3bp1aw4sw0py0dlbcl0cwb1nkjnncgkzs4kn1mhl8qxp"; + sha256 = "160f06f9k7b7jbm53d51w0ym2lxmxmdbkil0bnxzqml9skbvxg51"; authors = [ "Guillaume Pinot " "others" ]; - dependencies = { - "clap" = { + dependencies = [ + { + name = "clap"; packageId = "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "structopt-derive" = "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "structopt-derive"; + packageId = "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "color" = [ "clap/color" ]; "debug" = [ "clap/debug" ]; @@ -4210,51 +5323,67 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "structopt-derive"; version = "0.4.2"; edition = "2018"; - sha256 = "1nda1jk0qdbry6xs6ly9hi1l5cwxpwsbmssfvxnnh0birplzmxj8"; + sha256 = "0r2zkrk5v3yk103rkzd082p4630lry25c2jxcd7d352v3ym68l09"; procMacro = true; authors = [ "Guillaume Pinot " ]; - dependencies = { - "heck" = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro-error" = "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "heck"; + packageId = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro-error"; + packageId = "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "derive" "parsing" "proc-macro" ]; - }; - }; + } + ]; features = { }; }; - "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "syn"; version = "1.0.14"; edition = "2018"; - sha256 = "1z8bbg1s2ixyw7q877yzcgdnzh80n6vk14c1k0dznwd7rff0m66w"; + sha256 = "1xf8g9a3yl41027g5napiwfd7r87y734lf2dqdyyzyfzv183avxg"; authors = [ "David Tolnay " ]; - dependencies = { - "proc-macro2" = { + dependencies = [ + { + name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "quote" = { + } + { + name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - }; - "unicode-xid" = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "unicode-xid"; + packageId = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ]; "printing" = [ "quote" ]; @@ -4262,252 +5391,303 @@ rec { }; resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "full" "parsing" "printing" "proc-macro" "quote" "visit" "visit-mut" ]; }; - "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "syn-mid"; version = "0.5.0"; edition = "2018"; - sha256 = "0mcp969x5a3bjh1b0x17vsn21syggqrgkvk12gc97lzfpbyf5hkj"; + sha256 = "12ikg5jfklixq0wsgfl7sdzjqlxgq50ygklxy4f972hjdjgm7qvv"; authors = [ "Taiki Endo " ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "parsing" "printing" "derive" ]; - }; - }; + } + ]; features = { "clone-impls" = [ "syn/clone-impls" ]; }; }; - "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "synstructure"; version = "0.12.3"; edition = "2018"; - sha256 = "1mi3yl5h54wkarzbm4ma4b3dqfjiy8rlvags4qxqhsy3j850rmcy"; + sha256 = "0igmc5fzpk6fg7kgff914j05lbpc6ai2wmji312v2h8vvjhnwrb7"; authors = [ "Nika Layzell " ]; - dependencies = { - "proc-macro2" = { + dependencies = [ + { + name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "quote" = { + } + { + name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - "syn" = { + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "derive" "parsing" "printing" "clone-impls" "visit" "extra-traits" ]; - }; - "unicode-xid" = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "unicode-xid"; + packageId = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" "syn/proc-macro" "quote/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; - "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tempfile"; version = "3.1.0"; edition = "2018"; - sha256 = "1r7ykxw90p5hm1g46i8ia33j5iwl3q252kbb6b074qhdav3sqndk"; + sha256 = "1a9cfdqw70n7bcnkx05aih9xdba8lqazmqlkjpkmn2la6gcj8vks"; authors = [ "Steven Allen " "The Rust Project Developers" "Ashley Mannix " "Jason White " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "libc" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - "rand" = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "redox_syscall" = { + target = { target, features }: target."unix"; + } + { + name = "rand"; + packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "redox"); - }; - "remove_dir_all" = "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "winapi" = { + target = { target, features }: (target."os" == "redox"); + } + { + name = "remove_dir_all"; + packageId = "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "fileapi" "handleapi" "winbase" ]; - }; - }; - features = { - }; + } + ]; + }; - "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "textwrap"; version = "0.11.0"; edition = "2015"; - sha256 = "0s25qh49n7kjayrdj4q3v0jk0jc6vy88rdw0bvgfxqlscpqpxi7d"; + sha256 = "0q5hky03ik3y50s9sz25r438bc4nwhqc6dqwynv4wylc807n29nk"; authors = [ "Martin Geisler " ]; - dependencies = { - "unicode-width" = "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "unicode-width"; + packageId = "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "thread-id"; version = "3.3.0"; edition = "2015"; - sha256 = "1c24q4d2czza6b86sbw76z0f2vkbkkamivkmrhvs549v59za9gip"; + sha256 = "1h90v19fjz3x9b25ywh68z5yf2zsmm6h5zb4rl302ckbsp4z9yy7"; authors = [ "Ruud van Asseldonk " ]; - dependencies = { - "libc" = { + dependencies = [ + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."unix"; - }; - "redox_syscall" = { + target = { target, features }: target."unix"; + } + { + name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "redox"); - }; - "winapi" = { + target = { target, features }: (target."os" == "redox"); + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "processthreadsapi" ]; - }; - }; - features = { - }; + } + ]; + }; - "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "thread_local"; version = "1.0.1"; edition = "2015"; - sha256 = "0vs440x0nwpsw30ks6b8f70178y0gl7zhrqydhjykrhn56bj57h7"; + sha256 = "054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l"; authors = [ "Amanieu d'Antras " ]; - dependencies = { - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "threadpool"; version = "1.7.1"; edition = "2015"; - sha256 = "09g715plrn59kasvigqjrjqzcgqnaf6v6pia0xx03f18kvfmkq06"; + sha256 = "0rd89n1q7vy47w4c32cnynibffv9kj3jy3dwr0536n9lbw5ckw72"; authors = [ "The Rust Project Developers" "Corey Farwell " "Stefan Schindler " ]; - dependencies = { - "num_cpus" = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "num_cpus"; + packageId = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "time"; version = "0.1.42"; edition = "2015"; - sha256 = "1ny809kmdjwd4b478ipc33dz7q6nq7rxk766x8cnrg6zygcksmmx"; + sha256 = "0vsbvsz0ryxb35dy9j4anxvy8zlaplmjmi0a4z4l64bc135cz3fv"; authors = [ "The Rust Project Developers" ]; - dependencies = { - "libc" = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; - "redox_syscall" = { + dependencies = [ + { + name = "libc"; + packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."os" == "redox"); - }; - "winapi" = { + target = { target, features }: (target."os" == "redox"); + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "std" "minwinbase" "minwindef" "ntdef" "profileapi" "sysinfoapi" "timezoneapi" ]; - }; - }; - features = { - }; + } + ]; + devDependencies = [ + { + name = "winapi"; + packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "std" "processthreadsapi" "winbase" ]; + } + ]; + }; - "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tokio"; version = "0.2.11"; edition = "2018"; - sha256 = "0lmmsnhkkvjqllv9aa5ayy4xi3fhbcsfqw30yls7ajfss0ghpzhl"; + sha256 = "02q3d97n5929qh9nip5xm1c4lppyr7q9d34pazf9rx4njjc1gpcg"; authors = [ "Tokio Contributors " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "fnv" = { + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "fnv"; packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "futures-core" = { + } + { + name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "iovec" = { + } + { + name = "iovec"; packageId = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "lazy_static" = { + } + { + name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "libc" = { + } + { + name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = target."unix"; - }; - "memchr" = { + target = { target, features }: target."unix"; + } + { + name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "mio" = { + } + { + name = "mio"; packageId = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "mio-uds" = { + } + { + name = "mio-uds"; packageId = "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = target."unix"; - }; - "pin-project-lite" = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "signal-hook-registry" = { + target = { target, features }: target."unix"; + } + { + name = "pin-project-lite"; + packageId = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "signal-hook-registry"; packageId = "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - target = target."unix"; - }; - "slab" = { + target = { target, features }: target."unix"; + } + { + name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "winapi" = { + } + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; - target = target."windows"; - }; - }; + target = { target, features }: target."windows"; + } + ]; features = { "blocking" = [ "rt-core" ]; "dns" = [ "rt-core" ]; @@ -4530,97 +5710,161 @@ rec { }; resolvedDefaultFeatures = [ "blocking" "default" "fnv" "futures-core" "io-driver" "io-util" "iovec" "lazy_static" "libc" "memchr" "mio" "mio-uds" "rt-core" "rt-util" "signal" "signal-hook-registry" "slab" "stream" "sync" "tcp" "time" "udp" "uds" "winapi" ]; }; - "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tokio-tls"; version = "0.3.0"; edition = "2018"; - sha256 = "0899jizl2v576jigcrx9x4sw9i0cxghm92f002889gqycrzlhy0g"; + sha256 = "0a4qc7rj48gf1npywzmhqbx04xh7ld2nkv06kgsra4r9lnih5pkv"; authors = [ "Tokio Contributors " ]; - dependencies = { - "native-tls" = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "native-tls"; + packageId = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "macros" "stream" "rt-core" "io-util" "net" ]; + } + ]; + }; - "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tokio-util"; version = "0.2.0"; edition = "2018"; - sha256 = "1jvqz5shi2gllxdhgfgksazk0cqn0aiiry7wgrdhrz9vgi76976i"; + sha256 = "0c39s4y0kvzkyarn1f9s8khqyajiqn7m4cjsa208f87ch88sa7ap"; authors = [ "Tokio Contributors " ]; - dependencies = { - "bytes" = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-core" = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures-sink" = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "pin-project-lite" = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "bytes"; + packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-core"; + packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures-sink"; + packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "pin-project-lite"; + packageId = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + devDependencies = [ + { + name = "tokio"; + packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; + features = [ "full" ]; + } + ]; features = { "full" = [ "codec" "udp" ]; "udp" = [ "tokio/udp" ]; }; resolvedDefaultFeatures = [ "codec" "default" ]; }; - "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tower-service"; version = "0.3.0"; edition = "2018"; - sha256 = "1dr8kzzad13ayc15bam7fpwvpn2c2bsqaybhjf3xiybxgcp3516n"; + sha256 = "0q4q53w82w1wd71x7vbspg2l3jicb6al2w1qdwxmnjrz8jzvd1z9"; authors = [ "Tower Maintainers " ]; - features = { - }; + }; - "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "traitobject"; version = "0.1.0"; edition = "2015"; - sha256 = "10hi8pl361l539g4kg74mcrhn7grmwlar4jl528ddn2z2jvb7lw3"; + sha256 = "0yb0n8822mr59j200fyr2fxgzzgqljyxflx9y8bdy3rlaqngilgg"; authors = [ "Jonathan Reem " ]; - features = { - }; + }; - "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "trust-dns-proto"; version = "0.18.0-alpha.2"; edition = "2018"; - sha256 = "066jqgjhlj2y49q5x2sv46b2m4kam54q7l76pspw1jj2a3y9nfg9"; + sha256 = "0gs15ckm4d4s59jqmm35lbpx7mvylrk8hiialpnga6d9p0m3lzra"; libName = "trust_dns_proto"; authors = [ "Benjamin Fry " ]; - dependencies = { - "async-trait" = "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)"; - "enum-as-inner" = "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "failure" = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "idna" = "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "rand" = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; - "smallvec" = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "socket2" = "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = { + dependencies = [ + { + name = "async-trait"; + packageId = "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "enum-as-inner"; + packageId = "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "failure"; + packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "idna"; + packageId = "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "rand"; + packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "smallvec"; + packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "socket2"; + packageId = "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; features = [ "time" "udp" "tcp" ]; - }; - "url" = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "url"; + packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "tokio-compat" ]; "dnssec" = [ "data-encoding" ]; @@ -4632,39 +5876,65 @@ rec { }; resolvedDefaultFeatures = [ "default" "tokio" "tokio-compat" ]; }; - "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "trust-dns-resolver"; version = "0.18.0-alpha.2"; edition = "2018"; - sha256 = "1s978j4zjyg7rardidnhyv8mvhgy98iyhrvhzxxz82idmhvcp0s0"; + sha256 = "0bsal2vz7q3fqdyxa0j1rbbh1hm8mxxv7mf62hjqnvr25d8b343g"; libName = "trust_dns_resolver"; authors = [ "Benjamin Fry " ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "failure" = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; - "futures" = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "ipconfig" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "failure"; + packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "futures"; + packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "ipconfig"; packageId = "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; - }; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "lru-cache" = "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "resolv-conf" = { + target = { target, features }: target."windows"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lru-cache"; + packageId = "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "resolv-conf"; packageId = "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "system" ]; - }; - "smallvec" = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "tokio" = { + } + { + name = "smallvec"; + packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; features = [ "rt-core" ]; - }; - "trust-dns-proto" = "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "trust-dns-proto"; + packageId = "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "tokio-compat" ]; "dns-over-https-rustls" = [ "trust-dns-https" "dns-over-rustls" "dns-over-https" ]; @@ -4679,88 +5949,91 @@ rec { }; resolvedDefaultFeatures = [ "default" "tokio" "tokio-compat" ]; }; - "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "try-lock"; version = "0.2.2"; edition = "2015"; - sha256 = "1k8xc0jpbrmzp0fwghdh6pwzjb9xx2p8yy0xxnnb8065smc5fsrv"; + sha256 = "10p36rx6pqi9d0zr876xa8vksx2m66ha45myakl50rn08dxyn176"; authors = [ "Sean McArthur " ]; - features = { - }; + }; - "typemap 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "typemap 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "typemap"; version = "0.3.3"; edition = "2015"; - sha256 = "1whvpcq2slamy310z5hd3hl214v91sdxmd9avlqa1bn3l258svkx"; + sha256 = "1xm1gbvz9qisj1l6d36hrl9pw8imr8ngs6qyanjnsad3h0yfcfv5"; authors = [ "Jonathan Reem " ]; - dependencies = { - "unsafe-any" = "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "unsafe-any"; + packageId = "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicase"; version = "2.6.0"; edition = "2015"; - sha256 = "15q43mk8vd4vsm9dh694jljg6pi3yqmr8wjx3qbliv21jxm3c4r0"; + sha256 = "1xmlbink4ycgxrkjspp0mf7pghcx4m7vxq7fpfm04ikr2zk7pwsh"; authors = [ "Sean McArthur " ]; - buildDependencies = { - "version_check" = "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + buildDependencies = [ + { + name = "version_check"; + packageId = "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { }; }; - "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-bidi"; version = "0.3.4"; edition = "2015"; - sha256 = "0lcd6jasrf8p9p0q20qyf10c6xhvw40m2c4rr105hbk6zy26nj1q"; + sha256 = "1malx8ljgm7v1gbaazkn7iicy5wj0bwcyadj3l727a38ch6bvwj9"; libName = "unicode_bidi"; authors = [ "The Servo Project Developers" ]; - dependencies = { - "matches" = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "matches"; + packageId = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "flame_it" = [ "flame" "flamer" ]; "with_serde" = [ "serde" ]; }; resolvedDefaultFeatures = [ "default" ]; }; - "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-normalization"; version = "0.1.12"; edition = "2015"; - sha256 = "04pczay81rhvgg99jm8x1jm9c1x0bq7jwm2wpxchni32rl2ss232"; + sha256 = "195gb4fzlgg4g9cv6w057ncpmvvnx30r00w9hj114knhmlmm6yal"; authors = [ "kwantam " ]; - dependencies = { - "smallvec" = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "smallvec"; + packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-segmentation"; version = "1.6.0"; edition = "2015"; - sha256 = "1i9a9gzj4i7iqwrgfs3dagf3h2b9qxdy7bviykhnsjrxm3azgsyc"; + sha256 = "1h7d48mzpi8hwf5cvnq07warkv86pvapzzzf32hvbjsk20yiagp8"; authors = [ "kwantam " "Manish Goregaokar " @@ -4768,12 +6041,11 @@ rec { features = { }; }; - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-width"; version = "0.1.7"; edition = "2015"; - sha256 = "052w5vx2k332h7ycsxsc61rr7hj0szmfsky94f61228z3znsnq9h"; + sha256 = "0yflmxkxmm89ckrb3sz58whn491aycrj8cxra0hzzlb72x9rvana"; authors = [ "kwantam " "Manish Goregaokar " @@ -4783,12 +6055,11 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-xid"; version = "0.2.0"; edition = "2015"; - sha256 = "1c85gb3p3qhbjvfyjb31m06la4f024jx319k10ig7n47dz2fk8v7"; + sha256 = "0z09fn515xm7zyr0mmdyxa9mx2f7azcpv74pqmg611iralwpcvl2"; authors = [ "erick.tryzelaar " "kwantam " @@ -4797,74 +6068,78 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unreachable"; version = "1.0.0"; edition = "2015"; - sha256 = "1am8czbk5wwr25gbp2zr007744fxjshhdqjz9liz7wl4pnv3whcf"; + sha256 = "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q"; authors = [ "Jonathan Reem " ]; - dependencies = { - "void" = { + dependencies = [ + { + name = "void"; packageId = "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; - }; - }; - features = { - }; + } + ]; + }; - "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unsafe-any"; version = "0.4.2"; edition = "2015"; - sha256 = "1zcvx5s71fbx4l691bg770g9yx947b8mmp4yf0mczcric07sh44s"; + sha256 = "0zwwphsqkw5qaiqmjwngnfpv9ym85qcsyj7adip9qplzjzbn00zk"; authors = [ "Jonathan Reem " ]; - dependencies = { - "traitobject" = "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "traitobject"; + packageId = "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "url"; version = "2.1.1"; edition = "2015"; - sha256 = "0sqrqxfhz6rsc79da0yvmvszspaym8yvlf0780zsv5w8sf86cmxh"; + sha256 = "1jw7cw8br4xvjb92ddrrh1r7jvqhyhiknnnfpgq9np63fs24m7c2"; authors = [ "The rust-url developers" ]; - dependencies = { - "idna" = "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "matches" = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "percent-encoding" = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "idna"; + packageId = "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "matches"; + packageId = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "percent-encoding"; + packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "vcpkg"; version = "0.2.8"; edition = "2015"; - sha256 = "08ghimjjrfgz20i5glcybka96wyx196c54vl62kn7xg0hsqk0aal"; + sha256 = "0s1ijdrsg6917imja2hb07l0z4vbx7ydm8m2i1n9g62fg7r3ki1z"; authors = [ "Jim McGrath " ]; - features = { - }; + }; - "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "vec_map"; version = "0.8.1"; edition = "2015"; - sha256 = "1jj2nrg8h3l53d43rwkpkikq5a5x15ms4rf1rw92hp5lrqhi8mpi"; + sha256 = "06n8hw4hlbcz328a3gbpvmy0ma46vg1lc0r5wf55900szf3qdiq5"; authors = [ "Alex Crichton " "Jorge Aparicio " @@ -4897,56 +6172,61 @@ rec { "eders" = [ "serde" ]; }; }; - "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "vergen"; version = "3.0.4"; edition = "2018"; - sha256 = "0cx8aijx8f9ywb8nw11kh64sssng72bvjpih132msbrvszrzzw2l"; + sha256 = "1fhx18f0ddlc779f27s3gdzg4mliishrhnyhz8fhbirxz4s5xfka"; authors = [ "Jason Ozias " ]; - dependencies = { - "bitflags" = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "chrono" = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "failure" = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "chrono" = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "bitflags"; + packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "chrono"; + packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "failure"; + packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "chrono"; + packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "version_check"; version = "0.1.5"; edition = "2015"; - sha256 = "1yrx9xblmwbafw2firxyqbj8f771kkzfd24n3q7xgwiqyhi0y8qd"; + sha256 = "1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"; authors = [ "Sergio Benitez " ]; - features = { - }; + }; - "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "version_check"; version = "0.9.1"; edition = "2015"; - sha256 = "00aywbaicdi81gcxpqdz6g0l96885bz4bml5c9xfna5p01vrh4li"; + sha256 = "1kikqlnggii1rvnxrbls55sc46lxvinz5k3giscgncjj4p87b1q7"; authors = [ "Sergio Benitez " ]; - features = { - }; + }; - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "void"; version = "1.0.2"; edition = "2015"; - sha256 = "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3"; + sha256 = "0zc8f0ksxvmhvgx4fdg0zyn6vdnbxd2xv9hfx4nhzg6kbs4f80ka"; authors = [ "Jonathan Reem " ]; @@ -4954,28 +6234,31 @@ rec { "default" = [ "std" ]; }; }; - "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "want"; version = "0.3.0"; edition = "2018"; - sha256 = "0gwk8ybv6c2irgbmk0p3vc81vw71imkvy1vmrrx95kys925wsk2x"; + sha256 = "181b2zmwfq389x9n2g1n37cvcvvdand832zz6v8i1l8wrdlaks0w"; authors = [ "Sean McArthur " ]; - dependencies = { - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "try-lock" = "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "try-lock"; + packageId = "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasi"; version = "0.9.0+wasi-snapshot-preview1"; edition = "2018"; - sha256 = "0xa6b3rnsmhi13nvs9q51wmavx51yzs5qdbc7bvs0pvs6iar3hsd"; + sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"; authors = [ "The Cranelift Project Developers" ]; @@ -4985,27 +6268,34 @@ rec { }; resolvedDefaultFeatures = [ "default" "std" ]; }; - "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen"; version = "0.2.58"; edition = "2018"; - sha256 = "18isy9wzas7zkdlzr19i5s3f1zn732wx98dp2s7zqaqkb2rprlar"; + sha256 = "0v31s91andxcj73w63g3fkbw3ld6cfsaa4135qcjna22vypyj1aj"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "serde" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "serde_json" = { + } + { + name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; - }; - "wasm-bindgen-macro" = "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "wasm-bindgen-macro"; + packageId = "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "default" = [ "spans" "std" ]; "enable-interning" = [ "std" ]; @@ -5016,567 +6306,896 @@ rec { }; resolvedDefaultFeatures = [ "default" "serde" "serde-serialize" "serde_json" "spans" "std" ]; }; - "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-backend"; version = "0.2.58"; edition = "2018"; - sha256 = "0hdv9ad3wgkw2acvrs8qaz4v3k5pr07rww1qmb8lw0a4xcb0k946"; + sha256 = "0icskn0qlj30np6x6nbyl1i9dndckx0pczaq69dm42r92rcbkk8i"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "bumpalo" = "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "bumpalo"; + packageId = "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "lazy_static"; + packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; - }; - "wasm-bindgen-shared" = "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "wasm-bindgen-shared"; + packageId = "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "extra-traits" = [ "syn/extra-traits" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; - "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-futures"; version = "0.4.8"; edition = "2018"; - sha256 = "1iafg4hmpg392nyq0igynfzbr1j6xlvlj5g4hgi2akp825dwyd9b"; + sha256 = "1n9ma4kinr4w6r2sh4wm04my6p14k1vx3a4vdbn0vd187sgd9gcb"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; - "js-sys" = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; - "wasm-bindgen" = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - "web-sys" = { + dependencies = [ + { + name = "cfg-if"; + packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "js-sys"; + packageId = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "wasm-bindgen"; + packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "web-sys"; packageId = "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (target."feature" == "atomics"); + target = { target, features }: (target."feature" == "atomics"); features = [ "MessageEvent" "Worker" ]; - }; - }; - features = { - }; + } + ]; + }; - "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-macro"; version = "0.2.58"; edition = "2018"; - sha256 = "10lbw7k3dg41yzqav6fig20xijm04xmwgqx6l6agzsvq8llb5vz2"; + sha256 = "1hwxw0nhi2n4izhjn2fvnrrn59xqjxs3ybkgzdv1b4p65ivr8h2p"; procMacro = true; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "wasm-bindgen-macro-support" = "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "wasm-bindgen-macro-support"; + packageId = "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "spans" = [ "wasm-bindgen-macro-support/spans" ]; "strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; - "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-macro-support"; version = "0.2.58"; edition = "2018"; - sha256 = "18z9w5f1dphp5q4iv9hv0z0lc0wczhrg7ajalfvwsxrv1q7drc2a"; + sha256 = "0s3n7v741i4wkzib41m126li40qlhqyirnxpigkypsi59wsk2l78"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "visit" ]; - }; - "wasm-bindgen-backend" = "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - "wasm-bindgen-shared" = "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + } + { + name = "wasm-bindgen-backend"; + packageId = "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "wasm-bindgen-shared"; + packageId = "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { "extra-traits" = [ "syn/extra-traits" ]; "spans" = [ "wasm-bindgen-backend/spans" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; - "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-shared"; version = "0.2.58"; edition = "2018"; - sha256 = "1nk4i7amy48y6sshvjin3f3pbsfm9dasm9hdb63z88k4ikzhfzsy"; + sha256 = "00cnbabf4k9bahb217vkilmjwqwzpwp112vlvgfw1x19r4gydrzm"; authors = [ "The wasm-bindgen Developers" ]; - features = { - }; + }; - "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-webidl"; version = "0.2.58"; edition = "2018"; - sha256 = "1fcjxcr9yx194fh88xf4zk1ppay8g66bz9n8g8wqcq4fn5spr1p2"; + sha256 = "0pcpaw8w3xgfrg9y24ljrsl2bkidgdaaz3ka2bgk417wjc6jl0gg"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "anyhow" = "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)"; - "heck" = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; - "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "proc-macro2" = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; - "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; - "syn" = { + dependencies = [ + { + name = "anyhow"; + packageId = "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "heck"; + packageId = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "log"; + packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "proc-macro2"; + packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "quote"; + packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; - }; - "wasm-bindgen-backend" = "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - "weedle" = "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + } + { + name = "wasm-bindgen-backend"; + packageId = "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "weedle"; + packageId = "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "web-sys"; version = "0.3.35"; edition = "2018"; - sha256 = "11229nasjqmbczh61l9f88mj9l6d187hbj8ah8fph6iv4zlx56ph"; + sha256 = "0fzmxcyahy3ghl8lkjkchj9krmnr56shvbqgr7db3hm8dappryda"; authors = [ "The wasm-bindgen Developers" ]; - dependencies = { - "js-sys" = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; - "wasm-bindgen" = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "anyhow" = "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)"; - "sourcefile" = "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; - "wasm-bindgen-webidl" = "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; - }; + dependencies = [ + { + name = "js-sys"; + packageId = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "wasm-bindgen"; + packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "anyhow"; + packageId = "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "sourcefile"; + packageId = "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; + } + { + name = "wasm-bindgen-webidl"; + packageId = "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; features = { }; resolvedDefaultFeatures = [ "Headers" "MessageEvent" "Request" "RequestInit" "RequestMode" "Response" "Window" "Worker" ]; }; - "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "weedle"; version = "0.10.0"; edition = "2015"; - sha256 = "0pi2r4zjrl17ccafqpd0r87nrysz2abq4yqi09lsmija1hdvf4h2"; + sha256 = "0r0i2kllvkn9jil6cjzxdi1zsc6p1gjyk751w8lyclaii1q3zd1v"; authors = [ "Sharad Chand " ]; - dependencies = { - "nom" = "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "nom"; + packageId = "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "widestring"; version = "0.4.0"; edition = "2015"; - sha256 = "12j8w7jsn60wr1wir2dnspn3b0480my2ksa95f3qxyvb8h1q7xnj"; + sha256 = "1dhx6dndjsz1y7c9w06922412kdxyrrkqblvggm76mh8z17hxz7g"; authors = [ "Kathryn Long " ]; - features = { - }; + }; - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi"; version = "0.2.8"; edition = "2015"; - sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as"; + sha256 = "0yh816lh6lf56dpsgxy189c2ai1z3j8mw9si6izqb6wsjkbcjz8n"; authors = [ "Peter Atashian " ]; - features = { - }; + }; - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi"; version = "0.3.8"; edition = "2015"; - sha256 = "084ialbgww1vxry341fmkg5crgpvab3w52ahx1wa54yqjgym0vxs"; + sha256 = "1ii9j9lzrhwri0902652awifzx9fpayimbp6hfhhc296xcg0k4w0"; authors = [ "Peter Atashian " ]; - dependencies = { - "winapi-i686-pc-windows-gnu" = { + dependencies = [ + { + name = "winapi-i686-pc-windows-gnu"; packageId = "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (stdenv.hostPlatform.config == "i686-pc-windows-gnu"); - }; - "winapi-x86_64-pc-windows-gnu" = { + target = { target, features }: (stdenv.hostPlatform.config == "i686-pc-windows-gnu"); + } + { + name = "winapi-x86_64-pc-windows-gnu"; packageId = "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; - target = (stdenv.hostPlatform.config == "x86_64-pc-windows-gnu"); - }; - }; + target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnu"); + } + ]; features = { "debug" = [ "impl-debug" ]; }; resolvedDefaultFeatures = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "impl-debug" "impl-default" "lmcons" "minschannel" "minwinbase" "minwindef" "ntdef" "ntstatus" "processenv" "processthreadsapi" "profileapi" "schannel" "securitybaseapi" "sspi" "std" "sysinfoapi" "timezoneapi" "winbase" "wincon" "wincrypt" "winerror" "winnt" "winreg" "winsock2" "wow64apiset" "ws2def" "ws2ipdef" "ws2tcpip" ]; }; - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi-build"; version = "0.1.1"; edition = "2015"; - sha256 = "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga"; + sha256 = "1g4rqsgjky0a7530qajn2bbfcrl2v0zb39idgdws9b1l7gp5wc9d"; libName = "build"; authors = [ "Peter Atashian " ]; - features = { - }; + }; - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi-i686-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; - sha256 = "05ihkij18r4gamjpxj4gra24514can762imjzlmak5wlzidplzrp"; + sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc"; authors = [ "Peter Atashian " ]; - features = { - }; + }; - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi-x86_64-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; - sha256 = "0n1ylmlsb8yg1v583i4xy0qmqg42275flvbc51hdqjjfjcl9vlbj"; + sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki"; authors = [ "Peter Atashian " ]; - features = { - }; + }; - "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winreg"; version = "0.6.2"; edition = "2015"; - sha256 = "0yxz0sph88wsj7cy94kfy17c5jaj0665m3qqll5saqind1fnfb90"; + sha256 = "1jdcqr6zmvwyrp87h48miasfdvv16gjsb60rc8dy2kqwb3mnv65j"; authors = [ "Igor Shaula " ]; - dependencies = { - "winapi" = { + dependencies = [ + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "impl-default" "impl-debug" "minwindef" "minwinbase" "timezoneapi" "winerror" "winnt" "winreg" "handleapi" ]; - }; - }; + } + ]; features = { "serialization-serde" = [ "transactions" "serde" ]; "transactions" = [ "winapi/ktmw32" ]; }; }; - "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winutil"; version = "0.1.1"; edition = "2015"; - sha256 = "1wvq440hl1v3a65agjbp031gw5jim3qasfvmz703dlz95pbjv45r"; + sha256 = "0vkyl3fbbf05n5ph5yz8sfaccrk9x3qsr25560w6w68ldf5i7bvx"; authors = [ "Dave Lancaster " ]; - dependencies = { - "winapi" = { + dependencies = [ + { + name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; - target = target."windows"; + target = { target, features }: target."windows"; features = [ "wow64apiset" "processthreadsapi" "winbase" ]; - }; - }; - features = { - }; + } + ]; + }; - "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ws2_32-sys"; version = "0.2.1"; edition = "2015"; - sha256 = "1zpy9d9wk11sj17fczfngcj28w4xxjs3b4n036yzpy38dxp4f7kc"; + sha256 = "0ppscg5qfqaw0gzwv2a4nhn5bn01ff9iwn6ysqnzm4n8s3myz76m"; libName = "ws2_32"; authors = [ "Peter Atashian " ]; - dependencies = { - "winapi" = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - buildDependencies = { - "winapi-build" = "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "winapi"; + packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + buildDependencies = [ + { + name = "winapi-build"; + packageId = "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; - "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" - = rec { + "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "yaml-rust"; version = "0.4.3"; edition = "2015"; - sha256 = "09p179lz1gjdpa0c58164dc4cs7ijw3j1aqflpshnl1zwvfsgwyx"; + sha256 = "0ka3qhqc5lvk3hz14wmsj32jhmh44blcbfrx5hfxli2gg38kv4k5"; authors = [ "Yuheng Chen " ]; - dependencies = { - "linked-hash-map" = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; - }; - features = { - }; + dependencies = [ + { + name = "linked-hash-map"; + packageId = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; + } + ]; + }; + }; + + # +# crate2nix/default.nix (excerpt start) +# + + /* Target (platform) data for conditional dependencies. + This corresponds roughly to what buildRustCrate is setting. + */ + defaultTarget = { + unix = true; + windows = false; + fuchsia = true; + test = false; + + # This doesn't appear to be officially documented anywhere yet. + # See https://github.com/rust-lang-nursery/rust-forge/issues/101. + os = if stdenv.hostPlatform.isDarwin + then "macos" + else stdenv.hostPlatform.parsed.kernel.name; + arch = stdenv.hostPlatform.parsed.cpu.name; + family = "unix"; + env = "gnu"; + endian = + if stdenv.hostPlatform.parsed.cpu.significantByte.name == "littleEndian" + then "little" else "big"; + pointer_width = toString stdenv.hostPlatform.parsed.cpu.bits; + vendor = stdenv.hostPlatform.parsed.vendor.name; + debug_assertions = false; }; - # - # crate2nix/default.nix (excerpt start) - # - - # Target (platform) data for conditional dependencies. - # This corresponds roughly to what buildRustCrate is setting. - target = { - unix = true; - windows = false; - # We don't support tests yet, so this is true for now. - test = false; - - # This doesn't appear to be officially documented anywhere yet. - # See https://github.com/rust-lang-nursery/rust-forge/issues/101. - os = if stdenv.hostPlatform.isDarwin - then "macos" - else stdenv.hostPlatform.parsed.kernel.name; - arch = stdenv.hostPlatform.parsed.cpu.name; - family = "unix"; - env = "gnu"; - endian = if stdenv.hostPlatform.parsed.cpu.significantByte.name == "littleEndian" then "little" else "big"; - pointer_width = toString stdenv.hostPlatform.parsed.cpu.bits; - vendor = stdenv.hostPlatform.parsed.vendor.name; - debug_assertions = false; - }; - - /* Filters common temp files and build files */ + /* Filters common temp files and build files. */ # TODO(pkolloch): Substitute with gitignore filter sourceFilter = name: type: - let baseName = builtins.baseNameOf (builtins.toString name); - in ! ( - # Filter out git - baseName == ".gitignore" || - (type == "directory" && baseName == ".git" ) || + let + baseName = builtins.baseNameOf (builtins.toString name); + in + ! ( + # Filter out git + baseName == ".gitignore" + || (type == "directory" && baseName == ".git") - # Filter out build results - (type == "directory" && ( - baseName == "target" || - baseName == "_site" || - baseName == ".sass-cache" || - baseName == ".jekyll-metadata" || - baseName == "build-artifacts" - )) || + # Filter out build results + || ( + type == "directory" && ( + baseName == "target" + || baseName == "_site" + || baseName == ".sass-cache" + || baseName == ".jekyll-metadata" + || baseName == "build-artifacts" + ) + ) - # Filter out nix-build result symlinks - (type == "symlink" && lib.hasPrefix "result" baseName) || + # Filter out nix-build result symlinks + || ( + type == "symlink" && lib.hasPrefix "result" baseName + ) - # Filter out IDE config - (type == "directory" && ( - baseName == ".idea" || - baseName == ".vscode" - )) || - lib.hasSuffix ".iml" baseName || + # Filter out IDE config + || ( + type == "directory" && ( + baseName == ".idea" || baseName == ".vscode" + ) + ) || lib.hasSuffix ".iml" baseName - # Filter out nix build files - # lib.hasSuffix ".nix" baseName || + # Filter out nix build files + || baseName == "Cargo.nix" - # Filter out editor backup / swap files. - lib.hasSuffix "~" baseName || - builtins.match "^\\.sw[a-z]$$" baseName != null || - builtins.match "^\\..*\\.sw[a-z]$$" baseName != null || - lib.hasSuffix ".tmp" baseName || - lib.hasSuffix ".bak" baseName || - baseName == "tests.nix" - ); + # Filter out editor backup / swap files. + || lib.hasSuffix "~" baseName + || builtins.match "^\\.sw[a-z]$$" baseName != null + || builtins.match "^\\..*\\.sw[a-z]$$" baseName != null + || lib.hasSuffix ".tmp" baseName + || lib.hasSuffix ".bak" baseName + || baseName == "tests.nix" + ); - /* A restricted overridable version of buildRustCrateWithFeaturesImpl. */ - buildRustCrateWithFeatures = {packageId, features, crateOverrides ? defaultCrateOverrides}: - lib.makeOverridable - ({features, crateOverrides}: buildRustCrateWithFeaturesImpl {inherit packageId features crateOverrides;}) - { inherit features crateOverrides; }; + /* Returns a crate which depends on successful test execution + of crate given as the second argument. + */ + crateWithTest = crate: testCrate: testCrateFlags: + let + # override the `crate` so that it will build and execute tests instead of + # building the actual lib and bin targets We just have to pass `--test` + # to rustc and it will do the right thing. We execute the tests and copy + # their log and the test executables to $out for later inspection. + test = let + drv = testCrate.override ( + _: { + buildTests = true; + } + ); + in + pkgs.runCommand "run-tests-${testCrate.name}" { + inherit testCrateFlags; + } '' + set -ex + cd ${crate.src} + for file in ${drv}/tests/*; do + $file $testCrateFlags 2>&1 | tee -a $out + done + ''; + in + crate.overrideAttrs ( + old: { + checkPhase = '' + test -e ${test} + ''; + passthru = (old.passthru or {}) // { + inherit test; + }; + } + ); - /* Returns a buildRustCrate derivation for the given packageId and features. */ - buildRustCrateWithFeaturesImpl = { crateConfigs? crates, packageId, features, crateOverrides } @ args: - assert (builtins.isAttrs crateConfigs); - assert (builtins.isString packageId); - assert (builtins.isList features); + /* A restricted overridable version of builtRustCratesWithFeatures. */ + buildRustCrateWithFeatures = + { packageId + , features ? rootFeatures + , crateOverrides ? defaultCrateOverrides + , buildRustCrateFunc ? ( + if crateOverrides == pkgs.defaultCrateOverrides + then buildRustCrate + else buildRustCrate.override { + defaultCrateOverrides = crateOverrides; + } + ) + , runTests ? false + , testCrateFlags ? [] + }: + lib.makeOverridable + ( + { features, crateOverrides, runTests, testCrateFlags }: + let + builtRustCrates = builtRustCratesWithFeatures { + inherit packageId features buildRustCrateFunc; + runTests = false; + }; + builtTestRustCrates = builtRustCratesWithFeatures { + inherit packageId features buildRustCrateFunc; + runTests = true; + }; + drv = builtRustCrates.${packageId}; + testDrv = builtTestRustCrates.${packageId}; + in + if runTests then crateWithTest drv testDrv testCrateFlags else drv + ) + { inherit features crateOverrides runTests testCrateFlags; }; - let mergedFeatures = mergePackageFeatures args; - buildByPackageId = packageId: - let features = mergedFeatures."${packageId}" or []; - crateConfig = lib.filterAttrs (n: v: n != "resolvedDefaultFeatures") crateConfigs."${packageId}"; - dependencies = - dependencyDerivations buildByPackageId features (crateConfig.dependencies or {}); - buildDependencies = - dependencyDerivations buildByPackageId features (crateConfig.buildDependencies or {}); - dependenciesWithRenames = - lib.filterAttrs (n: v: v ? "rename") - (crateConfig.buildDependencies or {} // crateConfig.dependencies or {}); - crateRenames = - lib.mapAttrs (name: value: value.rename or name) dependenciesWithRenames; - in buildRustCrate (crateConfig // { inherit features dependencies buildDependencies crateRenames; }); - in buildByPackageId packageId; + /* Returns an attr set with packageId mapped to the result of buildRustCrateFunc + for the corresponding crate. + */ + builtRustCratesWithFeatures = + { packageId + , features + , crateConfigs ? crates + , buildRustCrateFunc + , runTests + , target ? defaultTarget + } @ args: + assert (builtins.isAttrs crateConfigs); + assert (builtins.isString packageId); + assert (builtins.isList features); + assert (builtins.isAttrs target); + assert (builtins.isBool runTests); + + let + rootPackageId = packageId; + mergedFeatures = mergePackageFeatures ( + args // { + inherit rootPackageId; + target = target // { test = runTests; }; + } + ); + + buildByPackageId = packageId: buildByPackageIdImpl packageId; + + # Memoize built packages so that reappearing packages are only built once. + builtByPackageId = + lib.mapAttrs (packageId: value: buildByPackageId packageId) crateConfigs; + + buildByPackageIdImpl = packageId: + let + features = mergedFeatures."${packageId}" or []; + crateConfig' = crateConfigs."${packageId}"; + crateConfig = + builtins.removeAttrs crateConfig' [ "resolvedDefaultFeatures" "devDependencies" ]; + devDependencies = + lib.optionals + (runTests && packageId == rootPackageId) + (crateConfig'.devDependencies or []); + dependencies = + dependencyDerivations { + inherit builtByPackageId features target; + dependencies = + (crateConfig.dependencies or []) + ++ devDependencies; + }; + buildDependencies = + dependencyDerivations { + inherit builtByPackageId features target; + dependencies = crateConfig.buildDependencies or []; + }; + + dependenciesWithRenames = + lib.filter (d: d ? "rename") ( + (crateConfig.buildDependencies or []) + ++ (crateConfig.dependencies or []) + ++ devDependencies + ); + + crateRenames = + builtins.listToAttrs + (map (d: { name = d.name; value = d.rename; }) dependenciesWithRenames); + in + buildRustCrateFunc ( + crateConfig // { + src = crateConfig.src or ( + pkgs.fetchurl { + name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz"; + url = "https://crates.io/api/v1/crates/${crateConfig.crateName}/${crateConfig.version}/download"; + sha256 = crateConfig.sha256; + } + ); + inherit features dependencies buildDependencies crateRenames; + } + ); + in + builtByPackageId; /* Returns the actual derivations for the given dependencies. */ - dependencyDerivations = buildByPackageId: features: dependencies: - assert (builtins.isFunction buildByPackageId); - assert (builtins.isList features); - assert (builtins.isAttrs dependencies); + dependencyDerivations = + { builtByPackageId + , features + , dependencies + , target + }: + assert (builtins.isAttrs builtByPackageId); + assert (builtins.isList features); + assert (builtins.isList dependencies); + assert (builtins.isAttrs target); - let enabledDependencies = filterEnabledDependencies dependencies features; - depDerivation = dependencyName: dependency: - buildByPackageId (dependencyPackageId dependency); - in builtins.attrValues (lib.mapAttrs depDerivation enabledDependencies); + let + enabledDependencies = filterEnabledDependencies { + inherit dependencies features target; + }; + depDerivation = dependency: builtByPackageId.${dependency.packageId}; + in + map depDerivation enabledDependencies; - /* Returns differences between cargo default features and crate2nix default features. - * - * This is useful for verifying the feature resolution in crate2nix. - */ - diffDefaultPackageFeatures = {crateConfigs ? crates, packageId}: - assert (builtins.isAttrs crateConfigs); + /* Returns a sanitized version of val with all values substituted that cannot + be serialized as JSON. + */ + sanitizeForJson = val: + if builtins.isAttrs val + then lib.mapAttrs (n: v: sanitizeForJson v) val + else if builtins.isList val + then builtins.map sanitizeForJson val + else if builtins.isFunction val + then "function" + else val; - let prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; }); + /* Returns various tools to debug a crate. */ + debugCrate = { packageId, target }: + assert (builtins.isString packageId); + + let + debug = rec { + # The built tree as passed to buildRustCrate. + buildTree = buildRustCrateWithFeatures { + buildRustCrateFunc = lib.id; + inherit packageId; + }; + sanitizedBuildTree = sanitizeForJson buildTree; + dependencyTree = sanitizeForJson ( + buildRustCrateWithFeatures { + buildRustCrateFunc = crate: { + "01_crateName" = crate.crateName or false; + "02_features" = crate.features or []; + "03_dependencies" = crate.dependencies or []; + }; + inherit packageId; + } + ); + mergedPackageFeatures = mergePackageFeatures { + features = rootFeatures; + inherit packageId target; + }; + diffedDefaultPackageFeatures = diffDefaultPackageFeatures { + features = rootFeatures; + inherit packageId; + }; + }; + in + { internal = debug; }; + + /* Returns differences between cargo default features and crate2nix default + features. + + This is useful for verifying the feature resolution in crate2nix. + */ + diffDefaultPackageFeatures = + { crateConfigs ? crates + , packageId + , target + }: + assert (builtins.isAttrs crateConfigs); + + let + prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; }); mergedFeatures = prefixValues "crate2nix" - (mergePackageFeatures {inherit crateConfigs packageId; features = ["default"]; }); + (mergePackageFeatures { inherit crateConfigs packageId target; features = [ "default" ]; }); configs = prefixValues "cargo" crateConfigs; combined = lib.foldAttrs (a: b: a // b) {} [ mergedFeatures configs ]; - onlyInCargo = builtins.attrNames (lib.filterAttrs (n: v: !(v ? "crate2nix" ) && (v ? "cargo")) combined); - onlyInCrate2Nix = builtins.attrNames (lib.filterAttrs (n: v: (v ? "crate2nix" ) && !(v ? "cargo")) combined); + onlyInCargo = + builtins.attrNames + (lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined); + onlyInCrate2Nix = + builtins.attrNames + (lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined); differentFeatures = lib.filterAttrs - (n: v: - (v ? "crate2nix" ) - && (v ? "cargo") - && (v.crate2nix.features or []) != (v."cargo".resolved_default_features or [])) + ( + n: v: + (v ? "crate2nix") + && (v ? "cargo") + && (v.crate2nix.features or []) != (v."cargo".resolved_default_features or []) + ) combined; - in builtins.toJSON { inherit onlyInCargo onlyInCrate2Nix differentFeatures; }; + in + builtins.toJSON { + inherit onlyInCargo onlyInCrate2Nix differentFeatures; + }; - /* Returns the feature configuration by package id for the given input crate. */ - mergePackageFeatures = {crateConfigs ? crates, packageId, features, ...} @ args: - assert (builtins.isAttrs crateConfigs); - assert (builtins.isString packageId); - assert (builtins.isList features); + /* Returns an attrset mapping packageId to the list of enabled features. - let packageFeatures = listOfPackageFeatures args; - grouped = lib.groupBy (x: x.packageId) packageFeatures; - in lib.mapAttrs (n: v: sortedUnique (builtins.concatLists (builtins.map (v: v.features) v))) grouped; - - /* Returns a { packageId, features } attribute set for every package needed for building the - package for the given packageId with the given features. - - Returns multiple, potentially conflicting attribute sets for dependencies that are reachable - by multiple paths in the dependency tree. + If multiple paths to a dependency enable different features, the + corresponding feature sets are merged. Features in rust are additive. */ - listOfPackageFeatures = {crateConfigs ? crates, packageId, features, dependencyPath? [packageId], ...} @ args: - assert (builtins.isAttrs crateConfigs); - assert (builtins.isString packageId); - assert (builtins.isList features); + mergePackageFeatures = + { crateConfigs ? crates + , packageId + , rootPackageId ? packageId + , features ? rootFeatures + , dependencyPath ? [ crates.${packageId}.crateName ] + , featuresByPackageId ? {} + , target + # Adds devDependencies to the crate with rootPackageId. + , runTests ? false + , ... + } @ args: + assert (builtins.isAttrs crateConfigs); + assert (builtins.isString packageId); + assert (builtins.isString rootPackageId); + assert (builtins.isList features); + assert (builtins.isList dependencyPath); + assert (builtins.isAttrs featuresByPackageId); + assert (builtins.isAttrs target); + assert (builtins.isBool runTests); - let + let crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}"); expandedFeatures = expandFeatures (crateConfig.features or {}) features; - depWithResolvedFeatures = dependencyName: dependency: - let packageId = dependencyPackageId dependency; - features = dependencyFeatures expandedFeatures dependencyName dependency; - in { inherit packageId features; }; + depWithResolvedFeatures = dependency: + let + packageId = dependency.packageId; + features = dependencyFeatures expandedFeatures dependency; + in + { inherit packageId features; }; - resolveDependencies = path: dependencies: - assert (builtins.isAttrs dependencies); + resolveDependencies = cache: path: dependencies: + assert (builtins.isAttrs cache); + assert (builtins.isList dependencies); - let enabledDependencies = filterEnabledDependencies dependencies expandedFeatures; - directDependencies = - builtins.attrValues (lib.mapAttrs depWithResolvedFeatures enabledDependencies); - in builtins.concatMap - ({packageId, features}: listOfPackageFeatures { - # This is purely for debugging. - dependencyPath = dependencyPath ++ [path packageId]; - inherit crateConfigs packageId features; - }) - directDependencies; + let + enabledDependencies = filterEnabledDependencies { + inherit dependencies target; + features = expandedFeatures; + }; + directDependencies = map depWithResolvedFeatures enabledDependencies; + foldOverCache = op: lib.foldl op cache directDependencies; + in + foldOverCache + ( + cache: { packageId, features }: + let + cacheFeatures = cache.${packageId} or []; + combinedFeatures = sortedUnique (cacheFeatures ++ features); + in + if cache ? ${packageId} && cache.${packageId} == combinedFeatures + then cache + else mergePackageFeatures { + features = combinedFeatures; + featuresByPackageId = cache; + inherit crateConfigs packageId target runTests rootPackageId; + } + ); - resolvedDependencies = builtins.concatLists - [ - (resolveDependencies "dependencies" (crateConfig.dependencies or {})) - (resolveDependencies "buildDependencies" (crateConfig.buildDependencies or {})) - ]; + cacheWithSelf = + let + cacheFeatures = featuresByPackageId.${packageId} or []; + combinedFeatures = sortedUnique (cacheFeatures ++ expandedFeatures); + in + featuresByPackageId // { + "${packageId}" = combinedFeatures; + }; - in [{inherit packageId; features = expandedFeatures;}] ++ resolvedDependencies; + cacheWithDependencies = + resolveDependencies cacheWithSelf "dep" ( + crateConfig.dependencies or [] + ++ lib.optionals + (runTests && packageId == rootPackageId) + (crateConfig.devDependencies or []) + ); + + cacheWithAll = + resolveDependencies + cacheWithDependencies "build" + (crateConfig.buildDependencies or []); + + in + cacheWithAll; /* Returns the enabled dependencies given the enabled features. */ - filterEnabledDependencies = dependencies: features: - assert (builtins.isAttrs dependencies); + filterEnabledDependencies = { dependencies, features, target }: + assert (builtins.isList dependencies); assert (builtins.isList features); + assert (builtins.isAttrs target); - lib.filterAttrs - (depName: dep: - builtins.isString dep - || dep.target or true - && (!(dep.optional or false) || builtins.any (doesFeatureEnableDependency depName) features)) + lib.filter + ( + dep: + let + targetFunc = dep.target or (features: true); + in + targetFunc { inherit features target; } + && ( + !(dep.optional or false) + || builtins.any (doesFeatureEnableDependency dep) features + ) + ) dependencies; /* Returns whether the given feature should enable the given dependency. */ - doesFeatureEnableDependency = depName: feature: - let prefix = "${depName}/"; - len = builtins.stringLength prefix; - startsWithPrefix = builtins.substring 0 len feature == prefix; - in feature == depName || startsWithPrefix; + doesFeatureEnableDependency = { name, rename ? null, ... }: feature: + let + prefix = "${name}/"; + len = builtins.stringLength prefix; + startsWithPrefix = builtins.substring 0 len feature == prefix; + in + feature == name + || (rename != null && rename == feature) + || startsWithPrefix; - /* Returns the expanded features for the given inputFeatures by applying the rules in featureMap. + /* Returns the expanded features for the given inputFeatures by applying the + rules in featureMap. - featureMap is an attribute set which maps feature names to lists of further feature names to enable in case this - feature is selected. + featureMap is an attribute set which maps feature names to lists of further + feature names to enable in case this feature is selected. */ expandFeatures = featureMap: inputFeatures: assert (builtins.isAttrs featureMap); assert (builtins.isList inputFeatures); - let expandFeature = feature: - assert (builtins.isString feature); - [feature] ++ (expandFeatures featureMap (featureMap."${feature}" or [])); - outFeatures = builtins.concatMap expandFeature inputFeatures; - in sortedUnique outFeatures; + let + expandFeature = feature: + assert (builtins.isString feature); + [ feature ] ++ (expandFeatures featureMap (featureMap."${feature}" or [])); + outFeatures = builtins.concatMap expandFeature inputFeatures; + in + sortedUnique outFeatures; - /* The package ID of the given dependency. */ - dependencyPackageId = dependency: if builtins.isString dependency then dependency else dependency.packageId; - - /* Returns the actual dependencies for the given dependency. */ - dependencyFeatures = features: dependencyName: dependency: + /* + Returns the actual dependencies for the given dependency. + + features: The features of the crate that refers this dependency. + */ + dependencyFeatures = features: dependency: assert (builtins.isList features); - assert (builtins.isString dependencyName); - assert (builtins.isAttrs dependency || builtins.isString dependency); + assert (builtins.isAttrs dependency); - let defaultOrNil = if builtins.isString dependency || dependency.usesDefaultFeatures or true - then ["default"] - else []; - explicitFeatures = if builtins.isString dependency then [] else dependency.features or []; - additionalDependencyFeatures = - - let dependencyPrefix = dependencyName+"/"; - dependencyFeatures = - builtins.filter (f: lib.hasPrefix dependencyPrefix f) features; - in builtins.map (lib.removePrefix dependencyPrefix) dependencyFeatures; + let + defaultOrNil = if dependency.usesDefaultFeatures or true + then [ "default" ] + else []; + explicitFeatures = dependency.features or []; + additionalDependencyFeatures = + let + dependencyPrefix = dependency.name + "/"; + dependencyFeatures = + builtins.filter (f: lib.hasPrefix dependencyPrefix f) features; + in + builtins.map (lib.removePrefix dependencyPrefix) dependencyFeatures; in defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures; @@ -5585,12 +7204,20 @@ rec { assert (builtins.isList features); assert (builtins.all builtins.isString features); - let outFeaturesSet = lib.foldl (set: feature: set // {"${feature}" = 1;} ) {} features; - outFeaturesUnique = builtins.attrNames outFeaturesSet; - in builtins.sort (a: b: a < b) outFeaturesUnique; + let + outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) {} features; + outFeaturesUnique = builtins.attrNames outFeaturesSet; + in + builtins.sort (a: b: a < b) outFeaturesUnique; + + deprecationWarning = message: value: + if strictDeprecation + then builtins.throw "strictDeprecation enabled, aborting: ${message}" + else builtins.trace message value; # # crate2nix/default.nix (excerpt end) - # + # + }; } diff --git a/crate-hashes.json b/crate-hashes.json index ab7218c..9e26dfe 100644 --- a/crate-hashes.json +++ b/crate-hashes.json @@ -1,242 +1 @@ -{ - "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0q0c8l8pqhacgakmaz53az6fszdwdb0nwr5ds6cac9r9zz8ywagi", - "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)": "0c5dwgi9z1z4d319mdji3y97p3nsbla5jgi9546gf88wgi3q4jqa", - "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)": "0kly08m5idjk91mawpz3xz5b2b08gvqb2c43h82mkmhi3fbvcih0", - "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)": "0q7pww0k53vknmqs80qadrg605wxva7y3d9q8l4n82lz4h89i3xg", - "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)": "0y3bah2wqsmd72q4xqh8byk62g5b034pr52yhaz9lxz8ls2yrxma", - "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "0ls65i028lmdsbxq5bs5pyv3qhr99waldlhvv1w23jsbbgvkc592", - "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)": "1xb87xrblkncpq259zsfn53kfzp021ij2yd7xwfxfd3p3n0br47c", - "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)": "0g6yv4rxxw51z5p05b0c1ibvdmm2lbjqq040ga3va8zb6xf6y7ad", - "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "1fv0hb97dk29madnzmqxp4lns1vys0vnrk9r4pz3c2x6aq7c17q0", - "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)": "1f1ccns3k90fx2x3vqs4hlw911pffd4yg58z64fjz3v55kvpmbga", - "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "0r657y880jjshqf9ikh9xqa62if2fkkijr334n9qsxcxrq6rvxvp", - "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)": "0vcbppj7a1jnap2svn969pka0br64nb480w5h7p4xiffswys1m7x", - "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "1vkzd9irjmc59c8lm852367na5ra9g1lhkxvdz9z6yg09xi4kynm", - "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0iws52fmafp3w39wbfa6n4hh2wnqnhblkqq55i61nphk3xqk2ab6", - "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)": "157bfkgcy4p3cclfv378x7clxcj3l23jj7sckjbqkmdjbi72y134", - "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)": "0nclvmhz967mvqrg2040is0a21grjd0xhmmmm5pi7qwx0mxprgvk", - "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)": "08fk0p2xvkqpmz3zlrwnf6l8sj2vngw464rvzspzp31sbgxbwm4v", - "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "1x2wgaw603jcjwsfvc8s2rpaqjv0aqj8mvws2ahhkvfnwkdf7icw", - "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)": "1b7488a848vyb98kb4nf80syn0g2crnm1ns63dfjl6cicb603c6k", - "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)": "1hkqmz1f5y28ir5bxgv75sa3i1q5kgdvrd8fyhhp7ip9mbx9gb90", - "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)": "0g11if4ihxifdiiwk6brnywkpgbvfbfwxgfqw5a407hprcq3s49f", - "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)": "1cpavs8f1bdl8wpxc4d1v8gr4kspsvdrzb4sazqzyak11q9kxc7q", - "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)": "18x3dv3clg1qyf0skj16b9zd9679dav2r81in85zdmb5aqd25564", - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "1hhgqh551gmws22z9rxbnsvlppwxvlj0nszj7n1x56pqa3j3swy7", - "awc 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)": "1cjrb59gpgq6q5jmhy37z6l7sl2il1scjxhhpbz1ylmy0apjv6dj", - "backtrace 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)": "19i5ary8nwk14k0z7gwdwlhs6h3ha9s44942qdy54xi0sbmwqnv0", - "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)": "1jrb7450v9kyqrjc97vzckbpwj9jakvc1jkq95i46g6mn9kvqkgr", - "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0qmd6kyyh223zr0x7k7dsh126sqz6mdd6rqxdayasif5b5816fnv", - "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)": "1idkqdfza39zyhl7ml4i2wq6dv2y331vj2nm9lshvmqbrc23j890", - "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)": "11hhz8ln4zbpn2h2gm9fbbb9j254wrd4fpmddlyah2rrnqsmmqkd", - "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "0b77awhpn7yaqjjibm69ginfn996azx5vkzfjj39g3wbsqs7mkxg", - "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)": "0b68xckd06a5gvdykimgr5f0f2whrhj0lwqq6scy0viaargqkdnl", - "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)": "1daqrhn50rr8k03h7dd2zkjc0qn2c45q6hrmi642fnz0y5rfwm5y", - "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "1kidhyyvar7mw59c6fbbrlfhwrym1qq35jn1kbwf2q98vc3fdzf2", - "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)": "1jgxppazbx9802if2s9wbwhq8dg5fxmm0ylp3ipfzys818wba2fj", - "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "1hi7ixdls5qssw39wgp1gm8d20yjghgawc3m4xr2wkxmxsv08krz", - "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)": "0v7dcwfzya64c65haqydhyhkjk0czfrma14lrm7wkqmz4j4skpwh", - "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)": "0yxdckappaf966a727vx45brb8jzgy5a1cf79vvfj4aa7y21sv22", - "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)": "04vh0cc9g94cj6cq96sfv3lks7rx486jdn43rmqcvb2syh4y9dqj", - "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)": "1di84m338b9c42vfq86g5lyq5s03i0zfvvf59dvb6mr37z063h1d", - "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)": "0x52qzpbyl2f2jqs7kkqzgfki2cpq99gpfjjigdp8pwwfqk01007", - "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)": "13yj8csdvzzcrw8g4946rip5wgvviafg6cg01m1r32vgnssb2kr5", - "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)": "054n9ngh6pkknpmd4acgdsp40iw6f5jzq8a4h2b76gnbvk6p5xjh", - "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)": "1z9lby5sr6vslfd14d6igk03s7awf91mxpsfmsp3prxbxlk0x7h5", - "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)": "0dql42yb58lc9020mvb92jms5j9q0am1wp1ap8z0k0sjl1gcphzb", - "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)": "1kabsqxh01m6l2b1gz8wgn0d1k6fyczww9kaks0sbmsz5g78ngzx", - "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)": "1n2v6wlqkmqwhl7k6y50irx51p37xb0fcm3njbman82gnyq8di2c", - "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "1mx88ndqln6vzg7hjhjp8b7g0qggpqggsjrlsdqrfsrbpdzffcn8", - "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)": "1jv55l4fmwsxwwvv3y59cnzcfnh28yvrc291b45nnh8qj3fdz5jz", - "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)": "15npcbjlkd9wm82x7gf1al7sn4rfd3jqzq5ysiy4qz1wsbrlsghv", - "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)": "040fgh0jahqra9ascwb986zgll1ss88ky9bfvn0zfay42zsyz83n", - "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)": "04y2jav1ckrajvba1pp2jxmfc3iyjk9d6nhnl23x70b59qbkwrnl", - "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "1i7widx9ddr6vg6qn2ihwnmaqxfqjc76w846ymsydnksrn175rh9", - "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)": "09qsxzrxzqz7h76sd5klfk6nq407way77j898519ll7pr5yk3j65", - "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)": "00ps2s591hh2sicdv3ix6gv3qf39n5qf67q0mjff90ha8hvsykpj", - "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)": "18ky7mpla3mpw29ix5xb47vag294s32491mm5pxbrx7ywybay095", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)": "128mlh23y3gg6ag5h8iiqlcbl59smisdzraqy88ldrf75kbw27ip", - "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)": "105n8sp2djb1s5lzrw04p7ss3dchr5qa3canmynx396nh3vwm2p8", - "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)": "0b6cnvqbflws8dxywk4589vgbz80049lz4x1g9dfy4s1ppd3g4z5", - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)": "0jrf4shb1699r4la8z358vri8318w4mdi6qzfqy30p2ymjlca4gk", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)": "08jp1zxrm9jbrr6l26bjal4dbm8bxfy57ickdgibsqxr1n9j3hf5", - "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0x84abzfq22q2n91ki0qxnxj2234vz2l8wriqppw6ycc4p8a0990", - "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0y193rdyniid2nzad1mhwhp5a9lplb5my25yw8lwhcfaddqzcfhz", - "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "03046fyq5s9qyfsary392jc1h65vdw4piya5ksnajd21g8ma6kdz", - "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0q6jf2caqbccpj54041zmziz5ap1l5zvwhq4q46yygpvn8hwkwp9", - "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0nmhb0lfw5h79qfkklr1hrrvpzz1cdnjq7xqq60qbii71b5mp7qk", - "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "1b2hvhvl5f0haky329kwdlak6rcfinvnv33nxh1p3qczqqk97fqy", - "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0363cl3srph7xzd01lq8vigh8vyx8g15ha3hv95k3vzcn4nsqdvr", - "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0xh5apdfk9kna15yiax57601n21x7qrmbqzmf86acv6qwp474z11", - "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0dbra0yqszrp8rfhqr87gayyy5zskikn42sxfsargxzxwa06id4m", - "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "0p4mfqswwxhkkskdpjld581ksg3cipfs85jbw7znljhkz40l9fjj", - "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)": "1i6r4q7i24zdy6v5h3l966a1cf8a1aip2fi1pmdsi71sk1m3w7wr", - "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)": "0s8spbbf8p50arh5pawnwj7vq454vv24vr7hnagmnxxr0hl4bf6k", - "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "1pcpj3s6a8gqnhvsskn9fjczj984f7348k6pzaprn1rfdyhlpphc", - "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)": "1q7vmnlh62kls6cvkfhbcacxkawaznaqa5wwm9dg1xkcza846c3d", - "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)": "1kzjq2qhy927jq3anycz2ijpskfx5d38p4vp68mz60c8ffzjkr5s", - "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)": "1383lcnzmiqm0bz0i0h33rvbl5ma125ca5lfnx4qzx1dzdz0wl2a", - "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0n2nk147bscbgs02rmfzlfwbyq5rlc2xwbw39v0p4hsprra16clz", - "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)": "179g14kk0fjhnanr0ah1dkvjwwxi1lbcxsczhkph2jyc847cnzd0", - "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0dggj4s0cq69bn63q9nqzzay5acmwl33nrbhjjsh5xys8sk2x4jw", - "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "1y7q207gg33jr5rnlnb0h08k00i54g9fypf3drjk8g1sq2swn92r", - "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)": "1ih989i3hmcpz6pfzsh3d7d8mama9z3r58qbd4fvk7vyipywn2l6", - "hyper-tls 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)": "1cq3lh1q8i3xl24z6bpvmhlszr27d516hhx515y10cc141cw1myz", - "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "1mm05aq43qc5n492njnac5xn4rhiraii25xc0hwppr471jzijh8d", - "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)": "0dkidxq5q2a17symqni0k6m2jfap339bxnd3dd83dr556jh5dz89", - "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)": "1wy7rsm8rx6y4rjy98jws1aqxdy0v5wbz9whz73p45cwpsg4prfa", - "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "1lik8g8wrp9i2i8y5i9l8w21023cvd42m9rxmw04hq72f8hfmk4v", - "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)": "08ibirc0yiijx66aqszx4psz08zkn4fp4627dym94xcrib12na9r", - "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)": "102dgh2d1779jyi63kgah61d4d92ql05ydmq7iwlcykdv9pabnpx", - "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)": "04zhb31lfnjyp97ggq80c9k1zflj31j5mvkcccji9d3xynnlwhzs", - "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)": "1gp32jxksz3pkn1plkm18zyymw0lfql4a31wa225f5ajr6r1zyl6", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)": "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj", - "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)": "1zkrdzsqzzc7509kd7nngdwrp461glm2g09kqpzaqksp82frjdvy", - "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)": "13h6sdghdcy7vcqsm2gasfw3qg7ssa0fl3sw7lq6pdkbk52wbyfr", - "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)": "1vx2z1alab53r1fwwqzaixxxc9h803k6rr8cf4zyzmjp1zc7s6hi", - "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)": "0wz5fdpjpj8qp7wx7gq9rqckd2bdv7hcm5631hq03amxy5ikhi3l", - "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)": "0li02hwq7s5s2bh34bss81insgm2zajba4yqrvkzpv2ji63w02p6", - "libssh2-sys 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)": "063kbca6fx1p9hp572529w1y6ywqq0vamxhvr181s4pbayzmrsjd", - "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)": "195jzg8mgjbvmkbpx1rzkzrqm0g2fdivk79v44c9lzl64r3f9fym", - "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)": "17bpcphlhrxknzvikmihiqm690wwyr0zridyilh1dlxgmrxng7pd", - "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)": "1a58wdkns5zvk0kvjjvg71z6zp0zwwzyppsl07mh76d6rczjhzi7", - "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)": "0wvzzzcn89dai172rrqcyz06pzldyyy0lf0w71csmn206rdpnb15", - "log-mdc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)": "0lqdid3dbi6ikikbqnmnlm7rm488x58k4b5mw39qmkxl3i00v74h", - "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)": "1gnri2phb7pzhmq77a9q0nz12ys1p6g8k9shmmlrhbiv496m8yz2", - "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)": "0h5qj65hiibsgw01zmy940c654rh0a34cwirrlc57pxyq4cpk0gq", - "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)": "03hl636fg6xggy0a26200xs74amk3k9n0908rga2szn68agyz3cv", - "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)": "0wm8p4xr40sgl0mdvqvs7w42s5v9jpaianmadkszsclmkmy8a5zc", - "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "0sf6y998273290a6zxx5c28ps196vzz3q9yd0v5jxflpm3bp52f1", - "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)": "1bq7n29iaqvdw0csrc24mdsij890x0sfar9wbi01k84y9kd3i292", - "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)": "18wrpddfxipwhhw5q7wdykdcp0sm0zq7jizjrcvdnrg80kyg8nsk", - "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)": "1b1fzsj3y60fqnx6n2pi0g1lanav9hw0sy9vyah3dq1ilrbfa17s", - "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)": "08z31q5fx4irmp3hsvlzqy541swda8ixhs69adm95j97xz5ikmys", - "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)": "1gff9908pvvysv7zgxvyxy7x34fnhs088cr0j8mgwj8j24mswrhm", - "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "14f8zkc6ix7mkyis1vsqnim8m29b6l55abkba3p2yz7j1ibcvrl0", - "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)": "19bmkzcj2qvyxchlqa1yg2g5awjmk6sigm20mfwajfcczbq3dc6j", - "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)": "1qnmajafgybj5wyxz9iffa8x5wgbwd2znfklmhqj7vl6lw1m65mq", - "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)": "0b4adir378n2irr76z8grc9jxif8vlyy01rid8j4r716y9y4dg9r", - "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)": "0rg7n0nif70052wlaffmgxmmlvi6xm7zpqmzfq9d8wr9376lpn2h", - "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)": "0y2pfcnbvkhny93mv984xg2gwrw47cbj1wxaifl7m1jv25gspsbw", - "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)": "08kffmbar1bl9hy4zlv3qnns29fwvm4c7vl0dlklkcw0k9lbg2wc", - "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)": "1zdzx78vrcg3f39w94pqjs1mwxl1phyv7843hwgwkzggwcxhhf6s", - "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)": "0vr6ca475yglxdz7qriasdziq0cqn54z0z1xkmiqlnjx30plwmbl", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)": "053115487n4v2v045gjp0wh0q3lziribn67hwxjdddqq95l2m45m", - "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "1dpvqrrvv87wx662iv1gjjjqz6dgyqfw4ywg9slrvpsa9qykxdxa", - "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)": "1gfnzmhzrpyzhhcimmn9khxz4x65c5llm6blq04p1jmd2i6xmszx", - "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)": "1a89fznx26vvaxyrxdvgf6iwai5xvs6xjvpjin68fgvrslv6n15a", - "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)": "161hmrb747c6j5178hdl5i7pabhxrl963ji8jz2xk0fdzw2y7wkg", - "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)": "0fi22n6q4n9wimkfhacbryy76k128x8mjrzh38wffsnchpwg5gbn", - "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)": "1bwjh1gkh2n6zqb2q1a04gkskgz3hxbj3w7fvhx6yd7l0nbmbd1b", - "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)": "18lcl51vf9phcav52cci3wqqrszy175vxw7yfhn875sigwyf60sy", - "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)": "1xg0cylxi94vj3vfy8dpcb774i5hpzz64yaks3nzxy6hgznr36v2", - "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)": "0i838f2nr81585ckmfymf8l1x1vdmx6n8xqvli0lgcy60yl2axy3", - "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)": "0wb1j947sinyr5sqc5wjxljs250rpfsm7aazy0mswg9jcv1v4zss", - "pin-project-internal 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)": "11gzk6fx0s6cyh5fhzwvfy6ds864szw93df8xb7m3s4f2kiblr0n", - "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)": "01pjrqsjxh1ypqcy07wk7jwmns89mkq8zgjmanjnzx261sw69s79", - "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)": "1fl7h1f6gr7qj903k3ir2vw993gbj4dd775s0idq4pzsbjqjj3x1", - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)": "0f83cnls5a6y97k8b3a54xhmyrjybj29qq6rwvz450qdsy5ff8vj", - "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)": "1mlbp0713frbyvcbjmc5vl062b0vr58agkv3ar2qqi5plgy9b7ib", - "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)": "0cs1yy9bd7xxl2p0nn05imz5qi5glhrjya0qag8yh6805arnrwrc", - "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)": "06i00rh8rj1wxdywfs08yfji0ykqc3w65pyh11nrgwjkcjq8dfkb", - "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)": "0cnpfl5x7cac9d94in5r93b29frski33jhvgp7n6qih9gpsxqn80", - "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)": "1xbai316ygv2gxc9vjb8b2nr6xia3ahc19nh66vkwnvz1nc90gya", - "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)": "1xly6h56wzyg4lazds659vzxfj8g3fd392jjpzh6fh8a7dp1w543", - "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)": "17gqp7ifp6j5pcnk450f964a5jkqmy71848x69ahmsa9gyzhkh7x", - "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)": "0r7030w7dymarn92gjgm02hsm04fwsfs6f1l20wdqiyrm9z8rs5q", - "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)": "1amg6qj53ylq3ix22n27kmj1gyj6i15my36mkayr30ndymny0b8r", - "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "0zpp3wmxhhmripb6bywhzhx5rfwl4dfbny85hpalwdj0sncv0p0k", - "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)": "19qfnh77bzz0x2gfsk91h0gygy0z1s5l3yyc2j91gmprq60d6s3r", - "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0592q9kqcna9aiyzy6vp3fadxkkbpfkmi2cnkv48zhybr0v2yf01", - "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)": "0jcp8nd947zcy938bz09pzlmi3vyxfdzg92pjxdvvk0699vwcc26", - "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "1ad2vwdvayclgw0g263zy6y7na5id400wqbyad61n6riw09286c2", - "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)": "1jlyibmmpp3skv1lxpif5mfq57aqgx566asdkq6gjgvj8k0grala", - "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)": "04sxg2ppvxiljc2i13bwvpbi540rf9d2a89cq0wmqf9pjvr3a1wm", - "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)": "0gpqslgmnzij48nfbpvlipm531k8d9knrqa2hh873lxq7gb98a88", - "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)": "1vm5lk75n5bzaygf0cjh5fv31m29955pwpkk1d04ls9ix631rhdk", - "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)": "0ly2r85vxrs2ccv369lawlrqlxc4z2g0wd439552bpjik8190p1p", - "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)": "0zmn448d0f898ahfkz7cir0fi0vk84dabjpw84mk6a1r6nf9vzmi", - "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)": "0rgwzbgs3i9fqjm1p4ra3n7frafmpwl29c8lw85kv1rxn7n2zaa7", - "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)": "00pfzybl59kc784x3pdw7vr8vy8crcby7gh2p1sqzhylrhkhjnr7", - "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)": "1gf0ca7pskk27177p1v0sbxr1676ikb0mxymb4plf8lb6qjk8hra", - "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)": "04pxfhps9ix078qyml7hifjdmy4bg1n047ki0wx6i1007z85wjp1", - "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)": "0ki36sicpw6m4840n3rscj0ssz3v2a6ykzmb8sjvricgib9pkl3k", - "schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)": "189a24k6cyv1jmf27vy44hlk4ah38iy02l0fyrw8ihdqylhifpvi", - "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "15vrix0jx3i4naqnjswddzn4m036krrv71a8vkh3b1zq4hxmrb0q", - "security-framework 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "1v41gp96fnd377kmjkirjb54ssw5cwhc559ml198dr0c44d0rl9v", - "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)": "0x785njxla84f5xh2gmy9vpkqapha2gs6ba3yxjlyg0bzwj4sks3", - "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)": "0azak2lb2wc36s3x15az886kck7rpnksrw14lalm157rg9sc9z63", - "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)": "1da66c8413yakx0y15k8c055yna5lyb6fr0fw9318kdwkrk5k12h", - "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)": "0dsn86dafbfm5hhngzay7s4pmb4hskpjjyw2f9l7wm9s28gs5ckf", - "serde-value 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)": "1sc1j3rbnid5ysdxfyf3qvmn3baa21d2r10qhd2b7xfkh318p8py", - "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)": "0c29n10yb2n9gfsaxk86w3ap7zdciiirmqf6i7vwd0fk3y0mpkc8", - "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)": "1lpjphndivd7dmqzf18qh882wfbn9ajr52apad7mzp5ljnf9hd1f", - "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)": "1q1alszz71dh30by1fplz00rcbhi3y4k3j6z795xlv7ck735f78c", - "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)": "0727jwg07binrwimzxqpbpp26lyssiy9krrn73sdhal75ba4mzyn", - "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)": "12cp2b8f3hbwhfpnv1j1afl285xxmmbxh9w4npzvwbdh7xfyww8v", - "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0sap7brbb8fp3641nrvfm4rk024hjcmxix0y0zn9sc8vgvnfivxb", - "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)": "0h1l2z7qy6207kv0v3iigdf2xfk9yrhbwj1svlxk6wxjmdxvgdl7", - "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "0nr0h34bsl3szp3maja8npg8mavgkijr8fj7g3sq54jp6vz24s7i", - "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)": "06v07j2i8miv484vdgbj0k6npk6115x756yi0x3gvd3424nj3yjx", - "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)": "0fzkmnxgi8dw1kcbf33dhn65v55y8sab68wxi38cyklx00s6l1wq", - "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0prjbn3kyqw0497nmghwwi1vnmf3103bq0plkaxz9zh9dbfd53y4", - "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)": "16xa9y3dgg41fwmlnf80hy63i8dmhrlnkk4lb1yc912bm5w5xffp", - "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)": "1aa3jjx8ga7i02v64kjcf3xkr2b60znqmqzickx1l42wb28qwm5l", - "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)": "0d3jsdz22wgjyxdakqnvdgmwjdvkximz50d9zfk4qlalw635qcvy", - "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)": "162yqi7s3bp1aw4sw0py0dlbcl0cwb1nkjnncgkzs4kn1mhl8qxp", - "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)": "1nda1jk0qdbry6xs6ly9hi1l5cwxpwsbmssfvxnnh0birplzmxj8", - "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)": "1z8bbg1s2ixyw7q877yzcgdnzh80n6vk14c1k0dznwd7rff0m66w", - "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)": "0mcp969x5a3bjh1b0x17vsn21syggqrgkvk12gc97lzfpbyf5hkj", - "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)": "1mi3yl5h54wkarzbm4ma4b3dqfjiy8rlvags4qxqhsy3j850rmcy", - "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)": "1r7ykxw90p5hm1g46i8ia33j5iwl3q252kbb6b074qhdav3sqndk", - "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)": "0s25qh49n7kjayrdj4q3v0jk0jc6vy88rdw0bvgfxqlscpqpxi7d", - "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "1c24q4d2czza6b86sbw76z0f2vkbkkamivkmrhvs549v59za9gip", - "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)": "0vs440x0nwpsw30ks6b8f70178y0gl7zhrqydhjykrhn56bj57h7", - "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)": "09g715plrn59kasvigqjrjqzcgqnaf6v6pia0xx03f18kvfmkq06", - "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)": "1ny809kmdjwd4b478ipc33dz7q6nq7rxk766x8cnrg6zygcksmmx", - "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)": "0lmmsnhkkvjqllv9aa5ayy4xi3fhbcsfqw30yls7ajfss0ghpzhl", - "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "0899jizl2v576jigcrx9x4sw9i0cxghm92f002889gqycrzlhy0g", - "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "1jvqz5shi2gllxdhgfgksazk0cqn0aiiry7wgrdhrz9vgi76976i", - "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "1dr8kzzad13ayc15bam7fpwvpn2c2bsqaybhjf3xiybxgcp3516n", - "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)": "10hi8pl361l539g4kg74mcrhn7grmwlar4jl528ddn2z2jvb7lw3", - "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)": "066jqgjhlj2y49q5x2sv46b2m4kam54q7l76pspw1jj2a3y9nfg9", - "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)": "1s978j4zjyg7rardidnhyv8mvhgy98iyhrvhzxxz82idmhvcp0s0", - "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)": "1k8xc0jpbrmzp0fwghdh6pwzjb9xx2p8yy0xxnnb8065smc5fsrv", - "typemap 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)": "1whvpcq2slamy310z5hd3hl214v91sdxmd9avlqa1bn3l258svkx", - "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)": "15q43mk8vd4vsm9dh694jljg6pi3yqmr8wjx3qbliv21jxm3c4r0", - "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)": "0lcd6jasrf8p9p0q20qyf10c6xhvw40m2c4rr105hbk6zy26nj1q", - "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)": "04pczay81rhvgg99jm8x1jm9c1x0bq7jwm2wpxchni32rl2ss232", - "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)": "1i9a9gzj4i7iqwrgfs3dagf3h2b9qxdy7bviykhnsjrxm3azgsyc", - "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)": "052w5vx2k332h7ycsxsc61rr7hj0szmfsky94f61228z3znsnq9h", - "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)": "1c85gb3p3qhbjvfyjb31m06la4f024jx319k10ig7n47dz2fk8v7", - "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)": "1am8czbk5wwr25gbp2zr007744fxjshhdqjz9liz7wl4pnv3whcf", - "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)": "1zcvx5s71fbx4l691bg770g9yx947b8mmp4yf0mczcric07sh44s", - "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)": "0sqrqxfhz6rsc79da0yvmvszspaym8yvlf0780zsv5w8sf86cmxh", - "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)": "08ghimjjrfgz20i5glcybka96wyx196c54vl62kn7xg0hsqk0aal", - "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)": "1jj2nrg8h3l53d43rwkpkikq5a5x15ms4rf1rw92hp5lrqhi8mpi", - "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)": "0cx8aijx8f9ywb8nw11kh64sssng72bvjpih132msbrvszrzzw2l", - "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)": "1yrx9xblmwbafw2firxyqbj8f771kkzfd24n3q7xgwiqyhi0y8qd", - "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)": "00aywbaicdi81gcxpqdz6g0l96885bz4bml5c9xfna5p01vrh4li", - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)": "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3", - "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)": "0gwk8ybv6c2irgbmk0p3vc81vw71imkvy1vmrrx95kys925wsk2x", - "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)": "0xa6b3rnsmhi13nvs9q51wmavx51yzs5qdbc7bvs0pvs6iar3hsd", - "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)": "18isy9wzas7zkdlzr19i5s3f1zn732wx98dp2s7zqaqkb2rprlar", - "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)": "0hdv9ad3wgkw2acvrs8qaz4v3k5pr07rww1qmb8lw0a4xcb0k946", - "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)": "1iafg4hmpg392nyq0igynfzbr1j6xlvlj5g4hgi2akp825dwyd9b", - "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)": "10lbw7k3dg41yzqav6fig20xijm04xmwgqx6l6agzsvq8llb5vz2", - "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)": "18z9w5f1dphp5q4iv9hv0z0lc0wczhrg7ajalfvwsxrv1q7drc2a", - "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)": "1nk4i7amy48y6sshvjin3f3pbsfm9dasm9hdb63z88k4ikzhfzsy", - "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)": "1fcjxcr9yx194fh88xf4zk1ppay8g66bz9n8g8wqcq4fn5spr1p2", - "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)": "11229nasjqmbczh61l9f88mj9l6d187hbj8ah8fph6iv4zlx56ph", - "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)": "0pi2r4zjrl17ccafqpd0r87nrysz2abq4yqi09lsmija1hdvf4h2", - "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)": "12j8w7jsn60wr1wir2dnspn3b0480my2ksa95f3qxyvb8h1q7xnj", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)": "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as", - "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)": "084ialbgww1vxry341fmkg5crgpvab3w52ahx1wa54yqjgym0vxs", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)": "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga", - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)": "05ihkij18r4gamjpxj4gra24514can762imjzlmak5wlzidplzrp", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)": "0n1ylmlsb8yg1v583i4xy0qmqg42275flvbc51hdqjjfjcl9vlbj", - "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)": "0yxz0sph88wsj7cy94kfy17c5jaj0665m3qqll5saqind1fnfb90", - "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)": "1wvq440hl1v3a65agjbp031gw5jim3qasfvmz703dlz95pbjv45r", - "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)": "1zpy9d9wk11sj17fczfngcj28w4xxjs3b4n036yzpy38dxp4f7kc", - "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)": "09p179lz1gjdpa0c58164dc4cs7ijw3j1aqflpshnl1zwvfsgwyx" -} \ No newline at end of file +{} \ No newline at end of file