Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub d466353d 2d211c7a

+919 -872
+2
pkgs/applications/audio/amarok/default.nix
··· 15 15 sha256 = "0kz8wixjmy4yxq2gk11ybswryxb6alfymd3bzcar9xinscllhh3a"; 16 16 }; 17 17 18 + outputs = [ "out" "doc" ]; 19 + 18 20 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 19 21 20 22 propagatedBuildInputs = [
+4 -4
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 359 359 "owner": "hashicorp", 360 360 "provider-source-address": "registry.terraform.io/hashicorp/google", 361 361 "repo": "terraform-provider-google", 362 - "rev": "v3.47.0", 363 - "sha256": "05xb0q56y9088qbyaf3vzjm9im1s2azxffhjffjpzi0i79k0g2p0", 364 - "vendorSha256": "1h83p7ncv7b4ci7qdig7hb81zk9458fq9aqqbkryawf1w7wbaq2a", 365 - "version": "3.47.0" 362 + "rev": "v3.62.0", 363 + "sha256": "0x0qp8nk88667hvlpgxrdjsgirw8iwv85gn3k9xb37a3lw7xs4qz", 364 + "vendorSha256": "0w6aavj1c4blpvsy00vz4dcj8rnxx6a586b16lqp6s1flqmlqrbi", 365 + "version": "3.62.0" 366 366 }, 367 367 "google-beta": { 368 368 "owner": "hashicorp",
+3 -3
pkgs/applications/networking/cluster/terragrunt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "terragrunt"; 5 - version = "0.28.16"; 5 + version = "0.28.18"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gruntwork-io"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-xt04gYxInW9UNxPG4kmMagfAQyQ+T0/u7m39grFCdAc="; 11 + sha256 = "sha256-W0HjGILezhuc1lXvGCHw23h8Sx1uw4YLLsOOBZYGvU8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-vHKqowc3euQQyvgfaTbIgSXOhPcf2nSoteQK0a574Kc="; 14 + vendorSha256 = "sha256-kcRM76xfajtQist1aJTmaRludxRlfvHQ9ucB3LOgnBk="; 15 15 16 16 doCheck = false; 17 17
+4 -4
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 41 41 42 42 pname = "slack"; 43 43 44 - x86_64-darwin-version = "4.13.0"; 45 - x86_64-darwin-sha256 = "1f155fgbdmqxy7324lxj3ysx1p332rzpwy06iac90rm6irf5v57f"; 44 + x86_64-darwin-version = "4.14.0"; 45 + x86_64-darwin-sha256 = "0kpjsnriav6rcddjkz0z9arxjd09i6bw2krnmf3dc31my64nmxs6"; 46 46 47 - x86_64-linux-version = "4.13.0"; 48 - x86_64-linux-sha256 = "1hqvynkhbkfwxvfgjqv91x5k7qlzayjr5mmf8rz0ncp4j4d3x9mq"; 47 + x86_64-linux-version = "4.14.0"; 48 + x86_64-linux-sha256 = "0xy9i8ssjba62ca7lfan58rhwx69wkapfd0jzkaj95qhqnv019fg"; 49 49 50 50 version = { 51 51 x86_64-darwin = x86_64-darwin-version;
+4 -4
pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
··· 22 22 pname = "wire-desktop"; 23 23 24 24 version = { 25 - x86_64-darwin = "3.23.4046"; 26 - x86_64-linux = "3.23.2938"; 25 + x86_64-darwin = "3.24.4059"; 26 + x86_64-linux = "3.24.2939"; 27 27 }.${system} or throwSystem; 28 28 29 29 sha256 = { 30 - x86_64-darwin = "19k8102chh4yphk89kiz83yarawnzdnsq0hbsqpjdhbmarqjcd9s"; 31 - x86_64-linux = "1cx5azl5dvya1hf0gayafm4rg6ccmmq978xsgm6lf0rlb4kirj65"; 30 + x86_64-darwin = "1zjv3d8jp0wldrzl02q9kir7q3y5bcb6hsfli6wip8bmaq78dksy"; 31 + x86_64-linux = "1k9n58pr5fnqv9vacay5vrbs4pvq2p36c0dpg9rjdcnb2fwaqg5p"; 32 32 }.${system} or throwSystem; 33 33 34 34 meta = with lib; {
+54
pkgs/development/compilers/koka/default.nix
··· 1 + { stdenv, buildPackages, cmake, gnumake, makeWrapper, mkDerivation, fetchFromGitHub 2 + , alex, array, base, bytestring, cond, containers, directory, extra 3 + , filepath, haskeline, hpack, hspec, hspec-core, json, lib, mtl 4 + , parsec, process, regex-compat, text, time }: 5 + 6 + let 7 + version = "2.1.1"; 8 + src = fetchFromGitHub { 9 + owner = "koka-lang"; 10 + repo = "koka"; 11 + rev = "v${version}"; 12 + sha256 = "sha256-cq+dljfTKJh5NgwQfxQQP9jRcg2PQxxBVEgQ59ll36o="; 13 + fetchSubmodules = true; 14 + }; 15 + kklib = stdenv.mkDerivation { 16 + pname = "kklib"; 17 + inherit version; 18 + src = "${src}/kklib"; 19 + nativeBuildInputs = [ cmake ]; 20 + }; 21 + runtimeDeps = [ 22 + buildPackages.stdenv.cc 23 + buildPackages.stdenv.cc.bintools.bintools 24 + gnumake 25 + cmake 26 + ]; 27 + in 28 + mkDerivation rec { 29 + pname = "koka"; 30 + inherit version src; 31 + isLibrary = false; 32 + isExecutable = true; 33 + libraryToolDepends = [ hpack ]; 34 + executableHaskellDepends = [ 35 + array base bytestring cond containers directory haskeline mtl 36 + parsec process text time kklib 37 + ]; 38 + executableToolDepends = [ alex makeWrapper ]; 39 + postInstall = '' 40 + mkdir -p $out/share/koka/v${version} 41 + cp -a lib $out/share/koka/v${version} 42 + cp -a contrib $out/share/koka/v${version} 43 + cp -a kklib $out/share/koka/v${version} 44 + wrapProgram "$out/bin/koka" \ 45 + --set CC "${lib.getBin buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc" \ 46 + --prefix PATH : "${lib.makeSearchPath "bin" runtimeDeps}" 47 + ''; 48 + doCheck = false; 49 + prePatch = "hpack"; 50 + description = "Koka language compiler and interpreter"; 51 + homepage = "https://github.com/koka-lang/koka"; 52 + license = lib.licenses.asl20; 53 + maintainers = with lib.maintainers; [ siraben sternenseemann ]; 54 + }
+2 -2
pkgs/development/libraries/libtorrent-rasterbar/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "2.0.1"; 6 + version = "2.0.3"; 7 7 8 8 # Make sure we override python, so the correct version is chosen 9 9 boostPython = boost.override { enablePython = true; inherit python; }; ··· 16 16 owner = "arvidn"; 17 17 repo = "libtorrent"; 18 18 rev = "v${version}"; 19 - sha256 = "04ppw901babkfkis89pyb8kiyn39kb21k1s838xjq5ghbral1b1c"; 19 + sha256 = "0c5g2chylhkwwssfab9gw0b7bm3raj08yzgia7j4d044lp8gflnd"; 20 20 fetchSubmodules = true; 21 21 }; 22 22
+9 -1
pkgs/development/libraries/nlohmann_json/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, cmake 2 2 }: 3 3 4 4 stdenv.mkDerivation rec { ··· 11 11 rev = "v${version}"; 12 12 sha256 = "sha256-THordDPdH2qwk6lFTgeFmkl7iDuA/7YH71PTUe6vJCs="; 13 13 }; 14 + 15 + patches = [ 16 + # https://github.com/nlohmann/json/pull/2690 17 + (fetchpatch { 18 + url = "https://github.com/nlohmann/json/commit/53a9850eebb88c6ff95f6042d08d5c0cc9d18097.patch"; 19 + sha256 = "k+Og00nXNg5IsFQY5fWD3xVQQXUFFTie44UXole0S1M="; 20 + }) 21 + ]; 14 22 15 23 nativeBuildInputs = [ cmake ]; 16 24
+2 -2
pkgs/development/libraries/spdlog/default.nix
··· 49 49 in 50 50 { 51 51 spdlog_1 = generic { 52 - version = "1.8.2"; 53 - sha256 = "sha256-vYled5Z9fmxuO9193lefpFzIHAiSgvYn2iOfneLidQ8="; 52 + version = "1.8.5"; 53 + sha256 = "sha256-D29jvDZQhPscaOHlrzGN1s7/mXlcsovjbqYpXd7OM50="; 54 54 }; 55 55 56 56 spdlog_0 = generic {
+1 -1
pkgs/development/ocaml-modules/ocaml-freestanding/default.nix
··· 47 47 pkg-config 48 48 ]; 49 49 50 - buildInputs = [ solo5 ]; 50 + propagatedBuildInputs = [ solo5 ]; 51 51 52 52 configurePhase = '' 53 53 runHook preConfigure
+2
pkgs/development/ocaml-modules/spacetime_lib/default.nix
··· 4 4 pname = "spacetime_lib"; 5 5 version = "0.3.0"; 6 6 7 + useDune2 = true; 8 + 7 9 src = fetchFromGitHub { 8 10 owner = "lpw25"; 9 11 repo = "spacetime_lib";
+12 -3
pkgs/development/ocaml-modules/tcpip/default.nix
··· 1 1 { lib, buildDunePackage, fetchurl 2 - , bisect_ppx, ppx_cstruct 2 + , bisect_ppx, ppx_cstruct, pkg-config 3 3 , rresult, cstruct, cstruct-lwt, mirage-net, mirage-clock 4 4 , mirage-random, mirage-stack, mirage-protocols, mirage-time 5 5 , ipaddr, macaddr, macaddr-cstruct, mirage-profile, fmt ··· 7 7 , alcotest, mirage-flow, mirage-vnetif, pcap-format 8 8 , mirage-clock-unix, arp, ipaddr-cstruct, mirage-random-test 9 9 , lru 10 + , withFreestanding ? false 11 + , ocaml-freestanding 10 12 }: 11 13 12 14 buildDunePackage rec { 13 15 pname = "tcpip"; 14 - version = "6.0.0"; 16 + version = "6.1.0"; 15 17 16 18 useDune2 = true; 17 19 18 20 src = fetchurl { 19 21 url = "https://github.com/mirage/mirage-${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 20 - sha256 = "0wbrs8jz1vw3zdrqmqcwawxh4yhc2gy30rw7gz4w116cblkvnb8s"; 22 + sha256 = "7b3ed2e1ca835c1cc65ac911bcb0de12ebc2b580dd195006bdea2cb387510474"; 21 23 }; 22 24 25 + patches = [ 26 + ./makefile-no-opam.patch 27 + ]; 28 + 23 29 nativeBuildInputs = [ 24 30 bisect_ppx 25 31 ppx_cstruct 32 + pkg-config 26 33 ]; 27 34 28 35 propagatedBuildInputs = [ ··· 48 55 randomconv 49 56 ethernet 50 57 lru 58 + ] ++ lib.optionals withFreestanding [ 59 + ocaml-freestanding 51 60 ]; 52 61 53 62 doCheck = true;
+12
pkgs/development/ocaml-modules/tcpip/makefile-no-opam.patch
··· 1 + diff --git a/freestanding/Makefile b/freestanding/Makefile 2 + index f22d220d..3e97b4c5 100644 3 + --- a/freestanding/Makefile 4 + +++ b/freestanding/Makefile 5 + @@ -1,4 +1,6 @@ 6 + -PKG_CONFIG_PATH := $(shell opam config var prefix)/lib/pkgconfig 7 + +ifneq (, $(shell command -v opam)) 8 + + PKG_CONFIG_PATH ?= $(shell opam config var prefix)/lib/pkgconfig 9 + +endif 10 + 11 + EXISTS := $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config --exists ocaml-freestanding; echo $$?) 12 +
+53
pkgs/development/perl-modules/Net-CIDR-Lite-prevent-leading-zeroes-ipv4.patch
··· 1 + From 734d31aa2f65b69f5558b9b0dd67af0461ca7f80 Mon Sep 17 00:00:00 2001 2 + From: Stig Palmquist <stig@stig.io> 3 + Date: Tue, 30 Mar 2021 12:13:37 +0200 4 + Subject: [PATCH] Security: Prevent leading zeroes in ipv4 octets 5 + 6 + https://blog.urth.org/2021/03/29/security-issues-in-perl-ip-address-distros/ 7 + Related to CVE-2021-28918 8 + --- 9 + Lite.pm | 2 +- 10 + t/base.t | 13 ++++++++++++- 11 + 2 files changed, 13 insertions(+), 2 deletions(-) 12 + 13 + diff --git a/Lite.pm b/Lite.pm 14 + index fd6df73..d44f881 100644 15 + --- a/Lite.pm 16 + +++ b/Lite.pm 17 + @@ -181,7 +181,7 @@ sub _pack_ipv4 { 18 + my @nums = split /\./, shift(), -1; 19 + return unless @nums == 4; 20 + for (@nums) { 21 + - return unless /^\d{1,3}$/ and $_ <= 255; 22 + + return unless /^\d{1,3}$/ and !/^0\d{1,2}$/ and $_ <= 255; 23 + } 24 + pack("CC*", 0, @nums); 25 + } 26 + diff --git a/t/base.t b/t/base.t 27 + index cf32c5e..292456d 100644 28 + --- a/t/base.t 29 + +++ b/t/base.t 30 + @@ -8,7 +8,7 @@ 31 + use Test; 32 + use strict; 33 + $|++; 34 + -BEGIN { plan tests => 39 }; 35 + +BEGIN { plan tests => 42 }; 36 + use Net::CIDR::Lite; 37 + ok(1); # If we made it this far, we are ok. 38 + 39 + @@ -133,3 +133,14 @@ ok(join(', ', @list_short_range), '10.0.0.1-2, 10.0.0.5'); 40 + })->list_short_range; 41 + ok(join(', ', @list_short_range), '10.0.0.250-255, 10.0.1.0-20, 10.0.1.22, 10.0.2.250-255, 10.0.3.0-255, 10.0.4.0-255, 10.0.5.0-8'); 42 + 43 + + 44 + +# Tests for vulnerability: https://blog.urth.org/2021/03/29/security-issues-in-perl-ip-address-distros/ 45 + +eval { Net::CIDR::Lite->new("010.0.0.0/8") }; 46 + +ok($@=~/Can't determine ip format/); 47 + + 48 + +my $err_octal = Net::CIDR::Lite->new; 49 + +eval { $err_octal->add("010.0.0.0/8") }; 50 + +ok($@=~/Can't determine ip format/); 51 + + 52 + +eval { $err_octal->add("10.01.0.0/8") }; 53 + +ok($@=~/Can't determine ip format/);
+3 -3
pkgs/development/tools/build-managers/sbt-extras/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "sbt-extras"; 6 - rev = "483533f7fad8e5de57a5c37bc387f5e7a94b4493"; 7 - version = "2021-03-13"; 6 + rev = "b430596eb8566a59793ea0b8ddd2c693505e801f"; 7 + version = "2021-03-29"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "paulp"; 11 11 repo = "sbt-extras"; 12 12 inherit rev; 13 - sha256 = "1z6ass2w1hrp5yxki0d4zrsrrnqbl6k0bvxia090mqrcm9mig2y3"; 13 + sha256 = "0r0ysv7dzrlmj3c82fv60i2490ky7q70jlv40q7zdmm5q2wp7y63"; 14 14 }; 15 15 16 16 dontBuild = true;
-88
pkgs/development/tools/diesel-cli/allow-warnings.patch
··· 1 - diff --git a/diesel/src/lib.rs b/diesel/src/lib.rs 2 - index 4e743eb4..97c53ed8 100644 3 - --- a/diesel/src/lib.rs 4 - +++ b/diesel/src/lib.rs 5 - @@ -131,7 +131,6 @@ 6 - #![cfg_attr(feature = "unstable", feature(specialization, try_from))] 7 - // Built-in Lints 8 - #![deny( 9 - - warnings, 10 - missing_debug_implementations, 11 - missing_copy_implementations, 12 - missing_docs 13 - diff --git a/diesel_cli/src/main.rs b/diesel_cli/src/main.rs 14 - index 741ca003..cf93bb8f 100644 15 - --- a/diesel_cli/src/main.rs 16 - +++ b/diesel_cli/src/main.rs 17 - @@ -1,5 +1,5 @@ 18 - // Built-in Lints 19 - -#![deny(warnings, missing_copy_implementations)] 20 - +#![deny(missing_copy_implementations)] 21 - // Clippy lints 22 - #![allow(clippy::option_map_unwrap_or_else, clippy::option_map_unwrap_or)] 23 - #![warn( 24 - diff --git a/diesel_cli/tests/tests.rs b/diesel_cli/tests/tests.rs 25 - index 2edee846..c96917c4 100644 26 - --- a/diesel_cli/tests/tests.rs 27 - +++ b/diesel_cli/tests/tests.rs 28 - @@ -1,5 +1,3 @@ 29 - -#![deny(warnings)] 30 - - 31 - extern crate chrono; 32 - extern crate diesel; 33 - #[macro_use] 34 - diff --git a/diesel_derives/src/lib.rs b/diesel_derives/src/lib.rs 35 - index 2c43b2a3..44dcf3f9 100644 36 - --- a/diesel_derives/src/lib.rs 37 - +++ b/diesel_derives/src/lib.rs 38 - @@ -1,6 +1,6 @@ 39 - #![recursion_limit = "1024"] 40 - // Built-in Lints 41 - -#![deny(warnings, missing_copy_implementations)] 42 - +#![deny(missing_copy_implementations)] 43 - // Clippy lints 44 - #![allow( 45 - clippy::needless_pass_by_value, 46 - diff --git a/diesel_derives/tests/tests.rs b/diesel_derives/tests/tests.rs 47 - index 636fea66..f86f3dcc 100644 48 - --- a/diesel_derives/tests/tests.rs 49 - +++ b/diesel_derives/tests/tests.rs 50 - @@ -1,5 +1,3 @@ 51 - -#![deny(warnings)] 52 - - 53 - #[macro_use] 54 - extern crate cfg_if; 55 - #[macro_use] 56 - diff --git a/diesel_migrations/migrations_internals/src/lib.rs b/diesel_migrations/migrations_internals/src/lib.rs 57 - index 933e21a8..7c4d0222 100644 58 - --- a/diesel_migrations/migrations_internals/src/lib.rs 59 - +++ b/diesel_migrations/migrations_internals/src/lib.rs 60 - @@ -1,5 +1,5 @@ 61 - // Built-in Lints 62 - -#![deny(warnings, missing_debug_implementations, missing_copy_implementations)] 63 - +#![deny(missing_debug_implementations, missing_copy_implementations)] 64 - // Clippy lints 65 - #![allow( 66 - clippy::option_map_unwrap_or_else, 67 - diff --git a/diesel_migrations/migrations_macros/src/lib.rs b/diesel_migrations/migrations_macros/src/lib.rs 68 - index 0a83234e..2f509c04 100644 69 - --- a/diesel_migrations/migrations_macros/src/lib.rs 70 - +++ b/diesel_migrations/migrations_macros/src/lib.rs 71 - @@ -1,5 +1,5 @@ 72 - // Built-in Lints 73 - -#![deny(warnings, missing_debug_implementations, missing_copy_implementations)] 74 - +#![deny(missing_debug_implementations, missing_copy_implementations)] 75 - // Clippy lints 76 - #![allow( 77 - clippy::option_map_unwrap_or_else, 78 - diff --git a/diesel_migrations/src/lib.rs b/diesel_migrations/src/lib.rs 79 - index c85414e5..f025f237 100644 80 - --- a/diesel_migrations/src/lib.rs 81 - +++ b/diesel_migrations/src/lib.rs 82 - @@ -1,5 +1,5 @@ 83 - // Built-in Lints 84 - -#![deny(warnings, missing_copy_implementations)] 85 - +#![deny(missing_copy_implementations)] 86 - // Clippy lints 87 - #![allow( 88 - clippy::needless_pass_by_value,
+620 -712
pkgs/development/tools/diesel-cli/cargo-lock.patch
··· 1 1 diff --git a/Cargo.lock b/Cargo.lock 2 2 new file mode 100644 3 - index 0000000..f20a5bf 3 + index 0000000..c4a129e 4 4 --- /dev/null 5 5 +++ b/Cargo.lock 6 - @@ -0,0 +1,1583 @@ 6 + @@ -0,0 +1,1491 @@ 7 7 +# This file is automatically @generated by Cargo. 8 8 +# It is not intended for manual editing. 9 + +version = 3 10 + + 11 + +[[package]] 12 + +name = "addr2line" 13 + +version = "0.14.1" 14 + +source = "registry+https://github.com/rust-lang/crates.io-index" 15 + +checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7" 16 + +dependencies = [ 17 + + "gimli", 18 + +] 19 + + 20 + +[[package]] 21 + +name = "adler" 22 + +version = "1.0.2" 23 + +source = "registry+https://github.com/rust-lang/crates.io-index" 24 + +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 25 + + 9 26 +[[package]] 10 27 +name = "advanced-blog-cli" 11 28 +version = "0.1.0" 12 29 +dependencies = [ 13 - + "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 14 - + "bcrypt 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 15 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 16 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 30 + + "assert_matches", 31 + + "bcrypt", 32 + + "chrono", 33 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 17 34 + "diesel_migrations 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 18 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 19 - + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 20 - + "structopt 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", 21 - + "structopt-derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 22 - + "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 35 + + "dotenv", 36 + + "lazy_static", 37 + + "structopt", 38 + + "structopt-derive", 39 + + "tempfile 2.2.0", 23 40 +] 24 41 + 25 42 +[[package]] 26 43 +name = "aho-corasick" 27 44 +version = "0.5.3" 28 45 +source = "registry+https://github.com/rust-lang/crates.io-index" 46 + +checksum = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66" 29 47 +dependencies = [ 30 - + "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", 48 + + "memchr 0.1.11", 31 49 +] 32 50 + 33 51 +[[package]] 34 52 +name = "aho-corasick" 35 53 +version = "0.6.10" 36 54 +source = "registry+https://github.com/rust-lang/crates.io-index" 55 + +checksum = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" 37 56 +dependencies = [ 38 - + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 57 + + "memchr 2.3.4", 39 58 +] 40 59 + 41 60 +[[package]] 42 61 +name = "all_about_inserts" 43 62 +version = "0.1.0" 44 63 +dependencies = [ 45 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 46 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 47 - + "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 48 - + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 64 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 65 + + "serde", 66 + + "serde_derive", 67 + + "serde_json", 49 68 +] 50 69 + 51 70 +[[package]] 52 71 +name = "all_about_inserts_mysql" 53 72 +version = "0.1.0" 54 73 +dependencies = [ 55 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 56 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 57 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 58 - + "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 59 - + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 74 + + "chrono", 75 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 76 + + "serde", 77 + + "serde_derive", 78 + + "serde_json", 60 79 +] 61 80 + 62 81 +[[package]] 63 82 +name = "all_about_inserts_sqlite" 64 83 +version = "0.1.0" 65 84 +dependencies = [ 66 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 67 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 68 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 69 - + "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 70 - + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 85 + + "chrono", 86 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 87 + + "serde", 88 + + "serde_derive", 89 + + "serde_json", 71 90 +] 72 91 + 73 92 +[[package]] 74 93 +name = "all_about_updates" 75 94 +version = "0.1.0" 76 95 +dependencies = [ 77 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 96 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 78 97 +] 79 98 + 80 99 +[[package]] 81 100 +name = "ansi_term" 82 101 +version = "0.11.0" 83 102 +source = "registry+https://github.com/rust-lang/crates.io-index" 103 + +checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 84 104 +dependencies = [ 85 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 105 + + "winapi 0.3.9", 86 106 +] 87 107 + 88 108 +[[package]] 89 109 +name = "assert_matches" 90 - +version = "1.3.0" 110 + +version = "1.5.0" 91 111 +source = "registry+https://github.com/rust-lang/crates.io-index" 112 + +checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 92 113 + 93 114 +[[package]] 94 115 +name = "atty" 95 - +version = "0.2.13" 116 + +version = "0.2.14" 96 117 +source = "registry+https://github.com/rust-lang/crates.io-index" 118 + +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 97 119 +dependencies = [ 98 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 99 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 120 + + "hermit-abi", 121 + + "libc", 122 + + "winapi 0.3.9", 100 123 +] 101 124 + 102 125 +[[package]] 103 126 +name = "autocfg" 104 - +version = "0.1.6" 127 + +version = "0.1.7" 105 128 +source = "registry+https://github.com/rust-lang/crates.io-index" 129 + +checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" 106 130 + 107 131 +[[package]] 108 - +name = "backtrace" 109 - +version = "0.3.35" 132 + +name = "autocfg" 133 + +version = "1.0.1" 110 134 +source = "registry+https://github.com/rust-lang/crates.io-index" 111 - +dependencies = [ 112 - + "backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)", 113 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 114 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 115 - + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", 116 - +] 135 + +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 117 136 + 118 137 +[[package]] 119 - +name = "backtrace-sys" 120 - +version = "0.1.31" 138 + +name = "backtrace" 139 + +version = "0.3.56" 121 140 +source = "registry+https://github.com/rust-lang/crates.io-index" 141 + +checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc" 122 142 +dependencies = [ 123 - + "cc 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", 124 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 143 + + "addr2line", 144 + + "cfg-if 1.0.0", 145 + + "libc", 146 + + "miniz_oxide", 147 + + "object", 148 + + "rustc-demangle", 125 149 +] 126 150 + 127 151 +[[package]] 128 152 +name = "barrel" 129 - +version = "0.2.0" 153 + +version = "0.6.5" 130 154 +source = "registry+https://github.com/rust-lang/crates.io-index" 155 + +checksum = "9d67c978b1322c8031145b1f6c236fc371292f52c565bc96018b2971afcbffe1" 131 156 +dependencies = [ 132 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 133 - + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 157 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 158 + + "tempfile 3.2.0", 134 159 +] 135 160 + 136 161 +[[package]] 137 162 +name = "base64" 138 - +version = "0.9.3" 163 + +version = "0.10.1" 139 164 +source = "registry+https://github.com/rust-lang/crates.io-index" 165 + +checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" 140 166 +dependencies = [ 141 - + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 142 - + "safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 167 + + "byteorder", 143 168 +] 144 169 + 145 170 +[[package]] 146 171 +name = "bcrypt" 147 - +version = "0.1.6" 172 + +version = "0.2.2" 148 173 +source = "registry+https://github.com/rust-lang/crates.io-index" 174 + +checksum = "d27c1ac8b4a79e27fc37d00060f152ebc59c95a7cfc946943d177d6799c19184" 149 175 +dependencies = [ 150 - + "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", 151 - + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 152 - + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 153 - + "rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", 176 + + "base64", 177 + + "blowfish", 178 + + "byteorder", 179 + + "lazy_static", 180 + + "rand 0.6.5", 154 181 +] 155 182 + 156 183 +[[package]] 157 184 +name = "bigdecimal" 158 - +version = "0.0.14" 185 + +version = "0.1.2" 159 186 +source = "registry+https://github.com/rust-lang/crates.io-index" 187 + +checksum = "1374191e2dd25f9ae02e3aa95041ed5d747fc77b3c102b49fe2dd9a8117a6244" 160 188 +dependencies = [ 161 - + "num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 162 - + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 163 - + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 189 + + "num-bigint", 190 + + "num-integer", 191 + + "num-traits", 164 192 +] 165 193 + 166 194 +[[package]] 167 195 +name = "bitflags" 168 - +version = "1.1.0" 196 + +version = "1.2.1" 169 197 +source = "registry+https://github.com/rust-lang/crates.io-index" 198 + +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 170 199 + 171 200 +[[package]] 172 - +name = "bumpalo" 173 - +version = "2.6.0" 201 + +name = "block-cipher-trait" 202 + +version = "0.6.2" 174 203 +source = "registry+https://github.com/rust-lang/crates.io-index" 204 + +checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774" 205 + +dependencies = [ 206 + + "generic-array", 207 + +] 208 + + 209 + +[[package]] 210 + +name = "blowfish" 211 + +version = "0.4.0" 212 + +source = "registry+https://github.com/rust-lang/crates.io-index" 213 + +checksum = "6aeb80d00f2688459b8542068abd974cfb101e7a82182414a99b5026c0d85cc3" 214 + +dependencies = [ 215 + + "block-cipher-trait", 216 + + "byteorder", 217 + + "opaque-debug", 218 + +] 175 219 + 176 220 +[[package]] 177 221 +name = "byteorder" 178 - +version = "1.3.2" 222 + +version = "1.4.3" 179 223 +source = "registry+https://github.com/rust-lang/crates.io-index" 224 + +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 180 225 + 181 226 +[[package]] 182 - +name = "c2-chacha" 183 - +version = "0.2.2" 227 + +name = "cc" 228 + +version = "1.0.67" 184 229 +source = "registry+https://github.com/rust-lang/crates.io-index" 185 - +dependencies = [ 186 - + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 187 - + "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", 188 - +] 230 + +checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd" 189 231 + 190 232 +[[package]] 191 - +name = "cc" 192 - +version = "1.0.41" 233 + +name = "cfg-if" 234 + +version = "0.1.10" 193 235 +source = "registry+https://github.com/rust-lang/crates.io-index" 236 + +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 194 237 + 195 238 +[[package]] 196 239 +name = "cfg-if" 197 - +version = "0.1.9" 240 + +version = "1.0.0" 198 241 +source = "registry+https://github.com/rust-lang/crates.io-index" 242 + +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 199 243 + 200 244 +[[package]] 201 245 +name = "chrono" 202 - +version = "0.4.8" 246 + +version = "0.4.19" 203 247 +source = "registry+https://github.com/rust-lang/crates.io-index" 248 + +checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 204 249 +dependencies = [ 205 - + "js-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)", 206 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 207 - + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 208 - + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 209 - + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 210 - + "wasm-bindgen 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 250 + + "libc", 251 + + "num-integer", 252 + + "num-traits", 253 + + "time", 254 + + "winapi 0.3.9", 211 255 +] 212 256 + 213 257 +[[package]] 214 258 +name = "clap" 215 - +version = "2.33.0" 259 + +version = "2.33.3" 216 260 +source = "registry+https://github.com/rust-lang/crates.io-index" 261 + +checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" 217 262 +dependencies = [ 218 - + "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 219 - + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", 220 - + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 221 - + "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 222 - + "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 223 - + "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 224 - + "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", 263 + + "ansi_term", 264 + + "atty", 265 + + "bitflags", 266 + + "strsim", 267 + + "textwrap", 268 + + "unicode-width", 269 + + "vec_map", 225 270 +] 226 271 + 227 272 +[[package]] 228 273 +name = "cloudabi" 229 274 +version = "0.0.3" 230 275 +source = "registry+https://github.com/rust-lang/crates.io-index" 276 + +checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 231 277 +dependencies = [ 232 - + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 278 + + "bitflags", 233 279 +] 234 280 + 235 281 +[[package]] 236 282 +name = "derive-error-chain" 237 283 +version = "0.10.1" 238 284 +source = "registry+https://github.com/rust-lang/crates.io-index" 285 + +checksum = "3c9ca9ade651388daad7c993f005d0d20c4f6fe78c1cdc93e95f161c6f5ede4a" 239 286 +dependencies = [ 240 - + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 241 - + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", 287 + + "quote 0.3.15", 288 + + "syn 0.11.11", 242 289 +] 243 290 + 244 291 +[[package]] 245 292 +name = "diesel" 246 - +version = "1.4.0" 293 + +version = "1.4.6" 247 294 +dependencies = [ 248 - + "bigdecimal 0.0.14 (registry+https://github.com/rust-lang/crates.io-index)", 249 - + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 250 - + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 251 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 252 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 253 - + "diesel_derives 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 254 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 255 - + "ipnetwork 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", 256 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 257 - + "libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 258 - + "mysqlclient-sys 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", 259 - + "num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 260 - + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 261 - + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 262 - + "pq-sys 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 263 - + "quickcheck 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 264 - + "r2d2 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", 265 - + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 266 - + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 267 - + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 268 - + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 269 - + "uuid 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 270 - + "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", 295 + + "bigdecimal", 296 + + "bitflags", 297 + + "byteorder", 298 + + "cfg-if 0.1.10", 299 + + "chrono", 300 + + "diesel_derives 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 301 + + "dotenv", 302 + + "ipnetwork", 303 + + "libc", 304 + + "libsqlite3-sys", 305 + + "mysqlclient-sys", 306 + + "num-bigint", 307 + + "num-integer", 308 + + "num-traits", 309 + + "pq-sys", 310 + + "quickcheck", 311 + + "r2d2", 312 + + "serde_json", 313 + + "tempdir", 314 + + "time", 315 + + "url", 316 + + "uuid 0.6.5", 317 + + "uuid 0.8.2", 271 318 +] 272 319 + 273 320 +[[package]] 274 321 +name = "diesel" 275 - +version = "1.4.2" 322 + +version = "1.4.6" 276 323 +source = "registry+https://github.com/rust-lang/crates.io-index" 277 - +dependencies = [ 278 - + "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 279 - + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 280 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 281 - + "diesel_derives 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 282 - + "libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 283 - + "mysqlclient-sys 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", 284 - + "pq-sys 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 285 - + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 286 - +] 324 + +checksum = "047bfc4d5c3bd2ef6ca6f981941046113524b9a9f9a7cbdfdd7ff40f58e6f542" 325 + +replace = "diesel 1.4.6" 287 326 + 288 327 +[[package]] 289 328 +name = "diesel_cli" 290 - +version = "1.4.0" 329 + +version = "1.4.1" 291 330 +dependencies = [ 292 - + "barrel 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 293 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 294 - + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", 295 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 296 - + "difference 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 297 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 298 - + "libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 299 - + "migrations_internals 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 300 - + "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 301 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 302 - + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 303 - + "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 304 - + "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", 305 - + "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 331 + + "barrel", 332 + + "chrono", 333 + + "clap", 334 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 335 + + "difference", 336 + + "dotenv", 337 + + "libsqlite3-sys", 338 + + "migrations_internals 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 339 + + "regex 0.2.11", 340 + + "serde", 341 + + "tempdir", 342 + + "tempfile 3.2.0", 343 + + "toml", 344 + + "url", 306 345 +] 307 346 + 308 347 +[[package]] 309 348 +name = "diesel_demo_step_1_mysql" 310 349 +version = "0.1.0" 311 350 +dependencies = [ 312 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 313 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 351 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 352 + + "dotenv", 314 353 +] 315 354 + 316 355 +[[package]] 317 356 +name = "diesel_demo_step_1_pg" 318 357 +version = "0.1.0" 319 358 +dependencies = [ 320 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 321 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 359 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 360 + + "dotenv", 322 361 +] 323 362 + 324 363 +[[package]] 325 364 +name = "diesel_demo_step_1_sqlite" 326 365 +version = "0.1.0" 327 366 +dependencies = [ 328 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 329 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 367 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 368 + + "dotenv", 330 369 +] 331 370 + 332 371 +[[package]] 333 372 +name = "diesel_demo_step_2_mysql" 334 373 +version = "0.1.0" 335 374 +dependencies = [ 336 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 337 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 375 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 376 + + "dotenv", 338 377 +] 339 378 + 340 379 +[[package]] 341 380 +name = "diesel_demo_step_2_pg" 342 381 +version = "0.1.0" 343 382 +dependencies = [ 344 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 345 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 383 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 384 + + "dotenv", 346 385 +] 347 386 + 348 387 +[[package]] 349 388 +name = "diesel_demo_step_2_sqlite" 350 389 +version = "0.1.0" 351 390 +dependencies = [ 352 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 353 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 391 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 392 + + "dotenv", 354 393 +] 355 394 + 356 395 +[[package]] 357 396 +name = "diesel_demo_step_3_mysql" 358 397 +version = "0.1.0" 359 398 +dependencies = [ 360 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 361 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 399 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 400 + + "dotenv", 362 401 +] 363 402 + 364 403 +[[package]] 365 404 +name = "diesel_demo_step_3_pg" 366 405 +version = "0.1.0" 367 406 +dependencies = [ 368 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 369 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 407 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 408 + + "dotenv", 370 409 +] 371 410 + 372 411 +[[package]] 373 412 +name = "diesel_demo_step_3_sqlite" 374 413 +version = "0.1.0" 375 414 +dependencies = [ 376 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 377 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 415 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 416 + + "dotenv", 378 417 +] 379 418 + 380 419 +[[package]] 381 420 +name = "diesel_derives" 382 - +version = "1.4.0" 421 + +version = "1.4.1" 383 422 +dependencies = [ 384 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 385 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 386 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 387 - + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 388 - + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 389 - + "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", 423 + + "cfg-if 0.1.10", 424 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 425 + + "dotenv", 426 + + "proc-macro2", 427 + + "quote 1.0.9", 428 + + "syn 1.0.67", 390 429 +] 391 430 + 392 431 +[[package]] 393 432 +name = "diesel_derives" 394 - +version = "1.4.0" 433 + +version = "1.4.1" 395 434 +source = "registry+https://github.com/rust-lang/crates.io-index" 396 - +replace = "diesel_derives 1.4.0" 435 + +checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3" 436 + +replace = "diesel_derives 1.4.1" 397 437 + 398 438 +[[package]] 399 439 +name = "diesel_infer_schema" 400 440 +version = "1.4.0" 401 441 +source = "registry+https://github.com/rust-lang/crates.io-index" 442 + +checksum = "7bea70d0798a3d8489e1d5493bb2111a1ab2da434191b9e9605f167c01a20680" 402 443 +dependencies = [ 403 - + "infer_schema_macros 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 444 + + "infer_schema_macros", 404 445 +] 405 446 + 406 447 +[[package]] 407 448 +name = "diesel_migrations" 408 449 +version = "1.4.0" 409 450 +dependencies = [ 410 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 411 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 412 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 413 - + "migrations_internals 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 414 - + "migrations_macros 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 451 + + "cfg-if 0.1.10", 452 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 453 + + "dotenv", 454 + + "migrations_internals 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 455 + + "migrations_macros 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 415 456 +] 416 457 + 417 458 +[[package]] 418 459 +name = "diesel_migrations" 419 460 +version = "1.4.0" 420 461 +source = "registry+https://github.com/rust-lang/crates.io-index" 462 + +checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c" 421 463 +replace = "diesel_migrations 1.4.0" 422 464 + 423 465 +[[package]] 424 466 +name = "diesel_tests" 425 467 +version = "0.1.0" 426 468 +dependencies = [ 427 - + "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 428 - + "bigdecimal 0.0.14 (registry+https://github.com/rust-lang/crates.io-index)", 429 - + "chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 430 - + "diesel 1.4.0", 431 - + "diesel_infer_schema 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 469 + + "assert_matches", 470 + + "bigdecimal", 471 + + "chrono", 472 + + "diesel 1.4.6", 473 + + "diesel_infer_schema", 432 474 + "diesel_migrations 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 433 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 434 - + "ipnetwork 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)", 435 - + "quickcheck 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 436 - + "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", 437 - + "uuid 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 475 + + "dotenv", 476 + + "ipnetwork", 477 + + "quickcheck", 478 + + "serde_json", 479 + + "uuid 0.8.2", 438 480 +] 439 481 + 440 482 +[[package]] 441 483 +name = "difference" 442 484 +version = "1.0.0" 443 485 +source = "registry+https://github.com/rust-lang/crates.io-index" 486 + +checksum = "b3304d19798a8e067e48d8e69b2c37f0b5e9b4e462504ad9e27e9f3fce02bba8" 444 487 + 445 488 +[[package]] 446 489 +name = "dotenv" 447 490 +version = "0.10.1" 448 491 +source = "registry+https://github.com/rust-lang/crates.io-index" 492 + +checksum = "d6f0e2bb24d163428d8031d3ebd2d2bd903ad933205a97d0f18c7c1aade380f3" 449 493 +dependencies = [ 450 - + "derive-error-chain 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 451 - + "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", 452 - + "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 494 + + "derive-error-chain", 495 + + "error-chain", 496 + + "regex 0.2.11", 453 497 +] 454 498 + 455 499 +[[package]] 456 500 +name = "env_logger" 457 501 +version = "0.3.5" 458 502 +source = "registry+https://github.com/rust-lang/crates.io-index" 503 + +checksum = "15abd780e45b3ea4f76b4e9a26ff4843258dd8a3eed2775a0e7368c2e7936c2f" 459 504 +dependencies = [ 460 - + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 461 - + "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)", 505 + + "log 0.3.9", 506 + + "regex 0.1.80", 462 507 +] 463 508 + 464 509 +[[package]] 465 510 +name = "error-chain" 466 511 +version = "0.10.0" 467 512 +source = "registry+https://github.com/rust-lang/crates.io-index" 513 + +checksum = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" 468 514 +dependencies = [ 469 - + "backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)", 515 + + "backtrace", 470 516 +] 471 517 + 472 518 +[[package]] 473 519 +name = "fuchsia-cprng" 474 520 +version = "0.1.1" 475 521 +source = "registry+https://github.com/rust-lang/crates.io-index" 522 + +checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 476 523 + 477 524 +[[package]] 478 - +name = "gcc" 479 - +version = "0.3.55" 525 + +name = "generic-array" 526 + +version = "0.12.4" 480 527 +source = "registry+https://github.com/rust-lang/crates.io-index" 528 + +checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 529 + +dependencies = [ 530 + + "typenum", 531 + +] 481 532 + 482 533 +[[package]] 483 534 +name = "getrandom" 484 - +version = "0.1.11" 535 + +version = "0.2.2" 485 536 +source = "registry+https://github.com/rust-lang/crates.io-index" 537 + +checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8" 486 538 +dependencies = [ 487 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 488 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 489 - + "wasi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 539 + + "cfg-if 1.0.0", 540 + + "libc", 541 + + "wasi", 542 + +] 543 + + 544 + +[[package]] 545 + +name = "gimli" 546 + +version = "0.23.0" 547 + +source = "registry+https://github.com/rust-lang/crates.io-index" 548 + +checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce" 549 + + 550 + +[[package]] 551 + +name = "hermit-abi" 552 + +version = "0.1.18" 553 + +source = "registry+https://github.com/rust-lang/crates.io-index" 554 + +checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" 555 + +dependencies = [ 556 + + "libc", 490 557 +] 491 558 + 492 559 +[[package]] 493 560 +name = "idna" 494 561 +version = "0.1.5" 495 562 +source = "registry+https://github.com/rust-lang/crates.io-index" 563 + +checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 496 564 +dependencies = [ 497 - + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 498 - + "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 499 - + "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 565 + + "matches", 566 + + "unicode-bidi", 567 + + "unicode-normalization", 500 568 +] 501 569 + 502 570 +[[package]] 503 571 +name = "infer_schema_internals" 504 572 +version = "1.4.0" 505 573 +source = "registry+https://github.com/rust-lang/crates.io-index" 574 + +checksum = "90e390df38a4e5cb4337a76db5b736f239e08f3ab7e8e42a34548617f0113f64" 506 575 +dependencies = [ 507 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 576 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 508 577 +] 509 578 + 510 579 +[[package]] 511 580 +name = "infer_schema_macros" 512 581 +version = "1.4.0" 513 582 +source = "registry+https://github.com/rust-lang/crates.io-index" 583 + +checksum = "07b667b471ef99645989ceea451be288b6e669eeb8951d3f0fbd310677588ac6" 514 584 +dependencies = [ 515 - + "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 516 - + "infer_schema_internals 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 517 - + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 518 - + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", 585 + + "dotenv", 586 + + "infer_schema_internals", 587 + + "quote 0.3.15", 588 + + "syn 0.11.11", 519 589 +] 520 590 + 521 591 +[[package]] 522 - +name = "ipnetwork" 523 - +version = "0.13.1" 592 + +name = "instant" 593 + +version = "0.1.9" 524 594 +source = "registry+https://github.com/rust-lang/crates.io-index" 595 + +checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" 525 596 +dependencies = [ 526 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 527 - + "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 597 + + "cfg-if 1.0.0", 528 598 +] 529 599 + 530 600 +[[package]] 531 - +name = "itoa" 532 - +version = "0.4.4" 601 + +name = "ipnetwork" 602 + +version = "0.17.0" 533 603 +source = "registry+https://github.com/rust-lang/crates.io-index" 604 + +checksum = "02c3eaab3ac0ede60ffa41add21970a7df7d91772c03383aac6c2c3d53cc716b" 605 + +dependencies = [ 606 + + "serde", 607 + +] 534 608 + 535 609 +[[package]] 536 - +name = "js-sys" 537 - +version = "0.3.27" 610 + +name = "itoa" 611 + +version = "0.4.7" 538 612 +source = "registry+https://github.com/rust-lang/crates.io-index" 539 - +dependencies = [ 540 - + "wasm-bindgen 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 541 - +] 613 + +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" 542 614 + 543 615 +[[package]] 544 616 +name = "kernel32-sys" 545 617 +version = "0.2.2" 546 618 +source = "registry+https://github.com/rust-lang/crates.io-index" 619 + +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 547 620 +dependencies = [ 548 - + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 549 - + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 621 + + "winapi 0.2.8", 622 + + "winapi-build", 550 623 +] 551 624 + 552 625 +[[package]] 553 626 +name = "lazy_static" 554 627 +version = "1.4.0" 555 628 +source = "registry+https://github.com/rust-lang/crates.io-index" 629 + +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 556 630 + 557 631 +[[package]] 558 632 +name = "libc" 559 - +version = "0.2.62" 633 + +version = "0.2.91" 560 634 +source = "registry+https://github.com/rust-lang/crates.io-index" 635 + +checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7" 561 636 + 562 637 +[[package]] 563 638 +name = "libsqlite3-sys" 564 - +version = "0.12.0" 565 - +source = "registry+https://github.com/rust-lang/crates.io-index" 566 - +dependencies = [ 567 - + "cc 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", 568 - + "pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 569 - + "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 570 - +] 571 - + 572 - +[[package]] 573 - +name = "lock_api" 574 - +version = "0.2.0" 639 + +version = "0.20.1" 575 640 +source = "registry+https://github.com/rust-lang/crates.io-index" 641 + +checksum = "64d31059f22935e6c31830db5249ba2b7ecd54fd73a9909286f0a67aa55c2fbd" 576 642 +dependencies = [ 577 - + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 643 + + "cc", 644 + + "pkg-config", 645 + + "vcpkg", 578 646 +] 579 647 + 580 648 +[[package]] 581 649 +name = "lock_api" 582 - +version = "0.3.1" 650 + +version = "0.4.2" 583 651 +source = "registry+https://github.com/rust-lang/crates.io-index" 652 + +checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312" 584 653 +dependencies = [ 585 - + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 654 + + "scopeguard", 586 655 +] 587 656 + 588 657 +[[package]] 589 658 +name = "log" 590 659 +version = "0.3.9" 591 660 +source = "registry+https://github.com/rust-lang/crates.io-index" 661 + +checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 592 662 +dependencies = [ 593 - + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 663 + + "log 0.4.14", 594 664 +] 595 665 + 596 666 +[[package]] 597 667 +name = "log" 598 - +version = "0.4.8" 668 + +version = "0.4.14" 599 669 +source = "registry+https://github.com/rust-lang/crates.io-index" 670 + +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 600 671 +dependencies = [ 601 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 672 + + "cfg-if 1.0.0", 602 673 +] 603 674 + 604 675 +[[package]] 605 676 +name = "matches" 606 677 +version = "0.1.8" 607 678 +source = "registry+https://github.com/rust-lang/crates.io-index" 679 + +checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 608 680 + 609 681 +[[package]] 610 682 +name = "memchr" 611 683 +version = "0.1.11" 612 684 +source = "registry+https://github.com/rust-lang/crates.io-index" 685 + +checksum = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20" 613 686 +dependencies = [ 614 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 687 + + "libc", 615 688 +] 616 689 + 617 690 +[[package]] 618 691 +name = "memchr" 619 - +version = "2.2.1" 692 + +version = "2.3.4" 620 693 +source = "registry+https://github.com/rust-lang/crates.io-index" 694 + +checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 621 695 + 622 696 +[[package]] 623 697 +name = "migrations_internals" 624 - +version = "1.4.0" 698 + +version = "1.4.1" 625 699 +dependencies = [ 626 - + "barrel 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 627 - + "diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 628 - + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 700 + + "barrel", 701 + + "diesel 1.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 702 + + "tempdir", 629 703 +] 630 704 + 631 705 +[[package]] 632 706 +name = "migrations_internals" 633 - +version = "1.4.0" 707 + +version = "1.4.1" 634 708 +source = "registry+https://github.com/rust-lang/crates.io-index" 635 - +replace = "migrations_internals 1.4.0" 709 + +checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860" 710 + +replace = "migrations_internals 1.4.1" 636 711 + 637 712 +[[package]] 638 713 +name = "migrations_macros" 639 - +version = "1.4.0" 714 + +version = "1.4.2" 640 715 +dependencies = [ 641 - + "migrations_internals 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 642 - + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 643 - + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", 644 - + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", 716 + + "migrations_internals 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 717 + + "proc-macro2", 718 + + "quote 1.0.9", 719 + + "syn 1.0.67", 720 + + "tempdir", 645 721 +] 646 722 + 647 723 +[[package]] 648 724 +name = "migrations_macros" 649 - +version = "1.4.0" 725 + +version = "1.4.2" 650 726 +source = "registry+https://github.com/rust-lang/crates.io-index" 651 - +replace = "migrations_macros 1.4.0" 727 + +checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c" 728 + +replace = "migrations_macros 1.4.2" 729 + + 730 + +[[package]] 731 + +name = "miniz_oxide" 732 + +version = "0.4.4" 733 + +source = "registry+https://github.com/rust-lang/crates.io-index" 734 + +checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 735 + +dependencies = [ 736 + + "adler", 737 + + "autocfg 1.0.1", 738 + +] 652 739 + 653 740 +[[package]] 654 741 +name = "mysqlclient-sys" 655 742 +version = "0.2.4" 656 743 +source = "registry+https://github.com/rust-lang/crates.io-index" 744 + +checksum = "7e9637d93448044078aaafea7419aed69d301b4a12bcc4aa0ae856eb169bef85" 657 745 +dependencies = [ 658 - + "pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 659 - + "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 746 + + "pkg-config", 747 + + "vcpkg", 660 748 +] 661 749 + 662 750 +[[package]] 663 751 +name = "num-bigint" 664 - +version = "0.2.2" 752 + +version = "0.2.6" 665 753 +source = "registry+https://github.com/rust-lang/crates.io-index" 754 + +checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" 666 755 +dependencies = [ 667 - + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 668 - + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 756 + + "autocfg 1.0.1", 757 + + "num-integer", 758 + + "num-traits", 669 759 +] 670 760 + 671 761 +[[package]] 672 762 +name = "num-integer" 673 - +version = "0.1.41" 763 + +version = "0.1.44" 674 764 +source = "registry+https://github.com/rust-lang/crates.io-index" 765 + +checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 675 766 +dependencies = [ 676 - + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 677 - + "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 767 + + "autocfg 1.0.1", 768 + + "num-traits", 678 769 +] 679 770 + 680 771 +[[package]] 681 772 +name = "num-traits" 682 - +version = "0.2.8" 773 + +version = "0.2.14" 683 774 +source = "registry+https://github.com/rust-lang/crates.io-index" 775 + +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 684 776 +dependencies = [ 685 - + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 777 + + "autocfg 1.0.1", 686 778 +] 687 779 + 688 780 +[[package]] 689 - +name = "parking_lot" 690 - +version = "0.8.0" 781 + +name = "object" 782 + +version = "0.23.0" 691 783 +source = "registry+https://github.com/rust-lang/crates.io-index" 692 - +dependencies = [ 693 - + "lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 694 - + "parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 695 - + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 696 - +] 784 + +checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4" 697 785 + 698 786 +[[package]] 699 - +name = "parking_lot" 700 - +version = "0.9.0" 787 + +name = "opaque-debug" 788 + +version = "0.2.3" 701 789 +source = "registry+https://github.com/rust-lang/crates.io-index" 702 - +dependencies = [ 703 - + "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 704 - + "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", 705 - + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 706 - +] 790 + +checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 707 791 + 708 792 +[[package]] 709 - +name = "parking_lot_core" 710 - +version = "0.5.0" 793 + +name = "parking_lot" 794 + +version = "0.11.1" 711 795 +source = "registry+https://github.com/rust-lang/crates.io-index" 796 + +checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" 712 797 +dependencies = [ 713 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 714 - + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 715 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 716 - + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 717 - + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 718 - + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 719 - + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 720 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 798 + + "instant", 799 + + "lock_api", 800 + + "parking_lot_core", 721 801 +] 722 802 + 723 803 +[[package]] 724 804 +name = "parking_lot_core" 725 - +version = "0.6.2" 805 + +version = "0.8.3" 726 806 +source = "registry+https://github.com/rust-lang/crates.io-index" 807 + +checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" 727 808 +dependencies = [ 728 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 729 - + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 730 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 731 - + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 732 - + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 733 - + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 734 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 809 + + "cfg-if 1.0.0", 810 + + "instant", 811 + + "libc", 812 + + "redox_syscall 0.2.5", 813 + + "smallvec", 814 + + "winapi 0.3.9", 735 815 +] 736 816 + 737 817 +[[package]] 738 818 +name = "percent-encoding" 739 819 +version = "1.0.1" 740 820 +source = "registry+https://github.com/rust-lang/crates.io-index" 821 + +checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 741 822 + 742 823 +[[package]] 743 824 +name = "pkg-config" 744 - +version = "0.3.15" 825 + +version = "0.3.19" 745 826 +source = "registry+https://github.com/rust-lang/crates.io-index" 827 + +checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" 746 828 + 747 829 +[[package]] 748 830 +name = "ppv-lite86" 749 - +version = "0.2.5" 831 + +version = "0.2.10" 750 832 +source = "registry+https://github.com/rust-lang/crates.io-index" 833 + +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" 751 834 + 752 835 +[[package]] 753 836 +name = "pq-sys" 754 837 +version = "0.4.6" 755 838 +source = "registry+https://github.com/rust-lang/crates.io-index" 839 + +checksum = "6ac25eee5a0582f45a67e837e350d784e7003bd29a5f460796772061ca49ffda" 756 840 +dependencies = [ 757 - + "vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 841 + + "vcpkg", 758 842 +] 759 843 + 760 844 +[[package]] 761 845 +name = "proc-macro2" 762 - +version = "0.4.30" 846 + +version = "1.0.24" 763 847 +source = "registry+https://github.com/rust-lang/crates.io-index" 764 - +dependencies = [ 765 - + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 766 - +] 767 - + 768 - +[[package]] 769 - +name = "proc-macro2" 770 - +version = "1.0.2" 771 - +source = "registry+https://github.com/rust-lang/crates.io-index" 848 + +checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" 772 849 +dependencies = [ 773 - + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 850 + + "unicode-xid 0.2.1", 774 851 +] 775 852 + 776 853 +[[package]] 777 854 +name = "quickcheck" 778 855 +version = "0.4.1" 779 856 +source = "registry+https://github.com/rust-lang/crates.io-index" 857 + +checksum = "02c2411d418cea2364325b18a205664f9ef8252e06b2e911db97c0b0d98b1406" 780 858 +dependencies = [ 781 - + "env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", 782 - + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 783 - + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 859 + + "env_logger", 860 + + "log 0.3.9", 861 + + "rand 0.3.23", 784 862 +] 785 863 + 786 864 +[[package]] 787 865 +name = "quote" 788 866 +version = "0.3.15" 789 867 +source = "registry+https://github.com/rust-lang/crates.io-index" 868 + +checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 790 869 + 791 870 +[[package]] 792 871 +name = "quote" 793 - +version = "0.6.13" 872 + +version = "1.0.9" 794 873 +source = "registry+https://github.com/rust-lang/crates.io-index" 795 - +dependencies = [ 796 - + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 797 - +] 798 - + 799 - +[[package]] 800 - +name = "quote" 801 - +version = "1.0.2" 802 - +source = "registry+https://github.com/rust-lang/crates.io-index" 874 + +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 803 875 +dependencies = [ 804 - + "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 876 + + "proc-macro2", 805 877 +] 806 878 + 807 879 +[[package]] 808 880 +name = "r2d2" 809 - +version = "0.8.5" 881 + +version = "0.8.9" 810 882 +source = "registry+https://github.com/rust-lang/crates.io-index" 883 + +checksum = "545c5bc2b880973c9c10e4067418407a0ccaa3091781d1671d46eb35107cb26f" 811 884 +dependencies = [ 812 - + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 813 - + "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 814 - + "scheduled-thread-pool 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 885 + + "log 0.4.14", 886 + + "parking_lot", 887 + + "scheduled-thread-pool", 815 888 +] 816 889 + 817 890 +[[package]] 818 891 +name = "rand" 819 892 +version = "0.3.23" 820 893 +source = "registry+https://github.com/rust-lang/crates.io-index" 894 + +checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" 821 895 +dependencies = [ 822 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 823 - + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 896 + + "libc", 897 + + "rand 0.4.6", 824 898 +] 825 899 + 826 900 +[[package]] 827 901 +name = "rand" 828 902 +version = "0.4.6" 829 903 +source = "registry+https://github.com/rust-lang/crates.io-index" 904 + +checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 830 905 +dependencies = [ 831 - + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 832 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 833 - + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 834 - + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 835 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 906 + + "fuchsia-cprng", 907 + + "libc", 908 + + "rand_core 0.3.1", 909 + + "rdrand", 910 + + "winapi 0.3.9", 836 911 +] 837 912 + 838 913 +[[package]] 839 914 +name = "rand" 840 915 +version = "0.6.5" 841 916 +source = "registry+https://github.com/rust-lang/crates.io-index" 917 + +checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 842 918 +dependencies = [ 843 - + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 844 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 845 - + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 846 - + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 847 - + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 848 - + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 849 - + "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 850 - + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 851 - + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 852 - + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 853 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 919 + + "autocfg 0.1.7", 920 + + "libc", 921 + + "rand_chacha 0.1.1", 922 + + "rand_core 0.4.2", 923 + + "rand_hc 0.1.0", 924 + + "rand_isaac", 925 + + "rand_jitter", 926 + + "rand_os", 927 + + "rand_pcg", 928 + + "rand_xorshift", 929 + + "winapi 0.3.9", 854 930 +] 855 931 + 856 932 +[[package]] 857 933 +name = "rand" 858 - +version = "0.7.0" 934 + +version = "0.8.3" 859 935 +source = "registry+https://github.com/rust-lang/crates.io-index" 936 + +checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e" 860 937 +dependencies = [ 861 - + "getrandom 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", 862 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 863 - + "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 864 - + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 865 - + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 938 + + "libc", 939 + + "rand_chacha 0.3.0", 940 + + "rand_core 0.6.2", 941 + + "rand_hc 0.3.0", 866 942 +] 867 943 + 868 944 +[[package]] 869 945 +name = "rand_chacha" 870 946 +version = "0.1.1" 871 947 +source = "registry+https://github.com/rust-lang/crates.io-index" 948 + +checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 872 949 +dependencies = [ 873 - + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 874 - + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 950 + + "autocfg 0.1.7", 951 + + "rand_core 0.3.1", 875 952 +] 876 953 + 877 954 +[[package]] 878 955 +name = "rand_chacha" 879 - +version = "0.2.1" 956 + +version = "0.3.0" 880 957 +source = "registry+https://github.com/rust-lang/crates.io-index" 958 + +checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" 881 959 +dependencies = [ 882 - + "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 883 - + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 960 + + "ppv-lite86", 961 + + "rand_core 0.6.2", 884 962 +] 885 963 + 886 964 +[[package]] 887 965 +name = "rand_core" 888 966 +version = "0.3.1" 889 967 +source = "registry+https://github.com/rust-lang/crates.io-index" 968 + +checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 890 969 +dependencies = [ 891 - + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 970 + + "rand_core 0.4.2", 892 971 +] 893 972 + 894 973 +[[package]] 895 974 +name = "rand_core" 896 975 +version = "0.4.2" 897 976 +source = "registry+https://github.com/rust-lang/crates.io-index" 977 + +checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 898 978 + 899 979 +[[package]] 900 980 +name = "rand_core" 901 - +version = "0.5.1" 981 + +version = "0.6.2" 902 982 +source = "registry+https://github.com/rust-lang/crates.io-index" 983 + +checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7" 903 984 +dependencies = [ 904 - + "getrandom 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", 985 + + "getrandom", 905 986 +] 906 987 + 907 988 +[[package]] 908 989 +name = "rand_hc" 909 990 +version = "0.1.0" 910 991 +source = "registry+https://github.com/rust-lang/crates.io-index" 992 + +checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 911 993 +dependencies = [ 912 - + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 994 + + "rand_core 0.3.1", 913 995 +] 914 996 + 915 997 +[[package]] 916 998 +name = "rand_hc" 917 - +version = "0.2.0" 999 + +version = "0.3.0" 918 1000 +source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + +checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73" 919 1002 +dependencies = [ 920 - + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", 1003 + + "rand_core 0.6.2", 921 1004 +] 922 1005 + 923 1006 +[[package]] 924 1007 +name = "rand_isaac" 925 1008 +version = "0.1.1" 926 1009 +source = "registry+https://github.com/rust-lang/crates.io-index" 1010 + +checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 927 1011 +dependencies = [ 928 - + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1012 + + "rand_core 0.3.1", 929 1013 +] 930 1014 + 931 1015 +[[package]] 932 1016 +name = "rand_jitter" 933 1017 +version = "0.1.4" 934 1018 +source = "registry+https://github.com/rust-lang/crates.io-index" 1019 + +checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 935 1020 +dependencies = [ 936 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 937 - + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 938 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1021 + + "libc", 1022 + + "rand_core 0.4.2", 1023 + + "winapi 0.3.9", 939 1024 +] 940 1025 + 941 1026 +[[package]] 942 1027 +name = "rand_os" 943 1028 +version = "0.1.3" 944 1029 +source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + +checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 945 1031 +dependencies = [ 946 - + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 947 - + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 948 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 949 - + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 950 - + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 951 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1032 + + "cloudabi", 1033 + + "fuchsia-cprng", 1034 + + "libc", 1035 + + "rand_core 0.4.2", 1036 + + "rdrand", 1037 + + "winapi 0.3.9", 952 1038 +] 953 1039 + 954 1040 +[[package]] 955 1041 +name = "rand_pcg" 956 1042 +version = "0.1.2" 957 1043 +source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + +checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 958 1045 +dependencies = [ 959 - + "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 960 - + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 1046 + + "autocfg 0.1.7", 1047 + + "rand_core 0.4.2", 961 1048 +] 962 1049 + 963 1050 +[[package]] 964 1051 +name = "rand_xorshift" 965 1052 +version = "0.1.1" 966 1053 +source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + +checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 967 1055 +dependencies = [ 968 - + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1056 + + "rand_core 0.3.1", 969 1057 +] 970 1058 + 971 1059 +[[package]] 972 1060 +name = "rdrand" 973 1061 +version = "0.4.0" 974 1062 +source = "registry+https://github.com/rust-lang/crates.io-index" 1063 + +checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 975 1064 +dependencies = [ 976 - + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1065 + + "rand_core 0.3.1", 977 1066 +] 978 1067 + 979 1068 +[[package]] 980 1069 +name = "redox_syscall" 981 - +version = "0.1.56" 1070 + +version = "0.1.57" 982 1071 +source = "registry+https://github.com/rust-lang/crates.io-index" 1072 + +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 1073 + + 1074 + +[[package]] 1075 + +name = "redox_syscall" 1076 + +version = "0.2.5" 1077 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1078 + +checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9" 1079 + +dependencies = [ 1080 + + "bitflags", 1081 + +] 983 1082 + 984 1083 +[[package]] 985 1084 +name = "regex" 986 1085 +version = "0.1.80" 987 1086 +source = "registry+https://github.com/rust-lang/crates.io-index" 1087 + +checksum = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f" 988 1088 +dependencies = [ 989 - + "aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", 990 - + "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", 991 - + "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 992 - + "thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", 993 - + "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1089 + + "aho-corasick 0.5.3", 1090 + + "memchr 0.1.11", 1091 + + "regex-syntax 0.3.9", 1092 + + "thread_local 0.2.7", 1093 + + "utf8-ranges 0.1.3", 994 1094 +] 995 1095 + 996 1096 +[[package]] 997 1097 +name = "regex" 998 1098 +version = "0.2.11" 999 1099 +source = "registry+https://github.com/rust-lang/crates.io-index" 1100 + +checksum = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384" 1000 1101 +dependencies = [ 1001 - + "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1002 - + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1003 - + "regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", 1004 - + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", 1005 - + "utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1102 + + "aho-corasick 0.6.10", 1103 + + "memchr 2.3.4", 1104 + + "regex-syntax 0.5.6", 1105 + + "thread_local 0.3.6", 1106 + + "utf8-ranges 1.0.4", 1006 1107 +] 1007 1108 + 1008 1109 +[[package]] 1009 1110 +name = "regex-syntax" 1010 1111 +version = "0.3.9" 1011 1112 +source = "registry+https://github.com/rust-lang/crates.io-index" 1113 + +checksum = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" 1012 1114 + 1013 1115 +[[package]] 1014 1116 +name = "regex-syntax" 1015 1117 +version = "0.5.6" 1016 1118 +source = "registry+https://github.com/rust-lang/crates.io-index" 1119 + +checksum = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7" 1017 1120 +dependencies = [ 1018 - + "ucd-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1121 + + "ucd-util", 1019 1122 +] 1020 1123 + 1021 1124 +[[package]] 1022 1125 +name = "remove_dir_all" 1023 - +version = "0.5.2" 1126 + +version = "0.5.3" 1024 1127 +source = "registry+https://github.com/rust-lang/crates.io-index" 1128 + +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1025 1129 +dependencies = [ 1026 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1027 - +] 1028 - + 1029 - +[[package]] 1030 - +name = "rust-crypto" 1031 - +version = "0.2.36" 1032 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - +dependencies = [ 1034 - + "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)", 1035 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1036 - + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 1037 - + "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", 1038 - + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", 1130 + + "winapi 0.3.9", 1039 1131 +] 1040 1132 + 1041 1133 +[[package]] 1042 1134 +name = "rustc-demangle" 1043 - +version = "0.1.16" 1044 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - + 1046 - +[[package]] 1047 - +name = "rustc-serialize" 1048 - +version = "0.3.24" 1135 + +version = "0.1.18" 1049 1136 +source = "registry+https://github.com/rust-lang/crates.io-index" 1050 - + 1051 - +[[package]] 1052 - +name = "rustc_version" 1053 - +version = "0.2.3" 1054 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - +dependencies = [ 1056 - + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1057 - +] 1137 + +checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232" 1058 1138 + 1059 1139 +[[package]] 1060 1140 +name = "ryu" 1061 - +version = "1.0.0" 1062 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1063 - + 1064 - +[[package]] 1065 - +name = "safemem" 1066 - +version = "0.3.2" 1141 + +version = "1.0.5" 1067 1142 +source = "registry+https://github.com/rust-lang/crates.io-index" 1143 + +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 1068 1144 + 1069 1145 +[[package]] 1070 1146 +name = "scheduled-thread-pool" 1071 - +version = "0.2.2" 1147 + +version = "0.2.5" 1072 1148 +source = "registry+https://github.com/rust-lang/crates.io-index" 1149 + +checksum = "dc6f74fd1204073fa02d5d5d68bec8021be4c38690b61264b2fdb48083d0e7d7" 1073 1150 +dependencies = [ 1074 - + "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 1151 + + "parking_lot", 1075 1152 +] 1076 1153 + 1077 1154 +[[package]] 1078 1155 +name = "scopeguard" 1079 - +version = "1.0.0" 1156 + +version = "1.1.0" 1080 1157 +source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - + 1082 - +[[package]] 1083 - +name = "semver" 1084 - +version = "0.9.0" 1085 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1086 - +dependencies = [ 1087 - + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1088 - +] 1089 - + 1090 - +[[package]] 1091 - +name = "semver-parser" 1092 - +version = "0.7.0" 1093 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1158 + +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1094 1159 + 1095 1160 +[[package]] 1096 1161 +name = "serde" 1097 - +version = "1.0.99" 1162 + +version = "1.0.125" 1098 1163 +source = "registry+https://github.com/rust-lang/crates.io-index" 1164 + +checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171" 1099 1165 +dependencies = [ 1100 - + "serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 1166 + + "serde_derive", 1101 1167 +] 1102 1168 + 1103 1169 +[[package]] 1104 1170 +name = "serde_derive" 1105 - +version = "1.0.99" 1171 + +version = "1.0.125" 1106 1172 +source = "registry+https://github.com/rust-lang/crates.io-index" 1173 + +checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d" 1107 1174 +dependencies = [ 1108 - + "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1109 - + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1110 - + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1175 + + "proc-macro2", 1176 + + "quote 1.0.9", 1177 + + "syn 1.0.67", 1111 1178 +] 1112 1179 + 1113 1180 +[[package]] 1114 1181 +name = "serde_json" 1115 - +version = "1.0.40" 1182 + +version = "1.0.64" 1116 1183 +source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + +checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" 1117 1185 +dependencies = [ 1118 - + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", 1119 - + "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1120 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 1186 + + "itoa", 1187 + + "ryu", 1188 + + "serde", 1121 1189 +] 1122 1190 + 1123 1191 +[[package]] 1124 1192 +name = "smallvec" 1125 - +version = "0.6.10" 1193 + +version = "1.6.1" 1126 1194 +source = "registry+https://github.com/rust-lang/crates.io-index" 1195 + +checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" 1127 1196 + 1128 1197 +[[package]] 1129 1198 +name = "strsim" 1130 1199 +version = "0.8.0" 1131 1200 +source = "registry+https://github.com/rust-lang/crates.io-index" 1201 + +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1132 1202 + 1133 1203 +[[package]] 1134 1204 +name = "structopt" 1135 1205 +version = "0.1.7" 1136 1206 +source = "registry+https://github.com/rust-lang/crates.io-index" 1207 + +checksum = "783cb22d520b177a3772e520d04a3c7970d51c3b647ba80739f99be01131b54f" 1137 1208 +dependencies = [ 1138 - + "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", 1209 + + "clap", 1139 1210 +] 1140 1211 + 1141 1212 +[[package]] 1142 1213 +name = "structopt-derive" 1143 1214 +version = "0.1.6" 1144 1215 +source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + +checksum = "4da119c9a7a1eccb7c6de0c1eb3f7ed1c11138624d092b3687222aeed8f1375c" 1145 1217 +dependencies = [ 1146 - + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 1147 - + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", 1218 + + "quote 0.3.15", 1219 + + "syn 0.11.11", 1148 1220 +] 1149 1221 + 1150 1222 +[[package]] 1151 1223 +name = "syn" 1152 1224 +version = "0.11.11" 1153 1225 +source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + +checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 1154 1227 +dependencies = [ 1155 - + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 1156 - + "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", 1157 - + "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1228 + + "quote 0.3.15", 1229 + + "synom", 1230 + + "unicode-xid 0.0.4", 1158 1231 +] 1159 1232 + 1160 1233 +[[package]] 1161 1234 +name = "syn" 1162 - +version = "0.15.44" 1235 + +version = "1.0.67" 1163 1236 +source = "registry+https://github.com/rust-lang/crates.io-index" 1237 + +checksum = "6498a9efc342871f91cc2d0d694c674368b4ceb40f62b65a7a08c3792935e702" 1164 1238 +dependencies = [ 1165 - + "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", 1166 - + "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", 1167 - + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1168 - +] 1169 - + 1170 - +[[package]] 1171 - +name = "syn" 1172 - +version = "1.0.5" 1173 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1174 - +dependencies = [ 1175 - + "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1176 - + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1177 - + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1239 + + "proc-macro2", 1240 + + "quote 1.0.9", 1241 + + "unicode-xid 0.2.1", 1178 1242 +] 1179 1243 + 1180 1244 +[[package]] 1181 1245 +name = "synom" 1182 1246 +version = "0.11.3" 1183 1247 +source = "registry+https://github.com/rust-lang/crates.io-index" 1248 + +checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 1184 1249 +dependencies = [ 1185 - + "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 1250 + + "unicode-xid 0.0.4", 1186 1251 +] 1187 1252 + 1188 1253 +[[package]] 1189 1254 +name = "tempdir" 1190 1255 +version = "0.3.7" 1191 1256 +source = "registry+https://github.com/rust-lang/crates.io-index" 1257 + +checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" 1192 1258 +dependencies = [ 1193 - + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1194 - + "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 1259 + + "rand 0.4.6", 1260 + + "remove_dir_all", 1195 1261 +] 1196 1262 + 1197 1263 +[[package]] 1198 1264 +name = "tempfile" 1199 1265 +version = "2.2.0" 1200 1266 +source = "registry+https://github.com/rust-lang/crates.io-index" 1267 + +checksum = "11ce2fe9db64b842314052e2421ac61a73ce41b898dc8e3750398b219c5fc1e0" 1201 1268 +dependencies = [ 1202 - + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1203 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1204 - + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", 1205 - + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 1206 - + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 1269 + + "kernel32-sys", 1270 + + "libc", 1271 + + "rand 0.3.23", 1272 + + "redox_syscall 0.1.57", 1273 + + "winapi 0.2.8", 1207 1274 +] 1208 1275 + 1209 1276 +[[package]] 1210 1277 +name = "tempfile" 1211 - +version = "3.1.0" 1278 + +version = "3.2.0" 1212 1279 +source = "registry+https://github.com/rust-lang/crates.io-index" 1280 + +checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" 1213 1281 +dependencies = [ 1214 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1215 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1216 - + "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 1217 - + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 1218 - + "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", 1219 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1282 + + "cfg-if 1.0.0", 1283 + + "libc", 1284 + + "rand 0.8.3", 1285 + + "redox_syscall 0.2.5", 1286 + + "remove_dir_all", 1287 + + "winapi 0.3.9", 1220 1288 +] 1221 1289 + 1222 1290 +[[package]] 1223 1291 +name = "textwrap" 1224 1292 +version = "0.11.0" 1225 1293 +source = "registry+https://github.com/rust-lang/crates.io-index" 1294 + +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1226 1295 +dependencies = [ 1227 - + "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 1296 + + "unicode-width", 1228 1297 +] 1229 1298 + 1230 1299 +[[package]] 1231 1300 +name = "thread-id" 1232 1301 +version = "2.0.0" 1233 1302 +source = "registry+https://github.com/rust-lang/crates.io-index" 1303 + +checksum = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03" 1234 1304 +dependencies = [ 1235 - + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1236 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1305 + + "kernel32-sys", 1306 + + "libc", 1237 1307 +] 1238 1308 + 1239 1309 +[[package]] 1240 1310 +name = "thread_local" 1241 1311 +version = "0.2.7" 1242 1312 +source = "registry+https://github.com/rust-lang/crates.io-index" 1313 + +checksum = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5" 1243 1314 +dependencies = [ 1244 - + "thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1315 + + "thread-id", 1245 1316 +] 1246 1317 + 1247 1318 +[[package]] 1248 1319 +name = "thread_local" 1249 1320 +version = "0.3.6" 1250 1321 +source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + +checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" 1251 1323 +dependencies = [ 1252 - + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1324 + + "lazy_static", 1253 1325 +] 1254 1326 + 1255 1327 +[[package]] 1256 1328 +name = "time" 1257 - +version = "0.1.42" 1329 + +version = "0.1.43" 1330 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1331 + +checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" 1332 + +dependencies = [ 1333 + + "libc", 1334 + + "winapi 0.3.9", 1335 + +] 1336 + + 1337 + +[[package]] 1338 + +name = "tinyvec" 1339 + +version = "1.1.1" 1258 1340 +source = "registry+https://github.com/rust-lang/crates.io-index" 1341 + +checksum = "317cca572a0e89c3ce0ca1f1bdc9369547fe318a683418e42ac8f59d14701023" 1259 1342 +dependencies = [ 1260 - + "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", 1261 - + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", 1262 - + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", 1343 + + "tinyvec_macros", 1263 1344 +] 1264 1345 + 1265 1346 +[[package]] 1347 + +name = "tinyvec_macros" 1348 + +version = "0.1.0" 1349 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1350 + +checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1351 + + 1352 + +[[package]] 1266 1353 +name = "toml" 1267 1354 +version = "0.4.10" 1268 1355 +source = "registry+https://github.com/rust-lang/crates.io-index" 1356 + +checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" 1269 1357 +dependencies = [ 1270 - + "serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)", 1358 + + "serde", 1271 1359 +] 1272 1360 + 1273 1361 +[[package]] 1362 + +name = "typenum" 1363 + +version = "1.13.0" 1364 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + +checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06" 1366 + + 1367 + +[[package]] 1274 1368 +name = "ucd-util" 1275 - +version = "0.1.5" 1369 + +version = "0.1.8" 1276 1370 +source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + +checksum = "c85f514e095d348c279b1e5cd76795082cf15bd59b93207832abe0b1d8fed236" 1277 1372 + 1278 1373 +[[package]] 1279 1374 +name = "unicode-bidi" 1280 1375 +version = "0.3.4" 1281 1376 +source = "registry+https://github.com/rust-lang/crates.io-index" 1377 + +checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 1282 1378 +dependencies = [ 1283 - + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1379 + + "matches", 1284 1380 +] 1285 1381 + 1286 1382 +[[package]] 1287 1383 +name = "unicode-normalization" 1288 - +version = "0.1.8" 1384 + +version = "0.1.17" 1289 1385 +source = "registry+https://github.com/rust-lang/crates.io-index" 1386 + +checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef" 1290 1387 +dependencies = [ 1291 - + "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", 1388 + + "tinyvec", 1292 1389 +] 1293 1390 + 1294 1391 +[[package]] 1295 1392 +name = "unicode-width" 1296 - +version = "0.1.6" 1393 + +version = "0.1.8" 1297 1394 +source = "registry+https://github.com/rust-lang/crates.io-index" 1395 + +checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" 1298 1396 + 1299 1397 +[[package]] 1300 1398 +name = "unicode-xid" 1301 1399 +version = "0.0.4" 1302 1400 +source = "registry+https://github.com/rust-lang/crates.io-index" 1401 + +checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 1303 1402 + 1304 1403 +[[package]] 1305 1404 +name = "unicode-xid" 1306 - +version = "0.1.0" 1405 + +version = "0.2.1" 1307 1406 +source = "registry+https://github.com/rust-lang/crates.io-index" 1308 - + 1309 - +[[package]] 1310 - +name = "unicode-xid" 1311 - +version = "0.2.0" 1312 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1407 + +checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" 1313 1408 + 1314 1409 +[[package]] 1315 1410 +name = "url" 1316 1411 +version = "1.7.2" 1317 1412 +source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + +checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 1318 1414 +dependencies = [ 1319 - + "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", 1320 - + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 1321 - + "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1415 + + "idna", 1416 + + "matches", 1417 + + "percent-encoding", 1322 1418 +] 1323 1419 + 1324 1420 +[[package]] 1325 1421 +name = "utf8-ranges" 1326 1422 +version = "0.1.3" 1327 1423 +source = "registry+https://github.com/rust-lang/crates.io-index" 1424 + +checksum = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" 1328 1425 + 1329 1426 +[[package]] 1330 1427 +name = "utf8-ranges" 1331 1428 +version = "1.0.4" 1332 1429 +source = "registry+https://github.com/rust-lang/crates.io-index" 1430 + +checksum = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" 1333 1431 + 1334 1432 +[[package]] 1335 1433 +name = "uuid" 1336 1434 +version = "0.6.5" 1337 1435 +source = "registry+https://github.com/rust-lang/crates.io-index" 1436 + +checksum = "e1436e58182935dcd9ce0add9ea0b558e8a87befe01c1a301e6020aeb0876363" 1338 1437 +dependencies = [ 1339 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1438 + + "cfg-if 0.1.10", 1340 1439 +] 1341 1440 + 1342 1441 +[[package]] 1343 1442 +name = "uuid" 1344 - +version = "0.7.4" 1443 + +version = "0.8.2" 1345 1444 +source = "registry+https://github.com/rust-lang/crates.io-index" 1445 + +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 1346 1446 + 1347 1447 +[[package]] 1348 1448 +name = "vcpkg" 1349 - +version = "0.2.7" 1449 + +version = "0.2.11" 1350 1450 +source = "registry+https://github.com/rust-lang/crates.io-index" 1451 + +checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb" 1351 1452 + 1352 1453 +[[package]] 1353 1454 +name = "vec_map" 1354 - +version = "0.8.1" 1455 + +version = "0.8.2" 1355 1456 +source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1356 1458 + 1357 1459 +[[package]] 1358 1460 +name = "wasi" 1359 - +version = "0.5.0" 1461 + +version = "0.10.2+wasi-snapshot-preview1" 1360 1462 +source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - + 1362 - +[[package]] 1363 - +name = "wasm-bindgen" 1364 - +version = "0.2.50" 1365 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - +dependencies = [ 1367 - + "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1368 - + "wasm-bindgen-macro 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 1369 - +] 1370 - + 1371 - +[[package]] 1372 - +name = "wasm-bindgen-backend" 1373 - +version = "0.2.50" 1374 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1375 - +dependencies = [ 1376 - + "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 1377 - + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1378 - + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1379 - + "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1380 - + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1381 - + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1382 - + "wasm-bindgen-shared 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 1383 - +] 1384 - + 1385 - +[[package]] 1386 - +name = "wasm-bindgen-macro" 1387 - +version = "0.2.50" 1388 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - +dependencies = [ 1390 - + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1391 - + "wasm-bindgen-macro-support 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 1392 - +] 1393 - + 1394 - +[[package]] 1395 - +name = "wasm-bindgen-macro-support" 1396 - +version = "0.2.50" 1397 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1398 - +dependencies = [ 1399 - + "proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1400 - + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 1401 - + "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", 1402 - + "wasm-bindgen-backend 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 1403 - + "wasm-bindgen-shared 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", 1404 - +] 1405 - + 1406 - +[[package]] 1407 - +name = "wasm-bindgen-shared" 1408 - +version = "0.2.50" 1409 - +source = "registry+https://github.com/rust-lang/crates.io-index" 1463 + +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 1410 1464 + 1411 1465 +[[package]] 1412 1466 +name = "winapi" 1413 1467 +version = "0.2.8" 1414 1468 +source = "registry+https://github.com/rust-lang/crates.io-index" 1469 + +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 1415 1470 + 1416 1471 +[[package]] 1417 1472 +name = "winapi" 1418 - +version = "0.3.8" 1473 + +version = "0.3.9" 1419 1474 +source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1420 1476 +dependencies = [ 1421 - + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1422 - + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1477 + + "winapi-i686-pc-windows-gnu", 1478 + + "winapi-x86_64-pc-windows-gnu", 1423 1479 +] 1424 1480 + 1425 1481 +[[package]] 1426 1482 +name = "winapi-build" 1427 1483 +version = "0.1.1" 1428 1484 +source = "registry+https://github.com/rust-lang/crates.io-index" 1485 + +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 1429 1486 + 1430 1487 +[[package]] 1431 1488 +name = "winapi-i686-pc-windows-gnu" 1432 1489 +version = "0.4.0" 1433 1490 +source = "registry+https://github.com/rust-lang/crates.io-index" 1491 + +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1434 1492 + 1435 1493 +[[package]] 1436 1494 +name = "winapi-x86_64-pc-windows-gnu" 1437 1495 +version = "0.4.0" 1438 1496 +source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - + 1440 - +[metadata] 1441 - +"checksum aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66" 1442 - +"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" 1443 - +"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 1444 - +"checksum assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5" 1445 - +"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" 1446 - +"checksum autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875" 1447 - +"checksum backtrace 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" = "1371048253fa3bac6704bfd6bbfc922ee9bdcee8881330d40f308b81cc5adc55" 1448 - +"checksum backtrace-sys 0.1.31 (registry+https://github.com/rust-lang/crates.io-index)" = "82a830b4ef2d1124a711c71d263c5abdc710ef8e907bd508c88be475cebc422b" 1449 - +"checksum barrel 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f2016bcea86b2a1a807753dc2b6ba682fa24e14e50c7474f4b1a0330949c86fb" 1450 - +"checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" 1451 - +"checksum bcrypt 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4a6f09cde06fb2cd52a77123c36bfd1e8e60cf13a8bac6ba8f451dabff4644c8" 1452 - +"checksum bigdecimal 0.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "679e21a6734fdfc63378aea80c2bf31e6ac8ced21ed33e1ee37f8f7bf33c2056" 1453 - +"checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" 1454 - +"checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708" 1455 - +"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" 1456 - +"checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" 1457 - +"checksum cc 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "8dae9c4b8fedcae85592ba623c4fd08cfdab3e3b72d6df780c6ead964a69bfff" 1458 - +"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" 1459 - +"checksum chrono 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "27429a03ca54100bf6bdc726c09adc46a74187ac93f9ce96dc7aaa9594ebf707" 1460 - +"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" 1461 - +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 1462 - +"checksum derive-error-chain 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3c9ca9ade651388daad7c993f005d0d20c4f6fe78c1cdc93e95f161c6f5ede4a" 1463 - +"checksum diesel 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8d24935ba50c4a8dc375a0fd1f8a2ba6bdbdc4125713126a74b965d6a01a06d7" 1464 - +"checksum diesel_derives 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "62a27666098617d52c487a41f70de23d44a1dc1f3aa5877ceba2790fb1f1cab4" 1465 - +"checksum diesel_infer_schema 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7bea70d0798a3d8489e1d5493bb2111a1ab2da434191b9e9605f167c01a20680" 1466 - +"checksum diesel_migrations 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c" 1467 - +"checksum difference 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b3304d19798a8e067e48d8e69b2c37f0b5e9b4e462504ad9e27e9f3fce02bba8" 1468 - +"checksum dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d6f0e2bb24d163428d8031d3ebd2d2bd903ad933205a97d0f18c7c1aade380f3" 1469 - +"checksum env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "15abd780e45b3ea4f76b4e9a26ff4843258dd8a3eed2775a0e7368c2e7936c2f" 1470 - +"checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" 1471 - +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 1472 - +"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" 1473 - +"checksum getrandom 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "fc344b02d3868feb131e8b5fe2b9b0a1cc42942679af493061fc13b853243872" 1474 - +"checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 1475 - +"checksum infer_schema_internals 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "90e390df38a4e5cb4337a76db5b736f239e08f3ab7e8e42a34548617f0113f64" 1476 - +"checksum infer_schema_macros 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07b667b471ef99645989ceea451be288b6e669eeb8951d3f0fbd310677588ac6" 1477 - +"checksum ipnetwork 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1d1d8b990621b5b0806fac3dbf71d1833a4c0a9e25702d10bd8b2c629c7ae01c" 1478 - +"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" 1479 - +"checksum js-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "1efc4f2a556c58e79c5500912e221dd826bec64ff4aabd8ce71ccef6da02d7d4" 1480 - +"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1481 - +"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1482 - +"checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba" 1483 - +"checksum libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fd6457c70bbff456d9fe49deaba35ec47c3e598bf8d7950ff0575ceb7a8a6ad1" 1484 - +"checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" 1485 - +"checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" 1486 - +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 1487 - +"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" 1488 - +"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 1489 - +"checksum memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20" 1490 - +"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" 1491 - +"checksum migrations_internals 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8089920229070f914b9ce9b07ef60e175b2b9bc2d35c3edd8bf4433604e863b9" 1492 - +"checksum migrations_macros 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1664412abf7db2b8a6d58be42a38b099780cc542b5b350383b805d88932833fe" 1493 - +"checksum mysqlclient-sys 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7e9637d93448044078aaafea7419aed69d301b4a12bcc4aa0ae856eb169bef85" 1494 - +"checksum num-bigint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "57450397855d951f1a41305e54851b1a7b8f5d2e349543a02a2effe25459f718" 1495 - +"checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" 1496 - +"checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" 1497 - +"checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" 1498 - +"checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" 1499 - +"checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" 1500 - +"checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" 1501 - +"checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 1502 - +"checksum pkg-config 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c1d2cfa5a714db3b5f24f0915e74fcdf91d09d496ba61329705dda7774d2af" 1503 - +"checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b" 1504 - +"checksum pq-sys 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "6ac25eee5a0582f45a67e837e350d784e7003bd29a5f460796772061ca49ffda" 1505 - +"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 1506 - +"checksum proc-macro2 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "175a40b9cf564ce9bf050654633dbf339978706b8ead1a907bb970b63185dd95" 1507 - +"checksum quickcheck 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "02c2411d418cea2364325b18a205664f9ef8252e06b2e911db97c0b0d98b1406" 1508 - +"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 1509 - +"checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 1510 - +"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" 1511 - +"checksum r2d2 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bc42ce75d9f4447fb2a04bbe1ed5d18dd949104572850ec19b164e274919f81b" 1512 - +"checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" 1513 - +"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 1514 - +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 1515 - +"checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c" 1516 - +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 1517 - +"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" 1518 - +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 1519 - +"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 1520 - +"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1521 - +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 1522 - +"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1523 - +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 1524 - +"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 1525 - +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 1526 - +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 1527 - +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 1528 - +"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 1529 - +"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" 1530 - +"checksum regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)" = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f" 1531 - +"checksum regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384" 1532 - +"checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" 1533 - +"checksum regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7" 1534 - +"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" 1535 - +"checksum rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a" 1536 - +"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" 1537 - +"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" 1538 - +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1539 - +"checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" 1540 - +"checksum safemem 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d2b08423011dae9a5ca23f07cf57dac3857f5c885d352b76f6d95f4aea9434d0" 1541 - +"checksum scheduled-thread-pool 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bd07742e081ff6c077f5f6b283f12f32b9e7cc765b316160d66289b74546fbb3" 1542 - +"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" 1543 - +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 1544 - +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1545 - +"checksum serde 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f" 1546 - +"checksum serde_derive 1.0.99 (registry+https://github.com/rust-lang/crates.io-index)" = "cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425" 1547 - +"checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704" 1548 - +"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" 1549 - +"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1550 - +"checksum structopt 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "783cb22d520b177a3772e520d04a3c7970d51c3b647ba80739f99be01131b54f" 1551 - +"checksum structopt-derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4da119c9a7a1eccb7c6de0c1eb3f7ed1c11138624d092b3687222aeed8f1375c" 1552 - +"checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 1553 - +"checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 1554 - +"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" 1555 - +"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 1556 - +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" 1557 - +"checksum tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11ce2fe9db64b842314052e2421ac61a73ce41b898dc8e3750398b219c5fc1e0" 1558 - +"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" 1559 - +"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1560 - +"checksum thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03" 1561 - +"checksum thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5" 1562 - +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" 1563 - +"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" 1564 - +"checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" 1565 - +"checksum ucd-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa9b3b49edd3468c0e6565d85783f51af95212b6fa3986a5500954f00b460874" 1566 - +"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" 1567 - +"checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" 1568 - +"checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" 1569 - +"checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 1570 - +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 1571 - +"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" 1572 - +"checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 1573 - +"checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" 1574 - +"checksum utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" 1575 - +"checksum uuid 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e1436e58182935dcd9ce0add9ea0b558e8a87befe01c1a301e6020aeb0876363" 1576 - +"checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" 1577 - +"checksum vcpkg 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95" 1578 - +"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" 1579 - +"checksum wasi 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fd5442abcac6525a045cc8c795aedb60da7a2e5e89c7bf18a0d5357849bb23c7" 1580 - +"checksum wasm-bindgen 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "dcddca308b16cd93c2b67b126c688e5467e4ef2e28200dc7dfe4ae284f2faefc" 1581 - +"checksum wasm-bindgen-backend 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "f805d9328b5fc7e5c6399960fd1889271b9b58ae17bdb2417472156cc9fafdd0" 1582 - +"checksum wasm-bindgen-macro 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "3ff88201a482abfc63921621f6cb18eb1efd74f136b05e5841e7f8ca434539e9" 1583 - +"checksum wasm-bindgen-macro-support 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "6a433d89ecdb9f77d46fcf00c8cf9f3467b7de9954d8710c175f61e2e245bb0e" 1584 - +"checksum wasm-bindgen-shared 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "d41fc1bc3570cdf8d108c15e014045fd45a95bb5eb36605f96a90461fc34027d" 1585 - +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 1586 - +"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" 1587 - +"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 1588 - +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1589 - +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1497 + +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+20 -9
pkgs/development/tools/diesel-cli/default.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "diesel-cli"; 19 - version = "1.4.0"; 19 + version = "1.4.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "diesel-rs"; 23 23 repo = "diesel"; 24 - rev = "v${version}"; 25 - sha256 = "0wp4hvpl9cf8hw1jyz3z476k5blrh6srfpv36dw10bj126rz9pvb"; 24 + # diesel and diesel_cli are independently versioned. diesel_cli 25 + # 1.4.1 first became available in diesel 1.4.5, but we can use 26 + # a newer diesel tag. 27 + rev = "v1.4.6"; 28 + sha256 = "0c8a2f250mllzpr20j7j0msbf2csjf9dj8g7j6cl04ifdg7gwb9z"; 26 29 }; 27 30 28 31 patches = [ 29 - # Allow warnings to fix many instances of `error: trait objects without an explicit `dyn` are deprecated` 30 - # 31 - # Remove this after https://github.com/diesel-rs/diesel/commit/9004d1c3fa12aaee84986bd3d893002491373f8c 32 - # is in a release. 33 - ./allow-warnings.patch 32 + # Fixes: 33 + # Compiling diesel v1.4.6 (/build/source/diesel) 34 + # error: this `#[deprecated]` annotation has no effect 35 + # --> diesel/src/query_builder/insert_statement/mod.rs:205:1 36 + # | 37 + # 205 | / #[deprecated( 38 + # 206 | | since = "1.2.0", 39 + # 207 | | note = "Use `<&'a [U] as Insertable<T>>::Values` instead" 40 + # 208 | | )] 41 + # | |__^ help: remove the unnecessary deprecation attribute 42 + # | 43 + # = note: `#[deny(useless_deprecated)]` on by default 44 + ./fix-deprecated.patch 34 45 ]; 35 46 36 47 cargoBuildFlags = [ "--no-default-features" "--features" "${lib.concatStringsSep "," features}" ]; 37 48 cargoPatches = [ ./cargo-lock.patch ]; 38 - cargoSha256 = "1vbb7r0dpmq8363i040bkhf279pz51c59kcq9v5qr34hs49ish8g"; 49 + cargoSha256 = "1vkwp861vm20agj0lkhnnxgg4vwg4d5clvvyzxrmm4y4yw46cdl2"; 39 50 40 51 nativeBuildInputs = [ pkg-config ]; 41 52
+10
pkgs/development/tools/diesel-cli/fix-deprecated.patch
··· 1 + diff --git a/diesel/src/query_builder/insert_statement/mod.rs b/diesel/src/query_builder/insert_statement/mod.rs 2 + index b6bb34df9d..7486eb7a59 100644 3 + --- a/diesel/src/query_builder/insert_statement/mod.rs 4 + +++ b/diesel/src/query_builder/insert_statement/mod.rs 5 + @@ -1,3 +1,5 @@ 6 + +#![allow(useless_deprecated)] 7 + + 8 + mod column_list; 9 + mod insert_from_select; 10 +
+1 -1
pkgs/development/tools/jpexs/default.nix
··· 52 52 homepage = "https://github.com/jindrapetrik/jpexs-decompiler"; 53 53 license = licenses.gpl3; 54 54 platforms = jdk8.meta.platforms; 55 - maintainers = with maintainers; [ samuelgrf ]; 55 + maintainers = [ ]; 56 56 }; 57 57 }
+3 -3
pkgs/development/tools/misc/hydra/default.nix
··· 2 2 3 3 { 4 4 hydra-unstable = callPackage ./common.nix { 5 - version = "2021-03-10"; 5 + version = "2021-03-29"; 6 6 src = fetchFromGitHub { 7 7 owner = "NixOS"; 8 8 repo = "hydra"; 9 - rev = "930f05c38eeac63ad6c3e3250de2667e2df2e96e"; 10 - sha256 = "06s2lg119p96i1j4rdbg3z097n25bgvq8ljdn4vcwcw3yz0lnswm"; 9 + rev = "9bb04ed97af047968196bad1728f927f7a6d905f"; 10 + sha256 = "sha256-gN/zNI2hGDMnYUjeGnU7SAuXP4KCmNqG+AYOVfINaQE="; 11 11 }; 12 12 nix = nixFlakes; 13 13
+3 -3
pkgs/development/tools/rust/cargo-make/default.nix
··· 4 4 5 5 rustPlatform.buildRustPackage rec { 6 6 pname = "cargo-make"; 7 - version = "0.32.14"; 7 + version = "0.32.15"; 8 8 9 9 src = fetchCrate { 10 10 inherit pname version; 11 - sha256 = "sha256-Q7gEjtStb4WUSyJv9KSu7Q61tH0O2qnNn3eyH77pI9g="; 11 + sha256 = "sha256-BvZe2+PwradByyDeqhs3u42tbLrR5UMyUhJVSlX/U+w="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; ··· 16 16 buildInputs = [ openssl ] 17 17 ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 18 18 19 - cargoSha256 = "sha256-DB4ywbbHE9wfvywvYnjD9OzDikmUR34RVdPOQYrst74="; 19 + cargoSha256 = "sha256-eA1cyffQAmSN3jQo5k8H6eYrS23qUxsiAqWzwrYmh3o="; 20 20 21 21 # Some tests fail because they need network access. 22 22 # However, Travis ensures a proper build.
+1 -1
pkgs/misc/emulators/pcsx2/default.nix
··· 101 101 PC, with many additional features and benefits. 102 102 ''; 103 103 homepage = "https://pcsx2.net"; 104 - maintainers = with maintainers; [ hrdinka samuelgrf govanify ]; 104 + maintainers = with maintainers; [ hrdinka govanify ]; 105 105 106 106 # PCSX2's source code is released under LGPLv3+. It However ships 107 107 # additional data files and code that are licensed differently.
+1 -1
pkgs/os-specific/linux/rtl8821ce/default.nix
··· 33 33 homepage = "https://github.com/tomaspinho/rtl8821ce"; 34 34 license = licenses.gpl2Only; 35 35 platforms = platforms.linux; 36 - maintainers = with maintainers; [ hhm samuelgrf ]; 36 + maintainers = with maintainers; [ hhm ]; 37 37 }; 38 38 }
+3 -3
pkgs/servers/gemini/agate/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "agate"; 5 - version = "3.0.0"; 5 + version = "3.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mbrubeck"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-2gtiULRnur8OPjX1/Xp1LTiL8owXt/sQgSGjoS7F9NU="; 11 + sha256 = "sha256-ODD5XwLYVUJOHQCETVUqMUojL4Y8eWJ/xhmfzV9Cp3k="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-MrUmqawXl3kQKFgJ9bWRHIgvit/fQCLMqoL6kXEF9+k="; 14 + cargoSha256 = "sha256-PJOlXFx+MYfq7daaOEZ5wPuWD7gAr8gc/5AJG2SYTq4="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 17
+2 -2
pkgs/servers/http/tengine/default.nix
··· 10 10 with lib; 11 11 12 12 stdenv.mkDerivation rec { 13 - version = "2.3.2"; 13 + version = "2.3.3"; 14 14 pname = "tengine"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "alibaba"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "04xfnbc0qlk8vi6bb8sl38nxnx9naxh550xsgrb4hql6jdi0wv7l"; 20 + sha256 = "0p43qsldwhx4zfwp585x8kps0akrf7b0gxdgf0sh0yqcp7l28gmx"; 21 21 }; 22 22 23 23 buildInputs =
+3 -3
pkgs/servers/miniflux/default.nix
··· 2 2 3 3 let 4 4 pname = "miniflux"; 5 - version = "2.0.28"; 5 + version = "2.0.29"; 6 6 7 7 in buildGoModule { 8 8 inherit pname version; ··· 11 11 owner = pname; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "sha256-XvQhLqGP1TliSrIm55dP04yGoOMnHmcI2gH00SYVLVY="; 14 + sha256 = "sha256-8FfI9TPtIoQ/D5AdKRy7fq/eGZ6ha8z0tqBnWcziMTA="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-NKpMLjro06gWN2Xu5M+xM4hVNvlOZ12F3Jv+bL5E0I8="; 17 + vendorSha256 = "sha256-y7w+SHy0yPws365PKJeRStZS3Y5vjyPWHK3w84VvJsI="; 18 18 19 19 nativeBuildInputs = [ installShellFiles ]; 20 20
+3 -3
pkgs/servers/minio/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "minio"; 5 - version = "2021-03-17T02-33-02Z"; 5 + version = "2021-03-26T00-00-41Z"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "minio"; 9 9 repo = "minio"; 10 10 rev = "RELEASE.${version}"; 11 - sha256 = "sha256-nCCU9hSt8VaLpZmqZFl3GczqDJXEQJ4rFn/9B0gV/5g="; 11 + sha256 = "sha256-WH7gAO8ghwMhLU/ioHrZUgIk1h6yeUzM+xg1GnkFDHM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-tMt6XRj1dd+AHqWA6WGm5GBFGx+IsP1ijYCj8cmUXy0="; 14 + vendorSha256 = "sha256-VeYc+UtocpeNSV+0MocZj/83X/SMMv5PX2cPIPBV/sk="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/servers/x11/xorg/overrides.nix
··· 4 4 freetype, tradcpp, fontconfig, meson, ninja, ed, fontforge, 5 5 libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm, 6 6 mesa, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook, 7 - mcpp, epoxy, openssl, pkg-config, llvm_6, libxslt, 7 + mcpp, epoxy, openssl, pkg-config, llvm, libxslt, 8 8 ApplicationServices, Carbon, Cocoa, Xplugin 9 9 }: 10 10 ··· 433 433 }); 434 434 435 435 xf86videovmware = super.xf86videovmware.overrideAttrs (attrs: { 436 - buildInputs = attrs.buildInputs ++ [ mesa llvm_6 ]; # for libxatracker 436 + buildInputs = attrs.buildInputs ++ [ mesa llvm ]; # for libxatracker 437 437 meta = attrs.meta // { 438 438 platforms = ["i686-linux" "x86_64-linux"]; 439 439 };
+3 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 5 5 , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "2021-03-15"; 8 + version = "2021-03-28"; 9 9 pname = "oh-my-zsh"; 10 - rev = "95a06f3927a286db257dc99791b02caba757fe33"; 10 + rev = "69507c9518f7c7889d8f47ec8e67bfda02405817"; 11 11 12 12 src = fetchFromGitHub { 13 13 inherit rev; 14 14 owner = "ohmyzsh"; 15 15 repo = "ohmyzsh"; 16 - sha256 = "1w0g68rvw17jg085qj1g264dsii25gph6vpp6gpn8wby0972h7n0"; 16 + sha256 = "0p5jjynwnf6yh2n0z46avavy7kb7dlqd145hd1qakig7csaclphd"; 17 17 }; 18 18 19 19 installPhase = ''
+2
pkgs/tools/backup/borg/default.nix
··· 66 66 inherit (nixosTests) borgbackup; 67 67 }; 68 68 69 + outputs = [ "out" "doc" ]; 70 + 69 71 meta = with lib; { 70 72 description = "Deduplicating archiver with compression and encryption"; 71 73 homepage = "https://www.borgbackup.org";
+2 -2
pkgs/tools/misc/tfk8s/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tfk8s"; 5 - version = "0.1.2"; 5 + version = "0.1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jrhouston"; 9 9 repo = "tfk8s"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gszvWetreafIP9I8hi9zz24TOTSsGzDsm/vXJS6n4Q4="; 11 + sha256 = "sha256-3iI5gYfpkxfVylBgniaMeQ73uR8dAjVrdg/eBLRxUR4"; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-wS5diDQFkt8IAp13d8Yeh8ihLvKWdR0Mbw0fMZpqqKE=";
+2
pkgs/tools/misc/tmux/default.nix
··· 49 49 "--localstatedir=/var" 50 50 ]; 51 51 52 + enableParallelBuilding = true; 53 + 52 54 postInstall = '' 53 55 mkdir -p $out/share/bash-completion/completions 54 56 cp -v ${bashCompletion}/completions/tmux $out/share/bash-completion/completions/tmux
+3 -3
pkgs/tools/security/cosign/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cosign"; 5 - version = "0.1.0"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0rgq29vi0h378j0bqs53gjgp246rqxfpk6rwskzrmawgry0zr8pk"; 11 + sha256 = "1zwb2q62ngb2zh1hasvq7r7pmrjlpgfhs5raibbhkxbk5kayvmii"; 12 12 }; 13 13 14 - vendorSha256 = "0pcp3wdvwq06ajdfbgadyq0ipfj65n276hj88p5v6wqfn821ahd6"; 14 + vendorSha256 = "0nwbjaps4z5fhiknbj9pybxb6kgwb1vf2qhy0mzpycprf04q6g0v"; 15 15 16 16 subPackages = [ "cmd/cosign" ]; 17 17
+4 -3
pkgs/tools/security/nuclei/default.nix
··· 16 16 17 17 vendorSha256 = "sha256-qmuua7HXnwuy24CSqHKALqNDmXBvSIXYTVu3kaGVoeU="; 18 18 19 - preBuild = '' 20 - mv v2/* . 21 - ''; 19 + modRoot = "./v2"; 20 + subPackages = [ 21 + "cmd/nuclei/" 22 + ]; 22 23 23 24 # Test files are not part of the release tarball 24 25 doCheck = false;
+28
pkgs/tools/security/zdns/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "zdns"; 8 + version = "20210327-${lib.strings.substring 0 7 rev}"; 9 + rev = "8c53210f0b9a4fe16c70a5d854e9413c3d0c1ba2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "zmap"; 13 + repo = pname; 14 + inherit rev; 15 + sha256 = "0pdfz1489ynpw72flalnlkwybp683v826icjx7ljys45xvagdvck"; 16 + }; 17 + 18 + vendorSha256 = "0b8h5n01xmhar1a09svb35ah48k9zdy1mn5balq0h2l0jxr05z78"; 19 + 20 + subPackages = [ "zdns" ]; 21 + 22 + meta = with lib; { 23 + description = "CLI DNS lookup tool"; 24 + homepage = "https://github.com/zmap/zdns"; 25 + license = with licenses; [ asl20 ]; 26 + maintainers = with maintainers; [ fab ]; 27 + }; 28 + }
+22
pkgs/tools/text/frangipanni/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "frangipanni"; 5 + version = "0.4.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "birchb1024"; 9 + repo = "frangipanni"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-NgRDXrAsfnj1cqO+2AN8nSuxS9KGNIl+pJkCADmDOqY="; 12 + }; 13 + 14 + vendorSha256 = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8="; 15 + 16 + meta = with lib; { 17 + description = "Convert lines of text into a tree structure"; 18 + homepage = "https://github.com/birchb1024/frangipanni"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ siraben ]; 21 + }; 22 + }
+6
pkgs/top-level/all-packages.nix
··· 2399 2399 2400 2400 firestarter = callPackage ../applications/misc/firestarter { }; 2401 2401 2402 + frangipanni = callPackage ../tools/text/frangipanni { }; 2403 + 2402 2404 fselect = callPackage ../tools/misc/fselect { }; 2403 2405 2404 2406 fsmon = callPackage ../tools/misc/fsmon { }; ··· 10736 10738 knightos-scas = callPackage ../development/tools/knightos/scas { }; 10737 10739 10738 10740 knightos-z80e = callPackage ../development/tools/knightos/z80e { }; 10741 + 10742 + koka = haskellPackages.callPackage ../development/compilers/koka { }; 10739 10743 10740 10744 kotlin = callPackage ../development/compilers/kotlin { }; 10741 10745 ··· 26749 26753 }; 26750 26754 26751 26755 zathura = callPackage ../applications/misc/zathura { }; 26756 + 26757 + zdns = callPackage ../tools/security/zdns { }; 26752 26758 26753 26759 zerobin = callPackage ../applications/networking/zerobin { }; 26754 26760
+8 -3
pkgs/top-level/perl-packages.nix
··· 15119 15119 url = "mirror://cpan/authors/id/D/DO/DOUGW/Net-CIDR-Lite-0.21.tar.gz"; 15120 15120 sha256 = "cfa125e8a2aef9259bc3a44e07cbdfb7894b64d22e7c0cee92aee2f5c7915093"; 15121 15121 }; 15122 + patches = [ 15123 + # Fix for security issue: prevent leading zeroes in ipv4 octets 15124 + # https://blog.urth.org/2021/03/29/security-issues-in-perl-ip-address-distros/ 15125 + ../development/perl-modules/Net-CIDR-Lite-prevent-leading-zeroes-ipv4.patch 15126 + ]; 15122 15127 meta = { 15123 15128 description = "Perl extension for merging IPv4 or IPv6 CIDR addresses"; 15124 15129 }; ··· 15424 15429 15425 15430 NetNetmask = buildPerlPackage { 15426 15431 pname = "Net-Netmask"; 15427 - version = "1.9104"; 15432 + version = "2.0001"; 15428 15433 src = fetchurl { 15429 - url = "mirror://cpan/authors/id/J/JM/JMASLAK/Net-Netmask-1.9104.tar.gz"; 15430 - sha256 = "17li2svymz49az35xl6galp4b9qcnb985gzklhikkvkn9da6rz3y"; 15434 + url = "mirror://cpan/authors/id/J/JM/JMASLAK/Net-Netmask-2.0001.tar.gz"; 15435 + sha256 = "0waiix46wv93a5zzjjv7ypdnfdf7lizwrhx12128rcvzcvw6wd8p"; 15431 15436 }; 15432 15437 buildInputs = [ Test2Suite TestUseAllModules ]; 15433 15438 meta = {