aboutsummaryrefslogtreecommitdiff
path: root/Cargo.nix
diff options
context:
space:
mode:
authortilpner2019-10-05 17:28:41 +0200
committertilpner2019-10-05 17:28:41 +0200
commitfa091fcbd219c7a2f8825f0cf6e90bbf994eedf6 (patch)
treef96c20db8ae6ee89f1e891953af88267d1c967ee /Cargo.nix
parent7ac788fd448c68982c4c77bf0288ef941248addd (diff)
downloadrpb-s3-fa091fcbd219c7a2f8825f0cf6e90bbf994eedf6.tar.gz
rpb-s3-fa091fcbd219c7a2f8825f0cf6e90bbf994eedf6.tar.xz
rpb-s3-fa091fcbd219c7a2f8825f0cf6e90bbf994eedf6.zip
migrate to crate2nix
Diffstat (limited to 'Cargo.nix')
-rw-r--r--Cargo.nix5002
1 files changed, 5002 insertions, 0 deletions
diff --git a/Cargo.nix b/Cargo.nix
new file mode 100644
index 0000000..48effb2
--- /dev/null
+++ b/Cargo.nix
@@ -0,0 +1,5002 @@
+
+# Generated by crate2nix 0.6.0-alpha.0 with the command:
+# "generate" "-o" "Cargo.nix"
+# See https://github.com/kolloch/crate2nix for more info.
+
+{ pkgs? import <nixpkgs> { config = {}; },
+ lib? pkgs.lib,
+ callPackage? pkgs.callPackage,
+ stdenv? pkgs.stdenv,
+ buildRustCrate? pkgs.buildRustCrate,
+ fetchurl? pkgs.fetchurl,
+ fetchCrate? pkgs.fetchCrate,
+ # The features to enable for the root_crate or the workspace_members.
+ rootFeatures? ["default"]}:
+
+rec {
+ #
+ # "public" attributes that we attempt to keep stable with new versions of crate2nix.
+ #
+
+ rootCrate = {
+ packageId = "rpb-s3 0.1.0 (path+file:///home/tilpner/dev/rpb-s3)";
+
+ # 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 = "rpb-s3 0.1.0 (path+file:///home/tilpner/dev/rpb-s3)";
+ features = rootFeatures;
+ };
+ };
+ root_crate =
+ builtins.trace "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 = {
+ "rpb-s3" = {
+ packageId = "rpb-s3 0.1.0 (path+file:///home/tilpner/dev/rpb-s3)";
+ build = buildRustCrateWithFeatures {
+ packageId = "rpb-s3 0.1.0 (path+file:///home/tilpner/dev/rpb-s3)";
+ features = rootFeatures;
+ };
+ };
+ };
+ workspace_members =
+ builtins.trace
+ "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.
+ #
+
+ # 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.
+
+ crates = {
+ "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "adler32";
+ version = "1.0.4";
+ edition = "2015";
+ sha256 = "157bfkgcy4p3cclfv378x7clxcj3l23jj7sckjbqkmdjbi72y134";
+ authors = [
+ "Remi Rampin <remirampin@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "aho-corasick";
+ version = "0.7.6";
+ edition = "2015";
+ sha256 = "1srdggg7iawz7rfyb79qfnz6vmzkgl6g6gabyd9ad6pbx7zzj8gz";
+ libName = "aho_corasick";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = {
+ "memchr" = {
+ packageId = "memchr 2.2.1 (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 {
+ crateName = "ansi_term";
+ version = "0.11.0";
+ edition = "2015";
+ sha256 = "08fk0p2xvkqpmz3zlrwnf6l8sj2vngw464rvzspzp31sbgxbwm4v";
+ authors = [
+ "ogham@bsago.me"
+ "Ryan Scheel (Havvy) <ryan.havvy@gmail.com>"
+ "Josh Triplett <josh@joshtriplett.org>"
+ ];
+ dependencies = {
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "windows");
+ features = [ "errhandlingapi" "consoleapi" "processenv" ];
+ };
+ };
+ features = {
+ };
+ };
+ "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "arrayref";
+ version = "0.3.5";
+ edition = "2015";
+ sha256 = "00dfn9lbr4pc524imc25v3rbmswiqk3jldsgmx4rdngcpxb8ssjf";
+ authors = [
+ "David Roundy <roundyd@physics.oregonstate.edu>"
+ ];
+ features = {
+ };
+ };
+ "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "arrayvec";
+ version = "0.4.11";
+ edition = "2015";
+ sha256 = "1bd08rakkyr9jlf538cs80s3ly464ni3afr63zlw860ndar1zfmv";
+ authors = [
+ "bluss"
+ ];
+ dependencies = {
+ "nodrop" = {
+ packageId = "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ "default" = [ "std" ];
+ "serde-1" = [ "serde" ];
+ };
+ };
+ "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "atty";
+ version = "0.2.13";
+ edition = "2015";
+ sha256 = "0a1ii8h9fvvrq05bz7j135zjjz1sjz6n2invn2ngxqri0jxgmip2";
+ authors = [
+ "softprops <d.tangren@gmail.com>"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ target = target."unix";
+ };
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ];
+ };
+ };
+ features = {
+ };
+ };
+ "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "autocfg";
+ version = "0.1.6";
+ edition = "2015";
+ sha256 = "1yzawpsmrcy3x60i59hfwwg7mfdwc74199m2lgkc4vam5ijy8mz7";
+ authors = [
+ "Josh Stone <cuviper@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "backtrace";
+ version = "0.3.38";
+ edition = "2018";
+ sha256 = "0k41sw74xd19s9lsqab1rf94wi8l7ppfarib8hpd0y7q2iym5j41";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "backtrace-sys" = {
+ packageId = "backtrace-sys 0.1.31 (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" = {
+ packageId = "libc 0.2.62 (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)";
+ };
+ features = {
+ "default" = [ "std" "libunwind" "libbacktrace" "dladdr" "dbghelp" ];
+ "gimli-symbolize" = [ "addr2line" "findshlibs" "memmap" "goblin" ];
+ "libbacktrace" = [ "backtrace-sys" ];
+ "rustc-dep-of-std" = [ "backtrace-sys/rustc-dep-of-std" "cfg-if/rustc-dep-of-std" "core" "compiler_builtins" "libc/rustc-dep-of-std" "rustc-demangle/rustc-dep-of-std" ];
+ "serialize-rustc" = [ "rustc-serialize" ];
+ "serialize-serde" = [ "serde" ];
+ "verify-winapi" = [ "winapi/dbghelp" "winapi/handleapi" "winapi/libloaderapi" "winapi/minwindef" "winapi/processthreadsapi" "winapi/synchapi" "winapi/winbase" "winapi/winnt" ];
+ };
+ resolvedDefaultFeatures = [ "backtrace-sys" "dbghelp" "default" "dladdr" "libbacktrace" "libunwind" "std" ];
+ };
+ "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "backtrace-sys";
+ version = "0.1.31";
+ edition = "2015";
+ sha256 = "1gv41cypl4y5r32za4gx2fks43d76sp1r3yb5524i4gs50lrkypv";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ buildDependencies = {
+ "cc" = "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ };
+ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "base64";
+ version = "0.10.1";
+ edition = "2015";
+ sha256 = "1zz3jq619hahla1f70ra38818b5n8cp4iilij81i90jq6z7hlfhg";
+ authors = [
+ "Alice Maz <alice@alicemaz.com>"
+ "Marshall Pierce <marshall@mpierce.org>"
+ ];
+ dependencies = {
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "base64";
+ version = "0.9.3";
+ edition = "2015";
+ sha256 = "11hhz8ln4zbpn2h2gm9fbbb9j254wrd4fpmddlyah2rrnqsmmqkd";
+ authors = [
+ "Alice Maz <alice@alicemaz.com>"
+ "Marshall Pierce <marshall@mpierce.org>"
+ ];
+ dependencies = {
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "safemem" = "safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "bincode";
+ version = "1.2.0";
+ edition = "2015";
+ sha256 = "0sfk6drrivn6xij8w6krskhn7fa5bq2jjvlvl7ipnsvjz3l1l949";
+ authors = [
+ "Ty Overby <ty@pre-alpha.com>"
+ "Francesco Mazzoli <f@mazzo.li>"
+ "David Tolnay <dtolnay@gmail.com>"
+ "Daniel Griffen"
+ ];
+ dependencies = {
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "bindgen 0.50.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "bindgen";
+ version = "0.50.1";
+ edition = "2015";
+ # Hack to suppress building binaries
+ crateBin = [{name = ","; path = ",";}];
+ sha256 = "00a247mxwgvrmc9hd7wrdv09380wjjxn95smy7mxg5q814rm1yvx";
+ authors = [
+ "Jyun-Yan You <jyyou.tw@gmail.com>"
+ "Emilio Cobos Álvarez <emilio@crisal.io>"
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ "The Servo project developers"
+ ];
+ dependencies = {
+ "bitflags" = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cexpr" = "cexpr 0.3.5 (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)";
+ "clang-sys" = {
+ packageId = "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "runtime" "clang_6_0" ];
+ };
+ "clap" = {
+ packageId = "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "env_logger" = {
+ packageId = "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "fxhash" = "fxhash 0.2.1 (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" = {
+ packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "peeking_take_while" = "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "proc-macro2" = {
+ packageId = "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "quote" = {
+ packageId = "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "regex" = "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "shlex" = "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "which" = "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "logging" "clap" ];
+ "logging" = [ "env_logger" "log" ];
+ };
+ resolvedDefaultFeatures = [ "clap" "default" "env_logger" "log" "logging" ];
+ };
+ "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "bitflags";
+ version = "1.2.0";
+ edition = "2015";
+ sha256 = "0cybfqfkplbznkvm0cjn6wv7vpp718i47ld4g84qrb0lwa0jpmcg";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "blake2b_simd";
+ version = "0.5.8";
+ edition = "2018";
+ sha256 = "14974amxa9lgn8syjp1am4yj4vhmcc27k21bvyz4fsawv3hfv204";
+ authors = [
+ "Jack O'Connor"
+ ];
+ dependencies = {
+ "arrayref" = "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "arrayvec" = {
+ packageId = "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "constant_time_eq" = "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "block-buffer";
+ version = "0.3.3";
+ edition = "2015";
+ sha256 = "0ka14535hlndyig1dqxqvdv60mgmnnhfi6x87npha3x3yg5sx201";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = {
+ "arrayref" = "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "byte-tools" = "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "byte-tools";
+ version = "0.2.0";
+ edition = "2015";
+ sha256 = "15cm6sxkk2ikrz8sxld3hv9g419j4kjzwdjp4fn53gjq07awq6il";
+ authors = [
+ "The Rust-Crypto Project Developers"
+ ];
+ features = {
+ };
+ };
+ "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "byteorder";
+ version = "1.3.2";
+ edition = "2015";
+ sha256 = "099fxwc79ncpcl8dgg9hql8gznz11a3sjs7pai0mg6w8r05khvdx";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "bytes";
+ version = "0.4.12";
+ edition = "2015";
+ sha256 = "0cw577vll9qp0h3l1sy24anr5mcnd5j26q9q7nw4f0mddssvfphf";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "either" = {
+ packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ usesDefaultFeatures = false;
+ };
+ "iovec" = "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "i128" = [ "byteorder/i128" ];
+ };
+ resolvedDefaultFeatures = [ "either" ];
+ };
+ "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "c2-chacha";
+ version = "0.2.2";
+ edition = "2018";
+ sha256 = "1lcfazshbiw8kdpcgphlmls0mz5j4wnvsq1diaz4b2bcvgm3r2cn";
+ authors = [
+ "The CryptoCorrosion Contributors"
+ ];
+ dependencies = {
+ "lazy_static" = {
+ packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "ppv-lite86" = {
+ packageId = "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ rename = "ppv-lite86";
+ };
+ };
+ features = {
+ "default" = [ "std" "simd" "rustcrypto_api" ];
+ "rustcrypto_api" = [ "stream-cipher" "byteorder" ];
+ "simd" = [ "ppv-lite86/simd" ];
+ "std" = [ "lazy_static" ];
+ };
+ resolvedDefaultFeatures = [ "lazy_static" "simd" "std" ];
+ };
+ "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "cc";
+ version = "1.0.45";
+ edition = "2018";
+ # Hack to suppress building binaries
+ crateBin = [{name = ","; path = ",";}];
+ sha256 = "0qhw9k5av9x6yvv4jfrji576wy90vgdnr76cifs8xqm70scdl2sm";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "parallel" = [ "num_cpus" "jobserver" ];
+ };
+ };
+ "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "cexpr";
+ version = "0.3.5";
+ edition = "2015";
+ sha256 = "1aianwjm81d0k23aam5wpj1gzjild6wqq8qbkyjhd5qvrxz5z18p";
+ authors = [
+ "Jethro Beekman <jethro@jbeekman.nl>"
+ ];
+ dependencies = {
+ "nom" = {
+ packageId = "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "verbose-errors" ];
+ };
+ };
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ };
+ "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "chrono";
+ version = "0.4.9";
+ edition = "2015";
+ sha256 = "0nw75j1q0idg5a57k68l87422nq8naq818cdxh390byws63a8yfj";
+ authors = [
+ "Kang Seonghoon <public+rust@mearie.org>"
+ "Brandon W Maister <quodlibetor@gmail.com>"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "num-integer" = {
+ packageId = "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "num-traits" = {
+ packageId = "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "serde" = {
+ packageId = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "time" = {
+ packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "clock" = [ "time" ];
+ "default" = [ "clock" ];
+ "wasmbind" = [ "wasm-bindgen" "js-sys" ];
+ };
+ resolvedDefaultFeatures = [ "clock" "default" "serde" "time" ];
+ };
+ "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "clang-sys";
+ version = "0.28.1";
+ edition = "2015";
+ sha256 = "0wxc4lin410r3mll6fsvf6s72yijxr3l50sg4whnm0knmxh8n4fy";
+ authors = [
+ "Kyle Mayes <kyle@mayeses.com>"
+ ];
+ dependencies = {
+ "glob" = "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "libloading" = {
+ packageId = "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ buildDependencies = {
+ "glob" = "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "clang_3_6" = [ "gte_clang_3_6" ];
+ "clang_3_7" = [ "gte_clang_3_6" "gte_clang_3_7" ];
+ "clang_3_8" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" ];
+ "clang_3_9" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" ];
+ "clang_4_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" ];
+ "clang_5_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" ];
+ "clang_6_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" ];
+ "clang_7_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "gte_clang_7_0" ];
+ "clang_8_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "gte_clang_7_0" "gte_clang_8_0" ];
+ "runtime" = [ "libloading" ];
+ };
+ resolvedDefaultFeatures = [ "clang_6_0" "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "libloading" "runtime" ];
+ };
+ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "clap";
+ version = "2.33.0";
+ edition = "2015";
+ sha256 = "054n9ngh6pkknpmd4acgdsp40iw6f5jzq8a4h2b76gnbvk6p5xjh";
+ authors = [
+ "Kevin K. <kbknapp@gmail.com>"
+ ];
+ dependencies = {
+ "ansi_term" = {
+ packageId = "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ target = (!target."windows");
+ };
+ "atty" = {
+ packageId = "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "bitflags" = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "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.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "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" ];
+ "doc" = [ "yaml" ];
+ "lints" = [ "clippy" ];
+ "suggestions" = [ "strsim" ];
+ "wrap_help" = [ "term_size" "textwrap/term_size" ];
+ "yaml" = [ "yaml-rust" ];
+ };
+ resolvedDefaultFeatures = [ "ansi_term" "atty" "color" "default" "strsim" "suggestions" "vec_map" ];
+ };
+ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "cloudabi";
+ version = "0.0.3";
+ edition = "2015";
+ sha256 = "1z9lby5sr6vslfd14d6igk03s7awf91mxpsfmsp3prxbxlk0x7h5";
+ libPath = "cloudabi.rs";
+ authors = [
+ "Nuxi (https://nuxi.nl/) and contributors"
+ ];
+ dependencies = {
+ "bitflags" = {
+ packageId = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "bitflags" ];
+ };
+ resolvedDefaultFeatures = [ "bitflags" "default" ];
+ };
+ "config 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "config";
+ version = "0.9.3";
+ edition = "2015";
+ sha256 = "1j5ffvaj979xcb6y72dka24465ajskifvmzff4ns7kzf4zi8iy56";
+ authors = [
+ "Ryan Leckey <leckey.ryan@gmail.com>"
+ ];
+ dependencies = {
+ "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "nom" = "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rust-ini" = {
+ packageId = "rust-ini 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde-hjson" = {
+ packageId = "serde-hjson 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "serde_json" = {
+ packageId = "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "toml" = {
+ packageId = "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "yaml-rust" = {
+ packageId = "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "toml" "json" "yaml" "hjson" "ini" ];
+ "hjson" = [ "serde-hjson" ];
+ "ini" = [ "rust-ini" ];
+ "json" = [ "serde_json" ];
+ "yaml" = [ "yaml-rust" ];
+ };
+ resolvedDefaultFeatures = [ "default" "hjson" "ini" "json" "rust-ini" "serde-hjson" "serde_json" "toml" "yaml" "yaml-rust" ];
+ };
+ "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "constant_time_eq";
+ version = "0.1.4";
+ edition = "2015";
+ sha256 = "0k3b5yavx7si8cy030py6bhgmg24sghzs8chbs4d4r13wjp5c5ih";
+ authors = [
+ "Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ 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.62 (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" ];
+ "with-chrono" = [ "chrono" ];
+ "with-uuid" = [ "uuid" ];
+ };
+ };
+ "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";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ features = {
+ };
+ };
+ "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crc32fast";
+ version = "1.2.0";
+ edition = "2015";
+ sha256 = "1mx88ndqln6vzg7hjhjp8b7g0qggpqggsjrlsdqrfsrbpdzffcn8";
+ authors = [
+ "Sam Rijs <srijs@airpost.net>"
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crossbeam-deque";
+ version = "0.7.1";
+ edition = "2015";
+ sha256 = "11l7idrx3diksrxbaa13f9h9i6f3456qq3647f3kglxfjmz9bm8s";
+ authors = [
+ "The Crossbeam Project Developers"
+ ];
+ dependencies = {
+ "crossbeam-epoch" = "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crossbeam-epoch";
+ version = "0.7.2";
+ edition = "2015";
+ sha256 = "015axh69r6ggj481ncqj09d7ssbqf8psgyqq9hhpkrh3j7xn4vmn";
+ authors = [
+ "The Crossbeam Project Developers"
+ ];
+ dependencies = {
+ "arrayvec" = {
+ packageId = "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-utils" = {
+ packageId = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "lazy_static" = {
+ packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "memoffset" = "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "scopeguard" = {
+ packageId = "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ "alloc" = [ "crossbeam-utils/alloc" ];
+ "default" = [ "std" ];
+ "nightly" = [ "crossbeam-utils/nightly" "arrayvec/use_union" ];
+ "std" = [ "crossbeam-utils/std" "lazy_static" ];
+ };
+ resolvedDefaultFeatures = [ "default" "lazy_static" "std" ];
+ };
+ "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crossbeam-queue";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "1hannzr5w6j5061kg5iba4fzi6f2xpqv7bkcspfq17y1i8g0mzjj";
+ authors = [
+ "The Crossbeam Project Developers"
+ ];
+ dependencies = {
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crossbeam-utils";
+ version = "0.6.6";
+ edition = "2015";
+ sha256 = "01gxccmrjkkcavdh8fc01kj3b5fmk10f0lkx66jmnv69kcssry72";
+ authors = [
+ "The Crossbeam Project Developers"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "lazy_static" = {
+ packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "lazy_static" ];
+ };
+ resolvedDefaultFeatures = [ "default" "lazy_static" "std" ];
+ };
+ "crypto-mac 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crypto-mac";
+ version = "0.5.2";
+ edition = "2015";
+ sha256 = "0lm5blwpl5bdg128218z7yphgjfsazi7vg1xq807cdd36mxdbgny";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = {
+ "constant_time_eq" = "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ "generic-array" = "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "digest";
+ version = "0.7.6";
+ edition = "2015";
+ sha256 = "074cw6sk5qfha3gjwgx3fg50z64wrabszfkrda2mi6b3rjrk80d4";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = {
+ "generic-array" = "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "dirs";
+ version = "1.0.5";
+ edition = "2015";
+ sha256 = "1py68zwwrhlj5vbz9f9ansjmhc8y4gs5bpamw9ycmqz030pprwf3";
+ authors = [
+ "Simon Ochsenreither <simon@ochsenreither.de>"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "redox_users" = {
+ packageId = "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "redox");
+ };
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
+ };
+ };
+ features = {
+ };
+ };
+ "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "either";
+ version = "1.5.3";
+ edition = "2015";
+ sha256 = "040fgh0jahqra9ascwb986zgll1ss88ky9bfvn0zfay42zsyz83n";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "use_std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_std" ];
+ };
+ "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "env_logger";
+ version = "0.6.2";
+ edition = "2015";
+ sha256 = "1ws1zrbycvqhs18jyymy0d62v394j368060swgnn7500xrfdnl25";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "atty" = {
+ packageId = "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "humantime" = {
+ packageId = "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "log" = {
+ packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "std" ];
+ };
+ "regex" = {
+ packageId = "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "termcolor" = {
+ packageId = "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "termcolor" "atty" "humantime" "regex" ];
+ };
+ resolvedDefaultFeatures = [ "atty" "default" "humantime" "regex" "termcolor" ];
+ };
+ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "failure";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "1msaj1c0fg12dzyf4fhxqlx1gfx41lj2smdjmkc9hkrgajk2g3kx";
+ authors = [
+ "Without Boats <boats@mozilla.com>"
+ ];
+ dependencies = {
+ "backtrace" = {
+ packageId = "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "failure_derive" = {
+ packageId = "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "std" "derive" ];
+ "derive" = [ "failure_derive" ];
+ "std" = [ "backtrace" ];
+ };
+ resolvedDefaultFeatures = [ "backtrace" "default" "derive" "failure_derive" "std" ];
+ };
+ "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "failure_derive";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "1wzk484b87r4qszcvdl2bkniv5ls4r2f2dshz7hmgiv6z4ln12g0";
+ procMacro = true;
+ authors = [
+ "Without Boats <woboats@gmail.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syn" = "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)";
+ "synstructure" = "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "fake-simd";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "1a0f1j66nkwfy17s06vm2bn9vh8vy8llcijfhh9m10p58v08661a";
+ authors = [
+ "The Rust-Crypto Project Developers"
+ ];
+ features = {
+ };
+ };
+ "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "flate2";
+ version = "1.0.12";
+ edition = "2018";
+ sha256 = "11bw2rp905w43pc4fxgsmal93zf26zkfkhk8h0ac5ik3spy0drj6";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ 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.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ "miniz_oxide" = {
+ packageId = "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = ((target."arch" == "wasm32") && (!(target."os" == "emscripten")));
+ };
+ };
+ features = {
+ "default" = [ "rust_backend" ];
+ "rust_backend" = [ "miniz_oxide" ];
+ "tokio" = [ "tokio-io" "futures" ];
+ "zlib" = [ "libz-sys" ];
+ };
+ resolvedDefaultFeatures = [ "default" "miniz_oxide" "rust_backend" ];
+ };
+ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "fnv";
+ version = "1.0.6";
+ edition = "2015";
+ sha256 = "128mlh23y3gg6ag5h8iiqlcbl59smisdzraqy88ldrf75kbw27ip";
+ libPath = "lib.rs";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "foreign-types-shared" = "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "fuchsia-cprng";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "07apwv9dj716yjlcj29p94vkqn5zmfh7hlrqvrjx3wzshphc95h9";
+ authors = [
+ "Erick Tryzelaar <etryzelaar@google.com>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Raph Levien <raph@google.com>"
+ ];
+ dependencies = {
+ "bitflags" = "bitflags 1.2.0 (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 = {
+ };
+ };
+ "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";
+ authors = [
+ "Raph Levien <raph@google.com>"
+ ];
+ features = {
+ };
+ };
+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "futures";
+ version = "0.1.29";
+ edition = "2015";
+ sha256 = "0zq7ysf5qvdchh3hjrvvv3sx4bflq6mb7b1wzaqsn2c8bbcvjgmp";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "default" = [ "use_std" "with-deprecated" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_std" "with-deprecated" ];
+ };
+ "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "futures-cpupool";
+ version = "0.1.8";
+ edition = "2015";
+ sha256 = "0ficd31n5ljiixy6x0vjglhq4fp0v1p4qzxm3v6ymsrb3z080l5c";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "futures" = {
+ packageId = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ features = [ "use_std" ];
+ };
+ "num_cpus" = "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "with-deprecated" ];
+ "with-deprecated" = [ "futures/with-deprecated" ];
+ };
+ resolvedDefaultFeatures = [ "default" "with-deprecated" ];
+ };
+ "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "fxhash";
+ version = "0.2.1";
+ edition = "2015";
+ sha256 = "0p4mfqswwxhkkskdpjld581ksg3cipfs85jbw7znljhkz40l9fjj";
+ libPath = "lib.rs";
+ authors = [
+ "cbreeden <github@u.breeden.cc>"
+ ];
+ dependencies = {
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "generic-array";
+ version = "0.9.0";
+ edition = "2015";
+ sha256 = "1gk3g5yxvh361syfz38nlf6vg7d0qx7crpa83mnqzaf9dymz19g7";
+ libName = "generic_array";
+ authors = [
+ "Bartłomiej Kamiński <fizyk20@gmail.com>"
+ ];
+ dependencies = {
+ "typenum" = "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "getrandom";
+ version = "0.1.12";
+ edition = "2018";
+ sha256 = "0n3cyf8vm82hbbj6xzgaszjn852i0jl9qxibl7im7mvn7s9yrvb6";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ target = (target."unix" || (target."os" == "redox"));
+ };
+ "wasi" = {
+ packageId = "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "wasi");
+ };
+ };
+ features = {
+ "rustc-dep-of-std" = [ "compiler_builtins" "core" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "glob";
+ version = "0.3.0";
+ edition = "2015";
+ sha256 = "1b3dc2686xnrpxwx4nd3w06f9qs433w6xmmzq6jb76hh95dwwqb2";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ };
+ };
+ "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "h2";
+ version = "0.1.26";
+ edition = "2015";
+ sha256 = "0wb3nsksi568qb44pzfkz7gbagghzb3fbbky8qhm37aan3dgwb8c";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "fnv" = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "http" = "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ "indexmap" = "indexmap 1.2.0 (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)";
+ "string" = "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "heck";
+ version = "0.3.1";
+ edition = "2015";
+ sha256 = "1q7vmnlh62kls6cvkfhbcacxkawaznaqa5wwm9dg1xkcza846c3d";
+ authors = [
+ "Without Boats <woboats@gmail.com>"
+ ];
+ dependencies = {
+ "unicode-segmentation" = "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "hex";
+ version = "0.3.2";
+ edition = "2015";
+ sha256 = "0hs0xfb4x67y4ss9mmbjmibkwakbn3xf23i21m409bw2zqk9b6kz";
+ authors = [
+ "KokaKiwi <kokakiwi@kokakiwi.net>"
+ ];
+ features = {
+ };
+ };
+ "hmac 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "hmac";
+ version = "0.5.0";
+ edition = "2015";
+ sha256 = "0zh24045j67cwbm5bm9xrbdigxrjmqki105m03xmkq3zb8dj869b";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = {
+ "crypto-mac" = "crypto-mac 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "digest" = "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "http";
+ version = "0.1.18";
+ edition = "2015";
+ sha256 = "0np5rnnbimmximdl2l7b0x1izzc4iwyw0qhzxlsx7hny423608rq";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (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.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "http-body";
+ version = "0.1.0";
+ edition = "2015";
+ sha256 = "0rbk76455i6l9wrhcgq5p7hbvf9h9fc8ylbfphy4m5qswghly70m";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "http" = "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-buf" = {
+ packageId = "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ };
+ };
+ "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "httparse";
+ version = "1.3.4";
+ edition = "2015";
+ sha256 = "0dggj4s0cq69bn63q9nqzzay5acmwl33nrbhjjsh5xys8sk2x4jw";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "humantime";
+ version = "1.3.0";
+ edition = "2015";
+ sha256 = "1y7q207gg33jr5rnlnb0h08k00i54g9fypf3drjk8g1sq2swn92r";
+ authors = [
+ "Paul Colomiets <paul@colomiets.name>"
+ ];
+ dependencies = {
+ "quick-error" = "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "hyper";
+ version = "0.12.35";
+ edition = "2015";
+ sha256 = "08sk7hasx0srs5pbffc851p4i748xx9dd8nc87r9a7kbjd9ph8d9";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures-cpupool" = {
+ packageId = "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "h2" = "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "http" = "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ "http-body" = "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "httparse" = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ "iovec" = "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "itoa" = "itoa 0.4.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" = {
+ packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "time" = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio" = {
+ packageId = "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "rt-full" ];
+ };
+ "tokio-buf" = "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-executor" = {
+ packageId = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-reactor" = {
+ packageId = "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-tcp" = {
+ packageId = "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-threadpool" = {
+ packageId = "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-timer" = {
+ packageId = "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "want" = "want 0.2.0 (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)";
+ };
+ features = {
+ "default" = [ "__internal_flaky_tests" "runtime" ];
+ "runtime" = [ "futures-cpupool" "net2" "tokio" "tokio-executor" "tokio-reactor" "tokio-tcp" "tokio-threadpool" "tokio-timer" ];
+ };
+ resolvedDefaultFeatures = [ "__internal_flaky_tests" "default" "futures-cpupool" "net2" "runtime" "tokio" "tokio-executor" "tokio-reactor" "tokio-tcp" "tokio-threadpool" "tokio-timer" ];
+ };
+ "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "hyper-tls";
+ version = "0.3.2";
+ edition = "2015";
+ sha256 = "01naqv4zxfj3vzwa5m56vh6l8kg8y8wp8qgc1pm883vsrawa7anx";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hyper" = "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)";
+ "native-tls" = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "vendored" = [ "native-tls/vendored" ];
+ };
+ };
+ "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "idna";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "1gwgl19rz5vzi67rrhamczhxy050f5ynx4ybabfapyalv7z1qmjy";
+ 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.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "indexmap";
+ version = "1.2.0";
+ edition = "2015";
+ sha256 = "0c2vi7p3zhfh536lgqq579f644k9ilq9v8xnk1w4av481hxlal97";
+ authors = [
+ "bluss"
+ "Josh Stone <cuviper@gmail.com>"
+ ];
+ features = {
+ "serde-1" = [ "serde" ];
+ };
+ };
+ "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "iovec";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "0vjymmb7wj4v4kza5jjn48fcdb85j3k37y7msjl3ifz0p9yiyp2r";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "winapi" = {
+ packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ };
+ };
+ features = {
+ };
+ };
+ "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "itertools";
+ version = "0.8.0";
+ edition = "2015";
+ sha256 = "0xpz59yf03vyj540i7sqypn2aqfid08c4vzyg0l6rqm08da77n7n";
+ authors = [
+ "bluss"
+ ];
+ dependencies = {
+ "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.4 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "itoa";
+ version = "0.4.4";
+ edition = "2015";
+ sha256 = "1fqc34xzzl2spfdawxd9awhzl0fwf1y6y4i94l8bq8rfrzd90awl";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "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";
+ libName = "kernel32";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ 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 = {
+ };
+ };
+ "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "lazy_static";
+ version = "0.2.11";
+ edition = "2015";
+ sha256 = "1x6871cvpy5b96yv4c7jvpq316fp5d4609s9py7qk6cd6x9k34vm";
+ authors = [
+ "Marvin Löbel <loebel.marvin@gmail.com>"
+ ];
+ features = {
+ "compiletest" = [ "compiletest_rs" ];
+ "spin_no_std" = [ "nightly" "spin" ];
+ };
+ };
+ "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";
+ authors = [
+ "Marvin Löbel <loebel.marvin@gmail.com>"
+ ];
+ features = {
+ "spin_no_std" = [ "spin" ];
+ };
+ };
+ "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "lazycell";
+ version = "1.2.1";
+ edition = "2015";
+ sha256 = "1m4h2q9rgxrgc7xjnws1x81lrb68jll8w3pykx1a9bhr29q2mcwm";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ features = {
+ "nightly-testing" = [ "clippy" "nightly" ];
+ };
+ };
+ "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "libc";
+ version = "0.2.62";
+ edition = "2015";
+ sha256 = "1vsb4pyn6gl6sri6cv5hin5wjfgk7lk2bshzmxb1xnkckjhz4gbx";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
+ "use_std" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "libloading";
+ version = "0.5.2";
+ edition = "2015";
+ sha256 = "1f1nrlbw1y5dvgsfbl6a8q7wfhn6n158yf8fh5b9cm98phg4pjl8";
+ authors = [
+ "Simonas Kazlauskas <libloading@kazlauskas.me>"
+ ];
+ dependencies = {
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "winerror" "errhandlingapi" "libloaderapi" ];
+ };
+ };
+ buildDependencies = {
+ "cc" = "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "line-wrap";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "1m2mpjnlvdxkbj8q98wdwad37wbcj3w6g436l0hg39ljknvl4sil";
+ authors = [
+ "Marshall Pierce <marshall@mpierce.org>"
+ ];
+ dependencies = {
+ "safemem" = "safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "linked-hash-map 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "linked-hash-map";
+ version = "0.3.0";
+ edition = "2015";
+ sha256 = "03fh0w77z5fwry1y37nfim9d23gikz7855050hzjds6k419vs4ls";
+ authors = [
+ "Stepan Koltsov <stepan.koltsov@gmail.com>"
+ "Andrew Paseltiner <apaseltiner@gmail.com>"
+ ];
+ dependencies = {
+ "serde" = {
+ packageId = "serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "serde_test" = {
+ packageId = "serde_test 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "serde_impl" = [ "serde" "serde_test" ];
+ };
+ resolvedDefaultFeatures = [ "serde" "serde_impl" "serde_test" ];
+ };
+ "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";
+ authors = [
+ "Stepan Koltsov <stepan.koltsov@gmail.com>"
+ "Andrew Paseltiner <apaseltiner@gmail.com>"
+ ];
+ features = {
+ "heapsize_impl" = [ "heapsize" ];
+ "serde_impl" = [ "serde" "serde_test" ];
+ };
+ };
+ "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "lock_api";
+ version = "0.3.1";
+ edition = "2018";
+ sha256 = "0fnav5aq42dcw3z2v9lp8pfrgmf4nnyr3h9i7v5qj9xdzxkp6lry";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = {
+ "scopeguard" = {
+ packageId = "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ };
+ };
+ "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "log";
+ version = "0.3.9";
+ edition = "2015";
+ sha256 = "19i9pwp7lhaqgzangcpw00kc3zsgcqcx84crv07xgz3v7d3kvfa2";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "use_std" ];
+ "max_level_debug" = [ "log/max_level_debug" ];
+ "max_level_error" = [ "log/max_level_error" ];
+ "max_level_info" = [ "log/max_level_info" ];
+ "max_level_off" = [ "log/max_level_off" ];
+ "max_level_trace" = [ "log/max_level_trace" ];
+ "max_level_warn" = [ "log/max_level_warn" ];
+ "release_max_level_debug" = [ "log/release_max_level_debug" ];
+ "release_max_level_error" = [ "log/release_max_level_error" ];
+ "release_max_level_info" = [ "log/release_max_level_info" ];
+ "release_max_level_off" = [ "log/release_max_level_off" ];
+ "release_max_level_trace" = [ "log/release_max_level_trace" ];
+ "release_max_level_warn" = [ "log/release_max_level_warn" ];
+ "use_std" = [ "log/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_std" ];
+ };
+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "log";
+ version = "0.4.8";
+ edition = "2015";
+ sha256 = "0wvzzzcn89dai172rrqcyz06pzldyyy0lf0w71csmn206rdpnb15";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "kv_unstable_sval" = [ "kv_unstable" "sval/fmt" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "matches";
+ version = "0.1.8";
+ edition = "2015";
+ sha256 = "03hl636fg6xggy0a26200xs74amk3k9n0908rga2szn68agyz3cv";
+ libPath = "lib.rs";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+ features = {
+ };
+ };
+ "md5 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "md5";
+ version = "0.3.8";
+ edition = "2015";
+ sha256 = "0ciydcf5y3zmygzschhg4f242p9rf1d75jfj0hay4xjj29l319yd";
+ authors = [
+ "Ivan Ukhov <ivan.ukhov@gmail.com>"
+ "Kamal Ahmad <shibe@openmailbox.org>"
+ "Konstantin Stepanov <milezv@gmail.com>"
+ "Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"
+ "Nathan Musoke <nathan.musoke@gmail.com>"
+ "Tony Arcieri <bascule@gmail.com>"
+ "Wim de With <register@dewith.io>"
+ ];
+ features = {
+ };
+ };
+ "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "memchr";
+ version = "2.2.1";
+ edition = "2015";
+ sha256 = "1mj5z8lhz6jbapslpq8a39pwcsl1p0jmgp7wgcj7nv4pcqhya7a0";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ "bluss"
+ ];
+ features = {
+ "default" = [ "use_std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_std" ];
+ };
+ "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "memoffset";
+ version = "0.5.1";
+ edition = "2015";
+ sha256 = "0fsk7kfk193f1aamafl45vvcp7j6p7c14ss7d583fijw3w5kj69k";
+ authors = [
+ "Gilad Naaman <gilad.naaman@gmail.com>"
+ ];
+ buildDependencies = {
+ "rustc_version" = "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "mime";
+ version = "0.2.6";
+ edition = "2015";
+ sha256 = "1skwwa0j3kqd8rm9387zgabjhp07zj99q71nzlhba4lrz9r911b3";
+ authors = [
+ "Sean McArthur <sean.monstar@gmail.com>"
+ ];
+ dependencies = {
+ "log" = "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "heap_size" = [ "heapsize" ];
+ };
+ };
+ "mime_guess 1.8.7 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "mime_guess";
+ version = "1.8.7";
+ edition = "2015";
+ sha256 = "0l0l3iz8y536m6v3gvbs24sk0ij2ma4ngrvlc0kqpgr3yly1h82r";
+ authors = [
+ "Austin Bonander <austin.bonander@gmail.com>"
+ ];
+ dependencies = {
+ "mime" = "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "phf" = {
+ packageId = "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "unicase" ];
+ };
+ "unicase" = "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "phf_codegen" = "phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)";
+ "unicase" = "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "miniz_oxide";
+ version = "0.3.3";
+ edition = "2018";
+ sha256 = "00x68qpvnnwzr38g3b6xi2pf0lhrk5nbir71zlzxra47f013rfvs";
+ authors = [
+ "Frommi <daniil.liferenko@gmail.com>"
+ "oyvindln <oyvindln@users.noreply.github.com>"
+ ];
+ dependencies = {
+ "adler32" = "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "mio";
+ version = "0.6.19";
+ edition = "2015";
+ sha256 = "0pjazzvqwkb4fgmm4b3m8i05c2gq60lvqqia0faawswgqy7rvgac";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "fuchsia-zircon" = {
+ packageId = "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "fuchsia");
+ };
+ "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.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "kernel32-sys" = {
+ packageId = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ };
+ "libc" = {
+ packageId = "libc 0.2.62 (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" = {
+ 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" = {
+ packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = 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 {
+ crateName = "mio-uds";
+ version = "0.6.7";
+ edition = "2015";
+ sha256 = "1gff9908pvvysv7zgxvyxy7x34fnhs088cr0j8mgwj8j24mswrhm";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "iovec" = {
+ packageId = "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "mio" = {
+ packageId = "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ };
+ features = {
+ };
+ };
+ "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "miow";
+ version = "0.2.1";
+ edition = "2015";
+ sha256 = "14f8zkc6ix7mkyis1vsqnim8m29b6l55abkba3p2yz7j1ibcvrl0";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "kernel32-sys" = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "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 = {
+ };
+ };
+ "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";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "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" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = ((target."os" == "macos") || (target."os" == "ios"));
+ };
+ "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" = {
+ packageId = "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
+ };
+ "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" = {
+ packageId = "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
+ };
+ "schannel" = {
+ packageId = "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "windows");
+ };
+ "security-framework" = {
+ packageId = "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = ((target."os" == "macos") || (target."os" == "ios"));
+ };
+ "security-framework-sys" = {
+ packageId = "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = ((target."os" == "macos") || (target."os" == "ios"));
+ };
+ "tempfile" = {
+ packageId = "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = ((target."os" == "macos") || (target."os" == "ios"));
+ };
+ };
+ features = {
+ "vendored" = [ "openssl/vendored" ];
+ };
+ };
+ "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "net2";
+ version = "0.2.33";
+ edition = "2015";
+ sha256 = "1qnmajafgybj5wyxz9iffa8x5wgbwd2znfklmhqj7vl6lw1m65mq";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = ((target."os" == "redox") || target."unix");
+ };
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "handleapi" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ];
+ };
+ };
+ features = {
+ "default" = [ "duration" ];
+ };
+ resolvedDefaultFeatures = [ "default" "duration" ];
+ };
+ "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "nodrop";
+ version = "0.1.13";
+ edition = "2015";
+ sha256 = "0gkfx6wihr9z0m8nbdhma5pyvbipznjpkzny2d4zkc05b0vnhinb";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "use_union" = [ "nodrop-union" ];
+ };
+ };
+ "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "nom";
+ version = "4.2.3";
+ edition = "2015";
+ sha256 = "0rg7n0nif70052wlaffmgxmmlvi6xm7zpqmzfq9d8wr9376lpn2h";
+ authors = [
+ "contact@geoffroycouprie.com"
+ ];
+ dependencies = {
+ "memchr" = {
+ packageId = "memchr 2.2.1 (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)";
+ };
+ features = {
+ "default" = [ "std" ];
+ "regexp" = [ "regex" ];
+ "regexp_macros" = [ "regexp" "lazy_static" ];
+ "std" = [ "alloc" "memchr/use_std" ];
+ "verbose-errors" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" "verbose-errors" ];
+ };
+ "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "num-integer";
+ version = "0.1.41";
+ edition = "2015";
+ sha256 = "1y45nh9xlp2dra9svb1wfsy65fysm3k1w4m8jynywccq645yixid";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "num-traits" = {
+ packageId = "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (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 {
+ crateName = "num-traits";
+ version = "0.1.43";
+ edition = "2015";
+ sha256 = "1zdzx78vrcg3f39w94pqjs1mwxl1phyv7843hwgwkzggwcxhhf6s";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "num-traits" = "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "num-traits";
+ version = "0.2.8";
+ edition = "2015";
+ sha256 = "1mnlmy35n734n9xlq0qkfbgzz33x09a1s4rfj30p1976p09b862v";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "num_cpus";
+ version = "1.10.1";
+ edition = "2015";
+ sha256 = "1zi5s2cbnqqb0k0kdd6gqn2x97f9bssv44430h6w28awwzppyh8i";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = {
+ "libc" = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "onig 5.0.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "onig";
+ version = "5.0.0";
+ edition = "2015";
+ sha256 = "0g2d93dpsihqqjib7vm2ynf3vlwayph3m8bnwhy90ib2cpzjlbg5";
+ authors = [
+ "Will Speak <will@willspeak.me>"
+ "Ivan Ivashchenko <defuz@me.com>"
+ ];
+ dependencies = {
+ "bitflags" = "bitflags 1.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)";
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ };
+ "onig_sys" = "onig_sys 69.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "posix-api" = [ "onig_sys/posix-api" ];
+ "print-debug" = [ "onig_sys/print-debug" ];
+ };
+ };
+ "onig_sys 69.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "onig_sys";
+ version = "69.2.0";
+ edition = "2015";
+ sha256 = "0r1l3ikshviz99zmf5wl9nqzn4bf9ma4kgmagg2mda83j145x239";
+ authors = [
+ "Will Speak <will@willspeak.me>"
+ "Ivan Ivashchenko <defuz@me.com>"
+ ];
+ buildDependencies = {
+ "bindgen" = "bindgen 0.50.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cc" = "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)";
+ "pkg-config" = "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "openssl";
+ version = "0.10.25";
+ edition = "2015";
+ sha256 = "09cfxs76j8wn0k7px6lr9rrpdf4x88sihik0pq84x6jlh626h1qx";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "bitflags" = "bitflags 1.2.0 (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.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ "openssl-sys" = "openssl-sys 0.9.50 (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 {
+ crateName = "openssl-probe";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "1a89fznx26vvaxyrxdvgf6iwai5xvs6xjvpjin68fgvrslv6n15a";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ };
+ };
+ "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "openssl-sys";
+ version = "0.9.50";
+ edition = "2015";
+ sha256 = "1pzpr9wy8ixr5lnsh5yrzlxr43lf5d3rp83qbzd06zwdx7zmfkg0";
+ build = "build/main.rs";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "libc" = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cc" = "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)";
+ "pkg-config" = "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ "vcpkg" = {
+ packageId = "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."env" == "msvc");
+ };
+ };
+ features = {
+ "vendored" = [ "openssl-src" ];
+ };
+ };
+ "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "parking_lot";
+ version = "0.9.0";
+ edition = "2018";
+ sha256 = "0h28hk9yggik2pdyp5rbq31klkms0f34mg3yj6rsd9639jf8hf69";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = {
+ "lock_api" = "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "parking_lot_core" = "parking_lot_core 0.6.2 (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)";
+ };
+ features = {
+ "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
+ "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
+ "owning_ref" = [ "lock_api/owning_ref" ];
+ "serde" = [ "lock_api/serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "parking_lot_core";
+ version = "0.6.2";
+ edition = "2018";
+ sha256 = "0mn0vnz3afgpjafqa9ca9j39fb2inpz1lym9sghgl535n18psi3s";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cloudabi" = {
+ packageId = "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "cloudabi");
+ };
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "redox_syscall" = {
+ packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "redox");
+ };
+ "smallvec" = "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
+ };
+ };
+ buildDependencies = {
+ "rustc_version" = "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
+ };
+ };
+ "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "peeking_take_while";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "1vdaxp3c73divj5rbyb2wm9pz61rg5idgh1g7bifnllf7xhw15zr";
+ authors = [
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "percent-encoding";
+ version = "1.0.1";
+ edition = "2015";
+ sha256 = "04ahrp7aw4ip7fmadb0bknybmkfav0kk0gw4ps3ydq5w6hr0ib5i";
+ libPath = "lib.rs";
+ authors = [
+ "The rust-url developers"
+ ];
+ features = {
+ };
+ };
+ "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "phf";
+ version = "0.7.24";
+ edition = "2015";
+ sha256 = "19mmhmafd1dhywc7pzkmd1nq0kjfvg57viny20jqa91hhprf2dv5";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "phf_shared" = "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "core" = [ "phf_shared/core" ];
+ "macros" = [ "phf_macros" ];
+ "unicase" = [ "phf_shared/unicase" ];
+ };
+ resolvedDefaultFeatures = [ "unicase" ];
+ };
+ "phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "phf_codegen";
+ version = "0.7.24";
+ edition = "2015";
+ sha256 = "0avkx97r4ph8rv70wwgniarlcfiq27yd74gmnxfdv3rx840cyf8g";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "phf_generator" = "phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)";
+ "phf_shared" = "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "phf_generator";
+ version = "0.7.24";
+ edition = "2015";
+ sha256 = "1frn2jfydinifxb1fki0xnnsxf0f1ciaa79jz415r5qhw1ash72j";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "phf_shared" = "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand" = "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "phf_shared";
+ version = "0.7.24";
+ edition = "2015";
+ sha256 = "1hndqn461jvm2r269ym4qh7fnjc6n8yy53avc2pb43p70vxhm9rl";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = {
+ "siphasher" = "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "unicase" = {
+ packageId = "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ };
+ resolvedDefaultFeatures = [ "unicase" ];
+ };
+ "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "pkg-config";
+ version = "0.3.16";
+ edition = "2015";
+ sha256 = "1a2gg5a9l74brz1vzkkzfl8aihd7b4rk3vhbmiahkmpzavywza5j";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ };
+ };
+ "plist 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "plist";
+ version = "0.4.2";
+ edition = "2015";
+ sha256 = "0sz26afyw1yrgf2gfpbfvs2q39cwxps4jm72aqsfjjakpssmx724";
+ authors = [
+ "Ed Barnard <eabarnard@gmail.com>"
+ ];
+ dependencies = {
+ "base64" = "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "humantime" = "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "line-wrap" = "line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = {
+ packageId = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "xml-rs" = "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "serde" ];
+ };
+ "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "ppv-lite86";
+ version = "0.2.5";
+ edition = "2018";
+ sha256 = "1r3bhih75vhl8v7q0flmywl7hmfg902yf3jjzracsh0jlkldij6r";
+ authors = [
+ "The CryptoCorrosion Contributors"
+ ];
+ features = {
+ "default" = [ "std" "simd" ];
+ };
+ resolvedDefaultFeatures = [ "default" "simd" "std" ];
+ };
+ "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "proc-macro2";
+ version = "0.4.30";
+ edition = "2015";
+ sha256 = "0iifv51wrm6r4r2gghw6rray3nv53zcap355bbz1nsmbhj5s09b9";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "unicode-xid" = "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "proc-macro" ];
+ };
+ resolvedDefaultFeatures = [ "default" "proc-macro" ];
+ };
+ "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "proc-macro2";
+ version = "1.0.5";
+ edition = "2018";
+ sha256 = "1h9afwvh0g04rrf31rs8y3r3738vcf69rafw82g3jx38ij5v2arn";
+ libName = "proc_macro2";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "unicode-xid" = "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.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "quick-error";
+ version = "1.2.2";
+ edition = "2015";
+ sha256 = "192a3adc5phgpibgqblsdx1b421l5yg9bjbmv552qqq9f37h60k5";
+ authors = [
+ "Paul Colomiets <paul@colomiets.name>"
+ "Colin Kiegel <kiegel@gmx.de>"
+ ];
+ features = {
+ };
+ };
+ "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "quote";
+ version = "0.6.13";
+ edition = "2015";
+ sha256 = "1hrvsin40i4q8swrhlj9057g7nsp0lg02h8zbzmgz14av9mzv8g8";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = {
+ packageId = "proc-macro2 0.4.30 (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" ];
+ };
+ "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "quote";
+ version = "1.0.2";
+ edition = "2018";
+ sha256 = "0r7030w7dymarn92gjgm02hsm04fwsfs6f1l20wdqiyrm9z8rs5q";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = {
+ packageId = "proc-macro2 1.0.5 (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.6.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand";
+ version = "0.6.5";
+ edition = "2015";
+ sha256 = "0zbck48159aj8zrwzf80sd9xxh96w4f4968nshwjpysjvflimvgb";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ target = target."unix";
+ };
+ "rand_chacha" = "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_core" = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_hc" = "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_isaac" = "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_jitter" = "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_os" = {
+ packageId = "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "rand_pcg" = "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_xorshift" = "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "minwindef" "ntsecapi" "profileapi" "winnt" ];
+ };
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "alloc" = [ "rand_core/alloc" ];
+ "default" = [ "std" ];
+ "nightly" = [ "simd_support" ];
+ "serde1" = [ "rand_core/serde1" "rand_isaac/serde1" "rand_xorshift/serde1" ];
+ "simd_support" = [ "packed_simd" ];
+ "std" = [ "rand_core/std" "alloc" "rand_os" "rand_jitter/std" ];
+ "stdweb" = [ "rand_os/stdweb" ];
+ "wasm-bindgen" = [ "rand_os/wasm-bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "rand_os" "std" ];
+ };
+ "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand";
+ version = "0.7.2";
+ edition = "2018";
+ sha256 = "1f53047g63b9kyyx1k8wgwzspk4n96w2n2h1a9848ggl9y9h0ik6";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "getrandom" = {
+ packageId = "getrandom 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ rename = "getrandom_package";
+ optional = true;
+ };
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ target = target."unix";
+ };
+ "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" = {
+ packageId = "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "emscripten");
+ };
+ };
+ features = {
+ "alloc" = [ "rand_core/alloc" ];
+ "default" = [ "std" ];
+ "getrandom" = [ "getrandom_package" "rand_core/getrandom" ];
+ "nightly" = [ "simd_support" ];
+ "simd_support" = [ "packed_simd" ];
+ "small_rng" = [ "rand_pcg" ];
+ "std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" ];
+ "stdweb" = [ "getrandom_package/stdweb" ];
+ "wasm-bindgen" = [ "getrandom_package/wasm-bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "getrandom_package" "std" ];
+ };
+ "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_chacha";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "0xnxm4mjd7wjnh18zxc1yickw58axbycp35ciraplqdfwn1gffwi";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = {
+ packageId = "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ "The CryptoCorrosion Contributors"
+ ];
+ dependencies = {
+ "c2-chacha" = {
+ packageId = "c2-chacha 0.2.2 (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)";
+ };
+ features = {
+ "default" = [ "std" "simd" ];
+ "std" = [ "c2-chacha/std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_core";
+ version = "0.3.1";
+ edition = "2015";
+ sha256 = "0q0ssgpj9x5a6fda83nhmfydy7a6c0wvxm0jhncsmjx8qp8gw91m";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "alloc" = [ "rand_core/alloc" ];
+ "default" = [ "std" ];
+ "serde1" = [ "rand_core/serde1" ];
+ "std" = [ "rand_core/std" ];
+ };
+ };
+ "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_core";
+ version = "0.4.2";
+ edition = "2015";
+ sha256 = "18zpzwn4bl7lp9f36iacy8mvdnfrhfmzsl35gmln98dcindff2ly";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ features = {
+ "serde1" = [ "serde" "serde_derive" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "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";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "getrandom" = {
+ packageId = "getrandom 0.1.12 (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.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_hc";
+ version = "0.1.0";
+ edition = "2015";
+ sha256 = "05agb75j87yp7y1zk8yf7bpm66hc0673r3dlypn0kazynr6fdgkz";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = {
+ packageId = "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_isaac";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "10hhdh5b5sa03s6b63y9bafm956jwilx41s71jbrzl63ccx8lxdq";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = {
+ packageId = "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ "serde1" = [ "serde" "serde_derive" "rand_core/serde1" ];
+ };
+ };
+ "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_jitter";
+ version = "0.1.4";
+ edition = "2015";
+ sha256 = "13nr4h042ab9l7qcv47bxrxw3gkf2pc3cni6c9pyi4nxla0mm7b6";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = {
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ target = ((target."os" == "macos") || (target."os" == "ios"));
+ };
+ "rand_core" = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "windows");
+ features = [ "profileapi" ];
+ };
+ };
+ features = {
+ "std" = [ "rand_core/std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_os";
+ version = "0.1.3";
+ edition = "2015";
+ sha256 = "0ywwspizgs9g8vzn6m5ix9yg36n15119d6n792h7mk4r5vs0ww4j";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = {
+ "cloudabi" = {
+ packageId = "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "cloudabi");
+ };
+ "fuchsia-cprng" = {
+ packageId = "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "fuchsia");
+ };
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "rand_core" = {
+ packageId = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "std" ];
+ };
+ "rdrand" = {
+ packageId = "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."env" == "sgx");
+ };
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "minwindef" "ntsecapi" "winnt" ];
+ };
+ };
+ features = {
+ };
+ };
+ "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_pcg";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "04qgi2ai2z42li5h4aawvxbpnlqyjfnipz9d6k73mdnl6p1xq938";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "serde1" = [ "serde" "serde_derive" ];
+ };
+ };
+ "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rand_xorshift";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "0v365c4h4lzxwz5k5kp9m0661s0sss7ylv74if0xb4svis9sswnn";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "rand_core" = {
+ packageId = "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ "serde1" = [ "serde" "serde_derive" ];
+ };
+ };
+ "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rdrand";
+ version = "0.4.0";
+ edition = "2015";
+ sha256 = "15hrcasn0v876wpkwab1dwbk9kvqwrb3iv4y4dibb6yxnfvzwajk";
+ authors = [
+ "Simonas Kazlauskas <rdrand@kazlauskas.me>"
+ ];
+ dependencies = {
+ "rand_core" = {
+ packageId = "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ };
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "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";
+ libName = "syscall";
+ authors = [
+ "Jeremy Soller <jackpot51@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "redox_users";
+ version = "0.3.1";
+ edition = "2015";
+ sha256 = "0kqc1vjmkcvgkxjpqva3nyqd9dixivsh4qswxclyqf7ql8a2g17s";
+ authors = [
+ "Jose Narvaez <goyox86@gmail.com>"
+ "Wesley Hershberger <mggmugginsmc@gmail.com>"
+ ];
+ dependencies = {
+ "failure" = "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_os" = "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "redox_syscall" = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rust-argon2" = "rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "regex";
+ version = "1.3.1";
+ edition = "2015";
+ sha256 = "0508b01q7iwky5gzp1cc3lpz6al1qam8skgcvkfgxr67nikiz7jn";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "aho-corasick" = {
+ packageId = "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "memchr" = {
+ packageId = "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "regex-syntax" = {
+ packageId = "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "thread_local" = {
+ packageId = "thread_local 0.3.6 (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" ];
+ "perf-cache" = [ "thread_local" ];
+ "perf-literal" = [ "aho-corasick" "memchr" ];
+ "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ "unicode-age" = [ "regex-syntax/unicode-age" ];
+ "unicode-bool" = [ "regex-syntax/unicode-bool" ];
+ "unicode-case" = [ "regex-syntax/unicode-case" ];
+ "unicode-gencat" = [ "regex-syntax/unicode-gencat" ];
+ "unicode-perl" = [ "regex-syntax/unicode-perl" ];
+ "unicode-script" = [ "regex-syntax/unicode-script" ];
+ "unicode-segment" = [ "regex-syntax/unicode-segment" ];
+ "unstable" = [ "pattern" ];
+ "use_std" = [ "std" ];
+ };
+ 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.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "regex-syntax";
+ version = "0.6.12";
+ edition = "2015";
+ sha256 = "1lqhddhwzpgq8zfkxhm241n7g4m3yc11fb4098dkgawbxvybr53v";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "default" = [ "unicode" ];
+ "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ };
+ resolvedDefaultFeatures = [ "default" "unicode" "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 {
+ crateName = "remove_dir_all";
+ version = "0.5.2";
+ edition = "2015";
+ sha256 = "04sxg2ppvxiljc2i13bwvpbi540rf9d2a89cq0wmqf9pjvr3a1wm";
+ authors = [
+ "Aaronepower <theaaronepower@gmail.com>"
+ ];
+ dependencies = {
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "std" "errhandlingapi" "winerror" "fileapi" "winbase" ];
+ };
+ };
+ features = {
+ };
+ };
+ "rpb-s3 0.1.0 (path+file:///home/tilpner/dev/rpb-s3)"
+ = rec {
+ crateName = "rpb-s3";
+ version = "0.1.0";
+ edition = "2018";
+ src = (builtins.filterSource sourceFilter ./.);
+ authors = [
+ "till"
+ ];
+ dependencies = {
+ "config" = "config 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "itertools" = "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "mime_guess" = "mime_guess 1.8.7 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand" = "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rusoto_core" = "rusoto_core 0.36.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rusoto_s3" = "rusoto_s3 0.36.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_derive" = "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "structopt" = "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syntect" = "syntect 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tinytemplate" = "tinytemplate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "xdg" = "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "rusoto_core 0.36.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rusoto_core";
+ version = "0.36.0";
+ edition = "2015";
+ sha256 = "1ba9ks6rhaxhck3hspnckilfdj3kvm2hff4k6z7g04crlwc1rqk7";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = {
+ "base64" = "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hex" = "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hmac" = "hmac 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hyper" = "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hyper-tls" = {
+ packageId = "hyper-tls 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "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)";
+ "md5" = "md5 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rusoto_credential" = "rusoto_credential 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "sha2" = "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "time" = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio" = "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-timer" = "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ "url" = "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "xml-rs" = "xml-rs 0.7.0 (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)";
+ };
+ features = {
+ "default" = [ "native-tls" ];
+ "native-tls" = [ "hyper-tls" ];
+ "nightly-testing" = [ "clippy" "rusoto_credential/nightly-testing" ];
+ "rustls" = [ "hyper-rustls" ];
+ };
+ resolvedDefaultFeatures = [ "default" "hyper-tls" "native-tls" ];
+ };
+ "rusoto_credential 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rusoto_credential";
+ version = "0.15.0";
+ edition = "2015";
+ sha256 = "19kzqmybk4i0qrlg0y7x56aybnqvpws969lmr2xq4xyav0p8c3j0";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = {
+ "chrono" = {
+ packageId = "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "serde" ];
+ };
+ "dirs" = "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hyper" = "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)";
+ "regex" = "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_derive" = "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_json" = "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-timer" = "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "nightly-testing" = [ "clippy" ];
+ };
+ };
+ "rusoto_s3 0.36.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rusoto_s3";
+ version = "0.36.0";
+ edition = "2015";
+ sha256 = "1siy6ynpgjn2lddlgg382ycml0ch7a8izcb6zw106r459qjnxhq4";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = {
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rusoto_core" = {
+ packageId = "rusoto_core 0.36.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "xml-rs" = "xml-rs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "native-tls" ];
+ "native-tls" = [ "rusoto_core/native-tls" ];
+ "rustls" = [ "rusoto_core/rustls" ];
+ };
+ resolvedDefaultFeatures = [ "default" "native-tls" ];
+ };
+ "rust-argon2 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rust-argon2";
+ version = "0.5.1";
+ edition = "2015";
+ sha256 = "049dqwn63i6xix55cnh8n4iqm2d3yzpisfsc2568vfmaaa4866d2";
+ libName = "argon2";
+ authors = [
+ "Martijn Rijkeboer <mrr@sru-systems.com>"
+ ];
+ dependencies = {
+ "base64" = "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "blake2b_simd" = "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "rust-ini 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "rust-ini";
+ version = "0.13.0";
+ edition = "2015";
+ sha256 = "1maf8gny1q4ib3x4kz17d9y0c1080xqj2s4y3ib2pdzd4hhpzzs9";
+ libName = "ini";
+ authors = [
+ "Y. T. Chung <zonyitoo@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ };
+ "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";
+ authors = [
+ "Marvin Löbel <loebel.marvin@gmail.com>"
+ ];
+ dependencies = {
+ "semver" = "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "ryu";
+ version = "1.0.0";
+ edition = "2015";
+ sha256 = "0hysqba7hi31xw1jka8jh7qb4m9fx5l6vik55wpc3rpsg46cwgbf";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "safemem";
+ version = "0.3.2";
+ edition = "2015";
+ sha256 = "1h0n07sy386gz0jb6nz170m66jkbnwyky8y11v551dxydz77a0jc";
+ authors = [
+ "Austin Bonander <austin.bonander@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "same-file";
+ version = "1.0.5";
+ edition = "2015";
+ sha256 = "0vn7bc069wsdick0nk0n2j3wvgq2vzb5ix957c35nkhkwlszv4l5";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = {
+ "winapi-util" = {
+ packageId = "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ };
+ };
+ features = {
+ };
+ };
+ "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "schannel";
+ version = "0.1.16";
+ edition = "2015";
+ sha256 = "1qf391890l43lzkyadhrwrlkpryyjmral75x9xj664vi3asl854g";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Steffen Butzer <steffen.butzer@outlook.com>"
+ ];
+ dependencies = {
+ "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "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 {
+ crateName = "scopeguard";
+ version = "1.0.0";
+ edition = "2015";
+ sha256 = "15vrix0jx3i4naqnjswddzn4m036krrv71a8vkh3b1zq4hxmrb0q";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "use_std" ];
+ };
+ };
+ "security-framework 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "security-framework";
+ version = "0.3.1";
+ edition = "2015";
+ sha256 = "1vycb3xhdd91sy2j6a19iykn6wzdjj0r7cd9p3bx4522fl0l5m84";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Kornel <kornel@geekhood.net>"
+ ];
+ 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.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ "security-framework-sys" = "security-framework-sys 0.3.1 (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" ];
+ "OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ];
+ "OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" ];
+ "OSX_10_9" = [ "security-framework-sys/OSX_10_9" ];
+ };
+ };
+ "security-framework-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "security-framework-sys";
+ version = "0.3.1";
+ edition = "2015";
+ sha256 = "11anqpw72d7xjiaz3pbd2r5d3dx0vddya4f6vjnpfjpnldiyd917";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Kornel <kornel@geekhood.net>"
+ ];
+ dependencies = {
+ "core-foundation-sys" = "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" ];
+ "OSX_10_12" = [ "OSX_10_11" ];
+ "OSX_10_13" = [ "OSX_10_12" ];
+ };
+ };
+ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "semver";
+ version = "0.9.0";
+ edition = "2015";
+ sha256 = "0azak2lb2wc36s3x15az886kck7rpnksrw14lalm157rg9sc9z63";
+ authors = [
+ "Steve Klabnik <steve@steveklabnik.com>"
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "semver-parser" = "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 {
+ crateName = "semver-parser";
+ version = "0.7.0";
+ edition = "2015";
+ sha256 = "1da66c8413yakx0y15k8c055yna5lyb6fr0fw9318kdwkrk5k12h";
+ authors = [
+ "Steve Klabnik <steve@steveklabnik.com>"
+ ];
+ features = {
+ };
+ };
+ "serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "serde";
+ version = "0.8.23";
+ edition = "2015";
+ sha256 = "1pnkxndnb4fg41lmacp260yjxwfcywpvhbxybdysh3byjh1fjqms";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ ];
+ features = {
+ "alloc" = [ "unstable" ];
+ "collections" = [ "alloc" ];
+ "default" = [ "std" ];
+ "unstable-testing" = [ "clippy" "unstable" "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "serde";
+ version = "1.0.101";
+ edition = "2015";
+ sha256 = "0sacv3njx99yr8gxsl80cy1h98b9vd1pv6aa8ncbnk0pys8r82vn";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "derive" = [ "serde_derive" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "serde-hjson 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "serde-hjson";
+ version = "0.8.2";
+ edition = "2015";
+ sha256 = "1059hh4dwrfxkabbn97gdrf3dkipg1z4i7n0kv20nzjxidvyk3v3";
+ authors = [
+ "Christian Zangl <laktak@cdak.net>"
+ ];
+ dependencies = {
+ "lazy_static" = "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ "linked-hash-map" = {
+ packageId = "linked-hash-map 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "num-traits" = "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)";
+ "regex" = "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "preserve_order" ];
+ "preserve_order" = [ "linked-hash-map" "linked-hash-map/serde_impl" ];
+ "unstable-testing" = [ "clippy" ];
+ };
+ resolvedDefaultFeatures = [ "default" "linked-hash-map" "preserve_order" ];
+ };
+ "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "serde_derive";
+ version = "1.0.101";
+ edition = "2015";
+ sha256 = "093x99qff1ihjmy32fp1gxp66qh0nni349j20y3w0h33wqk19dr0";
+ procMacro = true;
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syn" = {
+ packageId = "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "visit" ];
+ };
+ };
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "serde_json";
+ version = "1.0.41";
+ edition = "2015";
+ sha256 = "0j3qhfy2hj3vjlc6hi34k0zlsaj5mxnk9dy6lp8a8snj5rm9vrhd";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = {
+ "itoa" = "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ "ryu" = "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "preserve_order" = [ "indexmap" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "serde_test 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "serde_test";
+ version = "0.8.23";
+ edition = "2015";
+ sha256 = "1snfbfw6jf9d5aw7q8gs4bi72qcqd6q9iwr8h9flfj4dhyz0vn04";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ ];
+ dependencies = {
+ "serde" = "serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "sha2";
+ version = "0.7.1";
+ edition = "2015";
+ sha256 = "1x5034qjkk6l3q5anlffh46jb4rlyyiwigwlxrnw7d6ijxpygfzb";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = {
+ "block-buffer" = "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "byte-tools" = "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "digest" = "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "fake-simd" = "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "asm" = [ "sha2-asm" ];
+ };
+ };
+ "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "shlex";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "18vqycq8apg10pg5na57wff8z957d1q05yhvkddqbqflw98xj0rv";
+ authors = [
+ "comex <comexk@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "siphasher";
+ version = "0.2.3";
+ edition = "2015";
+ sha256 = "1ganj1grxqnkvv4ds3vby039bm999jrr58nfq2x3kjhzkw2bnqkw";
+ authors = [
+ "Frank Denis <github@pureftpd.org>"
+ ];
+ features = {
+ };
+ };
+ "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "slab";
+ version = "0.4.2";
+ edition = "2015";
+ sha256 = "0h1l2z7qy6207kv0v3iigdf2xfk9yrhbwj1svlxk6wxjmdxvgdl7";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ features = {
+ };
+ };
+ "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "smallvec";
+ version = "0.6.10";
+ edition = "2015";
+ sha256 = "01w7xd79q0bwn683gk4ryw50ad1zzxkny10f7gkbaaj1ax6f4q4h";
+ libPath = "lib.rs";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "string";
+ version = "0.2.1";
+ edition = "2015";
+ sha256 = "066vpc33qik0f8hpa1841hdzwcwj6ai3vdwsd34k1s2w9p3n7jqk";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = {
+ packageId = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "bytes" ];
+ };
+ resolvedDefaultFeatures = [ "bytes" "default" ];
+ };
+ "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "strsim";
+ version = "0.8.0";
+ edition = "2015";
+ sha256 = "0d3jsdz22wgjyxdakqnvdgmwjdvkximz50d9zfk4qlalw635qcvy";
+ authors = [
+ "Danny Guo <dannyguo91@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "structopt";
+ version = "0.2.18";
+ edition = "2015";
+ sha256 = "096mzwn2d5qsa0k5kxvd1ag38fm5rfrr262fnacfrq5k13ldl9j2";
+ authors = [
+ "Guillaume Pinot <texitoi@texitoi.eu>"
+ "others"
+ ];
+ dependencies = {
+ "clap" = {
+ packageId = "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "structopt-derive" = "structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "color" = [ "clap/color" ];
+ "debug" = [ "clap/debug" ];
+ "default" = [ "clap/default" ];
+ "doc" = [ "clap/doc" ];
+ "lints" = [ "clap/lints" ];
+ "nightly" = [ "structopt-derive/nightly" ];
+ "no_cargo" = [ "clap/no_cargo" ];
+ "paw" = [ "structopt-derive/paw" ];
+ "suggestions" = [ "clap/suggestions" ];
+ "wrap_help" = [ "clap/wrap_help" ];
+ "yaml" = [ "clap/yaml" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "structopt-derive 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "structopt-derive";
+ version = "0.2.18";
+ edition = "2015";
+ sha256 = "0wrhvq92psxa62jx6ypyhld7d5l3l7va0s0qwy1mq7c863wnhp7p";
+ procMacro = true;
+ authors = [
+ "Guillaume Pinot <texitoi@texitoi.eu>"
+ ];
+ dependencies = {
+ "heck" = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "proc-macro2" = "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syn" = "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "nightly" = [ "proc-macro2/nightly" ];
+ };
+ };
+ "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "syn";
+ version = "0.15.44";
+ edition = "2015";
+ sha256 = "09v11h141grmsnamd5j14mn8vpnfng6p60kdmsm8akz9m0qn7s1n";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = {
+ packageId = "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "quote" = {
+ packageId = "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ usesDefaultFeatures = false;
+ };
+ "unicode-xid" = "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
+ "printing" = [ "quote" ];
+ "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
+ };
+ resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "parsing" "printing" "proc-macro" "quote" "visit" ];
+ };
+ "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "syn";
+ version = "1.0.5";
+ edition = "2018";
+ sha256 = "08qbk425r8c4q4rrpq1q9wkd3v3bji8nlfaxj8v4l7lkpjkh0xgs";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = {
+ packageId = "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
+ "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)";
+ };
+ features = {
+ "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
+ "printing" = [ "quote" ];
+ "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
+ };
+ resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "parsing" "printing" "proc-macro" "quote" "visit" ];
+ };
+ "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "synstructure";
+ version = "0.10.2";
+ edition = "2015";
+ sha256 = "0bp29grjsim99xm1l6h38mbl98gnk47lf82rawlmws5zn4asdpj4";
+ authors = [
+ "Nika Layzell <nika@thelayzells.com>"
+ ];
+ dependencies = {
+ "proc-macro2" = "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syn" = {
+ packageId = "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "visit" "extra-traits" ];
+ };
+ "unicode-xid" = "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "syntect 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "syntect";
+ version = "3.3.0";
+ edition = "2018";
+ sha256 = "0zp8za3x6d0l02kgvaasnljm925plwd06181c5xzg6z79g52yqny";
+ authors = [
+ "Tristan Hume <tristan@thume.ca>"
+ ];
+ dependencies = {
+ "bincode" = {
+ packageId = "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "bitflags" = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "flate2" = {
+ packageId = "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ usesDefaultFeatures = false;
+ };
+ "fnv" = {
+ packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "lazycell" = "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "onig" = {
+ packageId = "onig 5.0.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "plist" = "plist 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "regex-syntax" = {
+ packageId = "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_derive" = "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_json" = "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)";
+ "walkdir" = "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)";
+ "yaml-rust" = {
+ packageId = "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ };
+ features = {
+ "default" = [ "parsing" "assets" "html" "yaml-load" "dump-load" "dump-create" ];
+ "dump-create" = [ "flate2/default" "bincode" ];
+ "dump-create-rs" = [ "flate2/rust_backend" "bincode" ];
+ "dump-load" = [ "flate2/default" "bincode" ];
+ "dump-load-rs" = [ "flate2/rust_backend" "bincode" ];
+ "html" = [ "parsing" "assets" ];
+ "metadata" = [ "parsing" ];
+ "parsing" = [ "onig" "regex-syntax" "fnv" ];
+ "yaml-load" = [ "yaml-rust" "parsing" ];
+ };
+ resolvedDefaultFeatures = [ "assets" "bincode" "default" "dump-create" "dump-load" "flate2" "fnv" "html" "onig" "parsing" "regex-syntax" "yaml-load" "yaml-rust" ];
+ };
+ "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tempfile";
+ version = "3.1.0";
+ edition = "2018";
+ sha256 = "1r7ykxw90p5hm1g46i8ia33j5iwl3q252kbb6b074qhdav3sqndk";
+ authors = [
+ "Steven Allen <steven@stebalien.com>"
+ "The Rust Project Developers"
+ "Ashley Mannix <ashleymannix@live.com.au>"
+ "Jason White <jasonaw0@gmail.com>"
+ ];
+ dependencies = {
+ "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = {
+ packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."unix";
+ };
+ "rand" = "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "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" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "fileapi" "handleapi" "winbase" ];
+ };
+ };
+ features = {
+ };
+ };
+ "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "termcolor";
+ version = "1.0.5";
+ edition = "2015";
+ sha256 = "16266x431hbkmvyh0pv4yn7wm2kagicqaq6hy4fabn93c08sx0gp";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = {
+ "wincolor" = {
+ packageId = "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ };
+ };
+ features = {
+ };
+ };
+ "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "textwrap";
+ version = "0.11.0";
+ edition = "2015";
+ sha256 = "0s25qh49n7kjayrdj4q3v0jk0jc6vy88rdw0bvgfxqlscpqpxi7d";
+ authors = [
+ "Martin Geisler <martin@geisler.net>"
+ ];
+ dependencies = {
+ "unicode-width" = "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "thread_local";
+ version = "0.3.6";
+ edition = "2015";
+ sha256 = "02rksdwjmz2pw9bmgbb4c0bgkbq5z6nvg510sq1s6y2j1gam0c7i";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = {
+ "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "time";
+ version = "0.1.42";
+ edition = "2015";
+ sha256 = "1ny809kmdjwd4b478ipc33dz7q6nq7rxk766x8cnrg6zygcksmmx";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = {
+ "libc" = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ "redox_syscall" = {
+ packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "redox");
+ };
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "std" "minwinbase" "minwindef" "ntdef" "profileapi" "sysinfoapi" "timezoneapi" ];
+ };
+ };
+ features = {
+ };
+ };
+ "tinytemplate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tinytemplate";
+ version = "1.0.2";
+ edition = "2015";
+ sha256 = "005krgn8sphcvqmg81akpxvhj1nsv35dg225vrxnk6bszdbal30g";
+ authors = [
+ "Brook Heisler <brookheisler@gmail.com>"
+ ];
+ dependencies = {
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_json" = "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio";
+ version = "0.1.22";
+ edition = "2015";
+ sha256 = "1nx8yg8fdwf5nm2ykfza24cx8xy5in6da5va5w76mv347r1irr0b";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = {
+ packageId = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "mio" = {
+ packageId = "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "num_cpus" = {
+ packageId = "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-codec" = {
+ packageId = "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-current-thread" = {
+ packageId = "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-executor" = {
+ packageId = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-fs" = {
+ packageId = "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-io" = {
+ packageId = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-reactor" = {
+ packageId = "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-sync" = {
+ packageId = "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-tcp" = {
+ packageId = "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-threadpool" = {
+ packageId = "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-timer" = {
+ packageId = "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-udp" = {
+ packageId = "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-uds" = {
+ packageId = "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ target = target."unix";
+ };
+ };
+ features = {
+ "codec" = [ "io" "tokio-codec" ];
+ "default" = [ "codec" "fs" "io" "reactor" "rt-full" "sync" "tcp" "timer" "udp" "uds" ];
+ "experimental-tracing" = [ "tracing-core" ];
+ "fs" = [ "tokio-fs" ];
+ "io" = [ "bytes" "tokio-io" ];
+ "reactor" = [ "io" "mio" "tokio-reactor" ];
+ "rt-full" = [ "num_cpus" "reactor" "timer" "tokio-current-thread" "tokio-executor" "tokio-threadpool" ];
+ "sync" = [ "tokio-sync" ];
+ "tcp" = [ "tokio-tcp" ];
+ "timer" = [ "tokio-timer" ];
+ "udp" = [ "tokio-udp" ];
+ "uds" = [ "tokio-uds" ];
+ };
+ resolvedDefaultFeatures = [ "bytes" "codec" "default" "fs" "io" "mio" "num_cpus" "reactor" "rt-full" "sync" "tcp" "timer" "tokio-codec" "tokio-current-thread" "tokio-executor" "tokio-fs" "tokio-io" "tokio-reactor" "tokio-sync" "tokio-tcp" "tokio-threadpool" "tokio-timer" "tokio-udp" "tokio-uds" "udp" "uds" ];
+ };
+ "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-buf";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "11qjcqvhsjwwy66njn2c3nzl0i89a9k06l08s0vz9cswwkjc2427";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "either" = {
+ packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "util" ];
+ "util" = [ "bytes/either" "either" ];
+ };
+ resolvedDefaultFeatures = [ "default" "either" "util" ];
+ };
+ "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-codec";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "0jc9lik540zyj4chbygg1rjh37m3zax8pd4bwcrwjmi1v56qwi4h";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Bryan Burgers <bryan@burgers.io>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-current-thread";
+ version = "0.1.6";
+ edition = "2015";
+ sha256 = "07dm43svkrpifkcnv8f5w477cd9260pnkvnps39qkhkf5ixi8fzg";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-executor" = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-executor";
+ version = "0.1.8";
+ edition = "2015";
+ sha256 = "017pvi6ii0wb1s78vrbjhzwrjlc0mga3x98dz3g19lhylcl50f7r";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-fs";
+ version = "0.1.6";
+ edition = "2015";
+ sha256 = "0v4mkwg7dj0fakzszy7nvr88y0bskwcvsy2w6d4pzmd186b0v640";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-threadpool" = "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-io";
+ version = "0.1.12";
+ edition = "2015";
+ sha256 = "0z64yfcm9i5ci2h9h7npa292plia9kb04xbm7cp0bzp1wsddv91r";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-reactor";
+ version = "0.1.10";
+ edition = "2015";
+ sha256 = "07qngarghrf826rwi0460x69yidyv6811xbwacgagla1lr25i9j1";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (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)";
+ "mio" = "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ "num_cpus" = "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "parking_lot" = "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-executor" = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-sync" = "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-sync";
+ version = "0.1.6";
+ edition = "2015";
+ sha256 = "0csjpxf7m088lh3nfkhj5q1zi5hycdk5xqcginw328rnl1srzyl7";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "fnv" = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-tcp";
+ version = "0.1.3";
+ edition = "2015";
+ sha256 = "07v5p339660zjy1w73wddagj3n5wa4v7v5gj7hnvw95ka407zvcz";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "iovec" = "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "mio" = "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-reactor" = "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-threadpool";
+ version = "0.1.16";
+ edition = "2015";
+ sha256 = "15nv5r5z8q58jhcsnzj3zbqa82ha7qjjbv47j6806cjv22i16a7f";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "crossbeam-deque" = "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-queue" = "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (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.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-executor" = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-timer";
+ version = "0.2.11";
+ edition = "2015";
+ sha256 = "1g1np0mdhiwl52kxp543q9jdidf9vws403jh2nay3srlpnqhrkx9";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "slab" = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-executor" = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-udp";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "1gaavx7zl4j8fg8zvx0b1zwy3qdc20108m1vwbc3rpl2wvsljcyk";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (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.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-codec" = "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-reactor" = "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-uds";
+ version = "0.2.5";
+ edition = "2015";
+ sha256 = "1i4d9b4v9a3rza8bi1j2701w6xjvxxdpdaaw2za4h1x9qriq4rv9";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = {
+ "bytes" = "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "iovec" = "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = "libc 0.2.62 (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.19 (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)";
+ "tokio-codec" = "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-io" = "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-reactor" = "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "toml";
+ version = "0.4.10";
+ edition = "2015";
+ sha256 = "0fs4kxl86w3kmgwcgcv23nk79zagayz1spg281r83w0ywf88d6f1";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ features = {
+ };
+ };
+ "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "typenum";
+ version = "1.11.2";
+ edition = "2015";
+ sha256 = "0pdbfkqzp4hwj21b2gv79kh1s1sgr587bd4s039qzalg5jiniiz8";
+ build = "build/main.rs";
+ authors = [
+ "Paho Lurie-Gregg <paho@paholg.com>"
+ "Andre Bogus <bogusandre@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "unicase";
+ version = "1.4.2";
+ edition = "2015";
+ sha256 = "0rbnhw2mnhcwrij3vczp0sl8zdfmvf2dlh8hly81kj7132kfj0mf";
+ authors = [
+ "Sean McArthur <sean.monstar@gmail.com>"
+ ];
+ buildDependencies = {
+ "version_check" = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "heap_size" = [ "heapsize" "heapsize_plugin" ];
+ };
+ };
+ "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";
+ libName = "unicode_bidi";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ dependencies = {
+ "matches" = "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.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "unicode-normalization";
+ version = "0.1.8";
+ edition = "2015";
+ sha256 = "1pb26i2xd5zz0icabyqahikpca0iwj2jd4145pczc4bb7p641dsz";
+ authors = [
+ "kwantam <kwantam@gmail.com>"
+ ];
+ dependencies = {
+ "smallvec" = "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "unicode-segmentation";
+ version = "1.3.0";
+ edition = "2015";
+ sha256 = "0jnns99wpjjpqzdn9jiplsr003rr41i95c008jb4inccb3avypp0";
+ authors = [
+ "kwantam <kwantam@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "unicode-width";
+ version = "0.1.6";
+ edition = "2015";
+ sha256 = "1mss965j7d8pv7z7zg6qfkcb7lyhxkxvbh8akzr4xxxx3vzazwsi";
+ authors = [
+ "kwantam <kwantam@gmail.com>"
+ ];
+ features = {
+ "rustc-dep-of-std" = [ "std" "core" "compiler_builtins" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "unicode-xid";
+ version = "0.1.0";
+ edition = "2015";
+ sha256 = "05wdmwlfzxhq3nhsxn6wx4q8dhxzzfb9szsz6wiw092m1rjj01zj";
+ authors = [
+ "erick.tryzelaar <erick.tryzelaar@gmail.com>"
+ "kwantam <kwantam@gmail.com>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "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";
+ authors = [
+ "erick.tryzelaar <erick.tryzelaar@gmail.com>"
+ "kwantam <kwantam@gmail.com>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "url";
+ version = "1.7.2";
+ edition = "2015";
+ sha256 = "0qzrjzd9r1niv7037x4cgnv98fs1vj0k18lpxx890ipc47x5gc09";
+ authors = [
+ "The rust-url developers"
+ ];
+ dependencies = {
+ "idna" = "idna 0.1.5 (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 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "heap_size" = [ "heapsize" ];
+ "query_encoding" = [ "encoding" ];
+ };
+ };
+ "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "vcpkg";
+ version = "0.2.7";
+ edition = "2015";
+ sha256 = "1lwykbbscbdy4nhrfidgg3rk2xw9cvx5672sx1c97wm8y3vjpcd9";
+ authors = [
+ "Jim McGrath <jimmc2@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Jorge Aparicio <japaricious@gmail.com>"
+ "Alexis Beingessner <a.beingessner@gmail.com>"
+ "Brian Anderson <>"
+ "tbu- <>"
+ "Manish Goregaokar <>"
+ "Aaron Turon <aturon@mozilla.com>"
+ "Adolfo Ochagavía <>"
+ "Niko Matsakis <>"
+ "Steven Fackler <>"
+ "Chase Southwood <csouth3@illinois.edu>"
+ "Eduard Burtescu <>"
+ "Florian Wilkens <>"
+ "Félix Raimundo <>"
+ "Tibor Benke <>"
+ "Markus Siemens <markus@m-siemens.de>"
+ "Josh Branchaud <jbranchaud@gmail.com>"
+ "Huon Wilson <dbau.pp@gmail.com>"
+ "Corey Farwell <coref@rwell.org>"
+ "Aaron Liblong <>"
+ "Nick Cameron <nrc@ncameron.org>"
+ "Patrick Walton <pcwalton@mimiga.net>"
+ "Felix S Klock II <>"
+ "Andrew Paseltiner <apaseltiner@gmail.com>"
+ "Sean McArthur <sean.monstar@gmail.com>"
+ "Vadim Petrochenkov <>"
+ ];
+ features = {
+ "eders" = [ "serde" ];
+ };
+ };
+ "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";
+ authors = [
+ "Sergio Benitez <sb@sergio.bz>"
+ ];
+ features = {
+ };
+ };
+ "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "walkdir";
+ version = "2.2.9";
+ edition = "2015";
+ sha256 = "04k0pqbd8p36wxr8003r644ymka5jr5kn1p8xaz9r3nylgwlwjmq";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = {
+ "same-file" = "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "std" "winnt" ];
+ };
+ "winapi-util" = {
+ packageId = "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ };
+ };
+ features = {
+ };
+ };
+ "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "want";
+ version = "0.2.0";
+ edition = "2015";
+ sha256 = "1qyd7cixai7f58zfbz8v3lg52q7p6805b9vw7vblw1pysg6vnrxb";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = {
+ "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "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 = {
+ };
+ };
+ "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "wasi";
+ version = "0.7.0";
+ edition = "2018";
+ sha256 = "1lqknxy8x9mrsy0pna6xlwzypbhli73nbai9gmin5f4z1ghlng25";
+ authors = [
+ "The Cranelift Project Developers"
+ ];
+ features = {
+ "default" = [ "alloc" ];
+ "rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" ];
+ };
+ "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "which";
+ version = "2.0.1";
+ edition = "2015";
+ sha256 = "0lj0v21zriscaq5p7rb1r0j34z5yspjvwnldklbr45pxdp9zbgh7";
+ authors = [
+ "Harry Fei <tiziyuanfang@gmail.com>"
+ ];
+ dependencies = {
+ "failure" = {
+ packageId = "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ };
+ "libc" = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "winapi";
+ version = "0.2.8";
+ edition = "2015";
+ sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "winapi";
+ version = "0.3.8";
+ edition = "2015";
+ sha256 = "084ialbgww1vxry341fmkg5crgpvab3w52ahx1wa54yqjgym0vxs";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ dependencies = {
+ "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" = {
+ 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");
+ };
+ };
+ features = {
+ "debug" = [ "impl-debug" ];
+ };
+ resolvedDefaultFeatures = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "knownfolders" "libloaderapi" "lmcons" "minschannel" "minwinbase" "minwindef" "ntdef" "ntsecapi" "ntstatus" "objbase" "processenv" "profileapi" "schannel" "securitybaseapi" "shlobj" "sspi" "std" "sysinfoapi" "timezoneapi" "winbase" "wincon" "wincrypt" "winerror" "winnt" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ];
+ };
+ "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";
+ libName = "build";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "winapi-util";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "07jj7rg7nndd7bqhjin1xphbv8kb5clvhzpqpxkvm3wl84r3mj1h";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = {
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "std" "consoleapi" "errhandlingapi" "fileapi" "minwindef" "processenv" "winbase" "wincon" "winerror" "winnt" ];
+ };
+ };
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "wincolor";
+ version = "1.0.2";
+ edition = "2015";
+ sha256 = "0bxgy5pf0pzykb21xipb41yfxs60inrs5kyavllphbrka5aqps89";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = {
+ "winapi" = {
+ packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "minwindef" "wincon" ];
+ };
+ "winapi-util" = "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "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";
+ libName = "ws2_32";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ 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 = {
+ };
+ };
+ "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "xdg";
+ version = "2.2.0";
+ edition = "2015";
+ sha256 = "1dxfcsxkkmp2dn51x5jbkw0nsg8lq397dkqwqd43d3914cnxjlip";
+ authors = [
+ "Ben Longbons <b.r.longbons@gmail.com>"
+ "whitequark <whitequark@whitequark.org>"
+ ];
+ features = {
+ };
+ };
+ "xml-rs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "xml-rs";
+ version = "0.7.0";
+ edition = "2015";
+ # Hack to suppress building binaries
+ crateBin = [{name = ","; path = ",";}];
+ sha256 = "12rynhqjgkg2hzy9x1d1232p9d9jm40bc3by5yzjv8gx089mflyb";
+ libName = "xml";
+ authors = [
+ "Vladimir Matveev <vladimir.matweev@gmail.com>"
+ ];
+ dependencies = {
+ "bitflags" = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "xml-rs";
+ version = "0.8.0";
+ edition = "2015";
+ # Hack to suppress building binaries
+ crateBin = [{name = ","; path = ",";}];
+ sha256 = "1l3g4wmbz611jwx2a1ni4jyj0ffnls3s7a7rbdn6c763k85k7zs5";
+ libName = "xml";
+ authors = [
+ "Vladimir Matveev <vladimir.matweev@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "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";
+ authors = [
+ "Yuheng Chen <yuhengchen@sensetime.com>"
+ ];
+ dependencies = {
+ "linked-hash-map" = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ };
+
+ #
+ # crate2nix/default.nix (excerpt start)
+ #
+
+ # Target (platform) data for conditional dependencies.
+ # This corresponds to what buildRustCrate is setting.
+ target = {
+ unix = true;
+ windows = 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 */
+ # 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" ) ||
+
+ # 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 IDE config
+ (type == "directory" && (
+ baseName == ".idea" ||
+ baseName == ".vscode"
+ )) ||
+ lib.hasSuffix ".iml" baseName ||
+
+ # Filter out nix build files
+ # lib.hasSuffix ".nix" baseName ||
+
+ # 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
+ );
+
+ /* A restricted overridable version of buildRustCrateWithFeaturesImpl. */
+ buildRustCrateWithFeatures = {packageId, features}:
+ lib.makeOverridable
+ ({features}: buildRustCrateWithFeaturesImpl {inherit packageId features;})
+ { inherit features; };
+
+ /* Returns a buildRustCrate derivation for the given packageId and features. */
+ buildRustCrateWithFeaturesImpl = { crateConfigs? crates, packageId, features } @ args:
+ assert (builtins.isAttrs crateConfigs);
+ assert (builtins.isString packageId);
+ assert (builtins.isList features);
+
+ 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 the actual derivations for the given dependencies. */
+ dependencyDerivations = buildByPackageId: features: dependencies:
+ assert (builtins.isFunction buildByPackageId);
+ assert (builtins.isList features);
+ assert (builtins.isAttrs dependencies);
+
+ let enabledDependencies = filterEnabledDependencies dependencies features;
+ depDerivation = dependencyName: dependency:
+ buildByPackageId (dependencyPackageId dependency);
+ in builtins.attrValues (lib.mapAttrs 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);
+
+ let prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; });
+ mergedFeatures =
+ prefixValues
+ "crate2nix"
+ (mergePackageFeatures {inherit crateConfigs packageId; 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);
+ differentFeatures = lib.filterAttrs
+ (n: v:
+ (v ? "crate2nix" )
+ && (v ? "cargo")
+ && (v.crate2nix.features or []) != (v."cargo".resolved_default_features or []))
+ combined;
+ 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);
+
+ 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.
+ */
+ listOfPackageFeatures = {crateConfigs ? crates, packageId, features, dependencyPath? [packageId]} @ args:
+ assert (builtins.isAttrs crateConfigs);
+ assert (builtins.isString packageId);
+ assert (builtins.isList features);
+
+ 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; };
+
+ resolveDependencies = path: dependencies:
+ assert (builtins.isAttrs 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;
+
+ resolvedDependencies = builtins.concatLists
+ [
+ (resolveDependencies "dependencies" (crateConfig.dependencies or {}))
+ (resolveDependencies "buildDependencies" (crateConfig.buildDependencies or {}))
+ ];
+
+ in [{inherit packageId; features = expandedFeatures;}] ++ resolvedDependencies;
+
+ /* Returns the enabled dependencies given the enabled features. */
+ filterEnabledDependencies = dependencies: features:
+ assert (builtins.isAttrs dependencies);
+ assert (builtins.isList features);
+
+ lib.filterAttrs
+ (depName: dep:
+ builtins.isString dep
+ || dep.target or true
+ && (!(dep.optional or false) || builtins.any (doesFeatureEnableDependency depName) 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;
+
+ /* 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.
+ */
+ 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;
+
+ /* 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:
+ assert (builtins.isList features);
+ assert (builtins.isString dependencyName);
+ assert (builtins.isAttrs dependency || builtins.isString 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;
+ in
+ defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures;
+
+ /* Sorts and removes duplicates from a list of strings. */
+ sortedUnique = features:
+ 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;
+
+ #
+ # crate2nix/default.nix (excerpt end)
+ #
+
+}