aboutsummaryrefslogtreecommitdiff
path: root/Cargo.nix
diff options
context:
space:
mode:
authortilpner2019-10-05 18:05:31 +0200
committertilpner2019-10-05 18:05:31 +0200
commit30d8303badb0718c35ecc97334b9d7a4fc264ce6 (patch)
treee7af1d29a4747d950ee8d2279e2d8fc300cccac9 /Cargo.nix
parentfa091fcbd219c7a2f8825f0cf6e90bbf994eedf6 (diff)
downloadrpb-s3-30d8303badb0718c35ecc97334b9d7a4fc264ce6.tar.gz
rpb-s3-30d8303badb0718c35ecc97334b9d7a4fc264ce6.tar.xz
rpb-s3-30d8303badb0718c35ecc97334b9d7a4fc264ce6.zip
undo update
Diffstat (limited to 'Cargo.nix')
-rw-r--r--Cargo.nix2072
1 files changed, 827 insertions, 1245 deletions
diff --git a/Cargo.nix b/Cargo.nix
index 48effb2..abdcca0 100644
--- a/Cargo.nix
+++ b/Cargo.nix
@@ -61,31 +61,31 @@ rec {
# * `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)"
+ "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "adler32";
- version = "1.0.4";
+ version = "1.0.3";
edition = "2015";
- sha256 = "157bfkgcy4p3cclfv378x7clxcj3l23jj7sckjbqkmdjbi72y134";
+ sha256 = "1z3mvjgw02mbqk98kizzibrca01d5wfkpazsrp3vkkv3i56pn6fb";
authors = [
"Remi Rampin <remirampin@gmail.com>"
];
features = {
};
};
- "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "aho-corasick";
- version = "0.7.6";
+ version = "0.7.3";
edition = "2015";
- sha256 = "1srdggg7iawz7rfyb79qfnz6vmzkgl6g6gabyd9ad6pbx7zzj8gz";
+ sha256 = "0dn42fbdms4brigqphxrvzbjd1s4knyjlzky30kgvpnrcl4sqqdv";
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)";
+ packageId = "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
};
};
@@ -108,7 +108,7 @@ rec {
];
dependencies = {
"winapi" = {
- packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = (target."os" == "windows");
features = [ "errhandlingapi" "consoleapi" "processenv" ];
};
@@ -116,6 +116,23 @@ rec {
features = {
};
};
+ "argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "argon2rs";
+ version = "0.2.5";
+ edition = "2015";
+ sha256 = "1byl9b3wwyrarn8qack21v5fi2qsnn3y5clvikk2apskhmnih1rw";
+ authors = [
+ "bryant <bryant@defrag.in>"
+ ];
+ dependencies = {
+ "blake2-rfc" = "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ "scoped_threadpool" = "scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "simd" = [ "blake2-rfc/simd_asm" ];
+ };
+ };
"arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "arrayref";
@@ -128,12 +145,12 @@ rec {
features = {
};
};
- "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)"
+ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "arrayvec";
- version = "0.4.11";
+ version = "0.4.10";
edition = "2015";
- sha256 = "1bd08rakkyr9jlf538cs80s3ly464ni3afr63zlw860ndar1zfmv";
+ sha256 = "0qbh825i59w5wfdysqdkiwbwkrsy7lgbd4pwbyb8pxx8wc36iny8";
authors = [
"bluss"
];
@@ -148,23 +165,27 @@ rec {
"serde-1" = [ "serde" ];
};
};
- "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)"
+ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "atty";
- version = "0.2.13";
+ version = "0.2.11";
edition = "2015";
- sha256 = "0a1ii8h9fvvrq05bz7j135zjjz1sjz6n2invn2ngxqri0jxgmip2";
+ sha256 = "0by1bj2km9jxi4i4g76zzi76fc2rcm9934jpnyrqd95zw344pb20";
authors = [
"softprops <d.tangren@gmail.com>"
];
dependencies = {
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
target = target."unix";
};
+ "termion" = {
+ packageId = "termion 1.5.2 (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)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ];
};
@@ -172,70 +193,78 @@ rec {
features = {
};
};
- "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "autocfg";
- version = "0.1.6";
+ version = "0.1.2";
edition = "2015";
- sha256 = "1yzawpsmrcy3x60i59hfwwg7mfdwc74199m2lgkc4vam5ijy8mz7";
+ sha256 = "0dv81dwnp1al3j4ffz007yrjv4w1c7hw09gnf0xs3icxiw6qqfs3";
authors = [
"Josh Stone <cuviper@gmail.com>"
];
features = {
};
};
- "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)"
+ "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "backtrace";
- version = "0.3.38";
- edition = "2018";
- sha256 = "0k41sw74xd19s9lsqab1rf94wi8l7ppfarib8hpd0y7q2iym5j41";
+ version = "0.3.15";
+ edition = "2015";
+ sha256 = "0qgbc07aq9kfixv29s60xx666lmdpgmf27a78fwjlhnfzhqvkn0p";
authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
"The Rust Project Developers"
];
dependencies = {
"backtrace-sys" = {
- packageId = "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
+ target = (target."unix" && (!(target."os" == "fuchsia")) && (!(target."os" == "emscripten")) && (!(target."os" == "macos")) && (!(target."os" == "ios")));
};
- "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
+ target = (target."unix" || (target."env" == "sgx"));
+ };
+ "rustc-demangle" = "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)";
+ "winapi" = {
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = target."windows";
+ features = [ "dbghelp" "processthreadsapi" "winnt" "minwindef" ];
};
- "rustc-demangle" = "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "autocfg" = "autocfg 0.1.2 (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" ];
+ "default" = [ "std" "libunwind" "libbacktrace" "coresymbolication" "dladdr" "dbghelp" ];
+ "gimli-symbolize" = [ "addr2line" "findshlibs" "gimli" "memmap" "object" ];
+ "libbacktrace" = [ "backtrace-sys" "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" ];
+ "serialize-serde" = [ "serde" "serde_derive" ];
};
- resolvedDefaultFeatures = [ "backtrace-sys" "dbghelp" "default" "dladdr" "libbacktrace" "libunwind" "std" ];
+ resolvedDefaultFeatures = [ "backtrace-sys" "coresymbolication" "dbghelp" "default" "dladdr" "libbacktrace" "libunwind" "std" ];
};
- "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)"
+ "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "backtrace-sys";
- version = "0.1.31";
+ version = "0.1.28";
edition = "2015";
- sha256 = "1gv41cypl4y5r32za4gx2fks43d76sp1r3yb5524i4gs50lrkypv";
+ sha256 = "1bbw8chs0wskxwzz7f3yy7mjqhyqj8lslq8pcjw1rbd2g23c34xl";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = {
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ "cc" = "cc 1.0.36 (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)"
@@ -249,7 +278,7 @@ rec {
"Marshall Pierce <marshall@mpierce.org>"
];
dependencies = {
- "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "byteorder" = "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -265,18 +294,18 @@ rec {
"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)";
+ "byteorder" = "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "safemem" = "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "bincode 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "bincode";
- version = "1.2.0";
+ version = "1.1.3";
edition = "2015";
- sha256 = "0sfk6drrivn6xij8w6krskhn7fa5bq2jjvlvl7ipnsvjz3l1l949";
+ sha256 = "1wx2iz648r6byl523sb2rqizk1qvwrzpf7apjgr8lsnb67p26y1a";
authors = [
"Ty Overby <ty@pre-alpha.com>"
"Francesco Mazzoli <f@mazzo.li>"
@@ -284,76 +313,21 @@ rec {
"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)";
+ "byteorder" = "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
};
buildDependencies = {
- "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "autocfg" = "autocfg 0.1.2 (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)"
+ "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "bitflags";
- version = "1.2.0";
+ version = "1.0.5";
edition = "2015";
- sha256 = "0cybfqfkplbznkvm0cjn6wv7vpp718i47ld4g84qrb0lwa0jpmcg";
+ sha256 = "0brvi70yflsqa8q6myqjpqmmqa0ng00mi4hpnfinc2y52sv76cwg";
authors = [
"The Rust Project Developers"
];
@@ -361,25 +335,26 @@ rec {
};
resolvedDefaultFeatures = [ "default" ];
};
- "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
- crateName = "blake2b_simd";
- version = "0.5.8";
- edition = "2018";
- sha256 = "14974amxa9lgn8syjp1am4yj4vhmcc27k21bvyz4fsawv3hfv204";
+ crateName = "blake2-rfc";
+ version = "0.2.18";
+ edition = "2015";
+ sha256 = "0pyqrik4471ljk16prs0iwb2sam39z0z6axyyjxlqxdmf4wprf0l";
authors = [
- "Jack O'Connor"
+ "Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
];
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)";
+ packageId = "arrayvec 0.4.10 (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)";
+ "constant_time_eq" = "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"default" = [ "std" ];
+ "simd_asm" = [ "simd_opt" ];
+ "simd_opt" = [ "simd" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
@@ -399,6 +374,20 @@ rec {
features = {
};
};
+ "build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "build_const";
+ version = "0.2.1";
+ edition = "2015";
+ sha256 = "15249xzi3qlm72p4glxgavwyq70fx2sp4df6ii0sdlrixrrp77pl";
+ authors = [
+ "Garrett Berg <vitiral@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
"byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "byte-tools";
@@ -411,12 +400,12 @@ rec {
features = {
};
};
- "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "byteorder";
- version = "1.3.2";
+ version = "1.3.1";
edition = "2015";
- sha256 = "099fxwc79ncpcl8dgg9hql8gznz11a3sjs7pai0mg6w8r05khvdx";
+ sha256 = "1dd46l7fvmxfq90kh6ip1ghsxzzcdybac8f0mh2jivsdv9vy8k4w";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
@@ -435,117 +424,61 @@ rec {
"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;
- };
+ "byteorder" = "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
"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)"
+ "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "cc";
- version = "1.0.45";
- edition = "2018";
+ version = "1.0.36";
+ edition = "2015";
# Hack to suppress building binaries
crateBin = [{name = ","; path = ",";}];
- sha256 = "0qhw9k5av9x6yvv4jfrji576wy90vgdnr76cifs8xqm70scdl2sm";
+ sha256 = "0yk9f8fcsp9qk00qbj8idsnjv29v5arp3w5awgggf5kg571djjx7";
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 = {
+ "parallel" = [ "rayon" ];
};
};
- "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"
+ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "cfg-if";
- version = "0.1.10";
- edition = "2018";
- sha256 = "0x52qzpbyl2f2jqs7kkqzgfki2cpq99gpfjjigdp8pwwfqk01007";
+ version = "0.1.7";
+ edition = "2015";
+ sha256 = "13gvcx1dxjq4mpmpj26hpg3yc97qffkx2zi58ykr1dwr8q2biiig";
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)"
+ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "chrono";
- version = "0.4.9";
+ version = "0.4.6";
edition = "2015";
- sha256 = "0nw75j1q0idg5a57k68l87422nq8naq818cdxh390byws63a8yfj";
+ sha256 = "0cxgqgf4lknsii1k806dpmzapi2zccjpa350ns5wpb568mij096x";
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)";
+ packageId = "num-integer 0.1.39 (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)";
+ packageId = "num-traits 0.2.6 (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)";
+ packageId = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"time" = {
@@ -556,47 +489,9 @@ rec {
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";
@@ -613,16 +508,16 @@ rec {
target = (!target."windows");
};
"atty" = {
- packageId = "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "atty 0.2.11 (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)";
+ "bitflags" = "bitflags 1.0.5 (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)";
+ "unicode-width" = "unicode-width 0.1.5 (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;
@@ -651,7 +546,7 @@ rec {
];
dependencies = {
"bitflags" = {
- packageId = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
};
@@ -660,29 +555,29 @@ rec {
};
resolvedDefaultFeatures = [ "bitflags" "default" ];
};
- "config 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ "config 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "config";
- version = "0.9.3";
+ version = "0.9.2";
edition = "2015";
- sha256 = "1j5ffvaj979xcb6y72dka24465ajskifvmzff4ns7kzf4zi8iy56";
+ sha256 = "18j4aza6z7g0nibb6yfqd88f32bjl8lrcz3jlz7vzjhp10lvc6rr";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
];
dependencies = {
- "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "lazy_static" = "lazy_static 1.3.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" = "serde 1.0.90 (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)";
+ packageId = "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"toml" = {
@@ -703,12 +598,12 @@ rec {
};
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)"
+ "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "constant_time_eq";
- version = "0.1.4";
+ version = "0.1.3";
edition = "2015";
- sha256 = "0k3b5yavx7si8cy030py6bhgmg24sghzs8chbs4d4r13wjp5c5ih";
+ sha256 = "03qri9hjf049gwqg9q527lybpg918q6y5q4g9a5lma753nff49wd";
authors = [
"Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
];
@@ -726,7 +621,7 @@ rec {
];
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)";
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
@@ -747,6 +642,23 @@ rec {
features = {
};
};
+ "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "crc";
+ version = "1.8.1";
+ edition = "2015";
+ sha256 = "00m9jjqrddp3bqyanvyxv0hf6s56bx1wy51vcdcxg4n2jdhg109s";
+ authors = [
+ "Rui Hu <code@mrhooray.com>"
+ ];
+ buildDependencies = {
+ "build_const" = "build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
"crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "crc32fast";
@@ -758,7 +670,7 @@ rec {
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = {
- "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"default" = [ "std" ];
@@ -775,43 +687,42 @@ rec {
"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)";
+ "crossbeam-epoch" = "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "crossbeam-epoch";
- version = "0.7.2";
+ version = "0.7.1";
edition = "2015";
- sha256 = "015axh69r6ggj481ncqj09d7ssbqf8psgyqq9hhpkrh3j7xn4vmn";
+ sha256 = "1n2p8rqsg0g8dws6kvjgi5jsbnd42l45dklnzc8vihjcxa6712bg";
authors = [
"The Crossbeam Project Developers"
];
dependencies = {
"arrayvec" = {
- packageId = "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "arrayvec 0.4.10 (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)";
+ "cfg-if" = "cfg-if 0.1.7 (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)";
+ packageId = "crossbeam-utils 0.6.5 (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)";
+ packageId = "lazy_static 1.3.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)";
+ "memoffset" = "memoffset 0.2.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)";
+ packageId = "scopeguard 0.3.3 (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" ];
@@ -828,24 +739,24 @@ rec {
"The Crossbeam Project Developers"
];
dependencies = {
- "crossbeam-utils" = "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "crossbeam-utils";
- version = "0.6.6";
+ version = "0.6.5";
edition = "2015";
- sha256 = "01gxccmrjkkcavdh8fc01kj3b5fmk10f0lkx66jmnv69kcssry72";
+ sha256 = "1z7wgcl9d22r2x6769r5945rnwf3jqfrrmb16q7kzk292r1d4rdg";
authors = [
"The Crossbeam Project Developers"
];
dependencies = {
- "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (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)";
+ packageId = "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
};
@@ -865,7 +776,7 @@ rec {
"RustCrypto Developers"
];
dependencies = {
- "constant_time_eq" = "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)";
+ "constant_time_eq" = "constant_time_eq 0.1.3 (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 = {
@@ -897,15 +808,15 @@ rec {
];
dependencies = {
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ packageId = "redox_users 0.3.0 (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)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
};
@@ -913,55 +824,18 @@ rec {
features = {
};
};
- "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "either";
- version = "1.5.3";
+ version = "1.5.2";
edition = "2015";
- sha256 = "040fgh0jahqra9ascwb986zgll1ss88ky9bfvn0zfay42zsyz83n";
+ sha256 = "1zqq1057c51f53ga4p9l4dd8ax6md27h1xjrjp2plkvml5iymks5";
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 {
@@ -974,7 +848,7 @@ rec {
];
dependencies = {
"backtrace" = {
- packageId = "backtrace 0.3.38 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"failure_derive" = {
@@ -1000,10 +874,10 @@ rec {
"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)";
+ "proc-macro2" = "proc-macro2 0.4.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syn" = "syn 0.15.33 (registry+https://github.com/rust-lang/crates.io-index)";
+ "synstructure" = "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -1020,31 +894,35 @@ rec {
features = {
};
};
- "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ "flate2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "flate2";
- version = "1.0.12";
- edition = "2018";
- sha256 = "11bw2rp905w43pc4fxgsmal93zf26zkfkhk8h0ac5ik3spy0drj6";
+ version = "1.0.7";
+ edition = "2015";
+ sha256 = "012vi948sap09hm1nmd228fqn7i5kp6wfb9zlz0m8ysq5if1s9mc";
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)";
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ "miniz-sys" = {
+ packageId = "miniz-sys 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "miniz_oxide_c_api" = {
+ packageId = "miniz_oxide_c_api 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
target = ((target."arch" == "wasm32") && (!(target."os" == "emscripten")));
+ features = [ "no_c_export" ];
};
};
features = {
- "default" = [ "rust_backend" ];
- "rust_backend" = [ "miniz_oxide" ];
+ "default" = [ "miniz-sys" ];
+ "rust_backend" = [ "miniz_oxide_c_api" ];
"tokio" = [ "tokio-io" "futures" ];
"zlib" = [ "libz-sys" ];
};
- resolvedDefaultFeatures = [ "default" "miniz_oxide" "rust_backend" ];
+ resolvedDefaultFeatures = [ "default" "miniz-sys" ];
};
"fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
@@ -1108,7 +986,7 @@ rec {
"Raph Levien <raph@google.com>"
];
dependencies = {
- "bitflags" = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "bitflags" = "bitflags 1.0.5 (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 = {
@@ -1126,12 +1004,12 @@ rec {
features = {
};
};
- "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)"
+ "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "futures";
- version = "0.1.29";
+ version = "0.1.26";
edition = "2015";
- sha256 = "0zq7ysf5qvdchh3hjrvvv3sx4bflq6mb7b1wzaqsn2c8bbcvjgmp";
+ sha256 = "0b2v05xp3pq0idw743824ilgl9mfn6bf0sf9zm98g07zz4hqzpzs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
@@ -1151,11 +1029,11 @@ rec {
];
dependencies = {
"futures" = {
- packageId = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "futures 0.1.26 (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)";
+ "num_cpus" = "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"default" = [ "with-deprecated" ];
@@ -1163,22 +1041,6 @@ rec {
};
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";
@@ -1190,68 +1052,30 @@ rec {
"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" ];
+ "typenum" = "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
- 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)"
+ "h2 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "h2";
- version = "0.1.26";
+ version = "0.1.18";
edition = "2015";
- sha256 = "0wb3nsksi568qb44pzfkz7gbagghzb3fbbky8qhm37aan3dgwb8c";
+ sha256 = "1i8hwjwmvlh0qblpl6fgbp47fjklwzji3j205y91x4fbvx62k8il";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = {
- "byteorder" = "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "byteorder" = "byteorder 1.3.1 (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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "http" = "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)";
+ "indexmap" = "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (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)";
+ "string" = "string 0.1.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 = {
@@ -1267,7 +1091,7 @@ rec {
"Without Boats <woboats@gmail.com>"
];
dependencies = {
- "unicode-segmentation" = "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "unicode-segmentation" = "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -1300,12 +1124,12 @@ rec {
features = {
};
};
- "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)"
+ "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "http";
- version = "0.1.18";
+ version = "0.1.17";
edition = "2015";
- sha256 = "0np5rnnbimmximdl2l7b0x1izzc4iwyw0qhzxlsx7hny423608rq";
+ sha256 = "0q71wgggg1h5kjyg1gb4m70g3ian9qwrkx2b9wwvfyafrkmjpg9c";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Carl Lerche <me@carllerche.com>"
@@ -1319,33 +1143,12 @@ rec {
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)"
+ "httparse 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "httparse";
- version = "1.3.4";
+ version = "1.3.3";
edition = "2015";
- sha256 = "0dggj4s0cq69bn63q9nqzzay5acmwl33nrbhjjsh5xys8sk2x4jw";
+ sha256 = "1jymxy4bl0mzgp2dx0pzqzbr72sw5jmr5sjqiry4xr88z4z9qlyx";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
@@ -1354,12 +1157,12 @@ rec {
};
resolvedDefaultFeatures = [ "default" "std" ];
};
- "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "humantime";
- version = "1.3.0";
+ version = "1.2.0";
edition = "2015";
- sha256 = "1y7q207gg33jr5rnlnb0h08k00i54g9fypf3drjk8g1sq2swn92r";
+ sha256 = "0wlcxzz2mhq0brkfbjb12hc6jm17bgm8m6pdgblw4qjwmf26aw28";
authors = [
"Paul Colomiets <paul@colomiets.name>"
];
@@ -1369,48 +1172,46 @@ rec {
features = {
};
};
- "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)"
+ "hyper 0.12.28 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "hyper";
- version = "0.12.35";
+ version = "0.12.28";
edition = "2015";
- sha256 = "08sk7hasx0srs5pbffc851p4i748xx9dd8nc87r9a7kbjd9ph8d9";
+ sha256 = "0kzk4mgwxjxxz8g2ihlr6zqd1xyyxw3r8qqwza15jkymdaxl3b58";
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" = "futures 0.1.26 (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)";
+ "h2" = "h2 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)";
+ "http" = "http 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)";
+ "httparse" = "httparse 1.3.3 (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)";
+ "log" = "log 0.4.6 (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)";
+ packageId = "tokio 0.1.19 (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)";
+ packageId = "tokio-executor 0.1.7 (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)";
+ packageId = "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"tokio-tcp" = {
@@ -1418,14 +1219,14 @@ rec {
optional = true;
};
"tokio-threadpool" = {
- packageId = "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "tokio-threadpool 0.1.14 (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)";
+ packageId = "tokio-timer 0.2.10 (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)";
+ "want" = "want 0.0.6 (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)";
@@ -1447,8 +1248,8 @@ rec {
];
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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hyper" = "hyper 0.12.28 (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)";
};
@@ -1473,12 +1274,12 @@ rec {
features = {
};
};
- "indexmap 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "indexmap";
- version = "1.2.0";
+ version = "1.0.2";
edition = "2015";
- sha256 = "0c2vi7p3zhfh536lgqq579f644k9ilq9v8xnk1w4av481hxlal97";
+ sha256 = "18a0cn5xy3a7wswxg5lwfg3j4sh5blk28ykw0ysgr486djd353gf";
authors = [
"bluss"
"Josh Stone <cuviper@gmail.com>"
@@ -1498,7 +1299,7 @@ rec {
];
dependencies = {
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."unix";
};
"winapi" = {
@@ -1520,7 +1321,7 @@ rec {
];
dependencies = {
"either" = {
- packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "either 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
};
};
@@ -1576,12 +1377,12 @@ rec {
"spin_no_std" = [ "nightly" "spin" ];
};
};
- "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "lazy_static";
- version = "1.4.0";
+ version = "1.3.0";
edition = "2015";
- sha256 = "13h6sdghdcy7vcqsm2gasfw3qg7ssa0fl3sw7lq6pdkbk52wbyfr";
+ sha256 = "1vv47va18ydk7dx5paz88g3jy1d3lwbx6qpxkbj8gyfv770i4b1y";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
@@ -1603,43 +1404,20 @@ rec {
"nightly-testing" = [ "clippy" "nightly" ];
};
};
- "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)"
+ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "libc";
- version = "0.2.62";
+ version = "0.2.54";
edition = "2015";
- sha256 = "1vsb4pyn6gl6sri6cv5hin5wjfgk7lk2bshzmxb1xnkckjhz4gbx";
+ sha256 = "11nrsbpmwcnfrjcds0wnicwwql3809nq6q6z00q920bdpryyaf58";
authors = [
"The Rust Project Developers"
];
features = {
- "default" = [ "std" ];
+ "default" = [ "use_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 = {
};
+ resolvedDefaultFeatures = [ "default" "use_std" ];
};
"line-wrap 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
@@ -1651,7 +1429,7 @@ rec {
"Marshall Pierce <marshall@mpierce.org>"
];
dependencies = {
- "safemem" = "safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "safemem" = "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -1696,23 +1474,28 @@ rec {
"serde_impl" = [ "serde" "serde_test" ];
};
};
- "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "lock_api";
- version = "0.3.1";
- edition = "2018";
- sha256 = "0fnav5aq42dcw3z2v9lp8pfrgmf4nnyr3h9i7v5qj9xdzxkp6lry";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "132sidr5hvjfkaqm3l95zpcpi8yk5ddd0g79zf1ad4v65sxirqqm";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = {
+ "owning_ref" = {
+ packageId = "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
"scopeguard" = {
- packageId = "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
};
};
features = {
};
+ resolvedDefaultFeatures = [ "owning_ref" ];
};
"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
@@ -1724,7 +1507,7 @@ rec {
"The Rust Project Developers"
];
dependencies = {
- "log" = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"default" = [ "use_std" ];
@@ -1744,20 +1527,19 @@ rec {
};
resolvedDefaultFeatures = [ "default" "use_std" ];
};
- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "log";
- version = "0.4.8";
+ version = "0.4.6";
edition = "2015";
- sha256 = "0wvzzzcn89dai172rrqcyz06pzldyyy0lf0w71csmn206rdpnb15";
+ sha256 = "1nd8dl9mvc9vd6fks5d4gsxaz990xi6rzlb8ymllshmwi153vngr";
authors = [
"The Rust Project Developers"
];
dependencies = {
- "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
- "kv_unstable_sval" = [ "kv_unstable" "sval/fmt" ];
};
resolvedDefaultFeatures = [ "std" ];
};
@@ -1792,12 +1574,12 @@ rec {
features = {
};
};
- "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "memchr";
- version = "2.2.1";
+ version = "2.2.0";
edition = "2015";
- sha256 = "1mj5z8lhz6jbapslpq8a39pwcsl1p0jmgp7wgcj7nv4pcqhya7a0";
+ sha256 = "11vwg8iig9jyjxq3n1cq15g29ikzw5l7ar87md54k1aisjs0997p";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
"bluss"
@@ -1807,18 +1589,15 @@ rec {
};
resolvedDefaultFeatures = [ "default" "use_std" ];
};
- "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "memoffset";
- version = "0.5.1";
+ version = "0.2.1";
edition = "2015";
- sha256 = "0fsk7kfk193f1aamafl45vvcp7j6p7c14ss7d583fijw3w5kj69k";
+ sha256 = "00vym01jk9slibq2nsiilgffp7n6k52a4q3n4dqp0xf5kzxvffcf";
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 = {
};
};
@@ -1862,28 +1641,72 @@ rec {
features = {
};
};
- "miniz_oxide 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ "miniz-sys 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "miniz-sys";
+ version = "0.1.11";
+ edition = "2015";
+ sha256 = "0l2wsakqjj7kc06dwxlpz4h8wih0f9d1idrz5gb1svipvh81khsm";
+ libName = "miniz_sys";
+ libPath = "lib.rs";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = {
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "cc" = "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "miniz_oxide 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "miniz_oxide";
- version = "0.3.3";
- edition = "2018";
- sha256 = "00x68qpvnnwzr38g3b6xi2pf0lhrk5nbir71zlzxra47f013rfvs";
+ version = "0.2.1";
+ edition = "2015";
+ sha256 = "1ly14vlk0gq7czi1323l2dsy5y8dpvdwld4h9083i0y3hx9iyfdz";
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)";
+ "adler32" = "adler32 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)"
+ "miniz_oxide_c_api 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "miniz_oxide_c_api";
+ version = "0.2.1";
+ edition = "2015";
+ sha256 = "1zsk334nhy2rvyhbr0815l0gp6w40al6rxxafkycaafx3m9j8cj2";
+ build = "src/build.rs";
+ authors = [
+ "Frommi <daniil.liferenko@gmail.com>"
+ ];
+ dependencies = {
+ "crc" = "crc 1.8.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ "miniz_oxide" = "miniz_oxide 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ buildDependencies = {
+ "cc" = "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ "benching" = [ "build_orig_miniz" "no_c_export" ];
+ "fuzzing" = [ "build_orig_miniz" "no_c_export" ];
+ "miniz_zip" = [ "build_stub_miniz" ];
+ };
+ resolvedDefaultFeatures = [ "default" "no_c_export" ];
+ };
+ "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "mio";
- version = "0.6.19";
+ version = "0.6.16";
edition = "2015";
- sha256 = "0pjazzvqwkb4fgmm4b3m8i05c2gq60lvqqia0faawswgqy7rvgac";
+ sha256 = "14vyrlmf0w984pi7ad9qvmlfj6vrb0wn6i8ik9j87w5za2r3rban";
authors = [
"Carl Lerche <me@carllerche.com>"
];
@@ -1901,11 +1724,12 @@ rec {
packageId = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
};
+ "lazycell" = "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ "log" = "log 0.4.6 (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";
@@ -1937,11 +1761,11 @@ rec {
target = target."unix";
};
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ packageId = "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."unix";
};
};
@@ -1980,19 +1804,19 @@ rec {
];
dependencies = {
"lazy_static" = {
- packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "lazy_static 1.3.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)";
+ packageId = "libc 0.2.54 (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)";
+ packageId = "log 0.4.6 (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)";
+ packageId = "openssl 0.10.21 (registry+https://github.com/rust-lang/crates.io-index)";
target = (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
};
"openssl-probe" = {
@@ -2000,11 +1824,11 @@ rec {
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)";
+ packageId = "openssl-sys 0.9.44 (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)";
+ packageId = "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)";
target = (target."os" == "windows");
};
"security-framework" = {
@@ -2016,7 +1840,7 @@ rec {
target = ((target."os" == "macos") || (target."os" == "ios"));
};
"tempfile" = {
- packageId = "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = ((target."os" == "macos") || (target."os" == "ios"));
};
};
@@ -2034,13 +1858,13 @@ rec {
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = {
- "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "handleapi" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ];
};
@@ -2075,7 +1899,7 @@ rec {
];
dependencies = {
"memchr" = {
- packageId = "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
};
};
@@ -2089,26 +1913,23 @@ rec {
"std" = [ "alloc" "memchr/use_std" ];
"verbose-errors" = [ "alloc" ];
};
- resolvedDefaultFeatures = [ "alloc" "default" "std" "verbose-errors" ];
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
- "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)"
+ "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "num-integer";
- version = "0.1.41";
+ version = "0.1.39";
edition = "2015";
- sha256 = "1y45nh9xlp2dra9svb1wfsy65fysm3k1w4m8jynywccq645yixid";
+ sha256 = "1f42ls46cghs13qfzgbd7syib2zc6m7hlmv1qlar6c9mdxapvvbg";
authors = [
"The Rust Project Developers"
];
dependencies = {
"num-traits" = {
- packageId = "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "num-traits 0.2.6 (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" ];
@@ -2125,101 +1946,110 @@ rec {
"The Rust Project Developers"
];
dependencies = {
- "num-traits" = "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ "num-traits" = "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "num-traits";
- version = "0.2.8";
+ version = "0.2.6";
edition = "2015";
- sha256 = "1mnlmy35n734n9xlq0qkfbgzz33x09a1s4rfj30p1976p09b862v";
+ sha256 = "1d20sil9n0wgznd1nycm3yjfj1mzyl41ambb7by1apxlyiil1azk";
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)"
+ "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "num_cpus";
- version = "1.10.1";
+ version = "1.10.0";
edition = "2015";
- sha256 = "1zi5s2cbnqqb0k0kdd6gqn2x97f9bssv44430h6w28awwzppyh8i";
+ sha256 = "1411jyxy1wd8d59mv7cf6ynkvvar92czmwhb9l2c1brdkxbbiqn7";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = {
- "libc" = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
};
+ };
+ "numtoa 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "numtoa";
+ version = "0.1.0";
+ edition = "2015";
+ sha256 = "1i2wxr96bb1rvax15z843126z3bnl2frpx69vxsp95r96wr24j08";
+ authors = [
+ "Michael Aaron Murphy <mmstickman@gmail.com>"
+ ];
features = {
};
+ resolvedDefaultFeatures = [ "std" ];
};
- "onig 5.0.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "onig 4.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "onig";
- version = "5.0.0";
+ version = "4.3.2";
edition = "2015";
- sha256 = "0g2d93dpsihqqjib7vm2ynf3vlwayph3m8bnwhy90ib2cpzjlbg5";
+ sha256 = "09b4cgh3h7dk8jc7pxs88i3sn79bxavnx0k32v8k54afqpsg0d2d";
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)";
+ "bitflags" = "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "lazy_static" = "lazy_static 1.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)";
+ packageId = "libc 0.2.54 (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)";
+ "onig_sys" = "onig_sys 69.1.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)"
+ "onig_sys 69.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "onig_sys";
- version = "69.2.0";
+ version = "69.1.0";
edition = "2015";
- sha256 = "0r1l3ikshviz99zmf5wl9nqzn4bf9ma4kgmagg2mda83j145x239";
+ sha256 = "0rm4qrm2gh5qbyl6bgj6jn92mina745fs2dnnvdk1w5zsh892nbh";
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)";
+ "cc" = "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)";
+ "pkg-config" = "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "openssl 0.10.25 (registry+https://github.com/rust-lang/crates.io-index)"
+ "openssl 0.10.21 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "openssl";
- version = "0.10.25";
+ version = "0.10.21";
edition = "2015";
- sha256 = "09cfxs76j8wn0k7px6lr9rrpdf4x88sihik0pq84x6jlh626h1qx";
+ sha256 = "1msb9iqfz4zb426g3l622wfa1dh9p7w0dz8cac1wpf66isj0x028";
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)";
+ "bitflags" = "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (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)";
+ "lazy_static" = "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ "openssl-sys" = "openssl-sys 0.9.44 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"vendored" = [ "openssl-sys/vendored" ];
@@ -2237,26 +2067,26 @@ rec {
features = {
};
};
- "openssl-sys 0.9.50 (registry+https://github.com/rust-lang/crates.io-index)"
+ "openssl-sys 0.9.44 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "openssl-sys";
- version = "0.9.50";
+ version = "0.9.44";
edition = "2015";
- sha256 = "1pzpr9wy8ixr5lnsh5yrzlxr43lf5d3rp83qbzd06zwdx7zmfkg0";
+ sha256 = "09rbq04mcs1zv89r61ikywsin8a9szraq06a4fs3chp44igswymh";
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)";
+ "libc" = "libc 0.2.54 (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)";
+ "cc" = "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)";
+ "pkg-config" = "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rustc_version" = "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)";
"vcpkg" = {
- packageId = "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)";
target = (target."env" == "msvc");
};
};
@@ -2264,56 +2094,60 @@ rec {
"vendored" = [ "openssl-src" ];
};
};
- "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "owning_ref";
+ version = "0.4.0";
+ edition = "2015";
+ sha256 = "1m95qpc3hamkw9wlbfzqkzk7h6skyj40zr6sa3ps151slcfnnchm";
+ authors = [
+ "Marvin Löbel <loebel.marvin@gmail.com>"
+ ];
+ dependencies = {
+ "stable_deref_trait" = "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "parking_lot";
- version = "0.9.0";
- edition = "2018";
- sha256 = "0h28hk9yggik2pdyp5rbq31klkms0f34mg3yj6rsd9639jf8hf69";
+ version = "0.7.1";
+ edition = "2015";
+ sha256 = "1qpb49xd176hqqabxdb48f1hvylfbf68rpz8yfrhw0x68ys0lkq1";
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)";
+ "lock_api" = "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "parking_lot_core" = "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
+ "default" = [ "owning_ref" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
- "serde" = [ "lock_api/serde" ];
};
- resolvedDefaultFeatures = [ "default" ];
+ resolvedDefaultFeatures = [ "default" "owning_ref" ];
};
- "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "parking_lot_core";
- version = "0.6.2";
- edition = "2018";
- sha256 = "0mn0vnz3afgpjafqa9ca9j39fb2inpz1lym9sghgl535n18psi3s";
+ version = "0.4.0";
+ edition = "2015";
+ sha256 = "1mzk5i240ddvhwnz65hhjk4cq61z235g1n8bd7al4mg6vx437c16";
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)";
+ packageId = "libc 0.2.54 (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)";
+ "rand" = "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "smallvec" = "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)";
"winapi" = {
- packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
};
@@ -2325,18 +2159,6 @@ rec {
"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";
@@ -2421,34 +2243,34 @@ rec {
};
resolvedDefaultFeatures = [ "unicase" ];
};
- "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "pkg-config";
- version = "0.3.16";
+ version = "0.3.14";
edition = "2015";
- sha256 = "1a2gg5a9l74brz1vzkkzfl8aihd7b4rk3vhbmiahkmpzavywza5j";
+ sha256 = "0207fsarrm412j0dh87lfcas72n8mxar7q3mgflsbsrqnb140sv6";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
};
};
- "plist 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "plist 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "plist";
- version = "0.4.2";
+ version = "0.4.1";
edition = "2015";
- sha256 = "0sz26afyw1yrgf2gfpbfvs2q39cwxps4jm72aqsfjjakpssmx724";
+ sha256 = "1qnnckcfwyzzbznbqy1fgh4m6cl4ws85wyszh2mllf0v0wvixxk8";
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)";
+ "byteorder" = "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ "humantime" = "humantime 1.2.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)";
+ packageId = "serde 1.0.90 (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)";
@@ -2458,26 +2280,12 @@ rec {
};
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)"
+ "proc-macro2 0.4.29 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "proc-macro2";
- version = "0.4.30";
+ version = "0.4.29";
edition = "2015";
- sha256 = "0iifv51wrm6r4r2gghw6rray3nv53zcap355bbz1nsmbhj5s09b9";
+ sha256 = "08jfiqzh7drl67061aiwv9g93rpzydg39wvsyw4jn2h3n6chw1x3";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
@@ -2489,24 +2297,6 @@ rec {
};
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";
@@ -2520,39 +2310,18 @@ rec {
features = {
};
};
- "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)"
+ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "quote";
- version = "0.6.13";
+ version = "0.6.12";
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";
+ sha256 = "1ckd2d2sy0hrwrqcr47dn0n3hyh7ygpc026l8xaycccyg27mihv9";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = {
"proc-macro2" = {
- packageId = "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "proc-macro2 0.4.29 (registry+https://github.com/rust-lang/crates.io-index)";
usesDefaultFeatures = false;
};
};
@@ -2574,12 +2343,12 @@ rec {
];
dependencies = {
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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_core" = "rand_core 0.4.0 (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)";
@@ -2590,13 +2359,13 @@ rec {
"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)";
+ packageId = "winapi 0.3.7 (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)";
+ "autocfg" = "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"alloc" = [ "rand_core/alloc" ];
@@ -2610,51 +2379,6 @@ rec {
};
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";
@@ -2672,36 +2396,11 @@ rec {
};
};
buildDependencies = {
- "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "autocfg" = "autocfg 0.1.2 (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";
@@ -2713,7 +2412,7 @@ rec {
"The Rust Project Developers"
];
dependencies = {
- "rand_core" = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_core" = "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"alloc" = [ "rand_core/alloc" ];
@@ -2722,12 +2421,12 @@ rec {
"std" = [ "rand_core/std" ];
};
};
- "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "rand_core";
- version = "0.4.2";
+ version = "0.4.0";
edition = "2015";
- sha256 = "18zpzwn4bl7lp9f36iacy8mvdnfrhfmzsl35gmln98dcindff2ly";
+ sha256 = "0wb5iwhffibj0pnpznhv1g3i7h1fnhz64s3nz74fz6vsm3q6q3br";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
@@ -2738,28 +2437,6 @@ rec {
};
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";
@@ -2778,21 +2455,6 @@ rec {
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";
@@ -2824,13 +2486,13 @@ rec {
];
dependencies = {
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ "rand_core" = "rand_core 0.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)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = (target."os" == "windows");
features = [ "profileapi" ];
};
@@ -2859,11 +2521,11 @@ rec {
target = (target."os" == "fuchsia");
};
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ packageId = "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
features = [ "std" ];
};
"rdrand" = {
@@ -2871,7 +2533,7 @@ rec {
target = (target."env" == "sgx");
};
"winapi" = {
- packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "minwindef" "ntsecapi" "winnt" ];
};
@@ -2889,10 +2551,10 @@ rec {
"The Rand Project Developers"
];
dependencies = {
- "rand_core" = "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand_core" = "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
buildDependencies = {
- "autocfg" = "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "autocfg" = "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"serde1" = [ "serde" "serde_derive" ];
@@ -2938,12 +2600,12 @@ rec {
};
resolvedDefaultFeatures = [ "default" "std" ];
};
- "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"
+ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "redox_syscall";
- version = "0.1.56";
+ version = "0.1.54";
edition = "2015";
- sha256 = "0jcp8nd947zcy938bz09pzlmi3vyxfdzg92pjxdvvk0699vwcc26";
+ sha256 = "1ndcp7brnvii87ndcd34fk846498r07iznphkslcy0shic9cp4rr";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
@@ -2951,97 +2613,92 @@ rec {
features = {
};
};
- "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "redox_termios";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "04s6yyzjca552hdaqlvqhp3vw0zqbc304md5czyd3axh56iry8wh";
+ authors = [
+ "Jeremy Soller <jackpot51@gmail.com>"
+ ];
+ dependencies = {
+ "redox_syscall" = "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "redox_users";
- version = "0.3.1";
+ version = "0.3.0";
edition = "2015";
- sha256 = "0kqc1vjmkcvgkxjpqva3nyqd9dixivsh4qswxclyqf7ql8a2g17s";
+ sha256 = "051rzqgk5hn7rf24nwgbb32zfdn8qp2kwqvdp0772ia85p737p4j";
authors = [
"Jose Narvaez <goyox86@gmail.com>"
"Wesley Hershberger <mggmugginsmc@gmail.com>"
];
dependencies = {
+ "argon2rs" = {
+ packageId = "argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ usesDefaultFeatures = false;
+ };
"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)";
+ "redox_syscall" = "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "regex";
- version = "1.3.1";
+ version = "1.1.6";
edition = "2015";
- sha256 = "0508b01q7iwky5gzp1cc3lpz6al1qam8skgcvkfgxr67nikiz7jn";
+ sha256 = "1yynvabg03m5f65qxcw70qckkfjwi9xyfpjdp6yq7pk0xf0ydc0b";
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;
- };
+ "aho-corasick" = "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ "memchr" = "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "regex-syntax" = "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "thread_local" = "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "utf8-ranges" = "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)";
};
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" ];
+ "default" = [ "use_std" ];
"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" ];
+ resolvedDefaultFeatures = [ "default" "use_std" ];
};
- "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)"
+ "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "regex-syntax";
- version = "0.6.12";
+ version = "0.6.6";
edition = "2015";
- sha256 = "1lqhddhwzpgq8zfkxhm241n7g4m3yc11fb4098dkgawbxvybr53v";
+ sha256 = "1cjrdc3affa3rjfaxkp91xnf9k0fsqn9z4xqc280vv39nvrl8p8b";
authors = [
"The Rust Project Developers"
];
+ dependencies = {
+ "ucd-util" = "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
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)"
+ "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "remove_dir_all";
- version = "0.5.2";
+ version = "0.5.1";
edition = "2015";
- sha256 = "04sxg2ppvxiljc2i13bwvpbi540rf9d2a89cq0wmqf9pjvr3a1wm";
+ sha256 = "1chx3yvfbj46xjz4bzsvps208l46hfbcy0sm98gpiya454n4rrl7";
authors = [
"Aaronepower <theaaronepower@gmail.com>"
];
dependencies = {
"winapi" = {
- packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "std" "errhandlingapi" "winerror" "fileapi" "winbase" ];
};
@@ -3059,18 +2716,18 @@ rec {
"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)";
+ "config" = "config 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (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)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_derive" = "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "structopt" = "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syntect" = "syntect 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tinytemplate" = "tinytemplate 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)";
"xdg" = "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
@@ -3090,23 +2747,23 @@ rec {
];
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)";
+ "futures" = "futures 0.1.26 (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" = "hyper 0.12.28 (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)";
+ "lazy_static" = "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (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)";
+ "serde" = "serde 1.0.90 (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)";
+ "tokio" = "tokio 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-timer" = "tokio-timer 0.2.10 (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)";
};
@@ -3135,17 +2792,17 @@ rec {
];
dependencies = {
"chrono" = {
- packageId = "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "chrono 0.4.6 (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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "hyper" = "hyper 0.12.28 (registry+https://github.com/rust-lang/crates.io-index)";
+ "regex" = "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_derive" = "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_json" = "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-timer" = "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"nightly-testing" = [ "clippy" ];
@@ -3164,7 +2821,7 @@ rec {
"Nikita Pekin <contact@nikitapek.in>"
];
dependencies = {
- "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (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;
@@ -3178,24 +2835,6 @@ rec {
};
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";
@@ -3209,12 +2848,12 @@ rec {
features = {
};
};
- "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "rustc-demangle";
- version = "0.1.16";
+ version = "0.1.14";
edition = "2015";
- sha256 = "0zmn448d0f898ahfkz7cir0fi0vk84dabjpw84mk6a1r6nf9vzmi";
+ sha256 = "07vl0ms3a27fpry9kh9piv08w7d51i5m7bgphk7pw4jygwzdy31f";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
@@ -3237,24 +2876,24 @@ rec {
features = {
};
};
- "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "ryu 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "ryu";
- version = "1.0.0";
+ version = "0.2.8";
edition = "2015";
- sha256 = "0hysqba7hi31xw1jka8jh7qb4m9fx5l6vik55wpc3rpsg46cwgbf";
+ sha256 = "1qd0ni13w19a97y51vm31biyh2pvz8j9gi78rn5in912mi04xcnk";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
};
};
- "safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "safemem";
- version = "0.3.2";
+ version = "0.3.0";
edition = "2015";
- sha256 = "1h0n07sy386gz0jb6nz170m66jkbnwyky8y11v551dxydz77a0jc";
+ sha256 = "0pr39b468d05f6m7m4alsngmj5p7an8df21apsxbi57k0lmwrr18";
authors = [
"Austin Bonander <austin.bonander@gmail.com>"
];
@@ -3263,12 +2902,12 @@ rec {
};
resolvedDefaultFeatures = [ "default" "std" ];
};
- "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "same-file";
- version = "1.0.5";
+ version = "1.0.4";
edition = "2015";
- sha256 = "0vn7bc069wsdick0nk0n2j3wvgq2vzb5ix957c35nkhkwlszv4l5";
+ sha256 = "1zs244ssl381cqlnh2g42g3i60qip4z72i26z44d6kas3y3gy77q";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
@@ -3281,32 +2920,44 @@ rec {
features = {
};
};
- "schannel 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ "schannel 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "schannel";
- version = "0.1.16";
+ version = "0.1.15";
edition = "2015";
- sha256 = "1qf391890l43lzkyadhrwrlkpryyjmral75x9xj664vi3asl854g";
+ sha256 = "1x9i0z9y8n5cg23ppyglgqdlz6rwcv2a489m5qpfk6l2ib8a1jdv";
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)";
+ "lazy_static" = "lazy_static 1.3.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)";
+ packageId = "winapi 0.3.7 (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)"
+ "scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "scoped_threadpool";
+ version = "0.1.9";
+ edition = "2015";
+ sha256 = "1arqj2skcfr46s1lcyvnlmfr5456kg5nhn8k90xyfjnxkp5yga2v";
+ authors = [
+ "Marvin Löbel <loebel.marvin@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "scopeguard";
- version = "1.0.0";
+ version = "0.3.3";
edition = "2015";
- sha256 = "15vrix0jx3i4naqnjswddzn4m036krrv71a8vkh3b1zq4hxmrb0q";
+ sha256 = "0i1l013csrqzfz6c68pr5pi01hg5v5yahq8fsdmaxy6p8ygsjf3r";
authors = [
"bluss"
];
@@ -3327,7 +2978,7 @@ rec {
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)";
+ "libc" = "libc 0.2.54 (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 = {
@@ -3405,17 +3056,18 @@ rec {
};
resolvedDefaultFeatures = [ "default" "std" ];
};
- "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)"
+ "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "serde";
- version = "1.0.101";
+ version = "1.0.90";
edition = "2015";
- sha256 = "0sacv3njx99yr8gxsl80cy1h98b9vd1pv6aa8ncbnk0pys8r82vn";
+ sha256 = "10b6n74m1dvb667vrn1db47ncb4h0mkqbg1dsamqjvv5vl5b5j56";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
features = {
+ "alloc" = [ "unstable" ];
"default" = [ "std" ];
"derive" = [ "serde_derive" ];
};
@@ -3437,7 +3089,7 @@ rec {
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)";
+ "regex" = "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
"serde" = "serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
@@ -3447,22 +3099,22 @@ rec {
};
resolvedDefaultFeatures = [ "default" "linked-hash-map" "preserve_order" ];
};
- "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)"
+ "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "serde_derive";
- version = "1.0.101";
+ version = "1.0.90";
edition = "2015";
- sha256 = "093x99qff1ihjmy32fp1gxp66qh0nni349j20y3w0h33wqk19dr0";
+ sha256 = "1m4xgyl8jj3mxj0wszminzc1qf2gbkj9dpl17vi95nwl6m7i157y";
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)";
+ "proc-macro2" = "proc-macro2 0.4.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
"syn" = {
- packageId = "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "syn 0.15.33 (registry+https://github.com/rust-lang/crates.io-index)";
features = [ "visit" ];
};
};
@@ -3470,20 +3122,20 @@ rec {
};
resolvedDefaultFeatures = [ "default" ];
};
- "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)"
+ "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "serde_json";
- version = "1.0.41";
+ version = "1.0.39";
edition = "2015";
- sha256 = "0j3qhfy2hj3vjlc6hi34k0zlsaj5mxnk9dy6lp8a8snj5rm9vrhd";
+ sha256 = "07ydv06hn8x0yl0rc94l2wl9r2xz1fqd97n1s6j3bgdc6gw406a8";
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)";
+ "ryu" = "ryu 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"preserve_order" = [ "indexmap" ];
@@ -3524,18 +3176,6 @@ rec {
"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";
@@ -3560,12 +3200,12 @@ rec {
features = {
};
};
- "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)"
+ "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "smallvec";
- version = "0.6.10";
+ version = "0.6.9";
edition = "2015";
- sha256 = "01w7xd79q0bwn683gk4ryw50ad1zzxkny10f7gkbaaj1ax6f4q4h";
+ sha256 = "0p96l51a2pq5y0vn48nhbm6qslbc6k8h28cxm0pmzkqmj7xynz6w";
libPath = "lib.rs";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
@@ -3575,25 +3215,31 @@ rec {
};
resolvedDefaultFeatures = [ "default" "std" ];
};
- "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "stable_deref_trait";
+ version = "1.1.1";
+ edition = "2015";
+ sha256 = "1xy9slzslrzr31nlnw52sl1d820b09y61b7f13lqgsn8n7y0l4g8";
+ authors = [
+ "Robert Grosse <n210241048576@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "string";
- version = "0.2.1";
+ version = "0.1.3";
edition = "2015";
- sha256 = "066vpc33qik0f8hpa1841hdzwcwj6ai3vdwsd34k1s2w9p3n7jqk";
+ sha256 = "03hr559lsxf13i1p5r2zd7m3ppqlbhqajbx80adi3cpp2rwnsvfw";
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 {
@@ -3607,12 +3253,12 @@ rec {
features = {
};
};
- "structopt 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)"
+ "structopt 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "structopt";
- version = "0.2.18";
+ version = "0.2.15";
edition = "2015";
- sha256 = "096mzwn2d5qsa0k5kxvd1ag38fm5rfrr262fnacfrq5k13ldl9j2";
+ sha256 = "0hjkdq0zgaiigbqsqazaz4avp5q272kzivb2bfy6s5181240hv2z";
authors = [
"Guillaume Pinot <texitoi@texitoi.eu>"
"others"
@@ -3622,7 +3268,7 @@ rec {
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)";
+ "structopt-derive" = "structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
"color" = [ "clap/color" ];
@@ -3632,49 +3278,48 @@ rec {
"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)"
+ "structopt-derive 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "structopt-derive";
- version = "0.2.18";
+ version = "0.2.15";
edition = "2015";
- sha256 = "0wrhvq92psxa62jx6ypyhld7d5l3l7va0s0qwy1mq7c863wnhp7p";
+ sha256 = "09rg6993ckyaklribdcqnw2v3516afdl5pa0z21lwrwz0bvxsf2n";
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)";
+ "proc-macro2" = "proc-macro2 0.4.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ "syn" = "syn 0.15.33 (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)"
+ "syn 0.15.33 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "syn";
- version = "0.15.44";
+ version = "0.15.33";
edition = "2015";
- sha256 = "09v11h141grmsnamd5j14mn8vpnfng6p60kdmsm8akz9m0qn7s1n";
+ sha256 = "19fv7nh1k3adh7dnbz45jg645v358n6kw8zf9xlhfcsc3532wy2j";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = {
"proc-macro2" = {
- packageId = "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "proc-macro2 0.4.29 (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)";
+ packageId = "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
usesDefaultFeatures = false;
};
@@ -3687,48 +3332,20 @@ rec {
};
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)"
+ "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "synstructure";
- version = "0.10.2";
+ version = "0.10.1";
edition = "2015";
- sha256 = "0bp29grjsim99xm1l6h38mbl98gnk47lf82rawlmws5zn4asdpj4";
+ sha256 = "0mx2vwd0d0f7hanz15nkp0ikkfjsx9rfkph7pynxyfbj45ank4g3";
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)";
+ "proc-macro2" = "proc-macro2 0.4.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "quote" = "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)";
"syn" = {
- packageId = "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "syn 0.15.33 (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)";
@@ -3736,23 +3353,23 @@ rec {
features = {
};
};
- "syntect 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "syntect 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "syntect";
- version = "3.3.0";
- edition = "2018";
- sha256 = "0zp8za3x6d0l02kgvaasnljm925plwd06181c5xzg6z79g52yqny";
+ version = "3.2.0";
+ edition = "2015";
+ sha256 = "1b62n9fl4p81infcd3lwfv9wrggwmii50psl9k5m3673cg5x72hx";
authors = [
"Tristan Hume <tristan@thume.ca>"
];
dependencies = {
"bincode" = {
- packageId = "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "bincode 1.1.3 (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)";
+ "bitflags" = "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
"flate2" = {
- packageId = "flate2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "flate2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
usesDefaultFeatures = false;
};
@@ -3760,21 +3377,21 @@ rec {
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)";
+ "lazy_static" = "lazy_static 1.3.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)";
+ packageId = "onig 4.3.2 (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)";
+ "plist" = "plist 0.4.1 (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)";
+ packageId = "regex-syntax 0.6.6 (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)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_derive" = "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_json" = "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)";
+ "walkdir" = "walkdir 2.2.7 (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;
@@ -3793,12 +3410,12 @@ rec {
};
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)"
+ "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tempfile";
- version = "3.1.0";
- edition = "2018";
- sha256 = "1r7ykxw90p5hm1g46i8ia33j5iwl3q252kbb6b074qhdav3sqndk";
+ version = "3.0.7";
+ edition = "2015";
+ sha256 = "19h7ch8fvisxrrmabcnhlfj6b8vg34zaw8491x141p0n0727niaf";
authors = [
"Steven Allen <steven@stebalien.com>"
"The Rust Project Developers"
@@ -3806,39 +3423,53 @@ rec {
"Jason White <jasonaw0@gmail.com>"
];
dependencies = {
- "cfg-if" = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "cfg-if" = "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
"libc" = {
- packageId = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "libc 0.2.54 (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)";
+ "rand" = "rand 0.6.5 (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)";
+ packageId = "redox_syscall 0.1.54 (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)";
+ "remove_dir_all" = "remove_dir_all 0.5.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)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
- features = [ "fileapi" "handleapi" "winbase" ];
+ features = [ "fileapi" "winbase" "handleapi" ];
};
};
features = {
};
};
- "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ "termion 1.5.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
- crateName = "termcolor";
- version = "1.0.5";
+ crateName = "termion";
+ version = "1.5.2";
edition = "2015";
- sha256 = "16266x431hbkmvyh0pv4yn7wm2kagicqaq6hy4fabn93c08sx0gp";
+ sha256 = "0a8znl9hdnr9d21xskb2q77r6pkvrabh71b43371vy9wq97m78d9";
authors = [
- "Andrew Gallant <jamslam@gmail.com>"
+ "ticki <Ticki@users.noreply.github.com>"
+ "gycos <alexandre.bury@gmail.com>"
+ "IGI-111 <igi-111@protonmail.com>"
];
dependencies = {
- "wincolor" = {
- packageId = "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)";
- target = target."windows";
+ "libc" = {
+ packageId = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (!(target."os" == "redox"));
+ };
+ "numtoa" = {
+ packageId = "numtoa 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ features = [ "std" ];
+ };
+ "redox_syscall" = {
+ packageId = "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "redox");
+ };
+ "redox_termios" = {
+ packageId = "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)";
+ target = (target."os" == "redox");
};
};
features = {
@@ -3854,7 +3485,7 @@ rec {
"Martin Geisler <martin@geisler.net>"
];
dependencies = {
- "unicode-width" = "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "unicode-width" = "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -3869,7 +3500,7 @@ rec {
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = {
- "lazy_static" = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "lazy_static" = "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -3884,13 +3515,13 @@ rec {
"The Rust Project Developers"
];
dependencies = {
- "libc" = "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)";
+ "libc" = "libc 0.2.54 (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)";
+ packageId = "redox_syscall 0.1.54 (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)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "std" "minwinbase" "minwindef" "ntdef" "profileapi" "sysinfoapi" "timezoneapi" ];
};
@@ -3898,28 +3529,28 @@ rec {
features = {
};
};
- "tinytemplate 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tinytemplate 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tinytemplate";
- version = "1.0.2";
+ version = "1.0.1";
edition = "2015";
- sha256 = "005krgn8sphcvqmg81akpxvhj1nsv35dg225vrxnk6bszdbal30g";
+ sha256 = "007anqfcnd57d9d1rp3xy1b7wckq6wyibghz68y943wj53lc0q5i";
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)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde_json" = "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio";
- version = "0.1.22";
+ version = "0.1.19";
edition = "2015";
- sha256 = "1nx8yg8fdwf5nm2ykfza24cx8xy5in6da5va5w76mv347r1irr0b";
+ sha256 = "0ksqs54h69x97zg2df7k069vbxqd7mvdpaws4aahnd05n95afcib";
authors = [
"Carl Lerche <me@carllerche.com>"
];
@@ -3928,13 +3559,13 @@ rec {
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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
"mio" = {
- packageId = "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "mio 0.6.16 (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)";
+ packageId = "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"tokio-codec" = {
@@ -3946,7 +3577,7 @@ rec {
optional = true;
};
"tokio-executor" = {
- packageId = "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"tokio-fs" = {
@@ -3958,11 +3589,11 @@ rec {
optional = true;
};
"tokio-reactor" = {
- packageId = "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "tokio-reactor 0.1.9 (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)";
+ packageId = "tokio-sync 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"tokio-tcp" = {
@@ -3970,15 +3601,19 @@ rec {
optional = true;
};
"tokio-threadpool" = {
- packageId = "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "tokio-threadpool 0.1.14 (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)";
+ packageId = "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ optional = true;
+ };
+ "tokio-trace-core" = {
+ packageId = "tokio-trace-core 0.1.0 (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)";
+ packageId = "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)";
optional = true;
};
"tokio-uds" = {
@@ -3988,43 +3623,20 @@ rec {
};
};
features = {
+ "async-await-preview" = [ "tokio-async-await/async-await-preview" ];
"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" ];
+ "rt-full" = [ "num_cpus" "reactor" "timer" "tokio-current-thread" "tokio-executor" "tokio-threadpool" "tokio-trace-core" ];
"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" ];
+ 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-trace-core" "tokio-udp" "tokio-uds" "udp" "uds" ];
};
"tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
@@ -4038,7 +3650,7 @@ rec {
];
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" = "futures 0.1.26 (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 = {
@@ -4054,24 +3666,24 @@ rec {
"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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "tokio-executor" = "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio-executor";
- version = "0.1.8";
+ version = "0.1.7";
edition = "2015";
- sha256 = "017pvi6ii0wb1s78vrbjhzwrjlc0mga3x98dz3g19lhylcl50f7r";
+ sha256 = "0fhaijjh1cybikx0b53292xfi6yzjrmp10ibgikhd6i33svnggq7";
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)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -4086,9 +3698,9 @@ rec {
"Carl Lerche <me@carllerche.com>"
];
dependencies = {
- "futures" = "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (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)";
+ "tokio-threadpool" = "tokio-threadpool 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -4104,49 +3716,49 @@ rec {
];
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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio-reactor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio-reactor";
- version = "0.1.10";
+ version = "0.1.9";
edition = "2015";
- sha256 = "07qngarghrf826rwi0460x69yidyv6811xbwacgagla1lr25i9j1";
+ sha256 = "11gpxrykd6lbpj9b26dh4fymzawfxgqdx1pbhc771gxbf8qyj1gc";
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)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "lazy_static" = "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "mio" = "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)";
+ "num_cpus" = "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "parking_lot" = "parking_lot 0.7.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)";
+ "tokio-executor" = "tokio-executor 0.1.7 (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)";
+ "tokio-sync" = "tokio-sync 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio-sync 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio-sync";
- version = "0.1.6";
+ version = "0.1.5";
edition = "2015";
- sha256 = "0csjpxf7m088lh3nfkhj5q1zi5hycdk5xqcginw328rnl1srzyl7";
+ sha256 = "0yjg2d4pyw9x9yvap3kndf53a55rj73fsx09c91sss92l1szk7vx";
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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -4162,73 +3774,88 @@ rec {
];
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" = "futures 0.1.26 (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)";
+ "mio" = "mio 0.6.16 (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)";
+ "tokio-reactor" = "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio-threadpool 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio-threadpool 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio-threadpool";
- version = "0.1.16";
+ version = "0.1.14";
edition = "2015";
- sha256 = "15nv5r5z8q58jhcsnzj3zbqa82ha7qjjbv47j6806cjv22i16a7f";
+ sha256 = "0b6m9xvl5m93y1nmdjr161j39f4ialc39qlm4dy8ad376v7ck1kp";
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)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "num_cpus" = "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "rand" = "rand 0.6.5 (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-executor" = "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio-timer 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio-timer";
- version = "0.2.11";
+ version = "0.2.10";
edition = "2015";
- sha256 = "1g1np0mdhiwl52kxp543q9jdidf9vws403jh2nay3srlpnqhrkx9";
+ sha256 = "17a5irj7ph95l30845vg6hy3igc0k04bhxnqs2qww4v8ix30vbkz";
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)";
+ "crossbeam-utils" = "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "futures" = "futures 0.1.26 (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-executor" = "tokio-executor 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)";
+ };
+ features = {
+ };
+ };
+ "tokio-trace-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "tokio-trace-core";
+ version = "0.1.0";
+ edition = "2015";
+ sha256 = "1n96fnand06mnqfjhdicxs3qlhj8r1czjisx231hg4lszl3p5kqd";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = {
+ "lazy_static" = "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "tokio-udp 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
+ "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "tokio-udp";
- version = "0.1.5";
+ version = "0.1.3";
edition = "2015";
- sha256 = "1gaavx7zl4j8fg8zvx0b1zwy3qdc20108m1vwbc3rpl2wvsljcyk";
+ sha256 = "1g1x499vqvzwy7xfccr32vwymlx25zpmkx8ppqgifzqwrjnncajf";
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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "mio" = "mio 0.6.16 (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)";
+ "tokio-reactor" = "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -4244,15 +3871,15 @@ rec {
];
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" = "futures 0.1.26 (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)";
+ "libc" = "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)";
+ "mio" = "mio 0.6.16 (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)";
+ "tokio-reactor" = "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -4267,7 +3894,7 @@ rec {
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = {
- "serde" = "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)";
+ "serde" = "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
@@ -4284,12 +3911,12 @@ rec {
features = {
};
};
- "typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "typenum";
- version = "1.11.2";
+ version = "1.10.0";
edition = "2015";
- sha256 = "0pdbfkqzp4hwj21b2gv79kh1s1sgr587bd4s039qzalg5jiniiz8";
+ sha256 = "1v2cgg0mlzkg5prs7swysckgk2ay6bpda8m83c2sn3z77dcsx3bc";
build = "build/main.rs";
authors = [
"Paho Lurie-Gregg <paho@paholg.com>"
@@ -4298,6 +3925,18 @@ rec {
features = {
};
};
+ "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "ucd-util";
+ version = "0.1.3";
+ edition = "2015";
+ sha256 = "1n1qi3jywq5syq90z9qd8qzbn58pcjgv1sx4sdmipm4jf9zanz15";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ features = {
+ };
+ };
"unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "unicase";
@@ -4343,34 +3982,33 @@ rec {
"kwantam <kwantam@gmail.com>"
];
dependencies = {
- "smallvec" = "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)";
+ "smallvec" = "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};
};
- "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "unicode-segmentation";
- version = "1.3.0";
+ version = "1.2.1";
edition = "2015";
- sha256 = "0jnns99wpjjpqzdn9jiplsr003rr41i95c008jb4inccb3avypp0";
+ sha256 = "0pzydlrq019cdiqbbfq205cskxcspwi97zfdi02rma21br1kc59m";
authors = [
"kwantam <kwantam@gmail.com>"
];
features = {
};
};
- "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"
+ "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "unicode-width";
- version = "0.1.6";
+ version = "0.1.5";
edition = "2015";
- sha256 = "1mss965j7d8pv7z7zg6qfkcb7lyhxkxvbh8akzr4xxxx3vzazwsi";
+ sha256 = "0886lc2aymwgy0lhavwn6s48ik3c61ykzzd3za6prgnw51j7bi4w";
authors = [
"kwantam <kwantam@gmail.com>"
];
features = {
- "rustc-dep-of-std" = [ "std" "core" "compiler_builtins" ];
};
resolvedDefaultFeatures = [ "default" ];
};
@@ -4388,20 +4026,6 @@ rec {
};
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";
@@ -4421,12 +4045,24 @@ rec {
"query_encoding" = [ "encoding" ];
};
};
- "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)"
+ "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"
+ = rec {
+ crateName = "utf8-ranges";
+ version = "1.0.2";
+ edition = "2015";
+ sha256 = "1my02laqsgnd8ib4dvjgd4rilprqjad6pb9jj9vi67csi5qs2281";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "vcpkg 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "vcpkg";
- version = "0.2.7";
+ version = "0.2.6";
edition = "2015";
- sha256 = "1lwykbbscbdy4nhrfidgg3rk2xw9cvx5672sx1c97wm8y3vjpcd9";
+ sha256 = "1ig6jqpzzl1z9vk4qywgpfr4hfbd8ny8frqsgm3r449wkc4n1i5x";
authors = [
"Jim McGrath <jimmc2@gmail.com>"
];
@@ -4483,19 +4119,19 @@ rec {
features = {
};
};
- "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)"
+ "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "walkdir";
- version = "2.2.9";
+ version = "2.2.7";
edition = "2015";
- sha256 = "04k0pqbd8p36wxr8003r644ymka5jr5kn1p8xaz9r3nylgwlwjmq";
+ sha256 = "0wq3v28916kkla29yyi0g0xfc16apwx24py68049kriz3gjlig03";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = {
- "same-file" = "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
+ "same-file" = "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)";
"winapi" = {
- packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "std" "winnt" ];
};
@@ -4507,58 +4143,23 @@ rec {
features = {
};
};
- "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"
+ "want 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "want";
- version = "0.2.0";
+ version = "0.0.6";
edition = "2015";
- sha256 = "1qyd7cixai7f58zfbz8v3lg52q7p6805b9vw7vblw1pysg6vnrxb";
+ sha256 = "03cc2lndz531a4kgql1v9kppyb1yz2abcz5l52j1gg2nypmy3lh8";
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)";
+ "futures" = "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)";
+ "log" = "log 0.4.6 (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";
@@ -4571,12 +4172,12 @@ rec {
features = {
};
};
- "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"
+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)"
= rec {
crateName = "winapi";
- version = "0.3.8";
+ version = "0.3.7";
edition = "2015";
- sha256 = "084ialbgww1vxry341fmkg5crgpvab3w52ahx1wa54yqjgym0vxs";
+ sha256 = "1k51gfkp0zqw7nj07y443mscs46icmdhld442s2073niap0kkdr8";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
@@ -4593,7 +4194,7 @@ rec {
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" ];
+ resolvedDefaultFeatures = [ "consoleapi" "dbghelp" "errhandlingapi" "fileapi" "handleapi" "knownfolders" "lmcons" "minschannel" "minwinbase" "minwindef" "ntdef" "ntsecapi" "ntstatus" "objbase" "processenv" "processthreadsapi" "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 {
@@ -4631,7 +4232,7 @@ rec {
];
dependencies = {
"winapi" = {
- packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)";
+ packageId = "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)";
target = target."windows";
features = [ "std" "consoleapi" "errhandlingapi" "fileapi" "minwindef" "processenv" "winbase" "wincon" "winerror" "winnt" ];
};
@@ -4651,25 +4252,6 @@ rec {
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";
@@ -4715,7 +4297,7 @@ rec {
"Vladimir Matveev <vladimir.matweev@gmail.com>"
];
dependencies = {
- "bitflags" = "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)";
+ "bitflags" = "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)";
};
features = {
};