diff --git a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
index 5d2a7189a2d2..eacdb902da14 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
@@ -687,6 +687,15 @@
yambar-wayland if you are on wayland.
+
+
+ The services.minio module gained an
+ additional option consoleAddress, that
+ configures the address and port the web UI is listening, it
+ defaults to :9001. To be able to access the
+ web UI this port needs to be opened in the firewall.
+
+
diff --git a/nixos/doc/manual/release-notes/rl-2111.section.md b/nixos/doc/manual/release-notes/rl-2111.section.md
index 99bc47e4a12e..3a08df5b341d 100644
--- a/nixos/doc/manual/release-notes/rl-2111.section.md
+++ b/nixos/doc/manual/release-notes/rl-2111.section.md
@@ -173,6 +173,10 @@ pt-services.clipcat.enable).
- The `yambar` package has been split into `yambar` and `yambar-wayland`, corresponding to the xorg and wayland backend respectively. Please switch to `yambar-wayland` if you are on wayland.
+- The `services.minio` module gained an additional option `consoleAddress`, that
+configures the address and port the web UI is listening, it defaults to `:9001`.
+To be able to access the web UI this port needs to be opened in the firewall.
+
## Other Notable Changes {#sec-release-21.11-notable-changes}
- The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
diff --git a/nixos/modules/services/web-servers/minio.nix b/nixos/modules/services/web-servers/minio.nix
index d075449012f7..6b10afad4991 100644
--- a/nixos/modules/services/web-servers/minio.nix
+++ b/nixos/modules/services/web-servers/minio.nix
@@ -19,7 +19,13 @@ in
listenAddress = mkOption {
default = ":9000";
type = types.str;
- description = "Listen on a specific IP address and port.";
+ description = "IP address and port of the server.";
+ };
+
+ consoleAddress = mkOption {
+ default = ":9001";
+ type = types.str;
+ description = "IP address and port of the web UI (console).";
};
dataDir = mkOption {
@@ -99,7 +105,7 @@ in
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
- ExecStart = "${cfg.package}/bin/minio server --json --address ${cfg.listenAddress} --config-dir=${cfg.configDir} ${toString cfg.dataDir}";
+ ExecStart = "${cfg.package}/bin/minio server --json --address ${cfg.listenAddress} --console-address ${cfg.consoleAddress} --config-dir=${cfg.configDir} ${toString cfg.dataDir}";
Type = "simple";
User = "minio";
Group = "minio";
diff --git a/pkgs/applications/misc/bklk/default.nix b/pkgs/applications/misc/bklk/default.nix
new file mode 100644
index 000000000000..86b596d395ec
--- /dev/null
+++ b/pkgs/applications/misc/bklk/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, fetchFromGitHub, ncurses }:
+
+stdenv.mkDerivation rec {
+ pname = "bklk";
+ version = "unstable-2020-12-29";
+
+ src = fetchFromGitHub {
+ owner = "Ruunyox";
+ repo = pname;
+ rev = "26f3420aa5726e152a745278ddb98dc99c0a935e";
+ sha256 = "sha256-R3H6tv6fzQG41Y2rui0K8fdQ/+Ywnc5hqTPFjktrhF8=";
+ };
+
+ buildInputs = [ ncurses ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp bklk $out/bin
+ '';
+
+ meta = with lib; {
+ description = "Ncurses Binary Clock";
+ longDescription = "bklk is a simple binary clock for your terminal.";
+ homepage = "https://github.com/Ruunyox/bklk";
+ license = licenses.mit;
+ maintainers = with maintainers; [ j0hax ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/networking/cloudflared/default.nix b/pkgs/applications/networking/cloudflared/default.nix
index 61e2063f2cb2..c036890aad9a 100644
--- a/pkgs/applications/networking/cloudflared/default.nix
+++ b/pkgs/applications/networking/cloudflared/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "cloudflared";
- version = "2021.8.1";
+ version = "2021.8.2";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = version;
- sha256 = "sha256-92Uq7hSqfsiES6dSCw4cotfLJ8TLRRO6QPkwQ8iv124=";
+ sha256 = "sha256-5PMKVWBOWkUhmCSttbhu7UdS3dLqr0epJpQL1jfS31c=";
};
vendorSha256 = null;
diff --git a/pkgs/development/node-packages/default.nix b/pkgs/development/node-packages/default.nix
index fe1bdd6754cc..49a569debaa7 100644
--- a/pkgs/development/node-packages/default.nix
+++ b/pkgs/development/node-packages/default.nix
@@ -198,6 +198,16 @@ let
'';
};
+ node-gyp = super.node-gyp.override {
+ nativeBuildInputs = [ pkgs.makeWrapper ];
+ # Teach node-gyp to use nodejs headers locally rather that download them form https://nodejs.org.
+ # This is important when build nodejs packages in sandbox.
+ postInstall = ''
+ wrapProgram "$out/bin/node-gyp" \
+ --set npm_config_nodedir ${nodejs}
+ '';
+ };
+
node-inspector = super.node-inspector.override {
buildInputs = [ self.node-pre-gyp ];
meta.broken = since "10";
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index 95f6cb7ecf8f..2d97ed7c4ed2 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -26,6 +26,7 @@
, "cdk8s-cli"
, "cdktf-cli"
, "clean-css-cli"
+, "clipboard-cli"
, "clubhouse-cli"
, "coc-clangd"
, "coc-cmake"
@@ -276,6 +277,7 @@
, "vscode-html-languageserver-bin"
, "vscode-json-languageserver"
, "vscode-json-languageserver-bin"
+, "vscode-langservers-extracted"
, { "vscode-lldb-build-deps": "../../misc/vscode-extensions/vscode-lldb/build-deps" }
, "vue-cli"
, "vue-language-server"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 5bf9d0be0546..4c0ec21eba84 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -3136,22 +3136,22 @@ let
sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==";
};
};
- "@joplin/fork-htmlparser2-4.1.30" = {
+ "@joplin/fork-htmlparser2-4.1.31" = {
name = "_at_joplin_slash_fork-htmlparser2";
packageName = "@joplin/fork-htmlparser2";
- version = "4.1.30";
+ version = "4.1.31";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.30.tgz";
- sha512 = "zcuFx0Jxd+nmV+YRT2tjVjU6b1yB/pDxPE/PzBaiXzwLCpJrQKL7hUMsJiqfyyXbXwQkFRqu3pKVsBkuZjM0pw==";
+ url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.31.tgz";
+ sha512 = "5v7vYawEQP+0wHjT3sXi5LgRiWWImbnNdsTf6mdKg+IeX9KCjYnc7aZRGdC+yQlEQbcIRpu8bKUQnh/WoaMG7g==";
};
};
- "@joplin/fork-sax-1.2.34" = {
+ "@joplin/fork-sax-1.2.35" = {
name = "_at_joplin_slash_fork-sax";
packageName = "@joplin/fork-sax";
- version = "1.2.34";
+ version = "1.2.35";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.34.tgz";
- sha512 = "H+uKVcUvvRzzBkydbkTDF1w6SeTYzLSnAeUHCjEFG8zEZ2HlOxNt+418Iy74U00tbl2m4/uKPoXhjNz8wQhFGQ==";
+ url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.35.tgz";
+ sha512 = "+0K4PbooQweodhTIaehh9QdC9g6SH7IpFzeNsv3Eh3T7LT985XJ1mZfXEjRI5pfWrRj9ibvxHcgvMzEQuXPM3g==";
};
};
"@joplin/lib-2.1.1" = {
@@ -3181,22 +3181,22 @@ let
sha512 = "XxmquKGZxlrjUorx924ogAACc39p22pzWp06DJX/eElU2kLZ/s+RC0EXAFj503EuDj/dd2voV+Tciz0wfCPc0Q==";
};
};
- "@joplin/turndown-4.0.52" = {
+ "@joplin/turndown-4.0.53" = {
name = "_at_joplin_slash_turndown";
packageName = "@joplin/turndown";
- version = "4.0.52";
+ version = "4.0.53";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.52.tgz";
- sha512 = "e8F+si5xTer0OQlpSGKh2rSu7YnSCpkvh3n7N85x61Z2WvhV96RfXAhNvRahGdzF9WNVwJgudirapHDJ+zeO3A==";
+ url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.53.tgz";
+ sha512 = "uYeROpicdZKWq2WLOuKTAsG5wEZu8cy/kjWRBIkuyql575NRzyONh9e4UtT6tiWmPWtuVNHmaBJJyIzAwstfLg==";
};
};
- "@joplin/turndown-plugin-gfm-1.0.34" = {
+ "@joplin/turndown-plugin-gfm-1.0.35" = {
name = "_at_joplin_slash_turndown-plugin-gfm";
packageName = "@joplin/turndown-plugin-gfm";
- version = "1.0.34";
+ version = "1.0.35";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.34.tgz";
- sha512 = "0UZDcrMS/rViZZ50UPUpNy5qG8pWatyAWVSxZiKNmQ1+SJIwb6pzukGH25s3SxDmvW8lr7bQkBOn11hDxNFrug==";
+ url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.35.tgz";
+ sha512 = "jMc8Cjq3K2szQGsi39yQpxMuR3JCCkIFWjQxKRlOW7JvbaTeMPuGqpEafuNqtn7qU6DoYF72p/glKmU8p2t3Dg==";
};
};
"@josephg/resolvable-1.0.1" = {
@@ -4081,13 +4081,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-17.9.2" = {
+ "@netlify/build-17.10.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "17.9.2";
+ version = "17.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-17.9.2.tgz";
- sha512 = "RbaHBWkbrwiXdLf73gjcjJAn7z3zsRqhXqaF2K9ycru7K7XIVG/BGEKztSD8IoAYR2DuY9KqmrlbPuiQg0IFFg==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-17.10.0.tgz";
+ sha512 = "3L0ps4b5u34Sj03a7tJMwGkuO+Tg2eXOFVdToINV3StgjB9lTU7fOEm0jCJOw9E9QFAVpemW0tRadofYY/Hzjg==";
};
};
"@netlify/cache-utils-2.0.0" = {
@@ -4315,6 +4315,15 @@ let
sha512 = "DkQemRkLTpAMvwwENRCQ9h5qJDaLrjEa+PpfEh0I64om4hTXVHcTd5+YMHW0wPr4OWABA7JAWlsFOVsZADFxfQ==";
};
};
+ "@netlify/zip-it-and-ship-it-4.17.0" = {
+ name = "_at_netlify_slash_zip-it-and-ship-it";
+ packageName = "@netlify/zip-it-and-ship-it";
+ version = "4.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.17.0.tgz";
+ sha512 = "xcumwEFH7m/cw/XEcmv3OB8U94J5zWVsMhjROdfUdT+BE5QU5InEggYS6HnDoTOMgGpVM+mY1vgBQzdgaC+NZw==";
+ };
+ };
"@node-red/editor-api-2.0.5" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
@@ -4540,13 +4549,13 @@ let
sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA==";
};
};
- "@oclif/core-0.5.28" = {
+ "@oclif/core-0.5.29" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
- version = "0.5.28";
+ version = "0.5.29";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.28.tgz";
- sha512 = "t9jaGLRP5yJKwiMIzKmzYyP1eRxltWAY02lduUDp3d6cE+Dt2pcIGd7KtsOImKUWv+ClLI7O/CVHnMkOfNJvYA==";
+ url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.29.tgz";
+ sha512 = "v5MMxeTgEKbVcEl7D3jsTVL8Wy3lLTDj0KHX7cOmI751yfjdAOqy9frHQ6IXssxubDkBW6sXzbYN9Bw12zsBqg==";
};
};
"@oclif/errors-1.3.5" = {
@@ -4675,13 +4684,22 @@ let
sha512 = "SWTdXsVheRmlotWNjKzPOb6Js6tjSqA2a8z9+glDJng0Aqjzti8MEWOtuT8ZSu6wHnci7LZNuarE87+WJBG4vg==";
};
};
- "@octokit/openapi-types-9.4.0" = {
+ "@octokit/openapi-types-9.5.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "9.4.0";
+ version = "9.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.4.0.tgz";
- sha512 = "rKRkXikOJgDNImPl49IJuECLVXjj+t4qOXHhl8SBjMQCGGp1w4m5Ud/0kfdUx+zCpTvBN8vaOUDF4nnboZoOtQ==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.5.0.tgz";
+ sha512 = "AEq5uAZJCnrOuNUg91yDjkE3mXyMq2lSiJpOpDyzy1e2mT1CSpsu8Yf7DuabD7TmQi0UEC8o0YrDjeXgNoI54Q==";
+ };
+ };
+ "@octokit/openapi-types-9.6.0" = {
+ name = "_at_octokit_slash_openapi-types";
+ packageName = "@octokit/openapi-types";
+ version = "9.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.6.0.tgz";
+ sha512 = "L+8x7DpcNtHkMbTxxCxg3cozvHUNP46rOIzFwoMs0piWwQzAGNXqlIQO2GLvnKTWLUh99DkY+UyHVrP4jXlowg==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -4693,13 +4711,13 @@ let
sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
};
};
- "@octokit/plugin-paginate-rest-2.15.0" = {
+ "@octokit/plugin-paginate-rest-2.15.1" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
- version = "2.15.0";
+ version = "2.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.15.0.tgz";
- sha512 = "/vjcb0w6ggVRtsb8OJBcRR9oEm+fpdo8RJk45khaWw/W0c8rlB2TLCLyZt/knmC17NkX7T9XdyQeEY7OHLSV1g==";
+ url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.15.1.tgz";
+ sha512 = "47r52KkhQDkmvUKZqXzA1lKvcyJEfYh3TKAIe5+EzMeyDM3d+/s5v11i2gTk8/n6No6DPi3k5Ind6wtDbo/AEg==";
};
};
"@octokit/plugin-request-log-1.0.4" = {
@@ -4747,13 +4765,13 @@ let
sha512 = "VrmrE8gjpuOoDAGjrQq2j9ZhOE6LxaqxaQg0yMrrEnnQZy2ZcAnr5qbVfKsMF0up/48PRV/VFS/2GSMhA7nTdA==";
};
};
- "@octokit/types-6.24.0" = {
+ "@octokit/types-6.25.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "6.24.0";
+ version = "6.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.24.0.tgz";
- sha512 = "MfEimJeQ8AV1T2nI5kOfHqsqPHaAnG0Dw3MVoHSEsEq6iLKx2N91o+k2uAgXhPYeSE76LVBqjgTShnFFgNwe0A==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.25.0.tgz";
+ sha512 = "bNvyQKfngvAd/08COlYIN54nRgxskmejgywodizQNyiKoXmWRAjKup2/LYwm+T9V0gsKH6tuld1gM0PzmOiB4Q==";
};
};
"@open-policy-agent/opa-wasm-1.2.0" = {
@@ -11677,6 +11695,15 @@ let
sha512 = "yDRLkPUiGvIXpccFd1PqOQZ1MJvYkh0RVBNWfquDoPonQuJ9QOCZoPrpe3VlB8IGMOODbVRSH1NRqPa12gNjBA==";
};
};
+ "aws-sdk-2.965.0" = {
+ name = "aws-sdk";
+ packageName = "aws-sdk";
+ version = "2.965.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.965.0.tgz";
+ sha512 = "jifeFsA6IEKXM65WI5gvBNSCXKw4n64Wf9Q7/8E7wZ5vzRbBGoHzGpyhK6ZBBRvE2YvNp/ykTWChO7RydkA+AQ==";
+ };
+ };
"aws-sign2-0.6.0" = {
name = "aws-sign2";
packageName = "aws-sign2";
@@ -12874,15 +12901,6 @@ let
sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
};
};
- "bignumber.js-4.1.0" = {
- name = "bignumber.js";
- packageName = "bignumber.js";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-4.1.0.tgz";
- sha512 = "eJzYkFYy9L4JzXsbymsFn3p54D+llV27oTQ+ziJG7WFRheJcNZilgVXMG0LoZtlQSKBsJdWtLFqOD0u+U0jZKA==";
- };
- };
"bignumber.js-9.0.0" = {
name = "bignumber.js";
packageName = "bignumber.js";
@@ -13108,15 +13126,6 @@ let
sha512 = "CYS3HRGgIlm7A6/zqGFd/KPSUIv4EoEQVQ8mWcvBEdlf0db1q3j/fj5W/PXJasBfsvN2jM0Tzw3w1C7HUoR/fg==";
};
};
- "bitcoin-core-2.3.0" = {
- name = "bitcoin-core";
- packageName = "bitcoin-core";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bitcoin-core/-/bitcoin-core-2.3.0.tgz";
- sha512 = "SMbw2kFu09iBajicODSE4pn/K0tOibWyqct71TlzR8cYUBk+u7rkhqGY7US2iYz0HmP851IW7F7eXfXvz09yXA==";
- };
- };
"bitcoin-ops-1.4.1" = {
name = "bitcoin-ops";
packageName = "bitcoin-ops";
@@ -13648,13 +13657,13 @@ let
sha512 = "yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==";
};
};
- "bootstrap-5.0.0-beta3" = {
+ "bootstrap-5.0.2" = {
name = "bootstrap";
packageName = "bootstrap";
- version = "5.0.0-beta3";
+ version = "5.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bootstrap/-/bootstrap-5.0.0-beta3.tgz";
- sha512 = "0urccjfIOzhrb9qJysN8XW/DRw6rg3zH7qLeKIp4Zyl8+Ens4JWB0NC0cB5AhnSFPd2tftRggjwCMxablo6Tpg==";
+ url = "https://registry.npmjs.org/bootstrap/-/bootstrap-5.0.2.tgz";
+ sha512 = "1Ge963tyEQWJJ+8qtXFU6wgmAVj9gweEjibUdbmcCEYsn38tVwRk8107rk2vzt6cfQcRr3SlZ8aQBqaD8aqf+Q==";
};
};
"bootstrap-vue-helper-json-1.1.1" = {
@@ -14161,6 +14170,16 @@ let
sha512 = "66UkjoB9f7lhT+WKgYq8MQa6nkr96mlX64JYMlIsXe/X4VeqNwvsx7UOE3ZqD6lkwg8GvBhapRTWj0qWO3Pw8w==";
};
};
+ "btc-rpc-client-git://github.com/btc21/btc-rpc-client" = {
+ name = "bitcoin-core";
+ packageName = "bitcoin-core";
+ version = "3.0.0";
+ src = fetchgit {
+ url = "git://github.com/btc21/btc-rpc-client";
+ rev = "8ed164d9ea4964d5c059084f48818b1a14bf86c9";
+ sha256 = "963ea67486cf531755c04d655bcff31d24f64682debd05a6c0ef469fd1e09bbb";
+ };
+ };
"btcp-0.1.5" = {
name = "btcp";
packageName = "btcp";
@@ -15538,6 +15557,15 @@ let
sha512 = "+2jlOobSk52c1VU6fzkh3UwqHMdSlgH1xFv9FKMqHiNCpXsGPQa/+81AFa+i3jZ253Mq9aAycPwDjnn1XbRNNw==";
};
};
+ "chart.js-3.5.0" = {
+ name = "chart.js";
+ packageName = "chart.js";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chart.js/-/chart.js-3.5.0.tgz";
+ sha512 = "J1a4EAb1Gi/KbhwDRmoovHTRuqT8qdF0kZ4XgwxpGethJHUdDrkqyPYwke0a+BuvSeUxPf8Cos6AX2AB8H8GLA==";
+ };
+ };
"chartjs-color-2.4.1" = {
name = "chartjs-color";
packageName = "chartjs-color";
@@ -16915,6 +16943,15 @@ let
sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==";
};
};
+ "colorette-1.3.0" = {
+ name = "colorette";
+ packageName = "colorette";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz";
+ sha512 = "ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==";
+ };
+ };
"colornames-1.1.1" = {
name = "colornames";
packageName = "colornames";
@@ -20354,13 +20391,13 @@ let
sha1 = "aa24ffb9ac3df9a2351837cfb2d279360cd78492";
};
};
- "debugnyan-1.0.0" = {
+ "debugnyan-2.0.2" = {
name = "debugnyan";
packageName = "debugnyan";
- version = "1.0.0";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/debugnyan/-/debugnyan-1.0.0.tgz";
- sha1 = "90386d5ebc2c63588f17f272be5c2a93b7665d83";
+ url = "https://registry.npmjs.org/debugnyan/-/debugnyan-2.0.2.tgz";
+ sha512 = "g4yO/Qc/bdu8JYCgC0L6RUTgGyQCH8fGJkDDicvd6G3k95glh96x9sIusgIdyjFRpWTH7xbnjhObOjYjJgRGQw==";
};
};
"decache-4.4.0" = {
@@ -21443,13 +21480,13 @@ let
sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==";
};
};
- "diff2html-3.4.8" = {
+ "diff2html-3.4.9" = {
name = "diff2html";
packageName = "diff2html";
- version = "3.4.8";
+ version = "3.4.9";
src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.8.tgz";
- sha512 = "ZkZXowZdEGu756Ka8kfmz3bEcH4j0ENC3FCDyomJ6Fz63U+tRoaoG1Qnjoej7fYMNk45AE+vsvn+woKMvm4zMg==";
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.9.tgz";
+ sha512 = "33x45h6Xgfasjt49e0ldfLnUdCjLjHIdablpAlrKnQyyG1RA7w+4cbp9+bUfNLxfFj584BookXqh5KJEt4+MLA==";
};
};
"diff3-0.0.3" = {
@@ -22559,15 +22596,6 @@ let
sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==";
};
};
- "electron-to-chromium-1.3.800" = {
- name = "electron-to-chromium";
- packageName = "electron-to-chromium";
- version = "1.3.800";
- src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.800.tgz";
- sha512 = "qagikPjZJSDWP85uWoxs32oK/xk/y3MhDZELfKRCWI7pBc0ZFlmjnXb+3+aNMaiqboeDJJa0v7CJd5cO1HKwEQ==";
- };
- };
"electron-to-chromium-1.3.801" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
@@ -23677,15 +23705,6 @@ let
sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==";
};
};
- "eslint-plugin-vue-7.15.2" = {
- name = "eslint-plugin-vue";
- packageName = "eslint-plugin-vue";
- version = "7.15.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.15.2.tgz";
- sha512 = "h5ws2GewwJ02HwnDo3WdPbc867MQieg9wrWgbpzh9ELBIiuy79EWK0zfyUxYzUWNd1EECCZ/8f50UCC7Hvbamw==";
- };
- };
"eslint-plugin-vue-7.16.0" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
@@ -34128,15 +34147,6 @@ let
sha512 = "+XiaSKCrauom9xazpWr7O8pAEEDrrW1qYJ6O0vHG4YKZxJYJN7md6qwAurk3iamwtyuIW/Io2XEnB6ZypAk3bw==";
};
};
- "json-bigint-0.2.3" = {
- name = "json-bigint";
- packageName = "json-bigint";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-bigint/-/json-bigint-0.2.3.tgz";
- sha1 = "118d7f6ff1d38659f19f94cf73e64a75a3f988a8";
- };
- };
"json-bigint-1.0.0" = {
name = "json-bigint";
packageName = "json-bigint";
@@ -42483,13 +42493,13 @@ let
sha512 = "dBljNubVsolJkgfXUAF3KrCAO+hi5AXz+cftGjfHT76PyVB9pFUbAgTrkjZmKciC/B/14kEV5Ds+SwonqyTMfg==";
};
};
- "node-releases-1.1.73" = {
+ "node-releases-1.1.74" = {
name = "node-releases";
packageName = "node-releases";
- version = "1.1.73";
+ version = "1.1.74";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz";
- sha512 = "uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.74.tgz";
+ sha512 = "caJBVempXZPepZoZAPCWRTNxYQ+xtG/KAi4ozTA5A+nJ7IU+kLQCbqaUjb5Rwy14M9upBWiQ4NutcmW04LJSRw==";
};
};
"node-source-walk-4.2.0" = {
@@ -64105,6 +64115,15 @@ let
sha512 = "DTMa8QbVmujFPvD3NxoC5jjIXCyCG+cvn3hNzwQRhvhsk8LblNymBZBwzfcDdgEtqsi4O/2AB5HnMIRzxhzEzg==";
};
};
+ "vscode-css-languageservice-5.1.4" = {
+ name = "vscode-css-languageservice";
+ packageName = "vscode-css-languageservice";
+ version = "5.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.1.4.tgz";
+ sha512 = "fIJZJMXbaBsK0ifBb2RmSiLtzwn6NrZnKn7O+0ziIjwAY+rPvSK9St2qqQXFU3reZVRAt/I4GBp40dC/THcUDA==";
+ };
+ };
"vscode-debugadapter-testsupport-1.48.0" = {
name = "vscode-debugadapter-testsupport";
packageName = "vscode-debugadapter-testsupport";
@@ -64159,6 +64178,15 @@ let
sha512 = "UmC+GS0IqBeZnOAmdtQvaDzoH1c5/un+b7qALUziu/Y4SOPXso5dF+YkJeTqsde6YU2pLm78RtMDzl9BParwbw==";
};
};
+ "vscode-html-languageservice-4.0.7" = {
+ name = "vscode-html-languageservice";
+ packageName = "vscode-html-languageservice";
+ version = "4.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.0.7.tgz";
+ sha512 = "P5TQMYpgxAdLs+PwpC7Lm+0lXCyQAC6kZ41YuPYNHVooC4XO7Y2+ncHBcQJVK4C9LU2cTOAl0lzq4WAxuwRHYw==";
+ };
+ };
"vscode-json-languageserver-1.3.4" = {
name = "vscode-json-languageserver";
packageName = "vscode-json-languageserver";
@@ -65023,13 +65051,13 @@ let
sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ==";
};
};
- "webpack-5.49.0" = {
+ "webpack-5.50.0" = {
name = "webpack";
packageName = "webpack";
- version = "5.49.0";
+ version = "5.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.49.0.tgz";
- sha512 = "XarsANVf28A7Q3KPxSnX80EkCcuOer5hTOEJWJNvbskOZ+EK3pobHarGHceyUZMxpsTHBHhlV7hiQyLZzGosYw==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz";
+ sha512 = "hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==";
};
};
"webpack-bundle-analyzer-3.9.0" = {
@@ -68655,7 +68683,7 @@ in
sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."commander-4.1.1"
sources."concat-map-0.0.1"
@@ -68663,7 +68691,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.800"
+ sources."electron-to-chromium-1.3.801"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.2" // {
@@ -68764,7 +68792,7 @@ in
sources."mute-stream-0.0.8"
sources."neo-async-2.6.2"
sources."node-emoji-1.10.0"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -69250,7 +69278,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
@@ -69343,7 +69371,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.800"
+ sources."electron-to-chromium-1.3.801"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -69679,7 +69707,7 @@ in
sources."which-2.0.2"
];
})
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -70360,14 +70388,14 @@ in
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."commander-8.1.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.800"
+ sources."electron-to-chromium-1.3.801"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -70413,7 +70441,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."ms-2.1.2"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."node.extend-2.0.2"
(sources."nomnom-1.8.1" // {
dependencies = [
@@ -70497,11 +70525,11 @@ in
dependencies = [
sources."browserslist-4.16.7"
sources."caniuse-lite-1.0.30001249"
- sources."colorette-1.2.2"
- sources."electron-to-chromium-1.3.800"
+ sources."colorette-1.3.0"
+ sources."electron-to-chromium-1.3.801"
sources."escalade-3.1.1"
sources."fraction.js-4.1.1"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-range-0.1.2"
sources."postcss-value-parser-4.1.0"
];
@@ -72182,10 +72210,10 @@ in
btc-rpc-explorer = nodeEnv.buildNodePackage {
name = "btc-rpc-explorer";
packageName = "btc-rpc-explorer";
- version = "3.1.1";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/btc-rpc-explorer/-/btc-rpc-explorer-3.1.1.tgz";
- sha512 = "QHoiW1H2P6Sx7L5IEvbZnnQsfy7eaibY/KS2UAX9VINXNdGS9RxqEdLOe9yTdcy5pzIFpQKIBspOnHcBOjVa8A==";
+ url = "https://registry.npmjs.org/btc-rpc-explorer/-/btc-rpc-explorer-3.2.0.tgz";
+ sha512 = "Va/hSa8+LRP4o6neRo+us8XttwcmLfwgNykeXhtY3xMu3/Y7I2e4EXb6Zd9jElMVI3teWH7eiyLff0KDjnYJdg==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -72222,19 +72250,18 @@ in
sources."base64-js-1.5.1"
sources."basic-auth-2.0.1"
sources."bcrypt-pbkdf-1.0.2"
- sources."bech32-1.1.4"
- sources."bignumber.js-4.1.0"
+ sources."bech32-2.0.0"
+ sources."bignumber.js-9.0.1"
sources."bindings-1.5.0"
sources."bip174-2.0.1"
sources."bip32-2.0.6"
sources."bip66-1.1.5"
- (sources."bitcoin-core-2.3.0" // {
+ sources."bitcoin-ops-1.4.1"
+ (sources."bitcoinjs-lib-5.2.0" // {
dependencies = [
- sources."semver-5.7.1"
+ sources."bech32-1.1.4"
];
})
- sources."bitcoin-ops-1.4.1"
- sources."bitcoinjs-lib-5.2.0"
sources."bluebird-3.7.2"
sources."bn.js-4.12.0"
(sources."body-parser-1.19.0" // {
@@ -72242,11 +72269,12 @@ in
sources."debug-2.6.9"
];
})
- sources."bootstrap-5.0.0-beta3"
+ sources."bootstrap-5.0.2"
sources."brace-expansion-1.1.11"
sources."brorand-1.1.0"
sources."bs58-4.0.1"
sources."bs58check-2.1.2"
+ sources."btc-rpc-client-git://github.com/btc21/btc-rpc-client"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -72261,6 +72289,7 @@ in
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."charenc-0.0.2"
+ sources."chart.js-3.5.0"
sources."cipher-base-1.0.4"
sources."cliui-5.0.0"
sources."color-convert-1.9.3"
@@ -72297,7 +72326,7 @@ in
sources."ms-2.1.2"
];
})
- (sources."debugnyan-1.0.0" // {
+ (sources."debugnyan-2.0.2" // {
dependencies = [
sources."debug-2.6.9"
];
@@ -72315,7 +72344,7 @@ in
sources."destroy-1.0.4"
sources."dijkstrajs-1.0.2"
sources."doctypes-1.1.0"
- sources."dotenv-8.6.0"
+ sources."dotenv-10.0.0"
sources."dtrace-provider-0.8.8"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
@@ -72405,7 +72434,7 @@ in
sources."js-stringify-1.0.2"
sources."js-tokens-4.0.0"
sources."jsbn-0.1.1"
- sources."json-bigint-0.2.3"
+ sources."json-bigint-1.0.0"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
@@ -73962,6 +73991,101 @@ in
bypassCache = true;
reconstructLock = true;
};
+ clipboard-cli = nodeEnv.buildNodePackage {
+ name = "clipboard-cli";
+ packageName = "clipboard-cli";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clipboard-cli/-/clipboard-cli-2.0.1.tgz";
+ sha512 = "ze7ASsXpF2J27QMq5or4VZZcX9X+E8XtsvFXaRwdLBON0UjnXfIWykgIzffSmrdfHOw/8rAufyOE58+/OU1eGw==";
+ };
+ dependencies = [
+ sources."arch-2.2.0"
+ sources."array-find-index-1.0.2"
+ sources."arrify-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."camelcase-keys-4.2.0"
+ sources."clipboardy-2.3.0"
+ sources."cross-spawn-6.0.5"
+ sources."currently-unhandled-0.4.1"
+ sources."decamelize-1.2.0"
+ (sources."decamelize-keys-1.1.0" // {
+ dependencies = [
+ sources."map-obj-1.0.1"
+ ];
+ })
+ sources."end-of-stream-1.4.4"
+ sources."error-ex-1.3.2"
+ sources."execa-1.0.0"
+ sources."find-up-2.1.0"
+ sources."function-bind-1.1.1"
+ sources."get-stdin-7.0.0"
+ sources."get-stream-4.1.0"
+ sources."graceful-fs-4.2.8"
+ sources."has-1.0.3"
+ sources."hosted-git-info-2.8.9"
+ sources."indent-string-3.2.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-core-module-2.5.0"
+ sources."is-docker-2.2.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-wsl-2.2.0"
+ sources."isexe-2.0.0"
+ sources."json-parse-better-errors-1.0.2"
+ sources."load-json-file-4.0.0"
+ sources."locate-path-2.0.0"
+ sources."loud-rejection-1.6.0"
+ sources."map-obj-2.0.0"
+ sources."meow-5.0.0"
+ sources."minimist-options-3.0.2"
+ sources."nice-try-1.0.5"
+ sources."normalize-package-data-2.5.0"
+ sources."npm-run-path-2.0.2"
+ sources."once-1.4.0"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parse-json-4.0.0"
+ sources."path-exists-3.0.0"
+ sources."path-key-2.0.1"
+ sources."path-parse-1.0.7"
+ sources."path-type-3.0.0"
+ sources."pify-3.0.0"
+ sources."pump-3.0.0"
+ sources."quick-lru-1.1.0"
+ sources."read-pkg-3.0.0"
+ sources."read-pkg-up-3.0.0"
+ sources."redent-2.0.0"
+ sources."resolve-1.20.0"
+ sources."semver-5.7.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.3"
+ sources."spdx-correct-3.1.1"
+ sources."spdx-exceptions-2.3.0"
+ sources."spdx-expression-parse-3.0.1"
+ sources."spdx-license-ids-3.0.10"
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-indent-2.0.0"
+ sources."trim-newlines-2.0.0"
+ sources."validate-npm-package-license-3.0.4"
+ sources."which-1.3.1"
+ sources."wrappy-1.0.2"
+ sources."yargs-parser-10.1.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Access the system clipboard (copy/paste)";
+ homepage = "https://github.com/sindresorhus/clipboard-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
clubhouse-cli = nodeEnv.buildNodePackage {
name = "clubhouse-cli";
packageName = "clubhouse-cli";
@@ -75879,7 +76003,7 @@ in
sources."clone-regexp-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."cosmiconfig-7.0.0"
@@ -75998,7 +76122,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
(sources."normalize-package-data-3.0.2" // {
dependencies = [
sources."semver-7.3.5"
@@ -76347,7 +76471,7 @@ in
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.32.0"
- (sources."eslint-plugin-vue-7.15.2" // {
+ (sources."eslint-plugin-vue-7.16.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -78938,7 +79062,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."combined-stream-1.0.8"
sources."component-emitter-1.3.0"
(sources."concat-stream-1.6.2" // {
@@ -79160,7 +79284,7 @@ in
sources."napi-macros-2.0.0"
sources."node-fetch-2.6.1"
sources."node-gyp-build-4.2.3"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
sources."normalize.css-8.0.1"
@@ -80468,7 +80592,7 @@ in
sources."code-excerpt-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
(sources."conf-7.1.2" // {
@@ -80591,7 +80715,7 @@ in
sources."minimist-options-4.1.0"
sources."ms-2.1.2"
sources."nice-try-1.0.5"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-package-data-2.5.0"
sources."normalize-url-6.1.0"
sources."npm-run-path-2.0.2"
@@ -83324,7 +83448,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.9"
@@ -84105,7 +84229,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."nopt-5.0.0"
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
@@ -85215,7 +85339,7 @@ in
sources."code-excerpt-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
@@ -85297,7 +85421,7 @@ in
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
sources."node-fetch-2.6.1"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
(sources."normalize-package-data-3.0.2" // {
dependencies = [
sources."semver-7.3.5"
@@ -85456,7 +85580,7 @@ in
sources."tslib-2.3.0"
];
})
- (sources."@oclif/core-0.5.28" // {
+ (sources."@oclif/core-0.5.29" // {
dependencies = [
sources."chalk-4.1.2"
(sources."cli-ux-5.6.3" // {
@@ -88109,7 +88233,7 @@ in
sources."collapse-white-space-1.0.6"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."combined-stream-1.0.8"
sources."common-tags-1.8.0"
sources."concat-map-0.0.1"
@@ -88403,7 +88527,7 @@ in
sources."node-eta-0.9.0"
sources."node-fetch-2.6.1"
sources."node-object-hash-2.3.8"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
sources."npm-run-path-2.0.2"
@@ -88685,14 +88809,14 @@ in
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.4.0"
- sources."@octokit/plugin-paginate-rest-2.15.0"
+ sources."@octokit/openapi-types-9.5.0"
+ sources."@octokit/plugin-paginate-rest-2.15.1"
sources."@octokit/plugin-request-log-1.0.4"
sources."@octokit/plugin-rest-endpoint-methods-5.7.0"
sources."@octokit/request-5.6.0"
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.9.0"
- sources."@octokit/types-6.24.0"
+ sources."@octokit/types-6.25.0"
sources."@types/normalize-package-data-2.4.1"
sources."agent-base-4.3.0"
sources."ansi-regex-2.1.1"
@@ -92660,8 +92784,8 @@ in
sources."@babel/types-7.15.0"
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.0"
- sources."@joplin/fork-htmlparser2-4.1.30"
- sources."@joplin/fork-sax-1.2.34"
+ sources."@joplin/fork-htmlparser2-4.1.31"
+ sources."@joplin/fork-sax-1.2.35"
(sources."@joplin/lib-2.1.1" // {
dependencies = [
(sources."@joplin/renderer-1.8.2" // {
@@ -92678,13 +92802,13 @@ in
sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support"
];
})
- (sources."@joplin/turndown-4.0.52" // {
+ (sources."@joplin/turndown-4.0.53" // {
dependencies = [
sources."css-2.2.4"
sources."source-map-0.6.1"
];
})
- sources."@joplin/turndown-plugin-gfm-1.0.34"
+ sources."@joplin/turndown-plugin-gfm-1.0.35"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -92694,7 +92818,7 @@ in
sources."tslib-2.3.0"
];
})
- (sources."@oclif/core-0.5.28" // {
+ (sources."@oclif/core-0.5.29" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -92779,7 +92903,7 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.964.0" // {
+ (sources."aws-sdk-2.965.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -92880,7 +93004,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-string-1.6.0"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."command-line-usage-4.1.0"
@@ -93426,7 +93550,7 @@ in
sources."semver-5.7.1"
];
})
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."nopt-4.0.3"
sources."normalize-path-3.0.0"
sources."npm-bundled-1.1.2"
@@ -94969,7 +95093,7 @@ in
sources."tslib-2.3.0"
];
})
- (sources."@oclif/core-0.5.28" // {
+ (sources."@oclif/core-0.5.29" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -96384,9 +96508,9 @@ in
];
})
sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.4.0"
+ sources."@octokit/openapi-types-9.6.0"
sources."@octokit/plugin-enterprise-rest-6.0.1"
- sources."@octokit/plugin-paginate-rest-2.15.0"
+ sources."@octokit/plugin-paginate-rest-2.15.1"
sources."@octokit/plugin-request-log-1.0.4"
sources."@octokit/plugin-rest-endpoint-methods-5.7.0"
(sources."@octokit/request-5.6.0" // {
@@ -96396,7 +96520,7 @@ in
})
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.9.0"
- sources."@octokit/types-6.24.0"
+ sources."@octokit/types-6.25.0"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
@@ -98276,7 +98400,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
(sources."combine-source-map-0.8.0" // {
dependencies = [
@@ -98654,7 +98778,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -99666,7 +99790,7 @@ in
sources."tslib-2.3.0"
];
})
- (sources."@oclif/core-0.5.28" // {
+ (sources."@oclif/core-0.5.29" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -99772,7 +99896,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."commander-8.1.0"
sources."commondir-1.0.1"
@@ -100031,7 +100155,7 @@ in
sources."node-dir-0.1.17"
sources."node-fetch-2.6.1"
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
(sources."object-copy-0.1.0" // {
dependencies = [
sources."define-property-0.2.5"
@@ -100246,10 +100370,10 @@ in
mirakurun = nodeEnv.buildNodePackage {
name = "mirakurun";
packageName = "mirakurun";
- version = "3.7.1";
+ version = "3.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.7.1.tgz";
- sha512 = "1Igntd9BqPrUMMB2nhVSy2k6D/BzGx1yLC5GMHyyC7z2w+i27oDYuk7ZMfwBHMZS409F5desIOcDE6w3BFb1XA==";
+ url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.8.0.tgz";
+ sha512 = "uEJ8S5nMNq6MvtxnWso6jLkwfA62RVa0+E3+TbBTOthPeC0FagskjcA6KZb2xNuEkMFoeZUQcAZcMIY5mKkHgQ==";
};
dependencies = [
sources."@fluentui/date-time-utilities-8.2.2"
@@ -100886,10 +101010,10 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "6.0.9";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.0.9.tgz";
- sha512 = "eOZSTnEZO6bPMJWvsKxYgm0+lG3uv6anqEylomDEZEszfd8jXO8B5DIpGholtoCC9WKTeiE7XfizrdTXLFI3UQ==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.1.0.tgz";
+ sha512 = "1jNmgR6DA3aoMLVhEfuagYBzxHVqK7x6pLRY+4c5Atn3PJ/hX1SU56rBED6BRTNiPfGTuudPNXHjWj75MUpj/w==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -101023,15 +101147,33 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-24.9.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-17.9.2" // {
+ (sources."@netlify/build-17.10.0" // {
dependencies = [
+ (sources."@netlify/zip-it-and-ship-it-4.17.0" // {
+ dependencies = [
+ sources."execa-5.1.1"
+ sources."locate-path-6.0.0"
+ sources."p-locate-5.0.0"
+ sources."pkg-dir-5.0.0"
+ sources."semver-7.3.5"
+ sources."yargs-16.2.0"
+ ];
+ })
sources."ansi-styles-4.3.0"
(sources."boxen-4.2.0" // {
dependencies = [
sources."chalk-3.0.0"
];
})
- sources."execa-3.4.0"
+ sources."cp-file-9.1.0"
+ (sources."execa-3.4.0" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ sources."human-signals-1.1.1"
+ ];
+ })
+ sources."get-stream-6.0.1"
+ sources."human-signals-2.1.0"
sources."is-plain-obj-2.1.0"
sources."locate-path-5.0.0"
sources."resolve-2.0.0-next.3"
@@ -101064,7 +101206,6 @@ in
sources."@netlify/esbuild-0.13.6"
(sources."@netlify/framework-info-5.8.0" // {
dependencies = [
- sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
];
})
@@ -101096,6 +101237,7 @@ in
(sources."@netlify/plugin-edge-handlers-1.11.22" // {
dependencies = [
sources."@types/node-14.17.9"
+ sources."typescript-4.3.5"
];
})
sources."@netlify/plugins-list-3.3.0"
@@ -101107,15 +101249,10 @@ in
})
(sources."@netlify/zip-it-and-ship-it-4.16.0" // {
dependencies = [
- sources."ansi-styles-4.3.0"
- sources."cliui-7.0.4"
sources."cp-file-9.1.0"
sources."pkg-dir-5.0.0"
sources."resolve-2.0.0-next.3"
- sources."wrap-ansi-7.0.0"
- sources."y18n-5.0.8"
sources."yargs-16.2.0"
- sources."yargs-parser-20.2.9"
];
})
(sources."@nodelib/fs.scandir-2.1.5" // {
@@ -101166,10 +101303,9 @@ in
sources."tslib-2.3.0"
];
})
- (sources."@oclif/core-0.5.28" // {
+ (sources."@oclif/core-0.5.29" // {
dependencies = [
sources."@nodelib/fs.stat-2.0.5"
- sources."ansi-styles-4.3.0"
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."clean-stack-3.0.1"
@@ -101188,15 +101324,12 @@ in
sources."to-regex-range-5.0.1"
sources."tslib-2.3.0"
sources."universalify-2.0.0"
- sources."wrap-ansi-7.0.0"
];
})
(sources."@oclif/errors-1.3.5" // {
dependencies = [
- sources."ansi-styles-4.3.0"
sources."clean-stack-3.0.1"
sources."escape-string-regexp-4.0.0"
- sources."wrap-ansi-7.0.0"
];
})
sources."@oclif/linewrap-1.0.0"
@@ -101243,8 +101376,8 @@ in
];
})
sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.4.0"
- sources."@octokit/plugin-paginate-rest-2.15.0"
+ sources."@octokit/openapi-types-9.6.0"
+ sources."@octokit/plugin-paginate-rest-2.15.1"
sources."@octokit/plugin-request-log-1.0.4"
sources."@octokit/plugin-rest-endpoint-methods-5.7.0"
(sources."@octokit/request-5.6.0" // {
@@ -101254,7 +101387,7 @@ in
})
sources."@octokit/request-error-2.1.0"
sources."@octokit/rest-18.9.0"
- sources."@octokit/types-6.24.0"
+ sources."@octokit/types-6.25.0"
sources."@rollup/plugin-babel-5.3.0"
(sources."@rollup/plugin-commonjs-18.1.0" // {
dependencies = [
@@ -101408,10 +101541,8 @@ in
})
(sources."boxen-5.0.1" // {
dependencies = [
- sources."ansi-styles-4.3.0"
sources."camelcase-6.2.0"
sources."type-fest-0.20.2"
- sources."wrap-ansi-7.0.0"
];
})
sources."brace-expansion-1.1.11"
@@ -101517,7 +101648,7 @@ in
];
})
sources."cli-width-2.2.1"
- sources."cliui-6.0.0"
+ sources."cliui-7.0.4"
sources."clone-1.0.4"
sources."clone-response-1.0.2"
sources."code-point-at-1.1.0"
@@ -101531,7 +101662,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-string-1.6.0"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."combined-stream-1.0.8"
@@ -101673,11 +101804,7 @@ in
sources."detective-sass-3.0.1"
sources."detective-scss-2.0.1"
sources."detective-stylus-1.0.0"
- (sources."detective-typescript-7.0.0" // {
- dependencies = [
- sources."typescript-3.9.10"
- ];
- })
+ sources."detective-typescript-7.0.0"
(sources."dir-glob-2.2.2" // {
dependencies = [
sources."path-type-3.0.0"
@@ -102148,7 +102275,6 @@ in
})
(sources."locate-path-6.0.0" // {
dependencies = [
- sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
];
})
@@ -102276,7 +102402,7 @@ in
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
sources."node-fetch-2.6.1"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."node-source-walk-4.2.0"
(sources."node-version-alias-1.0.1" // {
dependencies = [
@@ -102383,8 +102509,12 @@ in
})
sources."p-finally-2.0.1"
sources."p-is-promise-1.1.0"
- sources."p-limit-2.3.0"
- sources."p-locate-4.1.0"
+ sources."p-limit-3.1.0"
+ (sources."p-locate-4.1.0" // {
+ dependencies = [
+ sources."p-limit-2.3.0"
+ ];
+ })
sources."p-map-4.0.0"
sources."p-reduce-2.1.0"
(sources."p-timeout-2.0.1" // {
@@ -102760,7 +102890,7 @@ in
sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.3.5"
+ sources."typescript-3.9.10"
sources."uid-safe-2.1.5"
sources."unbzip2-stream-1.4.3"
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -102845,7 +102975,7 @@ in
];
})
sources."word-wrap-1.2.3"
- (sources."wrap-ansi-6.2.0" // {
+ (sources."wrap-ansi-7.0.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
];
@@ -102854,15 +102984,20 @@ in
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
sources."xtend-4.0.2"
- sources."y18n-4.0.3"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
(sources."yargs-15.4.1" // {
dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."cliui-6.0.0"
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
+ sources."wrap-ansi-6.2.0"
+ sources."y18n-4.0.3"
+ sources."yargs-parser-18.1.3"
];
})
- sources."yargs-parser-18.1.3"
+ sources."yargs-parser-20.2.9"
sources."yarn-1.22.11"
sources."yauzl-2.10.0"
sources."yocto-queue-0.1.0"
@@ -105589,7 +105724,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.9"
sources."commander-2.20.3"
@@ -105976,7 +106111,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
sources."nth-check-1.0.2"
@@ -107850,7 +107985,7 @@ in
sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==";
};
dependencies = [
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."nanoid-3.1.23"
sources."source-map-js-0.6.2"
];
@@ -107888,7 +108023,7 @@ in
sources."cliui-7.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."dependency-graph-0.9.0"
sources."dir-glob-3.0.1"
sources."emoji-regex-8.0.0"
@@ -109204,7 +109339,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."commander-4.1.1"
sources."commondir-1.0.1"
sources."component-bind-1.0.0"
@@ -109817,7 +109952,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-path-3.0.0"
sources."normalize-range-0.1.2"
(sources."normalize-url-2.0.1" // {
@@ -110824,7 +110959,7 @@ in
sources."clsx-1.1.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."concat-map-0.0.1"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
@@ -112111,7 +112246,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.964.0" // {
+ (sources."aws-sdk-2.965.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -115433,7 +115568,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.964.0" // {
+ (sources."aws-sdk-2.965.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -116288,7 +116423,7 @@ in
sources."clone-regexp-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."cosmiconfig-7.0.0"
@@ -116406,7 +116541,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
(sources."normalize-package-data-3.0.2" // {
dependencies = [
sources."semver-7.3.5"
@@ -119858,7 +119993,7 @@ in
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."diff-5.0.0"
- sources."diff2html-3.4.8"
+ sources."diff2html-3.4.9"
sources."dnd-page-scroll-0.0.4"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
@@ -120953,6 +121088,50 @@ in
bypassCache = true;
reconstructLock = true;
};
+ vscode-langservers-extracted = nodeEnv.buildNodePackage {
+ name = "vscode-langservers-extracted";
+ packageName = "vscode-langservers-extracted";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-2.4.0.tgz";
+ sha512 = "dGTyYwuKd0miiTGG3ShL1u1MOni/iZLdY8GUyEf86jHIq2+P9h+El0IkXt8GsDGOAIty+DmhDOVZ/VTw2pjUEg==";
+ };
+ dependencies = [
+ sources."agent-base-4.3.0"
+ sources."debug-3.1.0"
+ sources."es6-promise-4.2.8"
+ sources."es6-promisify-5.0.0"
+ sources."http-proxy-agent-2.1.0"
+ sources."https-proxy-agent-2.2.4"
+ sources."jsonc-parser-3.0.0"
+ sources."ms-2.0.0"
+ (sources."request-light-0.4.0" // {
+ dependencies = [
+ sources."vscode-nls-4.1.2"
+ ];
+ })
+ sources."typescript-4.3.5"
+ sources."vscode-css-languageservice-5.1.4"
+ sources."vscode-html-languageservice-4.0.7"
+ sources."vscode-json-languageservice-4.1.6"
+ sources."vscode-jsonrpc-6.0.0"
+ sources."vscode-languageserver-7.0.0"
+ sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-languageserver-textdocument-1.0.1"
+ sources."vscode-languageserver-types-3.16.0"
+ sources."vscode-nls-5.0.0"
+ sources."vscode-uri-3.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "HTML/CSS/JSON language servers extracted from [vscode](https://github.com/Microsoft/vscode).";
+ homepage = "https://github.com/hrsh7th/vscode-langservers-extracted#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
"vscode-lldb-build-deps-../../misc/vscode-extensions/vscode-lldb/build-deps" = nodeEnv.buildNodePackage {
name = "vscode-lldb";
packageName = "vscode-lldb";
@@ -121032,7 +121211,7 @@ in
sources."clone-deep-4.0.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."commander-6.2.1"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
@@ -121153,7 +121332,7 @@ in
sources."mute-stream-0.0.8"
sources."nanoid-3.1.20"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."nth-check-2.0.0"
@@ -121260,7 +121439,7 @@ in
sources."vscode-debugadapter-testsupport-1.48.0"
sources."vscode-debugprotocol-1.48.0"
sources."watchpack-2.2.0"
- sources."webpack-5.49.0"
+ sources."webpack-5.50.0"
(sources."webpack-cli-4.7.2" // {
dependencies = [
sources."commander-7.2.0"
@@ -122866,7 +123045,7 @@ in
sources."clone-response-1.0.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."columnify-1.5.4"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
@@ -123343,10 +123522,10 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.49.0";
+ version = "5.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.49.0.tgz";
- sha512 = "XarsANVf28A7Q3KPxSnX80EkCcuOer5hTOEJWJNvbskOZ+EK3pobHarGHceyUZMxpsTHBHhlV7hiQyLZzGosYw==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz";
+ sha512 = "hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==";
};
dependencies = [
sources."@types/eslint-7.28.0"
@@ -123379,7 +123558,7 @@ in
sources."buffer-from-1.1.2"
sources."caniuse-lite-1.0.30001249"
sources."chrome-trace-event-1.0.3"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."commander-2.20.3"
sources."electron-to-chromium-1.3.801"
sources."enhanced-resolve-5.8.2"
@@ -123406,7 +123585,7 @@ in
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.73"
+ sources."node-releases-1.1.74"
sources."p-limit-3.1.0"
sources."punycode-2.1.1"
sources."randombytes-2.1.0"
@@ -123452,7 +123631,7 @@ in
sources."@webpack-cli/info-1.3.0"
sources."@webpack-cli/serve-1.5.1"
sources."clone-deep-4.0.1"
- sources."colorette-1.2.2"
+ sources."colorette-1.3.0"
sources."commander-7.2.0"
sources."cross-spawn-7.0.3"
sources."envinfo-7.8.1"
diff --git a/pkgs/development/python-modules/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix
index 6c1ab2e8b2d4..a9ff8c6d1819 100644
--- a/pkgs/development/python-modules/ailment/default.nix
+++ b/pkgs/development/python-modules/ailment/default.nix
@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "ailment";
- version = "9.0.9355";
+ version = "9.0.9438";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "102pixc5yy48ydmr3khvpfwm9bl33w07y8mpgjfrhp75qr5q4lrl";
+ sha256 = "sha256-V/0plNgApk8S/xdd0I8zeE7dqb0xBhqCVSDW7jGHpzo=";
};
propagatedBuildInputs = [ pyvex ];
diff --git a/pkgs/development/python-modules/angr/default.nix b/pkgs/development/python-modules/angr/default.nix
index 4deb383f0aa7..d0805d062465 100644
--- a/pkgs/development/python-modules/angr/default.nix
+++ b/pkgs/development/python-modules/angr/default.nix
@@ -43,14 +43,14 @@ in
buildPythonPackage rec {
pname = "angr";
- version = "9.0.9355";
+ version = "9.0.9438";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
- sha256 = "0myk3xlvdw4szypivv6a90jw8cqdf1njjqxgqz5lqbx7fajqhrmy";
+ sha256 = "sha256-wbyuphcRw9FtVcwwQq8w0vaYZqWQ0nIyJPaZh+r8ROU=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/angrop/default.nix b/pkgs/development/python-modules/angrop/default.nix
index 1824a0d0e92e..2ee8671c0eaf 100644
--- a/pkgs/development/python-modules/angrop/default.nix
+++ b/pkgs/development/python-modules/angrop/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "angrop";
- version = "9.0.9355";
+ version = "9.0.9438";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "1fs31yd8hhkrrx4gsq13fb5fqi86688pazpmsnsga7hznv60s2ks";
+ sha256 = "sha256-+6fWdl5IcQTygFQbqPSfWvpqdooFN5yeBgPIblOyZEU=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/archinfo/default.nix b/pkgs/development/python-modules/archinfo/default.nix
index d5d25b2c02ed..571e4e291ce7 100644
--- a/pkgs/development/python-modules/archinfo/default.nix
+++ b/pkgs/development/python-modules/archinfo/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "archinfo";
- version = "9.0.9355";
+ version = "9.0.9438";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "1mjs3aba204dqr6k0kgs6h3qyqjq80vinc7awql14rmyad2xndmb";
+ sha256 = "sha256-C3ZBqCNzXcpeLmAPpXci2AA4D5A3cQC6rHPuf/BmT38=";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix
index c2b1fd903b93..155b46d2c07e 100644
--- a/pkgs/development/python-modules/claripy/default.nix
+++ b/pkgs/development/python-modules/claripy/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "claripy";
- version = "9.0.9355";
+ version = "9.0.9438";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "1hmxkrzyhrc75z5d2ndf0z8icddrsd278lg640ihdjv1wabsa76w";
+ sha256 = "sha256-QgBdR2Xs3OscJ1PQ3fSwe0vqsKVSl2E7xf7JZ6B2FYA=";
};
# Use upstream z3 implementation
diff --git a/pkgs/development/python-modules/cle/default.nix b/pkgs/development/python-modules/cle/default.nix
index e65843c81ab7..b29be9078d69 100644
--- a/pkgs/development/python-modules/cle/default.nix
+++ b/pkgs/development/python-modules/cle/default.nix
@@ -15,7 +15,7 @@
let
# The binaries are following the argr projects release cycle
- version = "9.0.9355";
+ version = "9.0.9438";
# Binary files from https://github.com/angr/binaries (only used for testing and only here)
binaries = fetchFromGitHub {
@@ -35,7 +35,7 @@ buildPythonPackage rec {
owner = "angr";
repo = pname;
rev = "v${version}";
- sha256 = "0jqbqp82arrxyiisj96n9laxhwjlrd0vj4a9wa8lgxafi6zv4lc6";
+ sha256 = "sha256-BDhrKVnT1+zeEsQBM3qMDwcPJcePMPlAj/iL7M4GWtM=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/debugpy/default.nix b/pkgs/development/python-modules/debugpy/default.nix
index 9e821bf2dd1a..35ac416d5992 100644
--- a/pkgs/development/python-modules/debugpy/default.nix
+++ b/pkgs/development/python-modules/debugpy/default.nix
@@ -57,10 +57,11 @@ buildPythonPackage rec {
cd src/debugpy/_vendored/pydevd/pydevd_attach_to_process
rm *.so *.dylib *.dll *.exe *.pdb
${stdenv.cc}/bin/c++ linux_and_mac/attach.cpp -Ilinux_and_mac -fPIC -nostartfiles ${{
- "x86_64-linux" = "-shared -m64 -o attach_linux_amd64.so";
- "i686-linux" = "-shared -m32 -o attach_linux_x86.so";
- "x86_64-darwin" = "-std=c++11 -lc -D_REENTRANT -dynamiclib -arch x86_64 -o attach_x86_64.dylib";
- "i686-darwin" = "-std=c++11 -lc -D_REENTRANT -dynamiclib -arch i386 -o attach_x86.dylib";
+ "x86_64-linux" = "-shared -m64 -o attach_linux_amd64.so";
+ "i686-linux" = "-shared -m32 -o attach_linux_x86.so";
+ "x86_64-darwin" = "-std=c++11 -lc -D_REENTRANT -dynamiclib -arch x86_64 -o attach_x86_64.dylib";
+ "i686-darwin" = "-std=c++11 -lc -D_REENTRANT -dynamiclib -arch i386 -o attach_x86.dylib";
+ "aarch64-darwin" = "-std=c++11 -lc -D_REENTRANT -dynamiclib -arch arm64 -o attach_arm64.dylib";
}.${stdenv.hostPlatform.system}}
)'';
@@ -95,6 +96,6 @@ buildPythonPackage rec {
homepage = "https://github.com/microsoft/debugpy";
license = licenses.mit;
maintainers = with maintainers; [ kira-bruneau ];
- platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "i686-darwin" ];
+ platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "i686-darwin" "aarch64-darwin" ];
};
}
diff --git a/pkgs/development/python-modules/env-canada/default.nix b/pkgs/development/python-modules/env-canada/default.nix
index 22894ab9f2a6..5ea89392826b 100644
--- a/pkgs/development/python-modules/env-canada/default.nix
+++ b/pkgs/development/python-modules/env-canada/default.nix
@@ -4,6 +4,7 @@
, fetchFromGitHub
, geopy
, imageio
+, lxml
, pillow
, pytestCheckHook
, python-dateutil
@@ -11,19 +12,20 @@
buildPythonPackage rec {
pname = "env-canada";
- version = "0.4.1";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "michaeldavie";
repo = "env_canada";
rev = "v${version}";
- sha256 = "0v1wmjvi05i6mjh6yxqigbf2spf7842198yp98f7h0nyfjmz96hn";
+ sha256 = "0dgw2mf760r1y0mq8bcvx6y3bcqpaf8p97rzf7pd0pbwvwrcsj3n";
};
propagatedBuildInputs = [
aiohttp
geopy
imageio
+ lxml
pillow
python-dateutil
];
diff --git a/pkgs/development/python-modules/eth-typing/default.nix b/pkgs/development/python-modules/eth-typing/default.nix
index 87aa914b59f7..66ff1ddc10ed 100644
--- a/pkgs/development/python-modules/eth-typing/default.nix
+++ b/pkgs/development/python-modules/eth-typing/default.nix
@@ -2,7 +2,7 @@
buildPythonPackage rec {
pname = "eth-typing";
- version = "2.2.1";
+ version = "2.2.2";
# Tests are missing from the PyPI source tarball so let's use GitHub
# https://github.com/ethereum/eth-typing/issues/8
@@ -10,7 +10,7 @@ buildPythonPackage rec {
owner = "ethereum";
repo = pname;
rev = "v${version}";
- sha256 = "0k9jydsclk81qpkvl7hpchwclm3c89gyzlk17480wcw90nkps9ap";
+ sha256 = "0rkvkacxla4y2blkkfdsq1ywnyqsvg8pwhvadznbag1bfzja4xhv";
};
# setuptools-markdown uses pypandoc which is broken at the moment
diff --git a/pkgs/development/python-modules/exchangelib/default.nix b/pkgs/development/python-modules/exchangelib/default.nix
index c41b04790836..c568583dd378 100644
--- a/pkgs/development/python-modules/exchangelib/default.nix
+++ b/pkgs/development/python-modules/exchangelib/default.nix
@@ -1,40 +1,77 @@
-{ lib, fetchFromGitHub, buildPythonPackage,
- pythonOlder,
- lxml, tzlocal, python-dateutil, pygments, requests-kerberos,
- defusedxml, cached-property, isodate, requests_ntlm, dnspython,
- psutil, requests-mock, pyyaml,
- oauthlib, requests_oauthlib, tzdata,
- flake8, backports-zoneinfo
+{ lib
+, backports-datetime-fromisoformat
+, backports-zoneinfo
+, buildPythonPackage
+, cached-property
+, defusedxml
+, dnspython
+, fetchFromGitHub
+, flake8
+, isodate
+, lxml
+, oauthlib
+, psutil
+, pygments
+, python-dateutil
+, pythonOlder
+, pytz
+, pyyaml
+, requests
+, requests_ntlm
+, requests_oauthlib
+, requests-kerberos
+, requests-mock
+, tzdata
+, tzlocal
}:
buildPythonPackage rec {
pname = "exchangelib";
- version = "4.4.0";
- disabled = pythonOlder "3.5";
+ version = "4.5.0";
+ disabled = pythonOlder "3.6";
- # tests are not present in the PyPI version
src = fetchFromGitHub {
owner = "ecederstrand";
repo = pname;
rev = "v${version}";
- sha256 = "0d6hfbawp68x18ryxamkamf8kgc55xbrll89g3swrqnm2rrhzrqf";
+ sha256 = "sha256-MtWcqsbKls9I7Oj0UlJzWtHsNfAxk4+ojSgK50ljEfs=";
};
- checkInputs = [ psutil requests-mock pyyaml
- flake8
- ];
propagatedBuildInputs = [
- lxml tzlocal tzdata python-dateutil pygments requests-kerberos
- defusedxml cached-property isodate requests_ntlm dnspython
- oauthlib requests_oauthlib
+ cached-property
+ defusedxml
+ dnspython
+ isodate
+ lxml
+ oauthlib
+ pygments
+ requests
+ requests_ntlm
+ requests_oauthlib
+ requests-kerberos
+ tzdata
+ tzlocal
] ++ lib.optionals (pythonOlder "3.9") [
backports-zoneinfo
+ ] ++ lib.optionals (pythonOlder "3.7") [
+ backports-datetime-fromisoformat
];
+ checkInputs = [
+ flake8
+ psutil
+ python-dateutil
+ pytz
+ pyyaml
+ requests-mock
+ ];
+
+ pythonImportsCheck = [ "exchangelib" ];
+
meta = with lib; {
description = "Client for Microsoft Exchange Web Services (EWS)";
- homepage = "https://github.com/ecederstrand/exchangelib";
- license = licenses.bsd2;
+ homepage = "https://github.com/ecederstrand/exchangelib";
+ license = licenses.bsd2;
maintainers = with maintainers; [ catern ];
};
}
diff --git a/pkgs/development/python-modules/phonenumbers/default.nix b/pkgs/development/python-modules/phonenumbers/default.nix
index 6d2a4cac36b3..28c509c6d1bc 100644
--- a/pkgs/development/python-modules/phonenumbers/default.nix
+++ b/pkgs/development/python-modules/phonenumbers/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "phonenumbers";
- version = "8.12.28";
+ version = "8.12.29";
src = fetchPypi {
inherit pname version;
- sha256 = "1g86bf791lr9ggrfgllah9liwa3bx917h9ffrdb01kjwdna4zsj2";
+ sha256 = "12h9l9kgviqvy7asax23ci12bwflpsf8c51ia7wg2k7dd56nlfcs";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/pymyq/default.nix b/pkgs/development/python-modules/pymyq/default.nix
index 71788db45c9a..9fffbab03848 100644
--- a/pkgs/development/python-modules/pymyq/default.nix
+++ b/pkgs/development/python-modules/pymyq/default.nix
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "pymyq";
- version = "3.0.4";
+ version = "3.1.0";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "arraylabs";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-jeoFlLBjD81Bt6E75rk4U1Ach53KGy23QGx+A6X2rpg=";
+ sha256 = "0nrsivgd3andlq9c0p72x06mz1s4ihhibbphccrm5v1fmbzj09zp";
};
propagatedBuildInputs = [
@@ -27,6 +27,7 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
+
pythonImportsCheck = [ "pymyq" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/pyvex/default.nix b/pkgs/development/python-modules/pyvex/default.nix
index 9f681e22be4a..716afd52ca39 100644
--- a/pkgs/development/python-modules/pyvex/default.nix
+++ b/pkgs/development/python-modules/pyvex/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "pyvex";
- version = "9.0.9355";
+ version = "9.0.9438";
src = fetchPypi {
inherit pname version;
- sha256 = "0qnfi5z905lrzj8rf88prk5fz9cj0q2yag3xykv3gkmhs9fw3w0x";
+ sha256 = "sha256-L7Y80qWecmAP9aBuUh1YMBNhvLGPJUfj80mdEbhzC9Y=";
};
postPatch = lib.optionalString stdenv.isDarwin ''
diff --git a/pkgs/development/python-modules/rich/default.nix b/pkgs/development/python-modules/rich/default.nix
index e939d3fc9334..323bd8ba8685 100644
--- a/pkgs/development/python-modules/rich/default.nix
+++ b/pkgs/development/python-modules/rich/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "rich";
- version = "10.4.0";
+ version = "10.7.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "willmcgugan";
repo = pname;
rev = "v${version}";
- sha256 = "0z01bvn8zx69simk26jv5ngvqv35fs7i0wbg1hjcd37lmv3v6261";
+ sha256 = "1drh08cmcn8dqi0mpfwscz3ljsv2s60kyhxy6iiw5si7rf717j4p";
};
nativeBuildInputs = [ poetry-core ];
diff --git a/pkgs/development/python-modules/typed-settings/default.nix b/pkgs/development/python-modules/typed-settings/default.nix
index 9791c2b04688..47c98ad9531e 100644
--- a/pkgs/development/python-modules/typed-settings/default.nix
+++ b/pkgs/development/python-modules/typed-settings/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "typed-settings";
- version = "0.9.2";
+ version = "0.10.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
- sha256 = "203c1c6ec73dd1eb0fecd4981b31f8e05042f0dda16443190ac9ade1113ff53d";
+ sha256 = "1fr6qkq3ldlp5i5l4b891w9ail9lfhaxlar3yij912slq5w0s8aw";
};
nativeBuildInputs = [
diff --git a/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock b/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock
index 094c703b65f6..a51aef852d97 100644
--- a/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock
+++ b/pkgs/development/tools/wasm-bindgen-cli/Cargo.lock
@@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
+version = 3
+
[[package]]
name = "add"
version = "0.1.0"
@@ -15,9 +17,9 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
name = "aho-corasick"
-version = "0.7.18"
+version = "0.7.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
+checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
dependencies = [
"memchr",
]
@@ -33,15 +35,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.40"
+version = "1.0.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b"
-
-[[package]]
-name = "arrayref"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
+checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486"
[[package]]
name = "arrayvec"
@@ -91,7 +87,7 @@ checksum = "2582b77e0f3c506ec4838a25fa8a5f97b9bed72bb6d3d272ea1c031d8bd373bc"
dependencies = [
"askama_escape",
"humansize",
- "nom 6.1.2",
+ "nom 6.2.1",
"num-traits 0.2.14",
"percent-encoding",
"proc-macro2",
@@ -103,13 +99,13 @@ dependencies = [
[[package]]
name = "assert_cmd"
-version = "1.0.5"
+version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a88b6bd5df287567ffdf4ddf4d33060048e1068308e5f62d81c6f9824a045a48"
+checksum = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe"
dependencies = [
"bstr",
"doc-comment",
- "predicates",
+ "predicates 2.0.1",
"predicates-core",
"predicates-tree",
"wait-timeout",
@@ -126,18 +122,18 @@ dependencies = [
"winapi",
]
-[[package]]
-name = "autocfg"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
-
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
+[[package]]
+name = "base-x"
+version = "0.2.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
+
[[package]]
name = "base64"
version = "0.9.3"
@@ -148,15 +144,6 @@ dependencies = [
"safemem",
]
-[[package]]
-name = "base64"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
-dependencies = [
- "byteorder",
-]
-
[[package]]
name = "base64"
version = "0.13.0"
@@ -187,22 +174,11 @@ dependencies = [
"wyz",
]
-[[package]]
-name = "blake2b_simd"
-version = "0.5.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
-dependencies = [
- "arrayref",
- "arrayvec",
- "constant_time_eq",
-]
-
[[package]]
name = "bstr"
-version = "0.2.16"
+version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90682c8d613ad3373e66de8c6411e0ae2ab2571e879d2efbf73558cc66f21279"
+checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
dependencies = [
"lazy_static",
"memchr",
@@ -242,9 +218,9 @@ dependencies = [
[[package]]
name = "cc"
-version = "1.0.68"
+version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
+checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
[[package]]
name = "cfg-if"
@@ -274,7 +250,7 @@ dependencies = [
"libc",
"num-integer",
"num-traits 0.2.14",
- "time",
+ "time 0.1.43",
"winapi",
]
@@ -308,15 +284,6 @@ dependencies = [
"web-sys",
]
-[[package]]
-name = "cloudabi"
-version = "0.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
-dependencies = [
- "bitflags 1.2.1",
-]
-
[[package]]
name = "color_quant"
version = "1.1.0"
@@ -342,10 +309,10 @@ dependencies = [
]
[[package]]
-name = "constant_time_eq"
-version = "0.1.5"
+name = "const_fn"
+version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
+checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
[[package]]
name = "crossbeam-channel"
@@ -359,9 +326,9 @@ dependencies = [
[[package]]
name = "crossbeam-deque"
-version = "0.8.0"
+version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
+checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-epoch",
@@ -408,9 +375,9 @@ dependencies = [
[[package]]
name = "curl-sys"
-version = "0.4.44+curl-7.77.0"
+version = "0.4.45+curl-7.78.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4b6d85e9322b193f117c966e79c2d6929ec08c02f339f950044aba12e20bbaf1"
+checksum = "de9e5a72b1c744eb5dd20b2be4d7eb84625070bb5c4ab9b347b70464ab1e62eb"
dependencies = [
"cc",
"libc",
@@ -451,15 +418,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
[[package]]
-name = "dirs"
-version = "1.0.5"
+name = "difflib"
+version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
-dependencies = [
- "libc",
- "redox_users",
- "winapi",
-]
+checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
+
+[[package]]
+name = "discard"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "doc-comment"
@@ -504,13 +472,13 @@ dependencies = [
[[package]]
name = "env_logger"
-version = "0.8.3"
+version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "17392a012ea30ef05a610aa97dfb49496e71c9f676b27879922ea5bdf60d9d3f"
+checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
dependencies = [
"atty",
"humantime",
- "log 0.4.14",
+ "log",
"regex",
"termcolor",
]
@@ -529,13 +497,13 @@ dependencies = [
[[package]]
name = "filetime"
-version = "0.2.14"
+version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8"
+checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
dependencies = [
"cfg-if 1.0.0",
"libc",
- "redox_syscall 0.2.8",
+ "redox_syscall",
"winapi",
]
@@ -573,12 +541,6 @@ dependencies = [
"percent-encoding",
]
-[[package]]
-name = "fuchsia-cprng"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
-
[[package]]
name = "funty"
version = "1.1.0"
@@ -587,9 +549,9 @@ checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
[[package]]
name = "futures"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
+checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
dependencies = [
"futures-channel",
"futures-core",
@@ -602,9 +564,9 @@ dependencies = [
[[package]]
name = "futures-channel"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
+checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
dependencies = [
"futures-core",
"futures-sink",
@@ -621,9 +583,9 @@ dependencies = [
[[package]]
name = "futures-core"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
+checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
[[package]]
name = "futures-core-preview"
@@ -633,9 +595,9 @@ checksum = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a"
[[package]]
name = "futures-executor"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79"
+checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
dependencies = [
"futures-core",
"futures-task",
@@ -644,9 +606,9 @@ dependencies = [
[[package]]
name = "futures-io"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
+checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
[[package]]
name = "futures-lite"
@@ -660,11 +622,11 @@ dependencies = [
[[package]]
name = "futures-macro"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
+checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
"proc-macro-hack",
"proc-macro2",
"quote",
@@ -673,23 +635,23 @@ dependencies = [
[[package]]
name = "futures-sink"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282"
+checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
[[package]]
name = "futures-task"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
+checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
[[package]]
name = "futures-util"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
+checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
"futures-channel",
"futures-core",
"futures-io",
@@ -704,17 +666,6 @@ dependencies = [
"slab",
]
-[[package]]
-name = "getrandom"
-version = "0.1.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi 0.9.0+wasi-snapshot-preview1",
-]
-
[[package]]
name = "getrandom"
version = "0.2.3"
@@ -723,7 +674,7 @@ checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if 1.0.0",
"libc",
- "wasi 0.10.2+wasi-snapshot-preview1",
+ "wasi",
]
[[package]]
@@ -746,6 +697,7 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
name = "guide-supported-types-examples"
version = "0.1.0"
dependencies = [
+ "js-sys",
"wasm-bindgen",
]
@@ -767,9 +719,9 @@ dependencies = [
[[package]]
name = "hermit-abi"
-version = "0.1.18"
+version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
+checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
@@ -842,6 +794,15 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7e0062d2dc2f17d2f13750d95316ae8a2ff909af0fda957084f5defd87c43bb"
+[[package]]
+name = "itertools"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
+dependencies = [
+ "either",
+]
+
[[package]]
name = "itoa"
version = "0.4.7"
@@ -859,7 +820,7 @@ dependencies = [
[[package]]
name = "js-sys"
-version = "0.3.51"
+version = "0.3.52"
dependencies = [
"wasm-bindgen",
"wasm-bindgen-futures",
@@ -901,9 +862,9 @@ dependencies = [
[[package]]
name = "libc"
-version = "0.2.95"
+version = "0.2.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36"
+checksum = "a7f823d141fe0a24df1e23b4af4e3c7ba9e5966ec514ea068c93024aa7deb765"
[[package]]
name = "libz-sys"
@@ -917,15 +878,6 @@ dependencies = [
"vcpkg",
]
-[[package]]
-name = "log"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
-dependencies = [
- "log 0.4.14",
-]
-
[[package]]
name = "log"
version = "0.4.14"
@@ -949,9 +901,9 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
[[package]]
name = "memchr"
-version = "2.4.0"
+version = "2.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
+checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
[[package]]
name = "memoffset"
@@ -959,43 +911,38 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
]
[[package]]
name = "mime"
-version = "0.2.6"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0"
-dependencies = [
- "log 0.3.9",
-]
+checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "mime_guess"
-version = "1.8.8"
+version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "216929a5ee4dd316b1702eedf5e74548c123d370f47841ceaac38ca154690ca3"
+checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
dependencies = [
"mime",
- "phf",
- "phf_codegen",
"unicase",
]
[[package]]
name = "multipart"
-version = "0.16.1"
+version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "136eed74cadb9edd2651ffba732b19a450316b680e4f48d6c79e905799e19d01"
+checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
dependencies = [
"buf_redux",
"httparse",
- "log 0.4.14",
+ "log",
"mime",
"mime_guess",
"quick-error",
- "rand 0.6.5",
+ "rand",
"safemem",
"tempfile",
"twoway",
@@ -1015,20 +962,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
dependencies = [
"memchr",
- "version_check 0.9.3",
+ "version_check",
]
[[package]]
name = "nom"
-version = "6.1.2"
+version = "6.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
+checksum = "9c5c51b9083a3c620fa67a2a635d1ce7d95b897e957d6b28ff9a5da960a103a6"
dependencies = [
"bitvec",
"funty",
"lexical-core",
"memchr",
- "version_check 0.9.3",
+ "version_check",
]
[[package]]
@@ -1043,7 +990,7 @@ version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
"num-traits 0.2.14",
]
@@ -1053,7 +1000,7 @@ version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
"num-integer",
"num-traits 0.2.14",
]
@@ -1083,7 +1030,7 @@ version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
]
[[package]]
@@ -1098,15 +1045,15 @@ dependencies = [
[[package]]
name = "once_cell"
-version = "1.7.2"
+version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
+checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
[[package]]
name = "openssl"
-version = "0.10.34"
+version = "0.10.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d7830286ad6a3973c0f1d9b73738f69c76b739301d0229c4b96501695cbe4c8"
+checksum = "549430950c79ae24e6d02e0b7404534ecf311d94cc9f861e9e4020187d13d885"
dependencies = [
"bitflags 1.2.1",
"cfg-if 1.0.0",
@@ -1133,11 +1080,11 @@ dependencies = [
[[package]]
name = "openssl-sys"
-version = "0.9.63"
+version = "0.9.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b6b0d6fb7d80f877617dfcb014e605e2b5ab2fb0afdf27935219bb6bd984cb98"
+checksum = "7a7907e3bfa08bb85105209cdfcb6c63d109f8f6c1ed6ca318fff5c1853fbc1d"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
"cc",
"libc",
"openssl-src",
@@ -1160,50 +1107,11 @@ dependencies = [
"web-sys",
]
-[[package]]
-name = "phf"
-version = "0.7.24"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18"
-dependencies = [
- "phf_shared",
-]
-
-[[package]]
-name = "phf_codegen"
-version = "0.7.24"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e"
-dependencies = [
- "phf_generator",
- "phf_shared",
-]
-
-[[package]]
-name = "phf_generator"
-version = "0.7.24"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
-dependencies = [
- "phf_shared",
- "rand 0.6.5",
-]
-
-[[package]]
-name = "phf_shared"
-version = "0.7.24"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
-dependencies = [
- "siphasher",
- "unicase",
-]
-
[[package]]
name = "pin-project-lite"
-version = "0.2.6"
+version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
+checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
[[package]]
name = "pin-utils"
@@ -1248,6 +1156,17 @@ dependencies = [
"regex",
]
+[[package]]
+name = "predicates"
+version = "2.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc3d91237f5de3bcd9d927e24d03b495adb6135097b001cea7403e2d573d00a9"
+dependencies = [
+ "difflib",
+ "itertools",
+ "predicates-core",
+]
+
[[package]]
name = "predicates-core"
version = "1.0.2"
@@ -1256,9 +1175,9 @@ checksum = "57e35a3326b75e49aa85f5dc6ec15b41108cf5aee58eabb1f274dd18b73c2451"
[[package]]
name = "predicates-tree"
-version = "1.0.2"
+version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "15f553275e5721409451eb85e15fd9a860a6e5ab4496eb215987502b5f5391f2"
+checksum = "d7dd0fd014130206c9352efbdc92be592751b2b9274dff685348341082c6ea3d"
dependencies = [
"predicates-core",
"treeline",
@@ -1274,7 +1193,7 @@ dependencies = [
"proc-macro2",
"quote",
"syn",
- "version_check 0.9.3",
+ "version_check",
]
[[package]]
@@ -1285,7 +1204,7 @@ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
- "version_check 0.9.3",
+ "version_check",
]
[[package]]
@@ -1302,9 +1221,9 @@ checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
[[package]]
name = "proc-macro2"
-version = "1.0.27"
+version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
+checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612"
dependencies = [
"unicode-xid",
]
@@ -1332,189 +1251,42 @@ checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
[[package]]
name = "rand"
-version = "0.6.5"
+version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
-dependencies = [
- "autocfg 0.1.7",
- "libc",
- "rand_chacha 0.1.1",
- "rand_core 0.4.2",
- "rand_hc 0.1.0",
- "rand_isaac",
- "rand_jitter",
- "rand_os",
- "rand_pcg",
- "rand_xorshift",
- "winapi",
-]
-
-[[package]]
-name = "rand"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-dependencies = [
- "getrandom 0.1.16",
- "libc",
- "rand_chacha 0.2.2",
- "rand_core 0.5.1",
- "rand_hc 0.2.0",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
+checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
- "rand_chacha 0.3.0",
- "rand_core 0.6.2",
- "rand_hc 0.3.0",
+ "rand_chacha",
+ "rand_core",
+ "rand_hc",
]
[[package]]
name = "rand_chacha"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
-dependencies = [
- "autocfg 0.1.7",
- "rand_core 0.3.1",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.5.1",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.6.2",
-]
-
-[[package]]
-name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
- "rand_core 0.4.2",
+ "ppv-lite86",
+ "rand_core",
]
[[package]]
name = "rand_core"
-version = "0.4.2"
+version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
-
-[[package]]
-name = "rand_core"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
+checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
- "getrandom 0.1.16",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
-dependencies = [
- "getrandom 0.2.3",
+ "getrandom",
]
[[package]]
name = "rand_hc"
-version = "0.1.0"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
+checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
- "rand_core 0.3.1",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-dependencies = [
- "rand_core 0.5.1",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
-dependencies = [
- "rand_core 0.6.2",
-]
-
-[[package]]
-name = "rand_isaac"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
-dependencies = [
- "rand_core 0.3.1",
-]
-
-[[package]]
-name = "rand_jitter"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
-dependencies = [
- "libc",
- "rand_core 0.4.2",
- "winapi",
-]
-
-[[package]]
-name = "rand_os"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
-dependencies = [
- "cloudabi",
- "fuchsia-cprng",
- "libc",
- "rand_core 0.4.2",
- "rdrand",
- "winapi",
-]
-
-[[package]]
-name = "rand_pcg"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
-dependencies = [
- "autocfg 0.1.7",
- "rand_core 0.4.2",
-]
-
-[[package]]
-name = "rand_xorshift"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
-dependencies = [
- "rand_core 0.3.1",
+ "rand_core",
]
[[package]]
@@ -1523,7 +1295,7 @@ version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
dependencies = [
- "autocfg 1.0.1",
+ "autocfg",
"crossbeam-deque",
"either",
"rayon-core",
@@ -1567,46 +1339,20 @@ dependencies = [
"serde_derive",
]
-[[package]]
-name = "rdrand"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
-dependencies = [
- "rand_core 0.3.1",
-]
-
[[package]]
name = "redox_syscall"
-version = "0.1.57"
+version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
-
-[[package]]
-name = "redox_syscall"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
+checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
"bitflags 1.2.1",
]
-[[package]]
-name = "redox_users"
-version = "0.3.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
-dependencies = [
- "getrandom 0.1.16",
- "redox_syscall 0.1.57",
- "rust-argon2",
-]
-
[[package]]
name = "regex"
-version = "1.5.4"
+version = "1.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
+checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759"
dependencies = [
"aho-corasick",
"memchr",
@@ -1644,40 +1390,27 @@ dependencies = [
[[package]]
name = "rouille"
-version = "3.1.1"
+version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0cfaebc11a52b7415f07e69f18f8240a0ea5eedf0dcb888c5fb7b432e7b4729b"
+checksum = "8263ea8c0988dbdd89e679d408eaa5505bb886677e997562646c2e2ba4d2e6db"
dependencies = [
- "base64 0.10.1",
+ "base64 0.13.0",
"chrono",
"filetime",
"multipart",
"num_cpus",
"percent-encoding",
- "rand 0.7.3",
+ "rand",
"serde",
"serde_derive",
"serde_json",
"sha1",
- "term",
"threadpool",
- "time",
+ "time 0.2.27",
"tiny_http",
"url",
]
-[[package]]
-name = "rust-argon2"
-version = "0.8.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
-dependencies = [
- "base64 0.13.0",
- "blake2b_simd",
- "constant_time_eq",
- "crossbeam-utils",
-]
-
[[package]]
name = "rust-duck-typed-interfaces"
version = "0.1.0"
@@ -1687,9 +1420,18 @@ dependencies = [
[[package]]
name = "rustc-demangle"
-version = "0.1.19"
+version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "410f7acf3cb3a44527c5d9546bad4bf4e6c460915d5f9f2fc524498bfe8f70ce"
+checksum = "dead70b0b5e03e9c814bcb6b01e03e68f7c57a80aa48c72ec92152ab3e818d49"
+
+[[package]]
+name = "rustc_version"
+version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
+dependencies = [
+ "semver",
+]
[[package]]
name = "ryu"
@@ -1742,19 +1484,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
-name = "serde"
-version = "1.0.126"
+name = "semver"
+version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
+checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
+dependencies = [
+ "semver-parser",
+]
+
+[[package]]
+name = "semver-parser"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
+
+[[package]]
+name = "serde"
+version = "1.0.127"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f03b9878abf6d14e6779d3f24f07b2cfa90352cfec4acc5aab8f1ac7f146fae8"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.126"
+version = "1.0.127"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
+checksum = "a024926d3432516606328597e0f224a51355a493b49fdd67e9209187cbe55ecc"
dependencies = [
"proc-macro2",
"quote",
@@ -1763,9 +1520,9 @@ dependencies = [
[[package]]
name = "serde_json"
-version = "1.0.64"
+version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
+checksum = "336b10da19a12ad094b59d870ebde26a45402e5b470add4b5fd03c5048a32127"
dependencies = [
"itoa",
"ryu",
@@ -1778,23 +1535,17 @@ version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
-[[package]]
-name = "siphasher"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac"
-
[[package]]
name = "slab"
-version = "0.4.3"
+version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
+checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
[[package]]
name = "socket2"
-version = "0.4.0"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
+checksum = "765f090f0e423d2b55843402a07915add955e7d60657db13707a159727326cad"
dependencies = [
"libc",
"winapi",
@@ -1806,12 +1557,70 @@ version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3"
+[[package]]
+name = "standback"
+version = "0.2.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
+dependencies = [
+ "version_check",
+]
+
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
+[[package]]
+name = "stdweb"
+version = "0.4.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
+dependencies = [
+ "discard",
+ "rustc_version",
+ "stdweb-derive",
+ "stdweb-internal-macros",
+ "stdweb-internal-runtime",
+ "wasm-bindgen",
+]
+
+[[package]]
+name = "stdweb-derive"
+version = "0.5.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "serde",
+ "serde_derive",
+ "syn",
+]
+
+[[package]]
+name = "stdweb-internal-macros"
+version = "0.2.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
+dependencies = [
+ "base-x",
+ "proc-macro2",
+ "quote",
+ "serde",
+ "serde_derive",
+ "serde_json",
+ "sha1",
+ "syn",
+]
+
+[[package]]
+name = "stdweb-internal-runtime"
+version = "0.1.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
+
[[package]]
name = "strsim"
version = "0.8.0"
@@ -1826,9 +1635,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "structopt"
-version = "0.3.21"
+version = "0.3.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c"
+checksum = "69b041cdcb67226aca307e6e7be44c8806423d83e018bd662360a93dabce4d71"
dependencies = [
"clap",
"lazy_static",
@@ -1837,9 +1646,9 @@ dependencies = [
[[package]]
name = "structopt-derive"
-version = "0.4.14"
+version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90"
+checksum = "7813934aecf5f51a54775e00068c237de98489463968231a51746bbbc03f9c10"
dependencies = [
"heck",
"proc-macro-error",
@@ -1850,9 +1659,9 @@ dependencies = [
[[package]]
name = "syn"
-version = "1.0.72"
+version = "1.0.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
+checksum = "1873d832550d4588c3dbc20f01361ab00bfe741048f71e3fecf145a7cc18b29c"
dependencies = [
"proc-macro2",
"quote",
@@ -1873,23 +1682,12 @@ checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
dependencies = [
"cfg-if 1.0.0",
"libc",
- "rand 0.8.3",
- "redox_syscall 0.2.8",
+ "rand",
+ "redox_syscall",
"remove_dir_all",
"winapi",
]
-[[package]]
-name = "term"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42"
-dependencies = [
- "byteorder",
- "dirs",
- "winapi",
-]
-
[[package]]
name = "termcolor"
version = "1.1.2"
@@ -1927,6 +1725,44 @@ dependencies = [
"winapi",
]
+[[package]]
+name = "time"
+version = "0.2.27"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
+dependencies = [
+ "const_fn",
+ "libc",
+ "standback",
+ "stdweb",
+ "time-macros",
+ "version_check",
+ "winapi",
+]
+
+[[package]]
+name = "time-macros"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
+dependencies = [
+ "proc-macro-hack",
+ "time-macros-impl",
+]
+
+[[package]]
+name = "time-macros-impl"
+version = "0.1.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
+dependencies = [
+ "proc-macro-hack",
+ "proc-macro2",
+ "quote",
+ "standback",
+ "syn",
+]
+
[[package]]
name = "tiny_http"
version = "0.8.2"
@@ -1936,15 +1772,15 @@ dependencies = [
"ascii",
"chrono",
"chunked_transfer",
- "log 0.4.14",
+ "log",
"url",
]
[[package]]
name = "tinyvec"
-version = "1.2.0"
+version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
+checksum = "848a1e1181b9f6753b5e96a092749e29b11d19ede67dfbbd6c7dc7e0f49b5338"
dependencies = [
"tinyvec_macros",
]
@@ -1983,9 +1819,9 @@ checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41"
[[package]]
name = "trybuild"
-version = "1.0.42"
+version = "1.0.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1768998d9a3b179411618e377dbb134c58a88cda284b0aa71c42c40660127d46"
+checksum = "c02c413315329fc96167f922b46fd0caa3a43f4697b7a7896b183c7142635832"
dependencies = [
"glob",
"lazy_static",
@@ -2015,11 +1851,11 @@ dependencies = [
[[package]]
name = "unicase"
-version = "1.4.2"
+version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
+checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
- "version_check 0.1.5",
+ "version_check",
]
[[package]]
@@ -2042,9 +1878,9 @@ dependencies = [
[[package]]
name = "unicode-segmentation"
-version = "1.7.1"
+version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
+checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
[[package]]
name = "unicode-width"
@@ -2072,9 +1908,9 @@ dependencies = [
[[package]]
name = "vcpkg"
-version = "0.2.13"
+version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "025ce40a007e1907e58d5bc1a594def78e5573bb0b1160bc389634e8f12e4faa"
+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "vec_map"
@@ -2082,12 +1918,6 @@ version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-[[package]]
-name = "version_check"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
-
[[package]]
name = "version_check"
version = "0.9.3"
@@ -2112,7 +1942,7 @@ dependencies = [
"anyhow",
"id-arena",
"leb128",
- "log 0.4.14",
+ "log",
"rayon",
"walrus-macro",
"wasmparser 0.77.0",
@@ -2130,12 +1960,6 @@ dependencies = [
"syn",
]
-[[package]]
-name = "wasi"
-version = "0.9.0+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
@@ -2144,7 +1968,7 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "wasm-bindgen"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
@@ -2160,11 +1984,11 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"bumpalo",
"lazy_static",
- "log 0.4.14",
+ "log",
"proc-macro2",
"quote",
"syn",
@@ -2181,7 +2005,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-cli"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"assert_cmd",
@@ -2189,9 +2013,9 @@ dependencies = [
"diff",
"docopt",
"env_logger",
- "log 0.4.14",
+ "log",
"openssl",
- "predicates",
+ "predicates 1.0.8",
"rayon",
"rouille",
"serde",
@@ -2209,11 +2033,11 @@ dependencies = [
[[package]]
name = "wasm-bindgen-cli-support"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"base64 0.9.3",
- "log 0.4.14",
+ "log",
"rustc-demangle",
"serde_json",
"tempfile",
@@ -2231,7 +2055,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-externref-xform"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"rayon",
@@ -2243,7 +2067,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-futures"
-version = "0.4.24"
+version = "0.4.25"
dependencies = [
"cfg-if 1.0.0",
"futures-channel-preview",
@@ -2257,7 +2081,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"quote",
"trybuild",
@@ -2268,7 +2092,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"proc-macro2",
"quote",
@@ -2279,7 +2103,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-multi-value-xform"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"rayon",
@@ -2300,11 +2124,11 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
-version = "0.2.74"
+version = "0.2.75"
[[package]]
name = "wasm-bindgen-test"
-version = "0.3.24"
+version = "0.3.25"
dependencies = [
"console_error_panic_hook",
"js-sys",
@@ -2330,7 +2154,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-test-macro"
-version = "0.3.24"
+version = "0.3.25"
dependencies = [
"proc-macro2",
"quote",
@@ -2338,7 +2162,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-threads-xform"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"walrus",
@@ -2347,7 +2171,7 @@ dependencies = [
[[package]]
name = "wasm-bindgen-wasm-conventions"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"walrus",
@@ -2355,10 +2179,10 @@ dependencies = [
[[package]]
name = "wasm-bindgen-wasm-interpreter"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
- "log 0.4.14",
+ "log",
"tempfile",
"walrus",
"wasm-bindgen-wasm-conventions",
@@ -2367,13 +2191,13 @@ dependencies = [
[[package]]
name = "wasm-bindgen-webidl"
-version = "0.2.74"
+version = "0.2.75"
dependencies = [
"anyhow",
"env_logger",
"heck",
"lazy_static",
- "log 0.4.14",
+ "log",
"proc-macro2",
"quote",
"sourcefile",
@@ -2431,18 +2255,18 @@ checksum = "b35c86d22e720a07d954ebbed772d01180501afe7d03d464f413bb5f8914a8d6"
[[package]]
name = "wasmparser"
-version = "0.78.2"
+version = "0.80.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "52144d4c78e5cf8b055ceab8e5fa22814ce4315d6002ad32cfd914f37c12fd65"
+checksum = "a5f71b80b8193e50910919e7d1bc956d2b4f42b1cb1fad84bacb59332c16f2cf"
[[package]]
name = "wasmprinter"
-version = "0.2.26"
+version = "0.2.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ccec894c70710c2e4669320a532cb2b9cfb97adb0429745642f8ce76916ed85"
+checksum = "b48e4f2999b9930e9b037e328357d7d2367e0d8ea6e534be90aeff60976c0452"
dependencies = [
"anyhow",
- "wasmparser 0.78.2",
+ "wasmparser 0.80.0",
]
[[package]]
@@ -2456,25 +2280,25 @@ dependencies = [
[[package]]
name = "wast"
-version = "35.0.2"
+version = "37.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
+checksum = "9bc7b9a76845047ded00e031754ff410afee0d50fbdf62b55bdeecd245063d68"
dependencies = [
"leb128",
]
[[package]]
name = "wat"
-version = "1.0.37"
+version = "1.0.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ec280a739b69173e0ffd12c1658507996836ba4e992ed9bc1e5385a0bd72a02"
+checksum = "2ab2cc8d9a69d1ab28a41d9149bb06bb927aba8fc9d56625f8b597a564c83f50"
dependencies = [
- "wast 35.0.2",
+ "wast 37.0.0",
]
[[package]]
name = "web-sys"
-version = "0.3.51"
+version = "0.3.52"
dependencies = [
"js-sys",
"wasm-bindgen",
diff --git a/pkgs/development/tools/wasm-bindgen-cli/default.nix b/pkgs/development/tools/wasm-bindgen-cli/default.nix
index ef8affdf2446..fba7c979390a 100644
--- a/pkgs/development/tools/wasm-bindgen-cli/default.nix
+++ b/pkgs/development/tools/wasm-bindgen-cli/default.nix
@@ -11,7 +11,7 @@
rustPlatform.buildRustPackage rec {
pname = "wasm-bindgen-cli";
- version = "0.2.74";
+ version = "0.2.75";
src =
let
@@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
owner = "rustwasm";
repo = "wasm-bindgen";
rev = version;
- hash = "sha256-GsraYfWzUZjFpPpufTyXF0i2llBzjh04iTKio6m4NRA=";
+ hash = "sha256-eRAe6/v0Xrtd1d2k6p0WETZ2vkQkiDRZOds7y0DidY0=";
};
in
runCommand "source" { } ''
@@ -31,14 +31,14 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security curl ];
nativeBuildInputs = [ pkg-config ];
- cargoHash = "sha256-djeI7kSGRHMpXnsbVlM2CDek02u5tFAsyAdHwbKC0y8=";
+ cargoHash = "sha256-xZrGBRnsBQKvqGkZyU7FQCkx0dHt/hXlrVLSvGKx27k=";
cargoBuildFlags = [ "-p" pname ];
meta = with lib; {
homepage = "https://rustwasm.github.io/docs/wasm-bindgen/";
license = licenses.asl20;
description = "Facilitating high-level interactions between wasm modules and JavaScript";
- maintainers = with maintainers; [ ma27 rizary ];
+ maintainers = with maintainers; [ ma27 nitsky rizary ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/os-specific/linux/kernel/linux-lqx.nix b/pkgs/os-specific/linux/kernel/linux-lqx.nix
index 23a6b0b2d362..dae6072aa780 100644
--- a/pkgs/os-specific/linux/kernel/linux-lqx.nix
+++ b/pkgs/os-specific/linux/kernel/linux-lqx.nix
@@ -1,8 +1,8 @@
{ lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args:
let
- version = "5.12.19";
- suffix = "lqx2";
+ version = "5.13.9";
+ suffix = "lqx1";
in
buildLinux (args // {
@@ -14,11 +14,11 @@ buildLinux (args // {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
- sha256 = "sha256-r2DvKLlm1a1VuJwC81tRuRwCd6H21T3MsBAC3b9TUbs=";
+ sha256 = "sha256-aAnwPw1qoGhUdWN/uaQa+5bi0DFZB/wDfNow7FgMMFE=";
};
extraMeta = {
- branch = "5.12/master";
+ branch = "5.13/master";
maintainers = with lib.maintainers; [ atemu ];
description = linux_zen.meta.description + " (Same as linux_zen but less aggressive release schedule)";
};
diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix
index 1651835e30e3..9f8ea6396a59 100644
--- a/pkgs/servers/minio/default.nix
+++ b/pkgs/servers/minio/default.nix
@@ -15,16 +15,16 @@ let
in
buildGoModule rec {
pname = "minio";
- version = "2021-05-16T05-32-34Z";
+ version = "2021-08-05T22-01-19Z";
src = fetchFromGitHub {
owner = "minio";
repo = "minio";
rev = "RELEASE.${version}";
- sha256 = "sha256-+zanqJMYNg/1c20cMm+bqVsW8VquucxEK5NiFAqOmS0=";
+ sha256 = "0lslgma04nby03bibhzgl4hl7wxk91xk3c46ibv6p33pc1a8ywrv";
};
- vendorSha256 = "sha256-5aDD68nugFyWsySLEj7LXAdtFXFKWnqfz+5zF5wC2qw=";
+ vendorSha256 = "1dhawj4gzm017qgf678i5lb7s0djddvf4923ipgnzm8q463sywd6";
doCheck = false;
diff --git a/pkgs/servers/mqtt/mosquitto/default.nix b/pkgs/servers/mqtt/mosquitto/default.nix
index 9e251e1bc224..984d21155989 100644
--- a/pkgs/servers/mqtt/mosquitto/default.nix
+++ b/pkgs/servers/mqtt/mosquitto/default.nix
@@ -12,19 +12,29 @@
, openssl
, withSystemd ? stdenv.isLinux
, systemd
+, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "mosquitto";
- version = "2.0.10";
+ version = "2.0.11";
src = fetchFromGitHub {
owner = "eclipse";
repo = pname;
rev = "v${version}";
- sha256 = "144vw7b9ja4lci4mplbxs048x9aixd9c3s7rg6wc1k31w099rb12";
+ sha256 = "1i0kkqhjxqahkhsl60s46zlywa87jakv7h4sr3fhi1v53vwpb9mg";
};
+ patches = lib.optionals stdenv.isDarwin [
+ (fetchpatch {
+ name = "revert-cmake-shared-to-module.patch"; # See https://github.com/eclipse/mosquitto/issues/2277
+ url = "https://github.com/eclipse/mosquitto/commit/e21eaeca37196439b3e89bb8fd2eb1903ef94845.patch";
+ sha256 = "14syi2c1rks8sl2aw09my276w45yq1iasvzkqcrqwy4drdqrf069";
+ revert = true;
+ })
+ ];
+
postPatch = ''
for f in html manpage ; do
substituteInPlace man/$f.xsl \
diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix
index 2999d4a99a59..81f813aae9c7 100644
--- a/pkgs/servers/x11/xorg/default.nix
+++ b/pkgs/servers/x11/xorg/default.nix
@@ -3177,11 +3177,11 @@ lib.makeScope newScope (self: with self; {
# THIS IS A GENERATED FILE. DO NOT EDIT!
xrdb = callPackage ({ stdenv, pkg-config, fetchurl, libX11, libXmu, xorgproto }: stdenv.mkDerivation {
pname = "xrdb";
- version = "1.2.0";
+ version = "1.2.1";
builder = ./builder.sh;
src = fetchurl {
- url = "mirror://xorg/individual/app/xrdb-1.2.0.tar.bz2";
- sha256 = "0ik9gh6363c47pr0dp7q22nfs8vmavjg2v4bsr0604ppl77nafpj";
+ url = "mirror://xorg/individual/app/xrdb-1.2.1.tar.bz2";
+ sha256 = "1d78prd8sfszq2rwwlb32ksph4fymf988lp75aj8iysg44f06pag";
};
hardeningDisable = [ "bindnow" "relro" ];
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/servers/x11/xorg/tarballs.list b/pkgs/servers/x11/xorg/tarballs.list
index 11adba253334..0f6ab40ed906 100644
--- a/pkgs/servers/x11/xorg/tarballs.list
+++ b/pkgs/servers/x11/xorg/tarballs.list
@@ -62,7 +62,7 @@ mirror://xorg/individual/app/xmore-1.0.3.tar.bz2
mirror://xorg/individual/app/xpr-1.0.5.tar.bz2
mirror://xorg/individual/app/xprop-1.2.5.tar.bz2
mirror://xorg/individual/app/xrandr-1.5.1.tar.xz
-mirror://xorg/individual/app/xrdb-1.2.0.tar.bz2
+mirror://xorg/individual/app/xrdb-1.2.1.tar.bz2
mirror://xorg/individual/app/xrefresh-1.0.6.tar.bz2
mirror://xorg/individual/app/xset-1.2.4.tar.bz2
mirror://xorg/individual/app/xsetroot-1.1.2.tar.bz2
diff --git a/pkgs/tools/misc/remind/default.nix b/pkgs/tools/misc/remind/default.nix
index d10811ffa049..1ef0ee9dd46f 100644
--- a/pkgs/tools/misc/remind/default.nix
+++ b/pkgs/tools/misc/remind/default.nix
@@ -16,11 +16,11 @@ let
in
tcl.mkTclDerivation rec {
pname = "remind";
- version = "03.03.06";
+ version = "03.03.07";
src = fetchurl {
url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
- sha256 = "sha256-lpoMAXDJxwODY0/aoo25GRBYWFhE4uf11pR5/ITZX1s=";
+ sha256 = "sha256-h8lOKdHhiVT/XSIkfX7KMHzmIeEdIsFCCPkD9oo7ij0=";
};
propagatedBuildInputs = tclLibraries;
diff --git a/pkgs/tools/package-management/conda/default.nix b/pkgs/tools/package-management/conda/default.nix
index 57b4d17fdfdd..bc11203bb4ae 100644
--- a/pkgs/tools/package-management/conda/default.nix
+++ b/pkgs/tools/package-management/conda/default.nix
@@ -66,6 +66,8 @@ in
source ${installationPath}/etc/profile.d/conda.sh
'';
+ runScript = "bash -l";
+
meta = {
description = "Conda is a package manager for Python";
homepage = "https://conda.io/";
diff --git a/pkgs/tools/security/proxmark3/proxmark3-rrg.nix b/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
index 2ae344394724..085610f17994 100644
--- a/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
+++ b/pkgs/tools/security/proxmark3/proxmark3-rrg.nix
@@ -7,13 +7,13 @@
mkDerivation rec {
pname = "proxmark3-rrg";
- version = "4.9237";
+ version = "4.13441";
src = fetchFromGitHub {
owner = "RfidResearchGroup";
repo = "proxmark3";
rev = "v${version}";
- sha256 = "13xrhvrsm73rfgqpgca6a37c3jixdkxvfggmacnnx5fdfb393bfx";
+ sha256 = "1ffchqnm8023zcm4ywncf1j6076s78226h72m9dfmi0zbj3pbj4m";
};
nativeBuildInputs = [ pkg-config gcc-arm-embedded ];
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f828f7992b27..a1431bce8baf 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1341,6 +1341,8 @@ with pkgs;
inherit (nodePackages) hyperspace-cli;
+ bklk = callPackage ../applications/misc/bklk { };
+
bkyml = callPackage ../tools/misc/bkyml { };
blockbench-electron = callPackage ../applications/graphics/blockbench-electron { };