Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 542aa872 c528ade3

+1609 -941
+67 -72
doc/languages-frameworks/lisp.section.md
··· 1 1 # lisp-modules {#lisp} 2 2 3 3 This document describes the Nixpkgs infrastructure for building Common Lisp 4 - libraries that use ASDF (Another System Definition Facility). It lives in 5 - `pkgs/development/lisp-modules`. 4 + systems that use [ASDF](https://asdf.common-lisp.dev/) (Another System 5 + Definition Facility). It lives in `pkgs/development/lisp-modules`. 6 6 7 7 ## Overview {#lisp-overview} 8 8 9 9 The main entry point of the API are the Common Lisp implementation packages 10 - (e.g. `abcl`, `ccl`, `clasp-common-lisp`, `clisp` `ecl`, `sbcl`) 11 - themselves. They have the `pkgs` and `withPackages` attributes, which can be 12 - used to discover available packages and to build wrappers, respectively. 10 + themselves (e.g. `abcl`, `ccl`, `clasp-common-lisp`, `clisp`, `ecl`, 11 + `sbcl`). They have the `pkgs` and `withPackages` attributes, which can be used 12 + to discover available packages and to build wrappers, respectively. 13 13 14 - The `pkgs` attribute set contains packages that were automatically imported from 15 - Quicklisp, and any other manually defined ones. Not every package works for all 16 - the CL implementations (e.g. `nyxt` only makes sense for `sbcl`). 14 + The `pkgs` attribute set contains packages that were automatically 15 + [imported](#lisp-importing-packages-from-quicklisp) from Quicklisp, and any 16 + other [manually defined](#lisp-defining-packages-inside) ones. Not every package 17 + works for all the CL implementations (e.g. `nyxt` only makes sense for `sbcl`). 17 18 18 - The `withPackages` function is of primary utility. It is used to build runnable 19 - wrappers, with a pinned and pre-built ASDF FASL available in the `ASDF` 20 - environment variable, and `CL_SOURCE_REGISTRY`/`ASDF_OUTPUT_TRANSLATIONS` 21 - configured to find the desired systems on runtime. 22 - 23 - With a few exceptions, the primary thing that the infrastructure does is to run 24 - `asdf:load-system` for each system specified in the `systems` argument to 25 - `build-asdf-system`, and save the FASLs to the Nix store. Then, it makes these 26 - FASLs available to wrappers. Any other use-cases, such as producing SBCL 27 - executables with `sb-ext:save-lisp-and-die`, are achieved via overriding the 28 - `buildPhase` etc. 19 + The `withPackages` function is of primary utility. It is used to build 20 + [runnable wrappers](#lisp-building-wrappers), with a pinned and pre-built 21 + [ASDF FASL](#lisp-loading-asdf) available in the `ASDF` environment variable, 22 + and `CL_SOURCE_REGISTRY`/`ASDF_OUTPUT_TRANSLATIONS` configured to 23 + [find the desired systems on runtime](#lisp-loading-systems). 29 24 30 25 In addition, Lisps have the `withOverrides` function, which can be used to 31 - substitute any package in the scope of their `pkgs`. This will be useful 32 - together with `overrideLispAttrs` when dealing with slashy ASDF systems, because 33 - they should stay in the main package and be build by specifying the `systems` 26 + [substitute](#lisp-including-external-pkg-in-scope) any package in the scope of 27 + their `pkgs`. This will also be useful together with `overrideLispAttrs` when 28 + [dealing with slashy systems](#lisp-dealing-with-slashy-systems), because they 29 + should stay in the main package and be built by specifying the `systems` 34 30 argument to `build-asdf-system`. 35 31 36 32 ## The 90% use case example {#lisp-use-case-example} ··· 42 38 Then, in a shell: 43 39 44 40 ``` 45 - $ result/bin/sbcl 41 + $ sbcl 46 42 * (load (sb-ext:posix-getenv "ASDF")) 47 43 * (asdf:load-system 'alexandria) 48 44 ``` ··· 53 49 let 54 50 sbcl' = sbcl.withPackages (ps: [ ps.alexandria ]); 55 51 in mkShell { 56 - buildInputs = [ sbcl' ]; 52 + packages = [ sbcl' ]; 57 53 } 58 54 ``` 59 55 ··· 67 63 68 64 ## Importing packages from Quicklisp {#lisp-importing-packages-from-quicklisp} 69 65 70 - The library is able to very quickly import all the packages distributed by 71 - Quicklisp by parsing its `releases.txt` and `systems.txt` files. These files are 72 - available from [http://beta.quicklisp.org/dist/quicklisp.txt]. 66 + To save some work of writing Nix expressions, there is a script that imports all 67 + the packages distributed by Quicklisp into `imported.nix`. This works by parsing 68 + its `releases.txt` and `systems.txt` files, which are published every couple of 69 + months on [quicklisp.org](http://beta.quicklisp.org/dist/quicklisp.txt). 73 70 74 71 The import process is implemented in the `import` directory as Common Lisp 75 - functions in the `org.lispbuilds.nix` ASDF system. To run the script, one can 72 + code in the `org.lispbuilds.nix` ASDF system. To run the script, one can 76 73 execute `ql-import.lisp`: 77 74 78 75 ``` 76 + cd pkgs/development/lisp-modules 79 77 nix-shell --run 'sbcl --script ql-import.lisp' 80 78 ``` 81 79 82 80 The script will: 83 81 84 82 1. Download the latest Quicklisp `systems.txt` and `releases.txt` files 85 - 2. Generate an SQLite database of all QL systems in `packages.sqlite` 83 + 2. Generate a temporary SQLite database of all QL systems in `packages.sqlite` 86 84 3. Generate an `imported.nix` file from the database 87 85 88 - The maintainer's job there is to: 86 + (The `packages.sqlite` file can be deleted at will, because it is regenerated 87 + each time the script runs.) 89 88 90 - 1. Re-run the `ql-import.lisp` script 91 - 2. Add missing native dependencies in `ql.nix` 92 - 3. For packages that still don't build, package them manually in `packages.nix` 89 + The maintainer's job is to: 90 + 91 + 1. Re-run the `ql-import.lisp` script when there is a new Quicklisp release 92 + 2. [Add any missing native dependencies](#lisp-quicklisp-adding-native-dependencies) in `ql.nix` 93 + 3. For packages that still don't build, [package them manually](#lisp-defining-packages-inside) in `packages.nix` 93 94 94 95 Also, the `imported.nix` file **must not be edited manually**! It should only be 95 - generated as described in this section. 96 + generated as described in this section (by running `ql-import.lisp`). 96 97 97 98 ### Adding native dependencies {#lisp-quicklisp-adding-native-dependencies} 98 99 ··· 108 109 109 110 The previous implementation of `lisp-modules` didn't fully trust the Quicklisp 110 111 data, because there were times where the dependencies specified were not 111 - complete, and caused broken builds. It instead used a `nix-shell` environment to 112 + complete and caused broken builds. It instead used a `nix-shell` environment to 112 113 discover real dependencies by using the ASDF APIs. 113 114 114 115 The current implementation has chosen to trust this data, because it's faster to ··· 126 127 127 128 During Quicklisp import: 128 129 129 - - `+` in names are converted to `_plus{_,}`: `cl+ssl`->`cl_plus_ssl`, `alexandria+`->`alexandria_plus` 130 - - `.` to `_dot_`: `iolib.base`->`iolib_dot_base` 130 + - `+` in names is converted to `_plus{_,}`: `cl+ssl`->`cl_plus_ssl`, `alexandria+`->`alexandria_plus` 131 + - `.` in names is converted to `_dot_`: `iolib.base`->`iolib_dot_base` 131 132 - names starting with a number have a `_` prepended (`3d-vectors`->`_3d-vectors`) 132 133 - `_` in names is converted to `__` for reversibility 133 134 134 135 135 136 ## Defining packages manually inside Nixpkgs {#lisp-defining-packages-inside} 136 137 137 - New packages, that for some reason are not in Quicklisp, and so cannot be 138 - auto-imported, can be written in the `packages.nix` file. 138 + Packages that for some reason are not in Quicklisp, and so cannot be 139 + auto-imported, or don't work straight from the import, are defined in the 140 + `packages.nix` file. 139 141 140 142 In that file, use the `build-asdf-system` function, which is a wrapper around 141 143 `mkDerivation` for building ASDF systems. Various other hacks are present, such 142 144 as `build-with-compile-into-pwd` for systems which create files during 143 - compilation. 145 + compilation (such as cl-unicode). 144 146 145 - The `build-asdf-system` function is documented with comments in 146 - `nix-cl.nix`. Also, `packages.nix` is full of examples of how to use it. 147 + The `build-asdf-system` function is documented 148 + [here](#lisp-defining-packages-outside). Also, `packages.nix` is full of 149 + examples of how to use it. 147 150 148 151 ## Defining packages manually outside Nixpkgs {#lisp-defining-packages-outside} 149 152 150 153 Lisp derivations (`abcl`, `sbcl` etc.) also export the `buildASDFSystem` 151 - function, which is the same as `build-asdf-system`, except for the `lisp` 152 - argument which is set to the given CL implementation. 154 + function, which is similar to `build-asdf-system` from `packages.nix`, but is 155 + part of the public API. 156 + 157 + It takes the following arguments: 158 + 159 + - `pname`: the package name 160 + - `version`: the package version 161 + - `src`: the package source 162 + - `patches`: patches to apply to the source before build 163 + - `nativeLibs`: native libraries used by CFFI and grovelling 164 + - `javaLibs`: Java libraries for ABCL 165 + - `lispLibs`: dependencies on other packages build with `buildASDFSystem` 166 + - `systems`: list of systems to build 153 167 154 168 It can be used to define packages outside Nixpkgs, and, for example, add them 155 - into the package scope with `withOverrides` which will be discussed later on. 169 + into the package scope with `withOverrides`. 156 170 157 171 ### Including an external package in scope {#lisp-including-external-pkg-in-scope} 158 172 ··· 198 212 }) 199 213 ``` 200 214 201 - ## Overriding packages in scope {#lisp-overriding-packages-in-scope} 202 - 203 - Packages can be woven into a new scope by using `withOverrides`: 204 - 205 - ``` 206 - let 207 - sbcl' = sbcl.withOverrides (self: super: { 208 - alexandria = super.alexandria.overrideLispAttrs (oldAttrs: rec { 209 - pname = "alexandria"; 210 - version = "1.4"; 211 - src = fetchFromGitLab { 212 - domain = "gitlab.common-lisp.net"; 213 - owner = "alexandria"; 214 - repo = "alexandria"; 215 - rev = "v${version}"; 216 - hash = "sha256-1Hzxt65dZvgOFIljjjlSGgKYkj+YBLwJCACi5DZsKmQ="; 217 - }; 218 - }); 219 - }); 220 - in builtins.elemAt sbcl'.pkgs.bordeaux-threads.lispLibs 0 221 - ``` 222 - 223 215 ### Dealing with slashy systems {#lisp-dealing-with-slashy-systems} 224 216 225 217 Slashy (secondary) systems should not exist in their own packages! Instead, they ··· 240 232 }) 241 233 ``` 242 234 243 - See the respective section on using `withOverrides` for how to weave it back 244 - into `ecl.pkgs`. 235 + See the [respective section](#lisp-including-external-pkg-in-scope) on using 236 + `withOverrides` for how to weave it back into `ecl.pkgs`. 245 237 246 238 Note that sometimes the slashy systems might not only have more dependencies 247 239 than the main one, but create a circular dependency between `.asd` ··· 253 245 implementations (`abcl`, `ecl`, `sbcl` etc.): 254 246 255 247 ``` 256 - sbcl.withPackages (ps: [ ps.alexandria ps.bordeaux-threads ]) 248 + nix-shell -p 'sbcl.withPackages (ps: [ ps.alexandria ps.bordeaux-threads ])' 257 249 ``` 258 250 259 - Such a wrapper can then be executed like this: 251 + Such a wrapper can then be used like this: 260 252 261 253 ``` 262 - result/bin/sbcl 254 + $ sbcl 255 + * (load (sb-ext:posix-getenv "ASDF")) 256 + * (asdf:load-system 'alexandria) 257 + * (asdf:load-system 'bordeaux-threads) 263 258 ``` 264 259 265 260 ### Loading ASDF {#lisp-loading-asdf}
+1
lib/systems/default.nix
··· 224 224 gtkSupport = false; 225 225 sdlSupport = false; 226 226 pulseSupport = false; 227 + pipewireSupport = false; 227 228 smbdSupport = false; 228 229 seccompSupport = false; 229 230 enableDocs = false;
+49
nixos/modules/programs/yazi.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + let 4 + cfg = config.programs.yazi; 5 + 6 + settingsFormat = pkgs.formats.toml { }; 7 + 8 + names = [ "yazi" "theme" "keymap" ]; 9 + in 10 + { 11 + options.programs.yazi = { 12 + enable = lib.mkEnableOption (lib.mdDoc "yazi terminal file manager"); 13 + 14 + package = lib.mkPackageOptionMD pkgs "yazi" { }; 15 + 16 + settings = lib.mkOption { 17 + type = with lib.types; submodule { 18 + options = lib.listToAttrs (map 19 + (name: lib.nameValuePair name (lib.mkOption { 20 + inherit (settingsFormat) type; 21 + default = { }; 22 + description = lib.mdDoc '' 23 + Configuration included in `${name}.toml`. 24 + 25 + See https://github.com/sxyazi/yazi/blob/v${cfg.package.version}/config/docs/${name}.md for documentation. 26 + ''; 27 + })) 28 + names); 29 + }; 30 + default = { }; 31 + description = lib.mdDoc '' 32 + Configuration included in `$YAZI_CONFIG_HOME`. 33 + ''; 34 + }; 35 + }; 36 + 37 + config = lib.mkIf cfg.enable { 38 + environment = { 39 + systemPackages = [ cfg.package ]; 40 + variables.YAZI_CONFIG_HOME = "/etc/yazi/"; 41 + etc = lib.attrsets.mergeAttrsList (map 42 + (name: lib.optionalAttrs (cfg.settings.${name} != { }) { 43 + "yazi/${name}.toml".source = settingsFormat.generate "${name}.toml" cfg.settings.${name}; 44 + }) 45 + names); 46 + }; 47 + }; 48 + meta.maintainers = with lib.maintainers; [ linsui ]; 49 + }
+4 -3
nixos/modules/services/backup/duplicati.nix
··· 10 10 services.duplicati = { 11 11 enable = mkEnableOption (lib.mdDoc "Duplicati"); 12 12 13 + package = mkPackageOptionMD pkgs "duplicati" { }; 14 + 13 15 port = mkOption { 14 16 default = 8200; 15 17 type = types.port; ··· 53 55 }; 54 56 55 57 config = mkIf cfg.enable { 56 - environment.systemPackages = [ pkgs.duplicati ]; 58 + environment.systemPackages = [ cfg.package ]; 57 59 58 60 systemd.services.duplicati = { 59 61 description = "Duplicati backup"; ··· 63 65 { 64 66 User = cfg.user; 65 67 Group = "duplicati"; 66 - ExecStart = "${pkgs.duplicati}/bin/duplicati-server --webservice-interface=${cfg.interface} --webservice-port=${toString cfg.port} --server-datafolder=${cfg.dataDir}"; 68 + ExecStart = "${cfg.package}/bin/duplicati-server --webservice-interface=${cfg.interface} --webservice-port=${toString cfg.port} --server-datafolder=${cfg.dataDir}"; 67 69 Restart = "on-failure"; 68 70 } 69 71 (mkIf (cfg.dataDir == "/var/lib/duplicati") { ··· 83 85 84 86 }; 85 87 } 86 -
+8 -1
nixos/modules/services/hardware/openrgb.nix
··· 17 17 18 18 motherboard = mkOption { 19 19 type = types.nullOr (types.enum [ "amd" "intel" ]); 20 - default = null; 20 + default = if config.hardware.cpu.intel.updateMicrocode then "intel" 21 + else if config.hardware.cpu.amd.updateMicrocode then "amd" 22 + else null; 23 + defaultText = literalMD '' 24 + if config.hardware.cpu.intel.updateMicrocode then "intel" 25 + else if config.hardware.cpu.amd.updateMicrocode then "amd" 26 + else null; 27 + ''; 21 28 description = lib.mdDoc "CPU family of motherboard. Allows for addition motherboard i2c support."; 22 29 }; 23 30
+7 -5
nixos/modules/services/web-servers/nginx/default.nix
··· 578 578 }; 579 579 }); 580 580 default = []; 581 - example = literalExpression ''[ 582 - { addr = "10.0.0.12"; proxyProtocol = true; ssl = true; } 583 - { addr = "0.0.0.0"; } 584 - { addr = "[::0]"; } 585 - ]''; 581 + example = literalExpression '' 582 + [ 583 + { addr = "10.0.0.12"; proxyProtocol = true; ssl = true; } 584 + { addr = "0.0.0.0"; } 585 + { addr = "[::0]"; } 586 + ] 587 + ''; 586 588 description = lib.mdDoc '' 587 589 If vhosts do not specify listen, use these addresses by default. 588 590 This option takes precedence over {option}`defaultListenAddresses` and
+2
pkgs/applications/audio/picard/default.nix
··· 58 58 pyyaml 59 59 ]; 60 60 61 + setupPyGlobalFlags = [ "build" "--disable-autoupdate" ]; 62 + 61 63 preCheck = '' 62 64 export HOME=$(mktemp -d) 63 65 '';
+2 -1
pkgs/applications/blockchains/clightning/default.nix
··· 44 44 tools/generate-wire.py \ 45 45 tools/update-mocks.sh \ 46 46 tools/mockup.sh \ 47 - devtools/sql-rewrite.py 47 + devtools/sql-rewrite.py \ 48 + plugins/clnrest/clnrest.py 48 49 '' else '' 49 50 substituteInPlace external/libwally-core/tools/autogen.sh --replace gsed sed && \ 50 51 substituteInPlace external/libwally-core/configure.ac --replace gsed sed
+1
pkgs/applications/editors/emacs/default.nix
··· 10 10 inherit stdenv; 11 11 12 12 inherit (pkgs.darwin) sigtool; 13 + inherit (pkgs.darwin.apple_sdk_11_0) llvmPackages_14; 13 14 inherit (pkgs.darwin.apple_sdk_11_0.frameworks) 14 15 Accelerate AppKit Carbon Cocoa GSS ImageCaptureCore ImageIO IOKit OSAKit 15 16 Quartz QuartzCore UniformTypeIdentifiers WebKit;
+24 -17
pkgs/applications/misc/chrysalis/default.nix
··· 2 2 3 3 let 4 4 pname = "chrysalis"; 5 - version = "0.12.0"; 6 - in appimageTools.wrapAppImage rec { 5 + version = "0.13.2"; 7 6 name = "${pname}-${version}-binary"; 8 - 9 - src = appimageTools.extract { 10 - inherit name; 11 - src = fetchurl { 12 - url = "https://github.com/keyboardio/${pname}/releases/download/v${version}/${pname}-${version}.AppImage"; 13 - sha256 = "sha256-sQoEO1UII4Gbp7UbHCCyejsd94lkBbi93TH325EamFc="; 14 - }; 7 + src = fetchurl { 8 + url = 9 + "https://github.com/keyboardio/${pname}/releases/download/v${version}/${pname}-${version}-x64.AppImage"; 10 + hash = 11 + "sha512-WuItdQ/hDxbZZ3zulHI74NUkuYfesV/31rA1gPakCFgX2hpPrmKzwUez2vqt4N5qrGyphrR0bcelUatGZhOn5A=="; 15 12 }; 13 + appimageContents = appimageTools.extract { inherit name src; }; 14 + in appimageTools.wrapType2 rec { 15 + inherit name pname src; 16 16 17 17 multiArch = false; 18 - extraPkgs = p: (appimageTools.defaultFhsEnvArgs.multiPkgs p) ++ [ 19 - p.glib 20 - ]; 18 + extraPkgs = p: (appimageTools.defaultFhsEnvArgs.multiPkgs p) ++ [ p.glib ]; 21 19 22 20 # Also expose the udev rules here, so it can be used as: 23 21 # services.udev.packages = [ pkgs.chrysalis ]; 24 22 # to allow non-root modifications to the keyboards. 25 23 26 24 extraInstallCommands = '' 27 - mv $out/bin/${name} $out/bin/${pname} 25 + mv $out/bin/{${name},${pname}} 28 26 29 - mkdir -p $out/lib/udev/rules.d 30 - ln -s \ 31 - --target-directory=$out/lib/udev/rules.d \ 32 - ${src}/resources/static/udev/60-kaleidoscope.rules 27 + install -m 444 \ 28 + -D ${appimageContents}/usr/lib/chrysalis/resources/static/udev/60-kaleidoscope.rules \ 29 + -t $out/lib/udev/rules.d 30 + 31 + install -m 444 \ 32 + -D ${appimageContents}/Chrysalis.desktop \ 33 + -t $out/share/applications 34 + substituteInPlace \ 35 + $out/share/applications/Chrysalis.desktop \ 36 + --replace 'Exec=Chrysalis' 'Exec=${pname}' 37 + 38 + cp -r ${appimageContents}/usr/share/icons $out/share 33 39 ''; 34 40 35 41 meta = with lib; { ··· 38 44 license = licenses.gpl3; 39 45 maintainers = with maintainers; [ aw ]; 40 46 platforms = [ "x86_64-linux" ]; 47 + mainProgram = pname; 41 48 }; 42 49 }
+9 -3
pkgs/applications/misc/coursera-dl/default.nix
··· 15 15 owner = "coursera-dl"; 16 16 repo = "coursera-dl"; 17 17 rev = "refs/tags/${version}"; 18 - sha256 = "0akgwzrsx094jj30n4bd2ilwgva4qxx38v3bgm69iqfxi8c2bqbk"; 18 + hash = "sha256-c+ElGIrd4ZhMfWtsNHrHRO3HaRRtEQuGlCSBrvPnbyo="; 19 19 }; 20 20 21 21 patches = [ 22 22 (fetchpatch { 23 23 url = "https://github.com/coursera-dl/coursera-dl/commit/c8796e567698be166cb15f54e095140c1a9b567e.patch"; 24 - sha256 = "sha256:07ca6zdyw3ypv7yzfv2kzmjvv86h0rwzllcg0zky27qppqz917bv"; 24 + hash = "sha256-e52QPr4XH+HnB49R+nkG0KC9Zf1TbPf92dcP7ts3ih0="; 25 25 }) 26 26 (fetchpatch { 27 27 url = "https://github.com/coursera-dl/coursera-dl/commit/6c221706ba828285ca7a30a08708e63e3891b36f.patch"; 28 - sha256 = "sha256-/AKFvBPInSq/lsz+G0jVSl/ukVgCnt66oePAb+66AjI="; 28 + hash = "sha256-/AKFvBPInSq/lsz+G0jVSl/ukVgCnt66oePAb+66AjI="; 29 + }) 30 + # https://github.com/coursera-dl/coursera-dl/pull/857 31 + (fetchpatch { 32 + name = "python-3.11-compatibility.patch"; 33 + url = "https://github.com/coursera-dl/coursera-dl/commit/7b0783433b6b198fca9e51405b18386f90790892.patch"; 34 + hash = "sha256-OpW8gqzrMyaE69qH3uGsB5TNQTYaO7pn3uJ7NU5SrcM="; 29 35 }) 30 36 ]; 31 37
+3 -3
pkgs/applications/misc/tandoor-recipes/common.nix
··· 1 1 { lib, fetchFromGitHub }: 2 2 rec { 3 - version = "1.5.4"; 3 + version = "1.5.6"; 4 4 5 5 src = fetchFromGitHub { 6 6 owner = "TandoorRecipes"; 7 7 repo = "recipes"; 8 8 rev = version; 9 - hash = "sha256-cVrgmRDzuLzl2+4UcrLRdrP6ZFWMkavu9OEogNas2fA="; 9 + hash = "sha256-3sitrTaIRKmjx+5vWOQXE0/Gu0jJ8VCpOq2cZZVLrbk="; 10 10 }; 11 11 12 - yarnHash = "sha256-0u9P/OsoThP8gonrzcnO5zhIboWMI1mTsXHlbt7l9oE="; 12 + yarnHash = "sha256-mZ8beCF+3mnpgKED0fP96RBbGbKNNXqEJkGSjgrEGBc="; 13 13 14 14 meta = with lib; { 15 15 homepage = "https://tandoor.dev/";
+3 -2
pkgs/applications/networking/cluster/terraform/default.nix
··· 64 64 zimbatm 65 65 zowoq 66 66 techknowlogick 67 + qjoly 67 68 ]; 68 69 mainProgram = "terraform"; 69 70 }; ··· 167 168 mkTerraform = attrs: pluggable (generic attrs); 168 169 169 170 terraform_1 = mkTerraform { 170 - version = "1.5.6"; 171 - hash = "sha256-vbV8Tmas7n1o8Q+DG9RrcfdAMa4bJsVg2SsTFH1TJ5M="; 171 + version = "1.5.7"; 172 + hash = "sha256-pIhwJfa71/gW7lw/KRFBO4Q5Z5YMcTt3r9kD25k8cqM="; 172 173 vendorHash = "sha256-lQgWNMBf+ioNxzAV7tnTQSIS840XdI9fg9duuwoK+U4="; 173 174 patches = [ ./provider-path-0_15.patch ]; 174 175 passthru = {
+7 -1
pkgs/applications/networking/mailreaders/neomutt/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, gettext, makeWrapper, tcl, which 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, gettext, makeWrapper, tcl, which 2 2 , ncurses, perl , cyrus_sasl, gss, gpgme, libkrb5, libidn2, libxml2, notmuch, openssl 3 3 , lua, lmdb, libxslt, docbook_xsl, docbook_xml_dtd_42, w3m, mailcap, sqlite, zlib, lndir 4 4 , pkg-config, zstd, enableZstd ? true, enableMixmaster ? false, enableLua ? false ··· 19 19 patches = [ 20 20 # https://github.com/neomutt/neomutt/issues/3773#issuecomment-1493295144 21 21 ./fix-open-very-large-mailbox.patch 22 + (fetchpatch { 23 + name = "disable-incorrect-tests.patch"; 24 + url = "https://github.com/neomutt/neomutt/pull/3933.patch"; 25 + hash = "sha256-Plei063T8XyXF4/7/nAb6/4OyXz72vBAXHwls9WL1vM="; 26 + excludes = [".github/workflows/macos.yml"]; 27 + }) 22 28 ]; 23 29 24 30 buildInputs = [
+1 -1
pkgs/applications/office/homebank/default.nix
··· 17 17 homepage = "http://homebank.free.fr/"; 18 18 license = licenses.gpl2Plus; 19 19 maintainers = with maintainers; [ pSub ]; 20 - platforms = platforms.linux; 20 + platforms = platforms.linux ++ platforms.darwin; 21 21 }; 22 22 }
+3 -3
pkgs/applications/office/treesheets/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "treesheets"; 15 - version = "unstable-2023-08-31"; 15 + version = "unstable-2023-09-07"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "aardappel"; 19 19 repo = "treesheets"; 20 - rev = "7f68776a9e072520c735479929efecd0d58f362d"; 21 - sha256 = "AO0+Jqt2bEr3pwv417wey9zZWNX9rg0kDoO7qT+YPDg="; 20 + rev = "8d4073d2fedfc9952c3a06fd9d9be17ffeb50cf0"; 21 + sha256 = "BpE402BL9PHx6g2gkeRBP4F2XLAjca3KpyXwFDWayio="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+37
pkgs/by-name/sc/screentest/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , intltool 6 + , pkg-config 7 + , gtk2 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "screentest"; 12 + version = "unstable-2021-05-10"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "TobiX"; 16 + repo = "screentest"; 17 + rev = "780e6cbbbbd6ba93e246e7747fe593b40c4e2747"; 18 + hash = "sha256-TJ47c77vQ/aRBJ2uEiFLuAR4dd4CMEo+iAAx0HCFbmA="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + autoreconfHook 23 + intltool 24 + pkg-config 25 + ]; 26 + 27 + buildInputs = [ gtk2 ]; 28 + 29 + meta = with lib; { 30 + description = "A simple screen testing tool"; 31 + homepage = "https://github.com/TobiX/screentest"; 32 + changelog = "https://github.com/TobiX/screentest/blob/${finalAttrs.src.rev}/NEWS"; 33 + license = licenses.gpl2Only; 34 + maintainers = with maintainers; [ evils ]; 35 + platforms = platforms.unix; 36 + }; 37 + })
+2 -2
pkgs/data/icons/elementary-xfce-icon-theme/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "elementary-xfce-icon-theme"; 5 - version = "0.17"; 5 + version = "0.18"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "shimmerproject"; 9 9 repo = "elementary-xfce"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9WdVUCwHFX6wlu3++QqzV0RgTDYDnUYqK7yUl83liko="; 11 + sha256 = "sha256-OgQtqBrYKDgU4mhXLFO8YwiPv2lKqGSdZnfKCd9ri4g="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+2 -2
pkgs/data/misc/v2ray-domain-list-community/default.nix
··· 3 3 let 4 4 generator = pkgsBuildBuild.buildGoModule rec { 5 5 pname = "v2ray-domain-list-community"; 6 - version = "20230902035830"; 6 + version = "20230905081311"; 7 7 src = fetchFromGitHub { 8 8 owner = "v2fly"; 9 9 repo = "domain-list-community"; 10 10 rev = version; 11 - hash = "sha256-xrx0+Zf9c5TYMWVKsAOJvI8x/ZoElnpjzLCPbkZjrzw="; 11 + hash = "sha256-lSiEfLfXnxou0pt9k6SFRnCm/CeUh2TBhLzi6BwJs7w="; 12 12 }; 13 13 vendorHash = "sha256-dYaGR5ZBORANKAYuPAi9i+KQn2OAGDGTZxdyVjkcVi8="; 14 14 meta = with lib; {
+2 -2
pkgs/data/themes/greybird/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "greybird"; 16 - version = "3.23.2"; 16 + version = "3.23.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "shimmerproject"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - sha256 = "h4sPjKpTufaunVP0d4Z5x/K+vRW1FpuLrMJjydx/a6w="; 22 + sha256 = "+MZQ3FThuRFEfoARsF09B7POwytS5RgTs9zYzIHVtfg="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -3
pkgs/development/compilers/erg/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "erg"; 12 - version = "0.6.19"; 12 + version = "0.6.20"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "erg-lang"; 16 16 repo = "erg"; 17 17 rev = "v${version}"; 18 - hash = "sha256-oA0AXTMEdfItvIZi1ITQ3ZR6JPSg9/1V6oeK2wcRERw="; 18 + hash = "sha256-xu6lbCdXUf5fqGoEGui44tVpVXlSOdfNFTyAurFRsDA="; 19 19 }; 20 20 21 - cargoHash = "sha256-dLMU48/umKHPV6iahazxOYA/eDvFWhzV9xveT2xQ+EE="; 21 + cargoHash = "sha256-pRuruqBXnSkTzEPTyZlX130z5IJPxEqWB2/38B7aCeI="; 22 22 23 23 nativeBuildInputs = [ 24 24 makeWrapper
+2 -2
pkgs/development/compilers/go/1.19.nix
··· 47 47 in 48 48 stdenv.mkDerivation rec { 49 49 pname = "go"; 50 - version = "1.19.12"; 50 + version = "1.19.13"; 51 51 52 52 src = fetchurl { 53 53 url = "https://go.dev/dl/go${version}.src.tar.gz"; 54 - hash = "sha256-7l1Q4Kf9dLobE3y4eWCaqu+YgL9ytdF0IQDjiucrtVc="; 54 + hash = "sha256-zPNrU/sAJKAXNTw92yLB8AvHqAc8aqx5BC2iTuNENNM="; 55 55 }; 56 56 57 57 strictDeps = true;
+2 -2
pkgs/development/compilers/go/1.21.nix
··· 46 46 in 47 47 stdenv.mkDerivation rec { 48 48 pname = "go"; 49 - version = "1.21.0"; 49 + version = "1.21.1"; 50 50 51 51 src = fetchurl { 52 52 url = "https://go.dev/dl/go${version}.src.tar.gz"; 53 - hash = "sha256-gY1G7ehWgt1VGtN47zek0kcAbxLsWbW3VWAdLOEUNpo="; 53 + hash = "sha256-v6Nr916aHpy725q8+dFwfkeb06B4gKiuNWTK7lcRy5k="; 54 54 }; 55 55 56 56 strictDeps = true;
+3 -3
pkgs/development/interpreters/cyber/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "cyber"; 9 - version = "unstable-2023-09-01"; 9 + version = "unstable-2023-09-07"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "fubark"; 13 13 repo = "cyber"; 14 - rev = "1dae891be5ca1e64ad8ab9d60be0b30e1ef28439"; 15 - hash = "sha256-5GCIdk6XCJIXZLFsNMzo15Qhtj7zd/DOcARe8GXF2lc="; 14 + rev = "98022d0b8d266ee4f9d8c524a42abad3ad4134c9"; 15 + hash = "sha256-FEvNSHG/sMB1jBjbBaunGxb6/fSvKhKschFvghsW2Ls="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+4 -6
pkgs/development/libraries/boost/generic.nix
··· 149 149 description = "Collection of C++ libraries"; 150 150 license = licenses.boost; 151 151 platforms = platforms.unix ++ platforms.windows; 152 + # boost-context lacks support for the N32 ABI on mips64. The build 153 + # will succeed, but packages depending on boost-context will fail with 154 + # a very cryptic error message. 155 + badPlatforms = [ lib.systems.inspect.patterns.isMips64n32 ]; 152 156 maintainers = with maintainers; [ hjones2199 ]; 153 - 154 - broken = 155 - # boost-context lacks support for the N32 ABI on mips64. The build 156 - # will succeed, but packages depending on boost-context will fail with 157 - # a very cryptic error message. 158 - stdenv.hostPlatform.isMips64n32; 159 157 }; 160 158 161 159 passthru = {
+7 -3
pkgs/development/libraries/netcdf/default.nix
··· 16 16 inherit (hdf5) mpiSupport mpi; 17 17 in stdenv.mkDerivation rec { 18 18 pname = "netcdf" + lib.optionalString mpiSupport "-mpi"; 19 - version = "4.9.0"; 19 + version = "4.9.2"; 20 20 21 21 src = fetchurl { 22 22 url = "https://downloads.unidata.ucar.edu/netcdf-c/${version}/netcdf-c-${version}.tar.gz"; 23 - hash = "sha256-TJVgIrecCOXhTu6N9RsTwo5hIcK35/qtwhs3WUlAC0k="; 23 + hash = "sha256-zxG6u725lj8J9VB54LAZ9tA3H1L44SZKW6jp/asabEg="; 24 24 }; 25 25 26 26 postPatch = '' ··· 30 30 for a in ncdap_test/Makefile.am ncdap_test/Makefile.in; do 31 31 substituteInPlace $a --replace testurl.sh " " 32 32 done 33 + 34 + # Prevent building the tests from prepending `#!/bin/bash` and wiping out the patched shenbangs. 35 + substituteInPlace nczarr_test/Makefile.in \ 36 + --replace '#!/bin/bash' '${stdenv.shell}' 33 37 ''; 34 38 35 39 nativeBuildInputs = [ m4 removeReferencesTo ]; ··· 65 69 remove-references-to -t ${stdenv.cc} "$(readlink -f $out/lib/libnetcdf.settings)" 66 70 ''; 67 71 68 - doCheck = !(mpiSupport || (stdenv.isDarwin && stdenv.isAarch64)); 72 + doCheck = !mpiSupport; 69 73 nativeCheckInputs = [ unzip ]; 70 74 71 75 preCheck = ''
+1 -2
pkgs/development/node-packages/overrides.nix
··· 308 308 309 309 src = fetchurl { 310 310 url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz"; 311 - hash = "sha256-0NxYp+W2KbR3xEV2OCXCIL3RqkvLfJHNKgl/PxapVbI="; 311 + hash = "sha256-HiZtNHXkoSl3Q4cAerUs8c138AiDJJxzYNQT3I4+ea8="; 312 312 }; 313 313 postInstall = with pkgs; '' 314 314 wrapProgram "$out/bin/prisma" \ 315 315 --set PRISMA_SCHEMA_ENGINE_BINARY ${prisma-engines}/bin/schema-engine \ 316 - --set PRISMA_MIGRATION_ENGINE_BINARY ${prisma-engines}/bin/schema-engine \ 317 316 --set PRISMA_QUERY_ENGINE_BINARY ${prisma-engines}/bin/query-engine \ 318 317 --set PRISMA_QUERY_ENGINE_LIBRARY ${lib.getLib prisma-engines}/lib/libquery_engine.node \ 319 318 --set PRISMA_FMT_BINARY ${prisma-engines}/bin/prisma-fmt
+2 -2
pkgs/development/python-modules/ansible-runner/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "ansible-runner"; 26 - version = "2.3.3"; 26 + version = "2.3.4"; 27 27 format = "setuptools"; 28 28 29 29 disabled = pythonOlder "3.8"; 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - hash = "sha256-OP9jXkuUeR3ilWyB4mWDbsSWWzDp7jXXL88ycdxGuYs="; 33 + hash = "sha256-eaG9E02BPI6jdAWZxv2WGhFCXOd1fy/XJc9W1qGnI2w="; 34 34 }; 35 35 36 36 patches = [
+2 -2
pkgs/development/python-modules/dbus-fast/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dbus-fast"; 16 - version = "1.94.1"; 16 + version = "1.95.0"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "Bluetooth-Devices"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-Ttz6AX/NH6/NNLgU2cMSb5e1jV/cq0LGW3ENARRP7H4="; 25 + hash = "sha256-1Qi1pV92V1EIDU/kLhwPhr3Sa92xvcrpHUA36KfzM6w="; 26 26 }; 27 27 28 28 # The project can build both an optimized cython version and an unoptimized
+2 -2
pkgs/development/python-modules/google-cloud-dataproc/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-dataproc"; 17 - version = "5.4.3"; 17 + version = "5.5.0"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-2cd8Uqpd31KuZXc22/tTEkApM/crq4SA/C0q/phpdAI="; 24 + hash = "sha256-XYjEmBMCkCUxKvAF2KNXwG72C6TMszLikFvLtnjJf14="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/idasen/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "idasen"; 15 - version = "0.10.1"; 15 + version = "0.10.2"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "newAM"; 22 22 repo = "idasen"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-1ZOnEPB3RJ6i3RwvpP3rG/i1M+Oa9fdfVhc3R+iFndQ="; 24 + hash = "sha256-aCAtZsHH1tkti2A7OWw9rV4vij1n6T+R8nMa/MRZuF8="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/karton-config-extractor/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "karton-config-extractor"; 11 - version = "2.1.1"; 11 + version = "2.2.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "CERT-Polska"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-ep69Rrm8Ek0lkgctz6vDAZ1MZ8kWKZSyIvMMAmzTngA="; 20 + hash = "sha256-X2g/wgWLIY2ZIwH1l83EApyoeYQU5/MWq5S0qmYz+CA="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyaml/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pyaml"; 10 - version = "23.9.1"; 10 + version = "23.9.3"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "sha256-TiAw9fwNO1eEo6eFO6eLGujelDxtulUHh2VQxb0Y84c="; 14 + sha256 = "sha256-s/mzgzUyfTIUyIg0kwA3OGwP5EV+GuGXGcVvqiOSIr0="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pystache/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pystache"; 11 - version = "0.6.4"; 11 + version = "0.6.5"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-4CkCIzBJsW4L4alPDHOJ6AViX2c1eD9FM7AgtaOKJ8c="; 18 + hash = "sha256-nyONWgbxiEPg1JHY5OKS3AP+1qVMsKXDS+N6P6qXMXQ="; 19 19 }; 20 20 21 21 LC_ALL = "en_US.UTF-8";
+3 -3
pkgs/development/python-modules/sdds/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "sdds"; 11 - version = "0.3.1"; 11 + version = "0.4.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 16 16 src = fetchFromGitHub { 17 17 owner = "pylhc"; 18 18 repo = pname; 19 - rev = "refs/tags/${version}"; 20 - hash = "sha256-lb4awMQ7GE7m2N2yiCpJ976I2j8hE98/93zCX7Rp4qU="; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-8tnJAptTUsC0atxM9Dpn90drcprdWrs8fYoX8RDkLyQ="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "zeroconf"; 18 - version = "0.97.0"; 18 + version = "0.99.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "jstasiak"; 25 25 repo = "python-zeroconf"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-qs0Ivkibxb6y9Bw2/Im9/2YabybqbJV0sORRg9RMV/M="; 27 + hash = "sha256-T9CDJIK/wMGExk+1Fahbq4gm+t+RRSUxca3SxkHXtJQ="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.4.29"; 25 + version = "2.4.30"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-KnPbIfTSf1izk0E2JRdnYJbTDQbzr+d28HNIJrD6CWU="; 32 + hash = "sha256-sMNyeVaHdKI3IEN0/UR5XM72zDvMzyVAFMMcauan9J4="; 33 33 }; 34 34 35 35 patches = [
+3 -3
pkgs/development/tools/biome/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "biome"; 14 - version = "1.1.1"; 14 + version = "1.1.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "biomejs"; 18 18 repo = "biome"; 19 19 rev = "cli/v${version}"; 20 - hash = "sha256-o4D/EwuSCluXfQBZ6LfebyKkR2xKDChV/wd/yZWbF34="; 20 + hash = "sha256-DE5D4WLO41JA9f3zy3sBiBQ8MOQCbosx6p9AqIM3ddc="; 21 21 }; 22 22 23 - cargoHash = "sha256-T8lIxFc9Jnx0Y8et8O+5JCwci+G3BwOYNjyFQd6fTRM="; 23 + cargoHash = "sha256-qP8CyGiWfytjAsxo6xS1ubowzwEqZN0vM/kQSOnS3rw="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+1074 -674
pkgs/development/tools/database/prisma-engines/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "addr2line" 7 - version = "0.17.0" 7 + version = "0.20.0" 8 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 9 + checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 10 10 dependencies = [ 11 11 "gimli", 12 12 ] ··· 23 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 24 checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 25 25 dependencies = [ 26 - "getrandom 0.2.7", 26 + "getrandom 0.2.10", 27 27 "once_cell", 28 28 "version_check", 29 29 ] ··· 41 41 42 42 [[package]] 43 43 name = "aho-corasick" 44 - version = "0.7.19" 44 + version = "0.7.20" 45 45 source = "registry+https://github.com/rust-lang/crates.io-index" 46 - checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" 46 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 47 47 dependencies = [ 48 48 "memchr", 49 49 ] 50 50 51 51 [[package]] 52 + name = "aho-corasick" 53 + version = "1.0.3" 54 + source = "registry+https://github.com/rust-lang/crates.io-index" 55 + checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c" 56 + dependencies = [ 57 + "memchr", 58 + ] 59 + 60 + [[package]] 61 + name = "allocator-api2" 62 + version = "0.2.16" 63 + source = "registry+https://github.com/rust-lang/crates.io-index" 64 + checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 65 + 66 + [[package]] 67 + name = "android-tzdata" 68 + version = "0.1.1" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 71 + 72 + [[package]] 73 + name = "android_system_properties" 74 + version = "0.1.5" 75 + source = "registry+https://github.com/rust-lang/crates.io-index" 76 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 77 + dependencies = [ 78 + "libc", 79 + ] 80 + 81 + [[package]] 52 82 name = "anes" 53 83 version = "0.1.6" 54 84 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 65 95 66 96 [[package]] 67 97 name = "anyhow" 68 - version = "1.0.64" 98 + version = "1.0.72" 69 99 source = "registry+https://github.com/rust-lang/crates.io-index" 70 - checksum = "b9a8f622bcf6ff3df478e9deba3e03e4e04b300f8e6a139e192c05fa3490afc7" 100 + checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" 71 101 72 102 [[package]] 73 103 name = "arrayvec" ··· 77 107 78 108 [[package]] 79 109 name = "arrayvec" 80 - version = "0.7.2" 110 + version = "0.7.4" 81 111 source = "registry+https://github.com/rust-lang/crates.io-index" 82 - checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 112 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 83 113 84 114 [[package]] 85 115 name = "ascii" ··· 101 131 102 132 [[package]] 103 133 name = "async-stream" 104 - version = "0.3.3" 134 + version = "0.3.5" 105 135 source = "registry+https://github.com/rust-lang/crates.io-index" 106 - checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e" 136 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 107 137 dependencies = [ 108 138 "async-stream-impl", 109 139 "futures-core", 140 + "pin-project-lite", 110 141 ] 111 142 112 143 [[package]] 113 144 name = "async-stream-impl" 114 - version = "0.3.3" 145 + version = "0.3.5" 115 146 source = "registry+https://github.com/rust-lang/crates.io-index" 116 - checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27" 147 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 117 148 dependencies = [ 118 149 "proc-macro2", 119 150 "quote", 120 - "syn 1.0.99", 151 + "syn 2.0.28", 121 152 ] 122 153 123 154 [[package]] 124 155 name = "async-trait" 125 - version = "0.1.57" 156 + version = "0.1.72" 126 157 source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" 158 + checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" 128 159 dependencies = [ 129 160 "proc-macro2", 130 161 "quote", 131 - "syn 1.0.99", 162 + "syn 2.0.28", 132 163 ] 133 164 134 165 [[package]] 135 166 name = "asynchronous-codec" 136 - version = "0.6.0" 167 + version = "0.6.2" 137 168 source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690" 169 + checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" 139 170 dependencies = [ 140 171 "bytes", 141 172 "futures-sink", ··· 159 190 source = "registry+https://github.com/rust-lang/crates.io-index" 160 191 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 161 192 dependencies = [ 162 - "hermit-abi", 193 + "hermit-abi 0.1.19", 163 194 "libc", 164 195 "winapi", 165 196 ] ··· 172 203 173 204 [[package]] 174 205 name = "backtrace" 175 - version = "0.3.66" 206 + version = "0.3.68" 176 207 source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 208 + checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 178 209 dependencies = [ 179 210 "addr2line", 180 211 "cc", ··· 191 222 source = "git+https://github.com/prisma/barrel.git?branch=mssql-support#4e84cf3d5013b4c92eb81d7ba90cd1c1c01c6805" 192 223 193 224 [[package]] 225 + name = "base-x" 226 + version = "0.2.11" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 229 + 230 + [[package]] 231 + name = "base36" 232 + version = "0.0.1" 233 + source = "registry+https://github.com/rust-lang/crates.io-index" 234 + checksum = "b9c26bddc1271f7112e5ec797e8eeba6de2de211c1488e506b9500196dbf77c5" 235 + dependencies = [ 236 + "base-x", 237 + "failure", 238 + ] 239 + 240 + [[package]] 194 241 name = "base64" 195 242 version = "0.12.3" 196 243 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 204 251 205 252 [[package]] 206 253 name = "base64" 207 - version = "0.21.0" 254 + version = "0.21.2" 208 255 source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 256 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 210 257 211 258 [[package]] 212 259 name = "bigdecimal" 213 - version = "0.3.0" 260 + version = "0.3.1" 214 261 source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "6aaf33151a6429fe9211d1b276eafdf70cdff28b071e76c0b0e1503221ea3744" 262 + checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" 216 263 dependencies = [ 217 264 "num-bigint", 218 265 "num-integer", ··· 252 299 253 300 [[package]] 254 301 name = "bitflags" 255 - version = "2.1.0" 302 + version = "2.4.0" 256 303 source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "c70beb79cbb5ce9c4f8e20849978f34225931f665bb49efa6982875a4d5facb3" 304 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 258 305 259 306 [[package]] 260 307 name = "bitvec" ··· 295 342 296 343 [[package]] 297 344 name = "block-buffer" 345 + version = "0.10.4" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 348 + dependencies = [ 349 + "generic-array", 350 + ] 351 + 352 + [[package]] 353 + name = "borsh" 298 354 version = "0.10.3" 299 355 source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 356 + checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b" 357 + dependencies = [ 358 + "borsh-derive", 359 + "hashbrown 0.13.2", 360 + ] 361 + 362 + [[package]] 363 + name = "borsh-derive" 364 + version = "0.10.3" 365 + source = "registry+https://github.com/rust-lang/crates.io-index" 366 + checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7" 367 + dependencies = [ 368 + "borsh-derive-internal", 369 + "borsh-schema-derive-internal", 370 + "proc-macro-crate", 371 + "proc-macro2", 372 + "syn 1.0.109", 373 + ] 374 + 375 + [[package]] 376 + name = "borsh-derive-internal" 377 + version = "0.10.3" 378 + source = "registry+https://github.com/rust-lang/crates.io-index" 379 + checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb" 380 + dependencies = [ 381 + "proc-macro2", 382 + "quote", 383 + "syn 1.0.109", 384 + ] 385 + 386 + [[package]] 387 + name = "borsh-schema-derive-internal" 388 + version = "0.10.3" 389 + source = "registry+https://github.com/rust-lang/crates.io-index" 390 + checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd" 301 391 dependencies = [ 302 - "generic-array", 392 + "proc-macro2", 393 + "quote", 394 + "syn 1.0.109", 303 395 ] 304 396 305 397 [[package]] 306 398 name = "bson" 307 - version = "2.4.0" 399 + version = "2.6.1" 308 400 source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "99d76085681585d39016f4d3841eb019201fc54d2dd0d92ad1e4fab3bfb32754" 401 + checksum = "9aeb8bae494e49dbc330dd23cf78f6f7accee22f640ce3ab17841badaa4ce232" 310 402 dependencies = [ 311 403 "ahash 0.7.6", 312 404 "base64 0.13.1", 405 + "bitvec", 313 406 "chrono", 314 407 "hex", 315 - "indexmap", 408 + "indexmap 1.9.3", 409 + "js-sys", 316 410 "lazy_static", 317 411 "rand 0.8.5", 318 412 "serde", 319 413 "serde_bytes", 320 414 "serde_json", 321 - "time 0.3.14", 322 - "uuid 1.1.2", 415 + "time 0.3.25", 416 + "uuid", 323 417 ] 324 418 325 419 [[package]] ··· 347 441 348 442 [[package]] 349 443 name = "bumpalo" 350 - version = "3.12.0" 444 + version = "3.13.0" 445 + source = "registry+https://github.com/rust-lang/crates.io-index" 446 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 447 + 448 + [[package]] 449 + name = "bytecheck" 450 + version = "0.6.11" 451 + source = "registry+https://github.com/rust-lang/crates.io-index" 452 + checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627" 453 + dependencies = [ 454 + "bytecheck_derive", 455 + "ptr_meta", 456 + "simdutf8", 457 + ] 458 + 459 + [[package]] 460 + name = "bytecheck_derive" 461 + version = "0.6.11" 351 462 source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 463 + checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61" 464 + dependencies = [ 465 + "proc-macro2", 466 + "quote", 467 + "syn 1.0.109", 468 + ] 353 469 354 470 [[package]] 355 471 name = "byteorder" ··· 359 475 360 476 [[package]] 361 477 name = "bytes" 362 - version = "1.2.1" 478 + version = "1.4.0" 363 479 source = "registry+https://github.com/rust-lang/crates.io-index" 364 - checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 480 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 365 481 366 482 [[package]] 367 483 name = "cast" ··· 371 487 372 488 [[package]] 373 489 name = "cc" 374 - version = "1.0.73" 490 + version = "1.0.82" 375 491 source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 492 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 493 + dependencies = [ 494 + "libc", 495 + ] 377 496 378 497 [[package]] 379 498 name = "cexpr" ··· 392 511 393 512 [[package]] 394 513 name = "chrono" 395 - version = "0.4.20" 514 + version = "0.4.26" 396 515 source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" 516 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 398 517 dependencies = [ 518 + "android-tzdata", 519 + "iana-time-zone", 399 520 "js-sys", 400 - "num-integer", 401 521 "num-traits", 402 522 "serde", 403 523 "time 0.1.43", ··· 407 527 408 528 [[package]] 409 529 name = "ciborium" 410 - version = "0.2.0" 530 + version = "0.2.1" 411 531 source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f" 532 + checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 413 533 dependencies = [ 414 534 "ciborium-io", 415 535 "ciborium-ll", ··· 418 538 419 539 [[package]] 420 540 name = "ciborium-io" 421 - version = "0.2.0" 541 + version = "0.2.1" 422 542 source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369" 543 + checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 424 544 425 545 [[package]] 426 546 name = "ciborium-ll" 427 - version = "0.2.0" 547 + version = "0.2.1" 428 548 source = "registry+https://github.com/rust-lang/crates.io-index" 429 - checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b" 549 + checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 430 550 dependencies = [ 431 551 "ciborium-io", 432 552 "half", ··· 434 554 435 555 [[package]] 436 556 name = "clang-sys" 437 - version = "1.3.3" 557 + version = "1.6.1" 438 558 source = "registry+https://github.com/rust-lang/crates.io-index" 439 - checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b" 559 + checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 440 560 dependencies = [ 441 561 "glob", 442 562 "libc", ··· 460 580 461 581 [[package]] 462 582 name = "clap" 463 - version = "3.2.23" 583 + version = "3.2.25" 464 584 source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 585 + checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 466 586 dependencies = [ 467 587 "bitflags 1.3.2", 468 588 "clap_lex", 469 - "indexmap", 589 + "indexmap 1.9.3", 470 590 "textwrap 0.16.0", 471 591 ] 472 592 ··· 481 601 482 602 [[package]] 483 603 name = "cmake" 484 - version = "0.1.48" 604 + version = "0.1.50" 485 605 source = "registry+https://github.com/rust-lang/crates.io-index" 486 - checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a" 606 + checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 487 607 dependencies = [ 488 608 "cc", 489 609 ] ··· 511 631 512 632 [[package]] 513 633 name = "colored" 514 - version = "2.0.0" 634 + version = "2.0.4" 515 635 source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" 636 + checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" 517 637 dependencies = [ 518 - "atty", 638 + "is-terminal", 519 639 "lazy_static", 520 - "winapi", 640 + "windows-sys 0.48.0", 521 641 ] 522 642 523 643 [[package]] ··· 541 661 542 662 [[package]] 543 663 name = "console" 544 - version = "0.15.2" 664 + version = "0.15.7" 545 665 source = "registry+https://github.com/rust-lang/crates.io-index" 546 - checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" 666 + checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 547 667 dependencies = [ 548 668 "encode_unicode", 549 669 "lazy_static", 550 670 "libc", 551 - "terminal_size", 552 - "winapi", 671 + "windows-sys 0.45.0", 553 672 ] 554 673 555 674 [[package]] 556 - name = "context" 557 - version = "0.1.0" 675 + name = "convert_case" 676 + version = "0.4.0" 677 + source = "registry+https://github.com/rust-lang/crates.io-index" 678 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 558 679 559 680 [[package]] 560 681 name = "convert_case" ··· 577 698 578 699 [[package]] 579 700 name = "core-foundation-sys" 580 - version = "0.8.3" 701 + version = "0.8.4" 581 702 source = "registry+https://github.com/rust-lang/crates.io-index" 582 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 703 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 583 704 584 705 [[package]] 585 706 name = "core-tests" ··· 596 717 597 718 [[package]] 598 719 name = "cpufeatures" 599 - version = "0.2.5" 720 + version = "0.2.9" 600 721 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 722 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 602 723 dependencies = [ 603 724 "libc", 604 725 ] ··· 622 743 "atty", 623 744 "cast", 624 745 "ciborium", 625 - "clap 3.2.23", 746 + "clap 3.2.25", 626 747 "criterion-plot", 627 748 "itertools", 628 749 "lazy_static", ··· 664 785 665 786 [[package]] 666 787 name = "crossbeam-channel" 667 - version = "0.5.6" 788 + version = "0.5.8" 668 789 source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 790 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 670 791 dependencies = [ 671 792 "cfg-if", 672 793 "crossbeam-utils", ··· 674 795 675 796 [[package]] 676 797 name = "crossbeam-deque" 677 - version = "0.8.2" 798 + version = "0.8.3" 678 799 source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 800 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 680 801 dependencies = [ 681 802 "cfg-if", 682 803 "crossbeam-epoch", ··· 685 806 686 807 [[package]] 687 808 name = "crossbeam-epoch" 688 - version = "0.9.10" 809 + version = "0.9.15" 689 810 source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1" 811 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 691 812 dependencies = [ 692 813 "autocfg", 693 814 "cfg-if", 694 815 "crossbeam-utils", 695 816 "memoffset", 696 - "once_cell", 697 817 "scopeguard", 698 818 ] 699 819 700 820 [[package]] 701 821 name = "crossbeam-queue" 702 - version = "0.3.6" 822 + version = "0.3.8" 703 823 source = "registry+https://github.com/rust-lang/crates.io-index" 704 - checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7" 824 + checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 705 825 dependencies = [ 706 826 "cfg-if", 707 827 "crossbeam-utils", ··· 709 829 710 830 [[package]] 711 831 name = "crossbeam-utils" 712 - version = "0.8.11" 832 + version = "0.8.16" 713 833 source = "registry+https://github.com/rust-lang/crates.io-index" 714 - checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 834 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 715 835 dependencies = [ 716 836 "cfg-if", 717 - "once_cell", 718 837 ] 719 838 720 839 [[package]] ··· 729 848 730 849 [[package]] 731 850 name = "ctor" 732 - version = "0.1.23" 851 + version = "0.2.4" 733 852 source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb" 853 + checksum = "1f34ba9a9bcb8645379e9de8cb3ecfcf4d1c85ba66d90deb3259206fa5aa193b" 735 854 dependencies = [ 736 855 "quote", 737 - "syn 1.0.99", 856 + "syn 2.0.28", 738 857 ] 739 858 740 859 [[package]] 741 - name = "ctor" 742 - version = "0.2.0" 860 + name = "cuid" 861 + version = "1.3.2" 743 862 source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "dd4056f63fce3b82d852c3da92b08ea59959890813a7f4ce9c0ff85b10cf301b" 863 + checksum = "51294db11d38eb763c92936c5c88425d0090e27dce21dd15748134af9e53e739" 745 864 dependencies = [ 746 - "quote", 747 - "syn 2.0.14", 865 + "base36", 866 + "cuid-util", 867 + "cuid2", 868 + "hostname", 869 + "num", 870 + "once_cell", 871 + "rand 0.8.5", 748 872 ] 749 873 750 874 [[package]] 751 - name = "cuid" 752 - version = "1.2.0" 875 + name = "cuid-util" 876 + version = "0.1.0" 877 + source = "registry+https://github.com/rust-lang/crates.io-index" 878 + checksum = "5ea2bfe0336ff1b7ca74819b2df8dfae9afea358aff6b1688baa5c181d8c3713" 879 + 880 + [[package]] 881 + name = "cuid2" 882 + version = "0.1.2" 753 883 source = "registry+https://github.com/rust-lang/crates.io-index" 754 - checksum = "d2a2891c056384f8461606f2579208164d67475fb17a0f442ac8d5981d3c2807" 884 + checksum = "47d99cacd52fd67db7490ad051c8c1973fb75520174d69aabbae08c534c9d0e8" 755 885 dependencies = [ 756 - "hostname", 757 - "lazy_static", 886 + "cuid-util", 887 + "num", 758 888 "rand 0.8.5", 889 + "sha3", 759 890 ] 760 891 761 892 [[package]] ··· 779 910 "proc-macro2", 780 911 "quote", 781 912 "strsim 0.10.0", 782 - "syn 1.0.99", 913 + "syn 1.0.109", 783 914 ] 784 915 785 916 [[package]] ··· 790 921 dependencies = [ 791 922 "darling_core", 792 923 "quote", 793 - "syn 1.0.99", 924 + "syn 1.0.109", 794 925 ] 795 926 796 927 [[package]] 797 928 name = "dashmap" 798 - version = "5.4.0" 929 + version = "5.5.0" 799 930 source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 931 + checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" 801 932 dependencies = [ 802 933 "cfg-if", 803 - "hashbrown 0.12.3", 934 + "hashbrown 0.14.0", 804 935 "lock_api", 805 936 "once_cell", 806 - "parking_lot_core 0.9.6", 937 + "parking_lot_core 0.9.8", 807 938 ] 808 939 809 940 [[package]] 810 941 name = "data-encoding" 811 - version = "2.3.2" 942 + version = "2.4.0" 812 943 source = "registry+https://github.com/rust-lang/crates.io-index" 813 - checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" 944 + checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 814 945 815 946 [[package]] 816 947 name = "datamodel-renderer" ··· 825 956 ] 826 957 827 958 [[package]] 959 + name = "deranged" 960 + version = "0.3.7" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" 963 + 964 + [[package]] 828 965 name = "derivative" 829 966 version = "2.2.0" 830 967 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 832 969 dependencies = [ 833 970 "proc-macro2", 834 971 "quote", 835 - "syn 1.0.99", 972 + "syn 1.0.109", 973 + ] 974 + 975 + [[package]] 976 + name = "derive_more" 977 + version = "0.99.17" 978 + source = "registry+https://github.com/rust-lang/crates.io-index" 979 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 980 + dependencies = [ 981 + "convert_case 0.4.0", 982 + "proc-macro2", 983 + "quote", 984 + "rustc_version 0.4.0", 985 + "syn 1.0.109", 836 986 ] 837 987 838 988 [[package]] ··· 861 1011 862 1012 [[package]] 863 1013 name = "digest" 864 - version = "0.10.3" 1014 + version = "0.10.7" 865 1015 source = "registry+https://github.com/rust-lang/crates.io-index" 866 - checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 1016 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 867 1017 dependencies = [ 868 - "block-buffer 0.10.3", 1018 + "block-buffer 0.10.4", 869 1019 "crypto-common", 870 1020 "subtle", 871 1021 ] 872 1022 873 1023 [[package]] 874 1024 name = "dissimilar" 875 - version = "1.0.4" 1025 + version = "1.0.7" 876 1026 source = "registry+https://github.com/rust-lang/crates.io-index" 877 - checksum = "8c97b9233581d84b8e1e689cdd3a47b6f69770084fc246e86a7f78b0d9c1d4a5" 1027 + checksum = "86e3bdc80eee6e16b2b6b0f87fbc98c04bee3455e35174c0de1a125d0688c632" 878 1028 879 1029 [[package]] 880 1030 name = "dmmf" ··· 884 1034 "colored", 885 1035 "expect-test", 886 1036 "flate2", 887 - "indexmap", 1037 + "indexmap 1.9.3", 888 1038 "indoc", 889 1039 "itertools", 890 1040 "pretty_assertions", ··· 898 1048 899 1049 [[package]] 900 1050 name = "either" 901 - version = "1.8.1" 1051 + version = "1.9.0" 902 1052 source = "registry+https://github.com/rust-lang/crates.io-index" 903 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1053 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 904 1054 905 1055 [[package]] 906 1056 name = "encode_unicode" ··· 993 1143 source = "registry+https://github.com/rust-lang/crates.io-index" 994 1144 checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" 995 1145 dependencies = [ 996 - "heck 0.4.0", 1146 + "heck 0.4.1", 997 1147 "proc-macro2", 998 1148 "quote", 999 - "syn 1.0.99", 1149 + "syn 1.0.109", 1000 1150 ] 1001 1151 1002 1152 [[package]] 1003 1153 name = "enum_dispatch" 1004 - version = "0.3.8" 1154 + version = "0.3.12" 1005 1155 source = "registry+https://github.com/rust-lang/crates.io-index" 1006 - checksum = "0eb359f1476bf611266ac1f5355bc14aeca37b299d0ebccc038ee7058891c9cb" 1156 + checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e" 1007 1157 dependencies = [ 1008 1158 "once_cell", 1009 1159 "proc-macro2", 1010 1160 "quote", 1011 - "syn 1.0.99", 1161 + "syn 2.0.28", 1012 1162 ] 1013 1163 1014 1164 [[package]] ··· 1029 1179 dependencies = [ 1030 1180 "proc-macro2", 1031 1181 "quote", 1032 - "syn 2.0.14", 1182 + "syn 2.0.28", 1033 1183 ] 1034 1184 1035 1185 [[package]] 1186 + name = "equivalent" 1187 + version = "1.0.1" 1188 + source = "registry+https://github.com/rust-lang/crates.io-index" 1189 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1190 + 1191 + [[package]] 1036 1192 name = "errno" 1037 - version = "0.3.1" 1193 + version = "0.3.2" 1038 1194 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1195 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 1040 1196 dependencies = [ 1041 1197 "errno-dragonfly", 1042 1198 "libc", ··· 1055 1211 1056 1212 [[package]] 1057 1213 name = "expect-test" 1058 - version = "1.4.0" 1214 + version = "1.4.1" 1059 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "1d4661aca38d826eb7c72fe128e4238220616de4c0cc00db7bfc38e2e1364dd3" 1216 + checksum = "30d9eafeadd538e68fb28016364c9732d78e420b9ff8853fa5e4058861e9f8d3" 1061 1217 dependencies = [ 1062 1218 "dissimilar", 1063 1219 "once_cell", 1064 1220 ] 1065 1221 1066 1222 [[package]] 1223 + name = "failure" 1224 + version = "0.1.8" 1225 + source = "registry+https://github.com/rust-lang/crates.io-index" 1226 + checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" 1227 + dependencies = [ 1228 + "backtrace", 1229 + "failure_derive", 1230 + ] 1231 + 1232 + [[package]] 1233 + name = "failure_derive" 1234 + version = "0.1.8" 1235 + source = "registry+https://github.com/rust-lang/crates.io-index" 1236 + checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" 1237 + dependencies = [ 1238 + "proc-macro2", 1239 + "quote", 1240 + "syn 1.0.109", 1241 + "synstructure", 1242 + ] 1243 + 1244 + [[package]] 1067 1245 name = "fallible-iterator" 1068 1246 version = "0.2.0" 1069 1247 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1077 1255 1078 1256 [[package]] 1079 1257 name = "fastrand" 1080 - version = "1.8.0" 1258 + version = "2.0.0" 1081 1259 source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1083 - dependencies = [ 1084 - "instant", 1085 - ] 1260 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 1086 1261 1087 1262 [[package]] 1088 1263 name = "fixedbitset" ··· 1098 1273 1099 1274 [[package]] 1100 1275 name = "flate2" 1101 - version = "1.0.24" 1276 + version = "1.0.26" 1102 1277 source = "registry+https://github.com/rust-lang/crates.io-index" 1103 - checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 1278 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 1104 1279 dependencies = [ 1105 1280 "crc32fast", 1106 1281 "libz-sys", ··· 1130 1305 1131 1306 [[package]] 1132 1307 name = "form_urlencoded" 1133 - version = "1.0.1" 1308 + version = "1.2.0" 1134 1309 source = "registry+https://github.com/rust-lang/crates.io-index" 1135 - checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 1310 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 1136 1311 dependencies = [ 1137 - "matches", 1138 1312 "percent-encoding", 1139 1313 ] 1140 1314 1141 1315 [[package]] 1142 1316 name = "frunk" 1143 - version = "0.4.0" 1317 + version = "0.4.2" 1144 1318 source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "0cd67cf7d54b7e72d0ea76f3985c3747d74aee43e0218ad993b7903ba7a5395e" 1319 + checksum = "11a351b59e12f97b4176ee78497dff72e4276fb1ceb13e19056aca7fa0206287" 1146 1320 dependencies = [ 1147 1321 "frunk_core", 1148 1322 "frunk_derives", ··· 1151 1325 1152 1326 [[package]] 1153 1327 name = "frunk_core" 1154 - version = "0.4.0" 1328 + version = "0.4.2" 1155 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "1246cf43ec80bf8b2505b5c360b8fb999c97dabd17dbb604d85558d5cbc25482" 1330 + checksum = "af2469fab0bd07e64ccf0ad57a1438f63160c69b2e57f04a439653d68eb558d6" 1157 1331 1158 1332 [[package]] 1159 1333 name = "frunk_derives" 1160 - version = "0.4.0" 1334 + version = "0.4.2" 1161 1335 source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "3dbc4f084ec5a3f031d24ccedeb87ab2c3189a2f33b8d070889073837d5ea09e" 1336 + checksum = "b0fa992f1656e1707946bbba340ad244f0814009ef8c0118eb7b658395f19a2e" 1163 1337 dependencies = [ 1164 1338 "frunk_proc_macro_helpers", 1165 1339 "quote", 1166 - "syn 1.0.99", 1340 + "syn 2.0.28", 1167 1341 ] 1168 1342 1169 1343 [[package]] 1170 1344 name = "frunk_proc_macro_helpers" 1171 - version = "0.1.0" 1345 + version = "0.1.2" 1172 1346 source = "registry+https://github.com/rust-lang/crates.io-index" 1173 - checksum = "99f11257f106c6753f5ffcb8e601fb39c390a088017aaa55b70c526bff15f63e" 1347 + checksum = "35b54add839292b743aeda6ebedbd8b11e93404f902c56223e51b9ec18a13d2c" 1174 1348 dependencies = [ 1175 1349 "frunk_core", 1176 1350 "proc-macro2", 1177 1351 "quote", 1178 - "syn 1.0.99", 1352 + "syn 2.0.28", 1179 1353 ] 1180 1354 1181 1355 [[package]] 1182 1356 name = "frunk_proc_macros" 1183 - version = "0.1.0" 1357 + version = "0.1.2" 1184 1358 source = "registry+https://github.com/rust-lang/crates.io-index" 1185 - checksum = "a078bd8459eccbb85e0b007b8f756585762a72a9efc53f359b371c3b6351dbcc" 1186 - dependencies = [ 1187 - "frunk_core", 1188 - "frunk_proc_macros_impl", 1189 - "proc-macro-hack", 1190 - ] 1191 - 1192 - [[package]] 1193 - name = "frunk_proc_macros_impl" 1194 - version = "0.1.0" 1195 - source = "registry+https://github.com/rust-lang/crates.io-index" 1196 - checksum = "6ffba99f0fa4f57e42f57388fbb9a0ca863bc2b4261f3c5570fed579d5df6c32" 1359 + checksum = "71b85a1d4a9a6b300b41c05e8e13ef2feca03e0334127f29eca9506a7fe13a93" 1197 1360 dependencies = [ 1198 1361 "frunk_core", 1199 1362 "frunk_proc_macro_helpers", 1200 - "proc-macro-hack", 1201 1363 "quote", 1202 - "syn 1.0.99", 1364 + "syn 2.0.28", 1203 1365 ] 1204 1366 1205 1367 [[package]] ··· 1210 1372 1211 1373 [[package]] 1212 1374 name = "futures" 1213 - version = "0.3.24" 1375 + version = "0.3.28" 1214 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1215 - checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c" 1377 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1216 1378 dependencies = [ 1217 1379 "futures-channel", 1218 1380 "futures-core", ··· 1225 1387 1226 1388 [[package]] 1227 1389 name = "futures-channel" 1228 - version = "0.3.24" 1390 + version = "0.3.28" 1229 1391 source = "registry+https://github.com/rust-lang/crates.io-index" 1230 - checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050" 1392 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1231 1393 dependencies = [ 1232 1394 "futures-core", 1233 1395 "futures-sink", ··· 1235 1397 1236 1398 [[package]] 1237 1399 name = "futures-core" 1238 - version = "0.3.24" 1400 + version = "0.3.28" 1239 1401 source = "registry+https://github.com/rust-lang/crates.io-index" 1240 - checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf" 1402 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1241 1403 1242 1404 [[package]] 1243 1405 name = "futures-executor" 1244 - version = "0.3.24" 1406 + version = "0.3.28" 1245 1407 source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab" 1408 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1247 1409 dependencies = [ 1248 1410 "futures-core", 1249 1411 "futures-task", ··· 1252 1414 1253 1415 [[package]] 1254 1416 name = "futures-io" 1255 - version = "0.3.24" 1417 + version = "0.3.28" 1256 1418 source = "registry+https://github.com/rust-lang/crates.io-index" 1257 - checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68" 1419 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1258 1420 1259 1421 [[package]] 1260 1422 name = "futures-macro" 1261 - version = "0.3.24" 1423 + version = "0.3.28" 1262 1424 source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17" 1425 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1264 1426 dependencies = [ 1265 1427 "proc-macro2", 1266 1428 "quote", 1267 - "syn 1.0.99", 1429 + "syn 2.0.28", 1268 1430 ] 1269 1431 1270 1432 [[package]] 1271 1433 name = "futures-sink" 1272 - version = "0.3.24" 1434 + version = "0.3.28" 1273 1435 source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56" 1436 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1275 1437 1276 1438 [[package]] 1277 1439 name = "futures-task" 1278 - version = "0.3.24" 1440 + version = "0.3.28" 1279 1441 source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1" 1442 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1281 1443 1282 1444 [[package]] 1283 1445 name = "futures-timer" ··· 1287 1449 1288 1450 [[package]] 1289 1451 name = "futures-util" 1290 - version = "0.3.24" 1452 + version = "0.3.28" 1291 1453 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90" 1454 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1293 1455 dependencies = [ 1294 1456 "futures-channel", 1295 1457 "futures-core", ··· 1305 1467 1306 1468 [[package]] 1307 1469 name = "generic-array" 1308 - version = "0.14.6" 1470 + version = "0.14.7" 1309 1471 source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1472 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1311 1473 dependencies = [ 1312 1474 "typenum", 1313 1475 "version_check", ··· 1326 1488 1327 1489 [[package]] 1328 1490 name = "getrandom" 1329 - version = "0.2.7" 1491 + version = "0.2.10" 1330 1492 source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 1493 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1332 1494 dependencies = [ 1333 1495 "cfg-if", 1334 1496 "libc", ··· 1337 1499 1338 1500 [[package]] 1339 1501 name = "gimli" 1340 - version = "0.26.2" 1502 + version = "0.27.3" 1341 1503 source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 1504 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 1343 1505 1344 1506 [[package]] 1345 1507 name = "glob" 1346 - version = "0.3.0" 1508 + version = "0.3.1" 1347 1509 source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1510 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1349 1511 1350 1512 [[package]] 1351 1513 name = "graphql-parser" ··· 1353 1515 source = "git+https://github.com/prisma/graphql-parser#6a3f58bd879065588e710cb02b5bd30c1ce182c3" 1354 1516 dependencies = [ 1355 1517 "combine", 1356 - "indexmap", 1518 + "indexmap 1.9.3", 1357 1519 "thiserror", 1358 1520 ] 1359 1521 1360 1522 [[package]] 1361 1523 name = "h2" 1362 - version = "0.3.17" 1524 + version = "0.3.20" 1363 1525 source = "registry+https://github.com/rust-lang/crates.io-index" 1364 - checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f" 1526 + checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 1365 1527 dependencies = [ 1366 1528 "bytes", 1367 1529 "fnv", ··· 1369 1531 "futures-sink", 1370 1532 "futures-util", 1371 1533 "http", 1372 - "indexmap", 1534 + "indexmap 1.9.3", 1373 1535 "slab", 1374 1536 "tokio", 1375 - "tokio-util 0.7.3", 1537 + "tokio-util 0.7.8", 1376 1538 "tracing", 1377 1539 ] 1378 1540 ··· 1410 1572 ] 1411 1573 1412 1574 [[package]] 1575 + name = "hashbrown" 1576 + version = "0.14.0" 1577 + source = "registry+https://github.com/rust-lang/crates.io-index" 1578 + checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 1579 + dependencies = [ 1580 + "ahash 0.8.3", 1581 + "allocator-api2", 1582 + ] 1583 + 1584 + [[package]] 1413 1585 name = "hashlink" 1414 - version = "0.8.2" 1586 + version = "0.8.3" 1415 1587 source = "registry+https://github.com/rust-lang/crates.io-index" 1416 - checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" 1588 + checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" 1417 1589 dependencies = [ 1418 - "hashbrown 0.13.2", 1590 + "hashbrown 0.14.0", 1419 1591 ] 1420 1592 1421 1593 [[package]] ··· 1429 1601 1430 1602 [[package]] 1431 1603 name = "heck" 1432 - version = "0.4.0" 1604 + version = "0.4.1" 1433 1605 source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1606 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1435 1607 1436 1608 [[package]] 1437 1609 name = "hermit-abi" ··· 1443 1615 ] 1444 1616 1445 1617 [[package]] 1618 + name = "hermit-abi" 1619 + version = "0.3.2" 1620 + source = "registry+https://github.com/rust-lang/crates.io-index" 1621 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1622 + 1623 + [[package]] 1446 1624 name = "hex" 1447 1625 version = "0.4.3" 1448 1626 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1454 1632 source = "registry+https://github.com/rust-lang/crates.io-index" 1455 1633 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1456 1634 dependencies = [ 1457 - "digest 0.10.3", 1635 + "digest 0.10.7", 1458 1636 ] 1459 1637 1460 1638 [[package]] ··· 1470 1648 1471 1649 [[package]] 1472 1650 name = "html-escape" 1473 - version = "0.2.12" 1651 + version = "0.2.13" 1474 1652 source = "registry+https://github.com/rust-lang/crates.io-index" 1475 - checksum = "15315cfa9503e9aa85a477138eff76a1b203a430703548052c330b69d8d8c205" 1653 + checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 1476 1654 dependencies = [ 1477 1655 "utf8-width", 1478 1656 ] 1479 1657 1480 1658 [[package]] 1481 1659 name = "http" 1482 - version = "0.2.8" 1660 + version = "0.2.9" 1483 1661 source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1662 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1485 1663 dependencies = [ 1486 1664 "bytes", 1487 1665 "fnv", ··· 1513 1691 1514 1692 [[package]] 1515 1693 name = "hyper" 1516 - version = "0.14.23" 1694 + version = "0.14.27" 1517 1695 source = "registry+https://github.com/rust-lang/crates.io-index" 1518 - checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" 1696 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1519 1697 dependencies = [ 1520 1698 "bytes", 1521 1699 "futures-channel", ··· 1528 1706 "httpdate", 1529 1707 "itoa", 1530 1708 "pin-project-lite", 1531 - "socket2", 1709 + "socket2 0.4.9", 1532 1710 "tokio", 1533 1711 "tower-service", 1534 1712 "tracing", ··· 1561 1739 ] 1562 1740 1563 1741 [[package]] 1742 + name = "iana-time-zone" 1743 + version = "0.1.57" 1744 + source = "registry+https://github.com/rust-lang/crates.io-index" 1745 + checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 1746 + dependencies = [ 1747 + "android_system_properties", 1748 + "core-foundation-sys", 1749 + "iana-time-zone-haiku", 1750 + "js-sys", 1751 + "wasm-bindgen", 1752 + "windows", 1753 + ] 1754 + 1755 + [[package]] 1756 + name = "iana-time-zone-haiku" 1757 + version = "0.1.2" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1760 + dependencies = [ 1761 + "cc", 1762 + ] 1763 + 1764 + [[package]] 1564 1765 name = "ident_case" 1565 1766 version = "1.0.1" 1566 1767 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1578 1779 ] 1579 1780 1580 1781 [[package]] 1782 + name = "idna" 1783 + version = "0.4.0" 1784 + source = "registry+https://github.com/rust-lang/crates.io-index" 1785 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1786 + dependencies = [ 1787 + "unicode-bidi", 1788 + "unicode-normalization", 1789 + ] 1790 + 1791 + [[package]] 1581 1792 name = "indexmap" 1582 - version = "1.9.1" 1793 + version = "1.9.3" 1583 1794 source = "registry+https://github.com/rust-lang/crates.io-index" 1584 - checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1795 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1585 1796 dependencies = [ 1586 1797 "autocfg", 1587 1798 "hashbrown 0.12.3", ··· 1589 1800 ] 1590 1801 1591 1802 [[package]] 1803 + name = "indexmap" 1804 + version = "2.0.0" 1805 + source = "registry+https://github.com/rust-lang/crates.io-index" 1806 + checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 1807 + dependencies = [ 1808 + "equivalent", 1809 + "hashbrown 0.14.0", 1810 + ] 1811 + 1812 + [[package]] 1592 1813 name = "indoc" 1593 - version = "2.0.1" 1814 + version = "2.0.3" 1594 1815 source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "9f2cb48b81b1dc9f39676bf99f5499babfec7cd8fe14307f7b3d747208fb5690" 1816 + checksum = "2c785eefb63ebd0e33416dfcb8d6da0bf27ce752843a45632a67bf10d4d4b5c4" 1596 1817 1597 1818 [[package]] 1598 1819 name = "insta" ··· 1617 1838 ] 1618 1839 1619 1840 [[package]] 1620 - name = "io-lifetimes" 1621 - version = "1.0.6" 1841 + name = "ipconfig" 1842 + version = "0.3.2" 1622 1843 source = "registry+https://github.com/rust-lang/crates.io-index" 1623 - checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3" 1844 + checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1624 1845 dependencies = [ 1625 - "libc", 1626 - "windows-sys 0.45.0", 1846 + "socket2 0.5.3", 1847 + "widestring", 1848 + "windows-sys 0.48.0", 1849 + "winreg 0.50.0", 1627 1850 ] 1628 1851 1629 1852 [[package]] 1630 - name = "ipconfig" 1631 - version = "0.3.0" 1853 + name = "ipnet" 1854 + version = "2.8.0" 1632 1855 source = "registry+https://github.com/rust-lang/crates.io-index" 1633 - checksum = "723519edce41262b05d4143ceb95050e4c614f483e78e9fd9e39a8275a84ad98" 1634 - dependencies = [ 1635 - "socket2", 1636 - "widestring", 1637 - "winapi", 1638 - "winreg 0.7.0", 1639 - ] 1856 + checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 1640 1857 1641 1858 [[package]] 1642 - name = "ipnet" 1643 - version = "2.5.0" 1859 + name = "is-terminal" 1860 + version = "0.4.9" 1644 1861 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 1862 + checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1863 + dependencies = [ 1864 + "hermit-abi 0.3.2", 1865 + "rustix", 1866 + "windows-sys 0.48.0", 1867 + ] 1646 1868 1647 1869 [[package]] 1648 1870 name = "itertools" ··· 1655 1877 1656 1878 [[package]] 1657 1879 name = "itoa" 1658 - version = "1.0.3" 1880 + version = "1.0.9" 1659 1881 source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 1882 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1661 1883 1662 1884 [[package]] 1663 - name = "js-drivers" 1885 + name = "js-connectors" 1664 1886 version = "0.1.0" 1665 1887 dependencies = [ 1666 1888 "async-trait", 1889 + "bigdecimal", 1890 + "chrono", 1667 1891 "expect-test", 1892 + "futures", 1668 1893 "napi", 1669 1894 "napi-derive", 1895 + "num-bigint", 1670 1896 "once_cell", 1897 + "psl", 1671 1898 "quaint", 1672 1899 "serde", 1673 1900 "serde_json", ··· 1678 1905 1679 1906 [[package]] 1680 1907 name = "js-sys" 1681 - version = "0.3.56" 1908 + version = "0.3.61" 1682 1909 source = "registry+https://github.com/rust-lang/crates.io-index" 1683 - checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04" 1910 + checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1684 1911 dependencies = [ 1685 1912 "wasm-bindgen", 1686 1913 ] ··· 1708 1935 "serde", 1709 1936 "serde_derive", 1710 1937 "serde_json", 1938 + ] 1939 + 1940 + [[package]] 1941 + name = "keccak" 1942 + version = "0.1.4" 1943 + source = "registry+https://github.com/rust-lang/crates.io-index" 1944 + checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" 1945 + dependencies = [ 1946 + "cpufeatures", 1711 1947 ] 1712 1948 1713 1949 [[package]] ··· 1797 2033 1798 2034 [[package]] 1799 2035 name = "libc" 1800 - version = "0.2.140" 2036 + version = "0.2.147" 1801 2037 source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 2038 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1803 2039 1804 2040 [[package]] 1805 2041 name = "libloading" 1806 - version = "0.7.3" 2042 + version = "0.7.4" 1807 2043 source = "registry+https://github.com/rust-lang/crates.io-index" 1808 - checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd" 2044 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1809 2045 dependencies = [ 1810 2046 "cfg-if", 1811 2047 "winapi", ··· 1824 2060 1825 2061 [[package]] 1826 2062 name = "libz-sys" 1827 - version = "1.1.8" 2063 + version = "1.1.12" 1828 2064 source = "registry+https://github.com/rust-lang/crates.io-index" 1829 - checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 2065 + checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" 1830 2066 dependencies = [ 1831 2067 "cc", 1832 2068 "pkg-config", ··· 1841 2077 1842 2078 [[package]] 1843 2079 name = "linux-raw-sys" 1844 - version = "0.1.4" 2080 + version = "0.4.5" 1845 2081 source = "registry+https://github.com/rust-lang/crates.io-index" 1846 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 2082 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 1847 2083 1848 2084 [[package]] 1849 2085 name = "lock_api" 1850 - version = "0.4.8" 2086 + version = "0.4.10" 1851 2087 source = "registry+https://github.com/rust-lang/crates.io-index" 1852 - checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390" 2088 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1853 2089 dependencies = [ 1854 2090 "autocfg", 1855 2091 "scopeguard", ··· 1857 2093 1858 2094 [[package]] 1859 2095 name = "log" 1860 - version = "0.4.17" 2096 + version = "0.4.19" 1861 2097 source = "registry+https://github.com/rust-lang/crates.io-index" 1862 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1863 - dependencies = [ 1864 - "cfg-if", 1865 - ] 2098 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1866 2099 1867 2100 [[package]] 1868 2101 name = "lru" ··· 1925 2158 source = "registry+https://github.com/rust-lang/crates.io-index" 1926 2159 checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1927 2160 dependencies = [ 1928 - "regex-automata", 2161 + "regex-automata 0.1.10", 1929 2162 ] 1930 2163 1931 2164 [[package]] 1932 2165 name = "matches" 1933 - version = "0.1.9" 2166 + version = "0.1.10" 1934 2167 source = "registry+https://github.com/rust-lang/crates.io-index" 1935 - checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 2168 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1936 2169 1937 2170 [[package]] 1938 2171 name = "md-5" 1939 - version = "0.10.4" 2172 + version = "0.10.5" 1940 2173 source = "registry+https://github.com/rust-lang/crates.io-index" 1941 - checksum = "66b48670c893079d3c2ed79114e3644b7004df1c361a4e0ad52e2e6940d07c3d" 2174 + checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 1942 2175 dependencies = [ 1943 - "digest 0.10.3", 2176 + "digest 0.10.7", 1944 2177 ] 1945 2178 1946 2179 [[package]] ··· 1957 2190 1958 2191 [[package]] 1959 2192 name = "memoffset" 1960 - version = "0.6.5" 2193 + version = "0.9.0" 1961 2194 source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 2195 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1963 2196 dependencies = [ 1964 2197 "autocfg", 1965 2198 ] ··· 1991 2224 checksum = "953cbbb6f9ba4b9304f4df79b98cdc9d14071ed93065a9fca11c00c5d9181b66" 1992 2225 dependencies = [ 1993 2226 "hyper", 1994 - "indexmap", 2227 + "indexmap 1.9.3", 1995 2228 "ipnet", 1996 2229 "metrics 0.19.0", 1997 2230 "metrics-util 0.13.0", ··· 2010 2243 dependencies = [ 2011 2244 "proc-macro2", 2012 2245 "quote", 2013 - "syn 1.0.99", 2246 + "syn 1.0.109", 2014 2247 ] 2015 2248 2016 2249 [[package]] ··· 2019 2252 source = "registry+https://github.com/rust-lang/crates.io-index" 2020 2253 checksum = "65a9e83b833e1d2e07010a386b197c13aa199bbd0fca5cf69bfa147972db890a" 2021 2254 dependencies = [ 2022 - "aho-corasick", 2255 + "aho-corasick 0.7.20", 2023 2256 "atomic-shim", 2024 2257 "crossbeam-epoch", 2025 2258 "crossbeam-utils", 2026 2259 "hashbrown 0.11.2", 2027 - "indexmap", 2260 + "indexmap 1.9.3", 2028 2261 "metrics 0.18.1", 2029 2262 "num_cpus", 2030 2263 "ordered-float", ··· 2065 2298 2066 2299 [[package]] 2067 2300 name = "miniz_oxide" 2068 - version = "0.5.4" 2301 + version = "0.7.1" 2069 2302 source = "registry+https://github.com/rust-lang/crates.io-index" 2070 - checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 2303 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2071 2304 dependencies = [ 2072 2305 "adler", 2073 2306 ] 2074 2307 2075 2308 [[package]] 2076 2309 name = "mio" 2077 - version = "0.8.5" 2310 + version = "0.8.8" 2078 2311 source = "registry+https://github.com/rust-lang/crates.io-index" 2079 - checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 2312 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 2080 2313 dependencies = [ 2081 2314 "libc", 2082 2315 "log", 2083 2316 "wasi 0.11.0+wasi-snapshot-preview1", 2084 - "windows-sys 0.42.0", 2317 + "windows-sys 0.48.0", 2085 2318 ] 2086 2319 2087 2320 [[package]] ··· 2105 2338 2106 2339 [[package]] 2107 2340 name = "mongodb" 2108 - version = "2.3.0" 2341 + version = "2.6.0" 2109 2342 source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "b95afe97b0c799fdf69cd960272a2cb9662d077bd6efd84eb722bb9805d47554" 2343 + checksum = "ebcd85ec209a5b84fd9f54b9e381f6fa17462bc74160d018fc94fd8b9f61faa8" 2111 2344 dependencies = [ 2112 2345 "async-trait", 2113 2346 "base64 0.13.1", ··· 2115 2348 "bson", 2116 2349 "chrono", 2117 2350 "derivative", 2351 + "derive_more", 2118 2352 "futures-core", 2119 2353 "futures-executor", 2354 + "futures-io", 2120 2355 "futures-util", 2121 2356 "hex", 2122 2357 "hmac", 2123 2358 "lazy_static", 2124 2359 "md-5", 2125 - "os_info", 2126 2360 "pbkdf2", 2127 2361 "percent-encoding", 2128 2362 "rand 0.8.5", 2129 2363 "rustc_version_runtime", 2130 - "rustls 0.20.6", 2364 + "rustls 0.20.8", 2131 2365 "rustls-pemfile", 2132 2366 "serde", 2133 2367 "serde_bytes", 2134 2368 "serde_with", 2135 2369 "sha-1", 2136 - "sha2 0.10.5", 2137 - "socket2", 2370 + "sha2 0.10.7", 2371 + "socket2 0.4.9", 2138 2372 "stringprep", 2139 2373 "strsim 0.10.0", 2140 2374 "take_mut", 2141 2375 "thiserror", 2142 2376 "tokio", 2143 2377 "tokio-rustls 0.23.4", 2144 - "tokio-util 0.7.3", 2378 + "tokio-util 0.7.8", 2145 2379 "trust-dns-proto", 2146 2380 "trust-dns-resolver", 2147 2381 "typed-builder", 2148 - "uuid 0.8.2", 2382 + "uuid", 2149 2383 "webpki-roots", 2150 2384 ] 2151 2385 ··· 2170 2404 "chrono", 2171 2405 "cuid", 2172 2406 "futures", 2173 - "indexmap", 2407 + "indexmap 1.9.3", 2174 2408 "itertools", 2175 2409 "mongodb", 2176 2410 "mongodb-client", ··· 2188 2422 "tracing", 2189 2423 "tracing-futures", 2190 2424 "user-facing-errors", 2191 - "uuid 1.1.2", 2425 + "uuid", 2192 2426 ] 2193 2427 2194 2428 [[package]] 2195 2429 name = "mongodb-schema-connector" 2196 2430 version = "0.1.0" 2197 2431 dependencies = [ 2198 - "convert_case", 2432 + "convert_case 0.6.0", 2199 2433 "datamodel-renderer", 2200 2434 "dissimilar", 2201 2435 "enumflags2", ··· 2256 2490 "priority-queue", 2257 2491 "serde", 2258 2492 "serde_json", 2259 - "socket2", 2493 + "socket2 0.4.9", 2260 2494 "thiserror", 2261 2495 "tokio", 2262 2496 "tokio-native-tls", 2263 - "tokio-util 0.7.3", 2497 + "tokio-util 0.7.8", 2264 2498 "twox-hash", 2265 2499 "url", 2266 2500 ] ··· 2294 2528 "serde", 2295 2529 "serde_json", 2296 2530 "sha1", 2297 - "sha2 0.10.5", 2531 + "sha2 0.10.7", 2298 2532 "smallvec", 2299 2533 "subprocess", 2300 2534 "thiserror", 2301 - "time 0.3.14", 2302 - "uuid 1.1.2", 2535 + "time 0.3.25", 2536 + "uuid", 2303 2537 ] 2304 2538 2305 2539 [[package]] ··· 2322 2556 2323 2557 [[package]] 2324 2558 name = "napi" 2325 - version = "2.12.4" 2559 + version = "2.13.2" 2326 2560 source = "registry+https://github.com/rust-lang/crates.io-index" 2327 - checksum = "556470a21074b55be8adee5f27ca04389cfdaca323a28b4b0e9c15466de94731" 2561 + checksum = "0ede2d12cd6fce44da537a4be1f5510c73be2506c2e32dfaaafd1f36968f3a0e" 2328 2562 dependencies = [ 2329 - "bitflags 2.1.0", 2330 - "ctor 0.2.0", 2563 + "bitflags 2.4.0", 2564 + "ctor", 2331 2565 "napi-derive", 2332 2566 "napi-sys", 2333 2567 "once_cell", ··· 2349 2583 checksum = "da1c6a8fa84d549aa8708fcd062372bf8ec6e849de39016ab921067d21bde367" 2350 2584 dependencies = [ 2351 2585 "cfg-if", 2352 - "convert_case", 2586 + "convert_case 0.6.0", 2353 2587 "napi-derive-backend", 2354 2588 "proc-macro2", 2355 2589 "quote", 2356 - "syn 1.0.99", 2590 + "syn 1.0.109", 2357 2591 ] 2358 2592 2359 2593 [[package]] ··· 2362 2596 source = "registry+https://github.com/rust-lang/crates.io-index" 2363 2597 checksum = "20bbc7c69168d06a848f925ec5f0e0997f98e8c8d4f2cc30157f0da51c009e17" 2364 2598 dependencies = [ 2365 - "convert_case", 2599 + "convert_case 0.6.0", 2366 2600 "once_cell", 2367 2601 "proc-macro2", 2368 2602 "quote", 2369 2603 "regex", 2370 - "semver 1.0.17", 2371 - "syn 1.0.99", 2604 + "semver 1.0.18", 2605 + "syn 1.0.109", 2372 2606 ] 2373 2607 2374 2608 [[package]] ··· 2382 2616 2383 2617 [[package]] 2384 2618 name = "native-tls" 2385 - version = "0.2.10" 2619 + version = "0.2.11" 2386 2620 source = "registry+https://github.com/rust-lang/crates.io-index" 2387 - checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 2621 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2388 2622 dependencies = [ 2389 2623 "lazy_static", 2390 2624 "libc", ··· 2409 2643 2410 2644 [[package]] 2411 2645 name = "nom" 2412 - version = "7.1.1" 2646 + version = "7.1.3" 2413 2647 source = "registry+https://github.com/rust-lang/crates.io-index" 2414 - checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" 2648 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2415 2649 dependencies = [ 2416 2650 "memchr", 2417 2651 "minimal-lexical", 2418 2652 ] 2419 2653 2420 2654 [[package]] 2655 + name = "nu-ansi-term" 2656 + version = "0.46.0" 2657 + source = "registry+https://github.com/rust-lang/crates.io-index" 2658 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2659 + dependencies = [ 2660 + "overload", 2661 + "winapi", 2662 + ] 2663 + 2664 + [[package]] 2665 + name = "num" 2666 + version = "0.4.1" 2667 + source = "registry+https://github.com/rust-lang/crates.io-index" 2668 + checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" 2669 + dependencies = [ 2670 + "num-bigint", 2671 + "num-complex", 2672 + "num-integer", 2673 + "num-iter", 2674 + "num-rational", 2675 + "num-traits", 2676 + ] 2677 + 2678 + [[package]] 2421 2679 name = "num-bigint" 2422 2680 version = "0.4.3" 2423 2681 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2429 2687 ] 2430 2688 2431 2689 [[package]] 2690 + name = "num-complex" 2691 + version = "0.4.3" 2692 + source = "registry+https://github.com/rust-lang/crates.io-index" 2693 + checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" 2694 + dependencies = [ 2695 + "num-traits", 2696 + ] 2697 + 2698 + [[package]] 2432 2699 name = "num-integer" 2433 2700 version = "0.1.45" 2434 2701 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2439 2706 ] 2440 2707 2441 2708 [[package]] 2442 - name = "num-traits" 2443 - version = "0.2.15" 2709 + name = "num-iter" 2710 + version = "0.1.43" 2444 2711 source = "registry+https://github.com/rust-lang/crates.io-index" 2445 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2712 + checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 2446 2713 dependencies = [ 2447 2714 "autocfg", 2715 + "num-integer", 2716 + "num-traits", 2448 2717 ] 2449 2718 2450 2719 [[package]] 2451 - name = "num_cpus" 2452 - version = "1.13.1" 2720 + name = "num-rational" 2721 + version = "0.4.1" 2453 2722 source = "registry+https://github.com/rust-lang/crates.io-index" 2454 - checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 2723 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 2455 2724 dependencies = [ 2456 - "hermit-abi", 2457 - "libc", 2725 + "autocfg", 2726 + "num-bigint", 2727 + "num-integer", 2728 + "num-traits", 2458 2729 ] 2459 2730 2460 2731 [[package]] 2461 - name = "num_threads" 2462 - version = "0.1.6" 2732 + name = "num-traits" 2733 + version = "0.2.16" 2463 2734 source = "registry+https://github.com/rust-lang/crates.io-index" 2464 - checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2735 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 2465 2736 dependencies = [ 2737 + "autocfg", 2738 + ] 2739 + 2740 + [[package]] 2741 + name = "num_cpus" 2742 + version = "1.16.0" 2743 + source = "registry+https://github.com/rust-lang/crates.io-index" 2744 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2745 + dependencies = [ 2746 + "hermit-abi 0.3.2", 2466 2747 "libc", 2467 2748 ] 2468 2749 2469 2750 [[package]] 2470 2751 name = "object" 2471 - version = "0.29.0" 2752 + version = "0.31.1" 2472 2753 source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 2754 + checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 2474 2755 dependencies = [ 2475 2756 "memchr", 2476 2757 ] 2477 2758 2478 2759 [[package]] 2479 2760 name = "once_cell" 2480 - version = "1.17.0" 2761 + version = "1.18.0" 2481 2762 source = "registry+https://github.com/rust-lang/crates.io-index" 2482 - checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 2763 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2483 2764 2484 2765 [[package]] 2485 2766 name = "oorandom" ··· 2495 2776 2496 2777 [[package]] 2497 2778 name = "openssl" 2498 - version = "0.10.48" 2779 + version = "0.10.56" 2499 2780 source = "registry+https://github.com/rust-lang/crates.io-index" 2500 - checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" 2781 + checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 2501 2782 dependencies = [ 2502 2783 "bitflags 1.3.2", 2503 2784 "cfg-if", ··· 2510 2791 2511 2792 [[package]] 2512 2793 name = "openssl-macros" 2513 - version = "0.1.0" 2794 + version = "0.1.1" 2514 2795 source = "registry+https://github.com/rust-lang/crates.io-index" 2515 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 2796 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2516 2797 dependencies = [ 2517 2798 "proc-macro2", 2518 2799 "quote", 2519 - "syn 1.0.99", 2800 + "syn 2.0.28", 2520 2801 ] 2521 2802 2522 2803 [[package]] ··· 2527 2808 2528 2809 [[package]] 2529 2810 name = "openssl-src" 2530 - version = "111.25.0+1.1.1t" 2811 + version = "111.27.0+1.1.1v" 2531 2812 source = "registry+https://github.com/rust-lang/crates.io-index" 2532 - checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6" 2813 + checksum = "06e8f197c82d7511c5b014030c9b1efeda40d7d5f99d23b4ceed3524a5e63f02" 2533 2814 dependencies = [ 2534 2815 "cc", 2535 2816 ] 2536 2817 2537 2818 [[package]] 2538 2819 name = "openssl-sys" 2539 - version = "0.9.83" 2820 + version = "0.9.91" 2540 2821 source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b" 2822 + checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 2542 2823 dependencies = [ 2543 - "autocfg", 2544 2824 "cc", 2545 2825 "libc", 2546 2826 "openssl-src", ··· 2618 2898 checksum = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063" 2619 2899 2620 2900 [[package]] 2621 - name = "os_info" 2622 - version = "3.5.0" 2623 - source = "registry+https://github.com/rust-lang/crates.io-index" 2624 - checksum = "5209b2162b2c140df493a93689e04f8deab3a67634f5bc7a553c0a98e5b8d399" 2625 - dependencies = [ 2626 - "log", 2627 - "winapi", 2628 - ] 2629 - 2630 - [[package]] 2631 2901 name = "os_str_bytes" 2632 - version = "6.5.0" 2902 + version = "6.5.1" 2633 2903 source = "registry+https://github.com/rust-lang/crates.io-index" 2634 - checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" 2904 + checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" 2635 2905 2636 2906 [[package]] 2637 - name = "output_vt100" 2638 - version = "0.1.3" 2907 + name = "overload" 2908 + version = "0.1.1" 2639 2909 source = "registry+https://github.com/rust-lang/crates.io-index" 2640 - checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 2641 - dependencies = [ 2642 - "winapi", 2643 - ] 2910 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2644 2911 2645 2912 [[package]] 2646 2913 name = "parking_lot" ··· 2660 2927 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2661 2928 dependencies = [ 2662 2929 "lock_api", 2663 - "parking_lot_core 0.9.6", 2930 + "parking_lot_core 0.9.8", 2664 2931 ] 2665 2932 2666 2933 [[package]] ··· 2672 2939 "cfg-if", 2673 2940 "instant", 2674 2941 "libc", 2675 - "redox_syscall", 2942 + "redox_syscall 0.2.16", 2676 2943 "smallvec", 2677 2944 "winapi", 2678 2945 ] 2679 2946 2680 2947 [[package]] 2681 2948 name = "parking_lot_core" 2682 - version = "0.9.6" 2949 + version = "0.9.8" 2683 2950 source = "registry+https://github.com/rust-lang/crates.io-index" 2684 - checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" 2951 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 2685 2952 dependencies = [ 2686 2953 "cfg-if", 2687 2954 "libc", 2688 - "redox_syscall", 2955 + "redox_syscall 0.3.5", 2689 2956 "smallvec", 2690 - "windows-sys 0.42.0", 2957 + "windows-targets 0.48.1", 2691 2958 ] 2692 2959 2693 2960 [[package]] ··· 2709 2976 "diagnostics", 2710 2977 "either", 2711 2978 "enumflags2", 2712 - "indexmap", 2979 + "indexmap 1.9.3", 2713 2980 "rustc-hash", 2714 2981 "schema-ast", 2715 2982 ] 2716 2983 2717 2984 [[package]] 2718 2985 name = "pbkdf2" 2719 - version = "0.10.1" 2986 + version = "0.11.0" 2720 2987 source = "registry+https://github.com/rust-lang/crates.io-index" 2721 - checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7" 2988 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2722 2989 dependencies = [ 2723 - "digest 0.10.3", 2990 + "digest 0.10.7", 2724 2991 ] 2725 2992 2726 2993 [[package]] ··· 2731 2998 2732 2999 [[package]] 2733 3000 name = "pem" 2734 - version = "1.1.0" 3001 + version = "1.1.1" 2735 3002 source = "registry+https://github.com/rust-lang/crates.io-index" 2736 - checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4" 3003 + checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 2737 3004 dependencies = [ 2738 3005 "base64 0.13.1", 2739 3006 ] 2740 3007 2741 3008 [[package]] 2742 3009 name = "percent-encoding" 2743 - version = "2.1.0" 3010 + version = "2.3.0" 2744 3011 source = "registry+https://github.com/rust-lang/crates.io-index" 2745 - checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 3012 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 2746 3013 2747 3014 [[package]] 2748 3015 name = "pest" 2749 - version = "2.3.0" 3016 + version = "2.7.2" 2750 3017 source = "registry+https://github.com/rust-lang/crates.io-index" 2751 - checksum = "4b0560d531d1febc25a3c9398a62a71256c0178f2e3443baedd9ad4bb8c9deb4" 3018 + checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" 2752 3019 dependencies = [ 2753 3020 "thiserror", 2754 3021 "ucd-trie", ··· 2756 3023 2757 3024 [[package]] 2758 3025 name = "pest_derive" 2759 - version = "2.3.0" 3026 + version = "2.7.2" 2760 3027 source = "registry+https://github.com/rust-lang/crates.io-index" 2761 - checksum = "905708f7f674518498c1f8d644481440f476d39ca6ecae83319bba7c6c12da91" 3028 + checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853" 2762 3029 dependencies = [ 2763 3030 "pest", 2764 3031 "pest_generator", ··· 2766 3033 2767 3034 [[package]] 2768 3035 name = "pest_generator" 2769 - version = "2.3.0" 3036 + version = "2.7.2" 2770 3037 source = "registry+https://github.com/rust-lang/crates.io-index" 2771 - checksum = "5803d8284a629cc999094ecd630f55e91b561a1d1ba75e233b00ae13b91a69ad" 3038 + checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929" 2772 3039 dependencies = [ 2773 3040 "pest", 2774 3041 "pest_meta", 2775 3042 "proc-macro2", 2776 3043 "quote", 2777 - "syn 1.0.99", 3044 + "syn 2.0.28", 2778 3045 ] 2779 3046 2780 3047 [[package]] 2781 3048 name = "pest_meta" 2782 - version = "2.3.0" 3049 + version = "2.7.2" 2783 3050 source = "registry+https://github.com/rust-lang/crates.io-index" 2784 - checksum = "1538eb784f07615c6d9a8ab061089c6c54a344c5b4301db51990ca1c241e8c04" 3051 + checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48" 2785 3052 dependencies = [ 2786 3053 "once_cell", 2787 3054 "pest", 2788 - "sha-1", 3055 + "sha2 0.10.7", 2789 3056 ] 2790 3057 2791 3058 [[package]] ··· 2800 3067 2801 3068 [[package]] 2802 3069 name = "petgraph" 2803 - version = "0.6.2" 3070 + version = "0.6.3" 2804 3071 source = "registry+https://github.com/rust-lang/crates.io-index" 2805 - checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 3072 + checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 2806 3073 dependencies = [ 2807 3074 "fixedbitset 0.4.2", 2808 - "indexmap", 3075 + "indexmap 1.9.3", 2809 3076 ] 2810 3077 2811 3078 [[package]] 2812 3079 name = "phf" 2813 - version = "0.11.1" 3080 + version = "0.11.2" 2814 3081 source = "registry+https://github.com/rust-lang/crates.io-index" 2815 - checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 3082 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 2816 3083 dependencies = [ 2817 3084 "phf_shared", 2818 3085 ] 2819 3086 2820 3087 [[package]] 2821 3088 name = "phf_shared" 2822 - version = "0.11.1" 3089 + version = "0.11.2" 2823 3090 source = "registry+https://github.com/rust-lang/crates.io-index" 2824 - checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 3091 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 2825 3092 dependencies = [ 2826 3093 "siphasher", 2827 3094 ] 2828 3095 2829 3096 [[package]] 2830 3097 name = "pin-project" 2831 - version = "1.0.12" 3098 + version = "1.1.3" 2832 3099 source = "registry+https://github.com/rust-lang/crates.io-index" 2833 - checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 3100 + checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 2834 3101 dependencies = [ 2835 3102 "pin-project-internal", 2836 3103 ] 2837 3104 2838 3105 [[package]] 2839 3106 name = "pin-project-internal" 2840 - version = "1.0.12" 3107 + version = "1.1.3" 2841 3108 source = "registry+https://github.com/rust-lang/crates.io-index" 2842 - checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 3109 + checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 2843 3110 dependencies = [ 2844 3111 "proc-macro2", 2845 3112 "quote", 2846 - "syn 1.0.99", 3113 + "syn 2.0.28", 2847 3114 ] 2848 3115 2849 3116 [[package]] 2850 3117 name = "pin-project-lite" 2851 - version = "0.2.9" 3118 + version = "0.2.12" 2852 3119 source = "registry+https://github.com/rust-lang/crates.io-index" 2853 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3120 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 2854 3121 2855 3122 [[package]] 2856 3123 name = "pin-utils" ··· 2860 3127 2861 3128 [[package]] 2862 3129 name = "pkg-config" 2863 - version = "0.3.25" 3130 + version = "0.3.27" 2864 3131 source = "registry+https://github.com/rust-lang/crates.io-index" 2865 - checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 3132 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2866 3133 2867 3134 [[package]] 2868 3135 name = "plotters" 2869 - version = "0.3.4" 3136 + version = "0.3.5" 2870 3137 source = "registry+https://github.com/rust-lang/crates.io-index" 2871 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 3138 + checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 2872 3139 dependencies = [ 2873 3140 "num-traits", 2874 3141 "plotters-backend", ··· 2879 3146 2880 3147 [[package]] 2881 3148 name = "plotters-backend" 2882 - version = "0.3.4" 3149 + version = "0.3.5" 2883 3150 source = "registry+https://github.com/rust-lang/crates.io-index" 2884 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 3151 + checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 2885 3152 2886 3153 [[package]] 2887 3154 name = "plotters-svg" 2888 - version = "0.3.3" 3155 + version = "0.3.5" 2889 3156 source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 3157 + checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 2891 3158 dependencies = [ 2892 3159 "plotters-backend", 2893 3160 ] ··· 2895 3162 [[package]] 2896 3163 name = "postgres-native-tls" 2897 3164 version = "0.5.0" 2898 - source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" 3165 + source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#429e76047f28e64761ad63bc6cc9335c3d3337b5" 2899 3166 dependencies = [ 2900 3167 "native-tls", 2901 3168 "tokio", ··· 2906 3173 [[package]] 2907 3174 name = "postgres-protocol" 2908 3175 version = "0.6.4" 2909 - source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" 3176 + source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#429e76047f28e64761ad63bc6cc9335c3d3337b5" 2910 3177 dependencies = [ 2911 3178 "base64 0.13.1", 2912 3179 "byteorder", ··· 2916 3183 "md-5", 2917 3184 "memchr", 2918 3185 "rand 0.8.5", 2919 - "sha2 0.10.5", 3186 + "sha2 0.10.7", 2920 3187 "stringprep", 2921 3188 ] 2922 3189 2923 3190 [[package]] 2924 3191 name = "postgres-types" 2925 3192 version = "0.2.4" 2926 - source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" 3193 + source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#429e76047f28e64761ad63bc6cc9335c3d3337b5" 2927 3194 dependencies = [ 2928 3195 "bit-vec", 2929 3196 "bytes", ··· 2932 3199 "postgres-protocol", 2933 3200 "serde", 2934 3201 "serde_json", 2935 - "uuid 1.1.2", 3202 + "uuid", 2936 3203 ] 2937 3204 2938 3205 [[package]] 2939 3206 name = "ppv-lite86" 2940 - version = "0.2.16" 3207 + version = "0.2.17" 2941 3208 source = "registry+https://github.com/rust-lang/crates.io-index" 2942 - checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 3209 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2943 3210 2944 3211 [[package]] 2945 3212 name = "pretty-hex" ··· 2949 3216 2950 3217 [[package]] 2951 3218 name = "pretty_assertions" 2952 - version = "1.3.0" 3219 + version = "1.4.0" 2953 3220 source = "registry+https://github.com/rust-lang/crates.io-index" 2954 - checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 3221 + checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 2955 3222 dependencies = [ 2956 - "ctor 0.1.23", 2957 3223 "diff", 2958 - "output_vt100", 2959 3224 "yansi", 2960 3225 ] 2961 3226 2962 3227 [[package]] 2963 3228 name = "priority-queue" 2964 - version = "1.3.1" 3229 + version = "1.3.2" 2965 3230 source = "registry+https://github.com/rust-lang/crates.io-index" 2966 - checksum = "5ca9c6be70d989d21a136eb86c2d83e4b328447fac4a88dace2143c179c86267" 3231 + checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61" 2967 3232 dependencies = [ 2968 3233 "autocfg", 2969 - "indexmap", 3234 + "indexmap 1.9.3", 2970 3235 ] 2971 3236 2972 3237 [[package]] ··· 3000 3265 "prisma-value", 3001 3266 "psl", 3002 3267 "thiserror", 3003 - "uuid 1.1.2", 3268 + "uuid", 3004 3269 ] 3005 3270 3006 3271 [[package]] ··· 3023 3288 "regex", 3024 3289 "serde", 3025 3290 "serde_json", 3026 - "uuid 1.1.2", 3291 + "uuid", 3292 + ] 3293 + 3294 + [[package]] 3295 + name = "proc-macro-crate" 3296 + version = "0.1.5" 3297 + source = "registry+https://github.com/rust-lang/crates.io-index" 3298 + checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" 3299 + dependencies = [ 3300 + "toml", 3027 3301 ] 3028 3302 3029 3303 [[package]] ··· 3035 3309 "proc-macro-error-attr", 3036 3310 "proc-macro2", 3037 3311 "quote", 3038 - "syn 1.0.99", 3312 + "syn 1.0.109", 3039 3313 "version_check", 3040 3314 ] 3041 3315 ··· 3051 3325 ] 3052 3326 3053 3327 [[package]] 3054 - name = "proc-macro-hack" 3055 - version = "0.5.19" 3056 - source = "registry+https://github.com/rust-lang/crates.io-index" 3057 - checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 3058 - 3059 - [[package]] 3060 3328 name = "proc-macro2" 3061 - version = "1.0.56" 3329 + version = "1.0.66" 3062 3330 source = "registry+https://github.com/rust-lang/crates.io-index" 3063 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 3331 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 3064 3332 dependencies = [ 3065 3333 "unicode-ident", 3066 3334 ] ··· 3087 3355 "lazy_static", 3088 3356 "log", 3089 3357 "multimap", 3090 - "petgraph 0.6.2", 3358 + "petgraph 0.6.3", 3091 3359 "prost", 3092 3360 "prost-types", 3093 3361 "regex", ··· 3105 3373 "itertools", 3106 3374 "proc-macro2", 3107 3375 "quote", 3108 - "syn 1.0.99", 3376 + "syn 1.0.109", 3109 3377 ] 3110 3378 3111 3379 [[package]] ··· 3153 3421 ] 3154 3422 3155 3423 [[package]] 3424 + name = "ptr_meta" 3425 + version = "0.1.4" 3426 + source = "registry+https://github.com/rust-lang/crates.io-index" 3427 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 3428 + dependencies = [ 3429 + "ptr_meta_derive", 3430 + ] 3431 + 3432 + [[package]] 3433 + name = "ptr_meta_derive" 3434 + version = "0.1.4" 3435 + source = "registry+https://github.com/rust-lang/crates.io-index" 3436 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 3437 + dependencies = [ 3438 + "proc-macro2", 3439 + "quote", 3440 + "syn 1.0.109", 3441 + ] 3442 + 3443 + [[package]] 3156 3444 name = "qe-setup" 3157 3445 version = "0.1.0" 3158 3446 dependencies = [ ··· 3204 3492 "tracing", 3205 3493 "tracing-core", 3206 3494 "url", 3207 - "uuid 1.1.2", 3495 + "uuid", 3208 3496 ] 3209 3497 3210 3498 [[package]] ··· 3231 3519 "async-trait", 3232 3520 "chrono", 3233 3521 "futures", 3234 - "indexmap", 3522 + "indexmap 1.9.3", 3235 3523 "itertools", 3236 3524 "prisma-models", 3237 3525 "prisma-value", ··· 3239 3527 "serde_json", 3240 3528 "thiserror", 3241 3529 "user-facing-errors", 3242 - "uuid 1.1.2", 3530 + "uuid", 3243 3531 ] 3244 3532 3245 3533 [[package]] ··· 3254 3542 "cuid", 3255 3543 "enumflags2", 3256 3544 "futures", 3257 - "indexmap", 3545 + "indexmap 1.9.3", 3258 3546 "itertools", 3259 3547 "lru 0.7.8", 3260 3548 "once_cell", ··· 3274 3562 "tracing-opentelemetry", 3275 3563 "tracing-subscriber", 3276 3564 "user-facing-errors", 3277 - "uuid 1.1.2", 3565 + "uuid", 3278 3566 ] 3279 3567 3280 3568 [[package]] ··· 3338 3626 "async-trait", 3339 3627 "connection-string", 3340 3628 "futures", 3341 - "js-drivers", 3629 + "js-connectors", 3342 3630 "napi", 3343 3631 "napi-build", 3344 3632 "napi-derive", ··· 3386 3674 "tracing", 3387 3675 "tracing-futures", 3388 3676 "user-facing-errors", 3389 - "uuid 1.1.2", 3677 + "uuid", 3390 3678 ] 3391 3679 3392 3680 [[package]] ··· 3396 3684 "darling", 3397 3685 "proc-macro2", 3398 3686 "quote", 3399 - "syn 1.0.99", 3687 + "syn 1.0.109", 3400 3688 ] 3401 3689 3402 3690 [[package]] ··· 3408 3696 "enum_dispatch", 3409 3697 "enumflags2", 3410 3698 "hyper", 3411 - "indexmap", 3699 + "indexmap 1.9.3", 3412 3700 "indoc", 3413 3701 "itertools", 3414 3702 "nom", ··· 3443 3731 3444 3732 [[package]] 3445 3733 name = "quote" 3446 - version = "1.0.26" 3734 + version = "1.0.32" 3447 3735 source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 3736 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 3449 3737 dependencies = [ 3450 3738 "proc-macro2", 3451 3739 ] ··· 3487 3775 dependencies = [ 3488 3776 "libc", 3489 3777 "rand_chacha 0.3.1", 3490 - "rand_core 0.6.3", 3778 + "rand_core 0.6.4", 3491 3779 ] 3492 3780 3493 3781 [[package]] ··· 3507 3795 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3508 3796 dependencies = [ 3509 3797 "ppv-lite86", 3510 - "rand_core 0.6.3", 3798 + "rand_core 0.6.4", 3511 3799 ] 3512 3800 3513 3801 [[package]] ··· 3521 3809 3522 3810 [[package]] 3523 3811 name = "rand_core" 3524 - version = "0.6.3" 3812 + version = "0.6.4" 3525 3813 source = "registry+https://github.com/rust-lang/crates.io-index" 3526 - checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 3814 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3527 3815 dependencies = [ 3528 - "getrandom 0.2.7", 3816 + "getrandom 0.2.10", 3529 3817 ] 3530 3818 3531 3819 [[package]] ··· 3539 3827 3540 3828 [[package]] 3541 3829 name = "raw-cpuid" 3542 - version = "10.6.0" 3830 + version = "10.7.0" 3543 3831 source = "registry+https://github.com/rust-lang/crates.io-index" 3544 - checksum = "a6823ea29436221176fe662da99998ad3b4db2c7f31e7b6f5fe43adccd6320bb" 3832 + checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 3545 3833 dependencies = [ 3546 3834 "bitflags 1.3.2", 3547 3835 ] ··· 3578 3866 ] 3579 3867 3580 3868 [[package]] 3869 + name = "redox_syscall" 3870 + version = "0.3.5" 3871 + source = "registry+https://github.com/rust-lang/crates.io-index" 3872 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3873 + dependencies = [ 3874 + "bitflags 1.3.2", 3875 + ] 3876 + 3877 + [[package]] 3581 3878 name = "regex" 3582 - version = "1.7.3" 3879 + version = "1.9.3" 3583 3880 source = "registry+https://github.com/rust-lang/crates.io-index" 3584 - checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 3881 + checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 3585 3882 dependencies = [ 3586 - "aho-corasick", 3883 + "aho-corasick 1.0.3", 3587 3884 "memchr", 3588 - "regex-syntax", 3885 + "regex-automata 0.3.6", 3886 + "regex-syntax 0.7.4", 3589 3887 ] 3590 3888 3591 3889 [[package]] ··· 3594 3892 source = "registry+https://github.com/rust-lang/crates.io-index" 3595 3893 checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3596 3894 dependencies = [ 3597 - "regex-syntax", 3895 + "regex-syntax 0.6.29", 3896 + ] 3897 + 3898 + [[package]] 3899 + name = "regex-automata" 3900 + version = "0.3.6" 3901 + source = "registry+https://github.com/rust-lang/crates.io-index" 3902 + checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 3903 + dependencies = [ 3904 + "aho-corasick 1.0.3", 3905 + "memchr", 3906 + "regex-syntax 0.7.4", 3598 3907 ] 3599 3908 3600 3909 [[package]] ··· 3604 3913 checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3605 3914 3606 3915 [[package]] 3916 + name = "regex-syntax" 3917 + version = "0.7.4" 3918 + source = "registry+https://github.com/rust-lang/crates.io-index" 3919 + checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 3920 + 3921 + [[package]] 3922 + name = "rend" 3923 + version = "0.4.0" 3924 + source = "registry+https://github.com/rust-lang/crates.io-index" 3925 + checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab" 3926 + dependencies = [ 3927 + "bytecheck", 3928 + ] 3929 + 3930 + [[package]] 3607 3931 name = "request-handlers" 3608 3932 version = "0.1.0" 3609 3933 dependencies = [ ··· 3613 3937 "dmmf", 3614 3938 "futures", 3615 3939 "graphql-parser", 3616 - "indexmap", 3940 + "indexmap 1.9.3", 3617 3941 "insta", 3618 3942 "itertools", 3619 3943 "mongodb-query-connector", ··· 3634 3958 3635 3959 [[package]] 3636 3960 name = "reqwest" 3637 - version = "0.11.16" 3961 + version = "0.11.18" 3638 3962 source = "registry+https://github.com/rust-lang/crates.io-index" 3639 - checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 3963 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 3640 3964 dependencies = [ 3641 - "base64 0.21.0", 3965 + "base64 0.21.2", 3642 3966 "bytes", 3643 3967 "encoding_rs", 3644 3968 "futures-core", ··· 3695 4019 ] 3696 4020 3697 4021 [[package]] 4022 + name = "rkyv" 4023 + version = "0.7.42" 4024 + source = "registry+https://github.com/rust-lang/crates.io-index" 4025 + checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58" 4026 + dependencies = [ 4027 + "bitvec", 4028 + "bytecheck", 4029 + "hashbrown 0.12.3", 4030 + "ptr_meta", 4031 + "rend", 4032 + "rkyv_derive", 4033 + "seahash", 4034 + "tinyvec", 4035 + "uuid", 4036 + ] 4037 + 4038 + [[package]] 4039 + name = "rkyv_derive" 4040 + version = "0.7.42" 4041 + source = "registry+https://github.com/rust-lang/crates.io-index" 4042 + checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d" 4043 + dependencies = [ 4044 + "proc-macro2", 4045 + "quote", 4046 + "syn 1.0.109", 4047 + ] 4048 + 4049 + [[package]] 3698 4050 name = "rusqlite" 3699 4051 version = "0.29.0" 3700 4052 source = "registry+https://github.com/rust-lang/crates.io-index" 3701 4053 checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" 3702 4054 dependencies = [ 3703 - "bitflags 2.1.0", 4055 + "bitflags 2.4.0", 3704 4056 "chrono", 3705 4057 "fallible-iterator", 3706 4058 "fallible-streaming-iterator", ··· 3711 4063 3712 4064 [[package]] 3713 4065 name = "rust_decimal" 3714 - version = "1.26.1" 4066 + version = "1.31.0" 3715 4067 source = "registry+https://github.com/rust-lang/crates.io-index" 3716 - checksum = "ee9164faf726e4f3ece4978b25ca877ddc6802fa77f38cdccb32c7f805ecd70c" 4068 + checksum = "4a2ab0025103a60ecaaf3abf24db1db240a4e1c15837090d2c32f625ac98abea" 3717 4069 dependencies = [ 3718 - "arrayvec 0.7.2", 4070 + "arrayvec 0.7.4", 4071 + "borsh", 4072 + "byteorder", 4073 + "bytes", 3719 4074 "num-traits", 4075 + "rand 0.8.5", 4076 + "rkyv", 3720 4077 "serde", 4078 + "serde_json", 3721 4079 ] 3722 4080 3723 4081 [[package]] 3724 4082 name = "rustc-demangle" 3725 - version = "0.1.21" 4083 + version = "0.1.23" 3726 4084 source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 4085 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 3728 4086 3729 4087 [[package]] 3730 4088 name = "rustc-hash" ··· 3742 4100 ] 3743 4101 3744 4102 [[package]] 4103 + name = "rustc_version" 4104 + version = "0.4.0" 4105 + source = "registry+https://github.com/rust-lang/crates.io-index" 4106 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 4107 + dependencies = [ 4108 + "semver 1.0.18", 4109 + ] 4110 + 4111 + [[package]] 3745 4112 name = "rustc_version_runtime" 3746 4113 version = "0.2.1" 3747 4114 source = "registry+https://github.com/rust-lang/crates.io-index" 3748 4115 checksum = "d31b7153270ebf48bf91c65ae5b0c00e749c4cfad505f66530ac74950249582f" 3749 4116 dependencies = [ 3750 - "rustc_version", 4117 + "rustc_version 0.2.3", 3751 4118 "semver 0.9.0", 3752 4119 ] 3753 4120 3754 4121 [[package]] 3755 4122 name = "rustix" 3756 - version = "0.36.13" 4123 + version = "0.38.8" 3757 4124 source = "registry+https://github.com/rust-lang/crates.io-index" 3758 - checksum = "3a38f9520be93aba504e8ca974197f46158de5dcaa9fa04b57c57cd6a679d658" 4125 + checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 3759 4126 dependencies = [ 3760 - "bitflags 1.3.2", 4127 + "bitflags 2.4.0", 3761 4128 "errno", 3762 - "io-lifetimes", 3763 4129 "libc", 3764 4130 "linux-raw-sys", 3765 - "windows-sys 0.45.0", 4131 + "windows-sys 0.48.0", 3766 4132 ] 3767 4133 3768 4134 [[package]] ··· 3780 4146 3781 4147 [[package]] 3782 4148 name = "rustls" 3783 - version = "0.20.6" 4149 + version = "0.20.8" 3784 4150 source = "registry+https://github.com/rust-lang/crates.io-index" 3785 - checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033" 4151 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 3786 4152 dependencies = [ 3787 4153 "log", 3788 4154 "ring", ··· 3804 4170 3805 4171 [[package]] 3806 4172 name = "rustls-pemfile" 3807 - version = "0.3.0" 4173 + version = "1.0.3" 3808 4174 source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360" 4175 + checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 3810 4176 dependencies = [ 3811 - "base64 0.13.1", 4177 + "base64 0.21.2", 3812 4178 ] 3813 4179 3814 4180 [[package]] 3815 4181 name = "ryu" 3816 - version = "1.0.11" 4182 + version = "1.0.15" 3817 4183 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 4184 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 3819 4185 3820 4186 [[package]] 3821 4187 name = "same-file" ··· 3834 4200 3835 4201 [[package]] 3836 4202 name = "schannel" 3837 - version = "0.1.21" 4203 + version = "0.1.22" 3838 4204 source = "registry+https://github.com/rust-lang/crates.io-index" 3839 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 4205 + checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 3840 4206 dependencies = [ 3841 - "windows-sys 0.42.0", 4207 + "windows-sys 0.48.0", 3842 4208 ] 3843 4209 3844 4210 [[package]] ··· 3929 4295 3930 4296 [[package]] 3931 4297 name = "scopeguard" 3932 - version = "1.1.0" 4298 + version = "1.2.0" 3933 4299 source = "registry+https://github.com/rust-lang/crates.io-index" 3934 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 4300 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3935 4301 3936 4302 [[package]] 3937 4303 name = "sct" ··· 3954 4320 ] 3955 4321 3956 4322 [[package]] 4323 + name = "seahash" 4324 + version = "4.1.0" 4325 + source = "registry+https://github.com/rust-lang/crates.io-index" 4326 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 4327 + 4328 + [[package]] 3957 4329 name = "security-framework" 3958 - version = "2.7.0" 4330 + version = "2.9.2" 3959 4331 source = "registry+https://github.com/rust-lang/crates.io-index" 3960 - checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 4332 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 3961 4333 dependencies = [ 3962 4334 "bitflags 1.3.2", 3963 4335 "core-foundation", ··· 3968 4340 3969 4341 [[package]] 3970 4342 name = "security-framework-sys" 3971 - version = "2.6.1" 4343 + version = "2.9.1" 3972 4344 source = "registry+https://github.com/rust-lang/crates.io-index" 3973 - checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 4345 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 3974 4346 dependencies = [ 3975 4347 "core-foundation-sys", 3976 4348 "libc", ··· 3987 4359 3988 4360 [[package]] 3989 4361 name = "semver" 3990 - version = "1.0.17" 4362 + version = "1.0.18" 3991 4363 source = "registry+https://github.com/rust-lang/crates.io-index" 3992 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 4364 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 3993 4365 3994 4366 [[package]] 3995 4367 name = "semver-parser" ··· 3999 4371 4000 4372 [[package]] 4001 4373 name = "serde" 4002 - version = "1.0.144" 4374 + version = "1.0.183" 4003 4375 source = "registry+https://github.com/rust-lang/crates.io-index" 4004 - checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860" 4376 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 4005 4377 dependencies = [ 4006 4378 "serde_derive", 4007 4379 ] 4008 4380 4009 4381 [[package]] 4010 4382 name = "serde_bytes" 4011 - version = "0.11.7" 4383 + version = "0.11.12" 4012 4384 source = "registry+https://github.com/rust-lang/crates.io-index" 4013 - checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b" 4385 + checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" 4014 4386 dependencies = [ 4015 4387 "serde", 4016 4388 ] 4017 4389 4018 4390 [[package]] 4019 4391 name = "serde_derive" 4020 - version = "1.0.144" 4392 + version = "1.0.183" 4021 4393 source = "registry+https://github.com/rust-lang/crates.io-index" 4022 - checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00" 4394 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 4023 4395 dependencies = [ 4024 4396 "proc-macro2", 4025 4397 "quote", 4026 - "syn 1.0.99", 4398 + "syn 2.0.28", 4027 4399 ] 4028 4400 4029 4401 [[package]] 4030 4402 name = "serde_json" 4031 - version = "1.0.85" 4403 + version = "1.0.104" 4032 4404 source = "registry+https://github.com/rust-lang/crates.io-index" 4033 - checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" 4405 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 4034 4406 dependencies = [ 4035 - "indexmap", 4407 + "indexmap 2.0.0", 4036 4408 "itoa", 4037 4409 "ryu", 4038 4410 "serde", ··· 4040 4412 4041 4413 [[package]] 4042 4414 name = "serde_repr" 4043 - version = "0.1.9" 4415 + version = "0.1.16" 4044 4416 source = "registry+https://github.com/rust-lang/crates.io-index" 4045 - checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca" 4417 + checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 4046 4418 dependencies = [ 4047 4419 "proc-macro2", 4048 4420 "quote", 4049 - "syn 1.0.99", 4421 + "syn 2.0.28", 4050 4422 ] 4051 4423 4052 4424 [[package]] ··· 4080 4452 "darling", 4081 4453 "proc-macro2", 4082 4454 "quote", 4083 - "syn 1.0.99", 4455 + "syn 1.0.109", 4084 4456 ] 4085 4457 4086 4458 [[package]] 4087 4459 name = "serial_test" 4088 - version = "0.9.0" 4460 + version = "2.0.0" 4089 4461 source = "registry+https://github.com/rust-lang/crates.io-index" 4090 - checksum = "92761393ee4dc3ff8f4af487bd58f4307c9329bbedea02cac0089ad9c411e153" 4462 + checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d" 4091 4463 dependencies = [ 4092 4464 "dashmap", 4093 4465 "futures", ··· 4099 4471 4100 4472 [[package]] 4101 4473 name = "serial_test_derive" 4102 - version = "0.9.0" 4474 + version = "2.0.0" 4103 4475 source = "registry+https://github.com/rust-lang/crates.io-index" 4104 - checksum = "4b6f5d1c3087fb119617cff2966fe3808a80e5eb59a8c1601d5994d66f4346a5" 4476 + checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" 4105 4477 dependencies = [ 4106 - "proc-macro-error", 4107 4478 "proc-macro2", 4108 4479 "quote", 4109 - "syn 1.0.99", 4480 + "syn 2.0.28", 4110 4481 ] 4111 4482 4112 4483 [[package]] 4113 4484 name = "sha-1" 4114 - version = "0.10.0" 4485 + version = "0.10.1" 4115 4486 source = "registry+https://github.com/rust-lang/crates.io-index" 4116 - checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 4487 + checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 4117 4488 dependencies = [ 4118 4489 "cfg-if", 4119 4490 "cpufeatures", 4120 - "digest 0.10.3", 4491 + "digest 0.10.7", 4121 4492 ] 4122 4493 4123 4494 [[package]] 4124 4495 name = "sha1" 4125 - version = "0.10.4" 4496 + version = "0.10.5" 4126 4497 source = "registry+https://github.com/rust-lang/crates.io-index" 4127 - checksum = "006769ba83e921b3085caa8334186b00cf92b4cb1a6cf4632fbccc8eff5c7549" 4498 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 4128 4499 dependencies = [ 4129 4500 "cfg-if", 4130 4501 "cpufeatures", 4131 - "digest 0.10.3", 4502 + "digest 0.10.7", 4132 4503 ] 4133 4504 4134 4505 [[package]] ··· 4146 4517 4147 4518 [[package]] 4148 4519 name = "sha2" 4149 - version = "0.10.5" 4520 + version = "0.10.7" 4150 4521 source = "registry+https://github.com/rust-lang/crates.io-index" 4151 - checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5" 4522 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 4152 4523 dependencies = [ 4153 4524 "cfg-if", 4154 4525 "cpufeatures", 4155 - "digest 0.10.3", 4526 + "digest 0.10.7", 4527 + ] 4528 + 4529 + [[package]] 4530 + name = "sha3" 4531 + version = "0.10.8" 4532 + source = "registry+https://github.com/rust-lang/crates.io-index" 4533 + checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 4534 + dependencies = [ 4535 + "digest 0.10.7", 4536 + "keccak", 4156 4537 ] 4157 4538 4158 4539 [[package]] ··· 4172 4553 4173 4554 [[package]] 4174 4555 name = "signal-hook-registry" 4175 - version = "1.4.0" 4556 + version = "1.4.1" 4176 4557 source = "registry+https://github.com/rust-lang/crates.io-index" 4177 - checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 4558 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4178 4559 dependencies = [ 4179 4560 "libc", 4180 4561 ] 4181 4562 4182 4563 [[package]] 4564 + name = "simdutf8" 4565 + version = "0.1.4" 4566 + source = "registry+https://github.com/rust-lang/crates.io-index" 4567 + checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 4568 + 4569 + [[package]] 4183 4570 name = "similar" 4184 4571 version = "2.2.1" 4185 4572 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4202 4589 4203 4590 [[package]] 4204 4591 name = "slab" 4205 - version = "0.4.7" 4592 + version = "0.4.8" 4206 4593 source = "registry+https://github.com/rust-lang/crates.io-index" 4207 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 4594 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 4208 4595 dependencies = [ 4209 4596 "autocfg", 4210 4597 ] 4211 4598 4212 4599 [[package]] 4213 4600 name = "smallvec" 4214 - version = "1.9.0" 4601 + version = "1.11.0" 4215 4602 source = "registry+https://github.com/rust-lang/crates.io-index" 4216 - checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 4603 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 4217 4604 4218 4605 [[package]] 4219 4606 name = "socket2" 4220 - version = "0.4.7" 4607 + version = "0.4.9" 4221 4608 source = "registry+https://github.com/rust-lang/crates.io-index" 4222 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 4609 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 4223 4610 dependencies = [ 4224 4611 "libc", 4225 4612 "winapi", 4226 4613 ] 4227 4614 4228 4615 [[package]] 4616 + name = "socket2" 4617 + version = "0.5.3" 4618 + source = "registry+https://github.com/rust-lang/crates.io-index" 4619 + checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 4620 + dependencies = [ 4621 + "libc", 4622 + "windows-sys 0.48.0", 4623 + ] 4624 + 4625 + [[package]] 4229 4626 name = "spin" 4230 4627 version = "0.5.2" 4231 4628 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4321 4718 "tracing-futures", 4322 4719 "tracing-opentelemetry", 4323 4720 "user-facing-errors", 4324 - "uuid 1.1.2", 4721 + "uuid", 4325 4722 ] 4326 4723 4327 4724 [[package]] ··· 4351 4748 "tracing-futures", 4352 4749 "url", 4353 4750 "user-facing-errors", 4354 - "uuid 1.1.2", 4751 + "uuid", 4355 4752 ] 4356 4753 4357 4754 [[package]] ··· 4363 4760 "either", 4364 4761 "enumflags2", 4365 4762 "expect-test", 4366 - "indexmap", 4763 + "indexmap 1.9.3", 4367 4764 "indoc", 4368 4765 "once_cell", 4369 4766 "pretty_assertions", ··· 4408 4805 4409 4806 [[package]] 4410 4807 name = "stringprep" 4411 - version = "0.1.2" 4808 + version = "0.1.3" 4412 4809 source = "registry+https://github.com/rust-lang/crates.io-index" 4413 - checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 4810 + checksum = "db3737bde7edce97102e0e2b15365bf7a20bfdb5f60f4f9e8d7004258a51a8da" 4414 4811 dependencies = [ 4415 4812 "unicode-bidi", 4416 4813 "unicode-normalization", ··· 4458 4855 "proc-macro-error", 4459 4856 "proc-macro2", 4460 4857 "quote", 4461 - "syn 1.0.99", 4858 + "syn 1.0.109", 4462 4859 ] 4463 4860 4464 4861 [[package]] ··· 4473 4870 4474 4871 [[package]] 4475 4872 name = "subtle" 4476 - version = "2.4.1" 4873 + version = "2.5.0" 4477 4874 source = "registry+https://github.com/rust-lang/crates.io-index" 4478 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 4875 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 4479 4876 4480 4877 [[package]] 4481 4878 name = "syn" 4482 - version = "1.0.99" 4879 + version = "1.0.109" 4483 4880 source = "registry+https://github.com/rust-lang/crates.io-index" 4484 - checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 4881 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4485 4882 dependencies = [ 4486 4883 "proc-macro2", 4487 4884 "quote", ··· 4490 4887 4491 4888 [[package]] 4492 4889 name = "syn" 4493 - version = "2.0.14" 4890 + version = "2.0.28" 4494 4891 source = "registry+https://github.com/rust-lang/crates.io-index" 4495 - checksum = "fcf316d5356ed6847742d036f8a39c3b8435cac10bd528a4bd461928a6ab34d5" 4892 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 4496 4893 dependencies = [ 4497 4894 "proc-macro2", 4498 4895 "quote", 4499 4896 "unicode-ident", 4897 + ] 4898 + 4899 + [[package]] 4900 + name = "synstructure" 4901 + version = "0.12.6" 4902 + source = "registry+https://github.com/rust-lang/crates.io-index" 4903 + checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 4904 + dependencies = [ 4905 + "proc-macro2", 4906 + "quote", 4907 + "syn 1.0.109", 4908 + "unicode-xid", 4500 4909 ] 4501 4910 4502 4911 [[package]] ··· 4513 4922 4514 4923 [[package]] 4515 4924 name = "tempfile" 4516 - version = "3.4.0" 4925 + version = "3.7.1" 4517 4926 source = "registry+https://github.com/rust-lang/crates.io-index" 4518 - checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 4927 + checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 4519 4928 dependencies = [ 4520 4929 "cfg-if", 4521 4930 "fastrand", 4522 - "redox_syscall", 4931 + "redox_syscall 0.3.5", 4523 4932 "rustix", 4524 - "windows-sys 0.42.0", 4525 - ] 4526 - 4527 - [[package]] 4528 - name = "terminal_size" 4529 - version = "0.1.17" 4530 - source = "registry+https://github.com/rust-lang/crates.io-index" 4531 - checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 4532 - dependencies = [ 4533 - "libc", 4534 - "winapi", 4933 + "windows-sys 0.48.0", 4535 4934 ] 4536 4935 4537 4936 [[package]] ··· 4560 4959 dependencies = [ 4561 4960 "proc-macro2", 4562 4961 "quote", 4563 - "syn 1.0.99", 4962 + "syn 1.0.109", 4564 4963 ] 4565 4964 4566 4965 [[package]] ··· 4596 4995 4597 4996 [[package]] 4598 4997 name = "thiserror" 4599 - version = "1.0.34" 4998 + version = "1.0.44" 4600 4999 source = "registry+https://github.com/rust-lang/crates.io-index" 4601 - checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" 5000 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 4602 5001 dependencies = [ 4603 5002 "thiserror-impl", 4604 5003 ] 4605 5004 4606 5005 [[package]] 4607 5006 name = "thiserror-impl" 4608 - version = "1.0.34" 5007 + version = "1.0.44" 4609 5008 source = "registry+https://github.com/rust-lang/crates.io-index" 4610 - checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" 5009 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 4611 5010 dependencies = [ 4612 5011 "proc-macro2", 4613 5012 "quote", 4614 - "syn 1.0.99", 5013 + "syn 2.0.28", 4615 5014 ] 4616 5015 4617 5016 [[package]] 4618 5017 name = "thread_local" 4619 - version = "1.1.4" 5018 + version = "1.1.7" 4620 5019 source = "registry+https://github.com/rust-lang/crates.io-index" 4621 - checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 5020 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 4622 5021 dependencies = [ 5022 + "cfg-if", 4623 5023 "once_cell", 4624 5024 ] 4625 5025 ··· 4649 5049 "pretty-hex", 4650 5050 "thiserror", 4651 5051 "tokio", 4652 - "tokio-util 0.7.3", 5052 + "tokio-util 0.7.8", 4653 5053 "tracing", 4654 - "uuid 1.1.2", 5054 + "uuid", 4655 5055 "winauth", 4656 5056 ] 4657 5057 ··· 4667 5067 4668 5068 [[package]] 4669 5069 name = "time" 4670 - version = "0.3.14" 5070 + version = "0.3.25" 4671 5071 source = "registry+https://github.com/rust-lang/crates.io-index" 4672 - checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b" 5072 + checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 4673 5073 dependencies = [ 5074 + "deranged", 4674 5075 "itoa", 4675 - "libc", 4676 - "num_threads", 5076 + "serde", 5077 + "time-core", 4677 5078 "time-macros", 4678 5079 ] 4679 5080 4680 5081 [[package]] 5082 + name = "time-core" 5083 + version = "0.1.1" 5084 + source = "registry+https://github.com/rust-lang/crates.io-index" 5085 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 5086 + 5087 + [[package]] 4681 5088 name = "time-macros" 4682 - version = "0.2.4" 5089 + version = "0.2.11" 4683 5090 source = "registry+https://github.com/rust-lang/crates.io-index" 4684 - checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" 5091 + checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 5092 + dependencies = [ 5093 + "time-core", 5094 + ] 4685 5095 4686 5096 [[package]] 4687 5097 name = "tinytemplate" ··· 4704 5114 4705 5115 [[package]] 4706 5116 name = "tinyvec_macros" 4707 - version = "0.1.0" 5117 + version = "0.1.1" 4708 5118 source = "registry+https://github.com/rust-lang/crates.io-index" 4709 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 5119 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4710 5120 4711 5121 [[package]] 4712 5122 name = "tokio" 4713 - version = "1.25.0" 5123 + version = "1.30.0" 4714 5124 source = "registry+https://github.com/rust-lang/crates.io-index" 4715 - checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" 5125 + checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" 4716 5126 dependencies = [ 4717 - "autocfg", 5127 + "backtrace", 4718 5128 "bytes", 4719 5129 "libc", 4720 - "memchr", 4721 5130 "mio", 4722 5131 "num_cpus", 4723 5132 "parking_lot 0.12.1", 4724 5133 "pin-project-lite", 4725 5134 "signal-hook-registry", 4726 - "socket2", 5135 + "socket2 0.5.3", 4727 5136 "tokio-macros", 4728 - "windows-sys 0.42.0", 5137 + "windows-sys 0.48.0", 4729 5138 ] 4730 5139 4731 5140 [[package]] ··· 4740 5149 4741 5150 [[package]] 4742 5151 name = "tokio-macros" 4743 - version = "1.8.0" 5152 + version = "2.1.0" 4744 5153 source = "registry+https://github.com/rust-lang/crates.io-index" 4745 - checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 5154 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4746 5155 dependencies = [ 4747 5156 "proc-macro2", 4748 5157 "quote", 4749 - "syn 1.0.99", 5158 + "syn 2.0.28", 4750 5159 ] 4751 5160 4752 5161 [[package]] ··· 4762 5171 [[package]] 4763 5172 name = "tokio-postgres" 4764 5173 version = "0.7.7" 4765 - source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#00d4815e58859261bdfca71c75be7dc657303f7d" 5174 + source = "git+https://github.com/prisma/rust-postgres?branch=pgbouncer-mode#429e76047f28e64761ad63bc6cc9335c3d3337b5" 4766 5175 dependencies = [ 4767 5176 "async-trait", 4768 5177 "byteorder", ··· 4777 5186 "pin-project-lite", 4778 5187 "postgres-protocol", 4779 5188 "postgres-types", 4780 - "socket2", 5189 + "socket2 0.5.3", 4781 5190 "tokio", 4782 - "tokio-util 0.7.3", 5191 + "tokio-util 0.7.8", 4783 5192 ] 4784 5193 4785 5194 [[package]] ··· 4799 5208 source = "registry+https://github.com/rust-lang/crates.io-index" 4800 5209 checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 4801 5210 dependencies = [ 4802 - "rustls 0.20.6", 5211 + "rustls 0.20.8", 4803 5212 "tokio", 4804 5213 "webpki 0.22.0", 4805 5214 ] 4806 5215 4807 5216 [[package]] 4808 5217 name = "tokio-stream" 4809 - version = "0.1.11" 5218 + version = "0.1.14" 4810 5219 source = "registry+https://github.com/rust-lang/crates.io-index" 4811 - checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce" 5220 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 4812 5221 dependencies = [ 4813 5222 "futures-core", 4814 5223 "pin-project-lite", ··· 4832 5241 4833 5242 [[package]] 4834 5243 name = "tokio-util" 4835 - version = "0.7.3" 5244 + version = "0.7.8" 4836 5245 source = "registry+https://github.com/rust-lang/crates.io-index" 4837 - checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 5246 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 4838 5247 dependencies = [ 4839 5248 "bytes", 4840 5249 "futures-core", ··· 4847 5256 4848 5257 [[package]] 4849 5258 name = "toml" 4850 - version = "0.5.9" 5259 + version = "0.5.11" 4851 5260 source = "registry+https://github.com/rust-lang/crates.io-index" 4852 - checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 5261 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 4853 5262 dependencies = [ 4854 5263 "serde", 4855 5264 ] ··· 4896 5305 "proc-macro2", 4897 5306 "prost-build", 4898 5307 "quote", 4899 - "syn 1.0.99", 5308 + "syn 1.0.109", 4900 5309 ] 4901 5310 4902 5311 [[package]] ··· 4907 5316 dependencies = [ 4908 5317 "futures-core", 4909 5318 "futures-util", 4910 - "indexmap", 5319 + "indexmap 1.9.3", 4911 5320 "pin-project", 4912 5321 "pin-project-lite", 4913 5322 "rand 0.8.5", 4914 5323 "slab", 4915 5324 "tokio", 4916 - "tokio-util 0.7.3", 5325 + "tokio-util 0.7.8", 4917 5326 "tower-layer", 4918 5327 "tower-service", 4919 5328 "tracing", ··· 4933 5342 4934 5343 [[package]] 4935 5344 name = "tracing" 4936 - version = "0.1.36" 5345 + version = "0.1.37" 4937 5346 source = "registry+https://github.com/rust-lang/crates.io-index" 4938 - checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 5347 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4939 5348 dependencies = [ 4940 5349 "cfg-if", 4941 5350 "log", ··· 4946 5355 4947 5356 [[package]] 4948 5357 name = "tracing-attributes" 4949 - version = "0.1.22" 5358 + version = "0.1.26" 4950 5359 source = "registry+https://github.com/rust-lang/crates.io-index" 4951 - checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" 5360 + checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 4952 5361 dependencies = [ 4953 5362 "proc-macro2", 4954 5363 "quote", 4955 - "syn 1.0.99", 5364 + "syn 2.0.28", 4956 5365 ] 4957 5366 4958 5367 [[package]] 4959 5368 name = "tracing-core" 4960 - version = "0.1.29" 5369 + version = "0.1.31" 4961 5370 source = "registry+https://github.com/rust-lang/crates.io-index" 4962 - checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 5371 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 4963 5372 dependencies = [ 4964 5373 "once_cell", 4965 5374 "valuable", ··· 5022 5431 5023 5432 [[package]] 5024 5433 name = "tracing-subscriber" 5025 - version = "0.3.11" 5434 + version = "0.3.17" 5026 5435 source = "registry+https://github.com/rust-lang/crates.io-index" 5027 - checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596" 5436 + checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 5028 5437 dependencies = [ 5029 - "ansi_term", 5030 - "lazy_static", 5031 5438 "matchers", 5439 + "nu-ansi-term", 5440 + "once_cell", 5032 5441 "regex", 5033 5442 "serde", 5034 5443 "serde_json", 5035 5444 "sharded-slab", 5036 5445 "smallvec", 5037 5446 "thread_local", 5038 - "time 0.3.14", 5447 + "time 0.3.25", 5039 5448 "tracing", 5040 5449 "tracing-core", 5041 5450 "tracing-log", ··· 5055 5464 "futures-channel", 5056 5465 "futures-io", 5057 5466 "futures-util", 5058 - "idna", 5467 + "idna 0.2.3", 5059 5468 "ipnet", 5060 5469 "lazy_static", 5061 5470 "log", ··· 5089 5498 5090 5499 [[package]] 5091 5500 name = "try-lock" 5092 - version = "0.2.3" 5501 + version = "0.2.4" 5093 5502 source = "registry+https://github.com/rust-lang/crates.io-index" 5094 - checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 5503 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 5095 5504 5096 5505 [[package]] 5097 5506 name = "twox-hash" ··· 5112 5521 dependencies = [ 5113 5522 "proc-macro2", 5114 5523 "quote", 5115 - "syn 1.0.99", 5524 + "syn 1.0.109", 5116 5525 ] 5117 5526 5118 5527 [[package]] 5119 5528 name = "typenum" 5120 - version = "1.15.0" 5529 + version = "1.16.0" 5121 5530 source = "registry+https://github.com/rust-lang/crates.io-index" 5122 - checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 5531 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 5123 5532 5124 5533 [[package]] 5125 5534 name = "ucd-trie" 5126 - version = "0.1.5" 5535 + version = "0.1.6" 5127 5536 source = "registry+https://github.com/rust-lang/crates.io-index" 5128 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 5537 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 5129 5538 5130 5539 [[package]] 5131 5540 name = "unicode-bidi" 5132 - version = "0.3.8" 5541 + version = "0.3.13" 5133 5542 source = "registry+https://github.com/rust-lang/crates.io-index" 5134 - checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 5543 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 5135 5544 5136 5545 [[package]] 5137 5546 name = "unicode-ident" 5138 - version = "1.0.3" 5547 + version = "1.0.11" 5139 5548 source = "registry+https://github.com/rust-lang/crates.io-index" 5140 - checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 5549 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 5141 5550 5142 5551 [[package]] 5143 5552 name = "unicode-normalization" 5144 - version = "0.1.21" 5553 + version = "0.1.22" 5145 5554 source = "registry+https://github.com/rust-lang/crates.io-index" 5146 - checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 5555 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 5147 5556 dependencies = [ 5148 5557 "tinyvec", 5149 5558 ] 5150 5559 5151 5560 [[package]] 5152 5561 name = "unicode-segmentation" 5153 - version = "1.9.0" 5562 + version = "1.10.1" 5154 5563 source = "registry+https://github.com/rust-lang/crates.io-index" 5155 - checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99" 5564 + checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 5156 5565 5157 5566 [[package]] 5158 5567 name = "unicode-width" 5159 - version = "0.1.9" 5568 + version = "0.1.10" 5160 5569 source = "registry+https://github.com/rust-lang/crates.io-index" 5161 - checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 5570 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 5571 + 5572 + [[package]] 5573 + name = "unicode-xid" 5574 + version = "0.2.4" 5575 + source = "registry+https://github.com/rust-lang/crates.io-index" 5576 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5162 5577 5163 5578 [[package]] 5164 5579 name = "unicode_categories" ··· 5183 5598 5184 5599 [[package]] 5185 5600 name = "url" 5186 - version = "2.3.0" 5601 + version = "2.4.0" 5187 5602 source = "registry+https://github.com/rust-lang/crates.io-index" 5188 - checksum = "22fe195a4f217c25b25cb5058ced57059824a678474874038dc88d211bf508d3" 5603 + checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 5189 5604 dependencies = [ 5190 5605 "form_urlencoded", 5191 - "idna", 5606 + "idna 0.4.0", 5192 5607 "percent-encoding", 5193 5608 "serde", 5194 5609 ] ··· 5199 5614 dependencies = [ 5200 5615 "proc-macro2", 5201 5616 "quote", 5202 - "syn 1.0.99", 5617 + "syn 1.0.109", 5203 5618 ] 5204 5619 5205 5620 [[package]] ··· 5224 5639 5225 5640 [[package]] 5226 5641 name = "utf8parse" 5227 - version = "0.2.0" 5228 - source = "registry+https://github.com/rust-lang/crates.io-index" 5229 - checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" 5230 - 5231 - [[package]] 5232 - name = "uuid" 5233 - version = "0.8.2" 5642 + version = "0.2.1" 5234 5643 source = "registry+https://github.com/rust-lang/crates.io-index" 5235 - checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 5236 - dependencies = [ 5237 - "getrandom 0.2.7", 5238 - ] 5644 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5239 5645 5240 5646 [[package]] 5241 5647 name = "uuid" 5242 - version = "1.1.2" 5648 + version = "1.4.1" 5243 5649 source = "registry+https://github.com/rust-lang/crates.io-index" 5244 - checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" 5650 + checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 5245 5651 dependencies = [ 5246 - "getrandom 0.2.7", 5652 + "getrandom 0.2.10", 5247 5653 "serde", 5248 5654 ] 5249 5655 ··· 5310 5716 5311 5717 [[package]] 5312 5718 name = "want" 5313 - version = "0.3.0" 5719 + version = "0.3.1" 5314 5720 source = "registry+https://github.com/rust-lang/crates.io-index" 5315 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 5721 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 5316 5722 dependencies = [ 5317 - "log", 5318 5723 "try-lock", 5319 5724 ] 5320 5725 ··· 5357 5762 "once_cell", 5358 5763 "proc-macro2", 5359 5764 "quote", 5360 - "syn 1.0.99", 5765 + "syn 1.0.109", 5361 5766 "wasm-bindgen-shared", 5362 5767 ] 5363 5768 5364 5769 [[package]] 5365 5770 name = "wasm-bindgen-futures" 5366 - version = "0.4.29" 5771 + version = "0.4.34" 5367 5772 source = "registry+https://github.com/rust-lang/crates.io-index" 5368 - checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395" 5773 + checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 5369 5774 dependencies = [ 5370 5775 "cfg-if", 5371 5776 "js-sys", ··· 5391 5796 dependencies = [ 5392 5797 "proc-macro2", 5393 5798 "quote", 5394 - "syn 1.0.99", 5799 + "syn 1.0.109", 5395 5800 "wasm-bindgen-backend", 5396 5801 "wasm-bindgen-shared", 5397 5802 ] ··· 5415 5820 5416 5821 [[package]] 5417 5822 name = "web-sys" 5418 - version = "0.3.56" 5823 + version = "0.3.61" 5419 5824 source = "registry+https://github.com/rust-lang/crates.io-index" 5420 - checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb" 5825 + checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 5421 5826 dependencies = [ 5422 5827 "js-sys", 5423 5828 "wasm-bindgen", ··· 5445 5850 5446 5851 [[package]] 5447 5852 name = "webpki-roots" 5448 - version = "0.22.4" 5853 + version = "0.22.6" 5449 5854 source = "registry+https://github.com/rust-lang/crates.io-index" 5450 - checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf" 5855 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 5451 5856 dependencies = [ 5452 5857 "webpki 0.22.0", 5453 5858 ] 5454 5859 5455 5860 [[package]] 5456 5861 name = "which" 5457 - version = "4.3.0" 5862 + version = "4.4.0" 5458 5863 source = "registry+https://github.com/rust-lang/crates.io-index" 5459 - checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 5864 + checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 5460 5865 dependencies = [ 5461 5866 "either", 5462 5867 "libc", ··· 5465 5870 5466 5871 [[package]] 5467 5872 name = "widestring" 5468 - version = "0.5.1" 5873 + version = "1.0.2" 5469 5874 source = "registry+https://github.com/rust-lang/crates.io-index" 5470 - checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" 5875 + checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 5471 5876 5472 5877 [[package]] 5473 5878 name = "winapi" ··· 5514 5919 ] 5515 5920 5516 5921 [[package]] 5517 - name = "windows-sys" 5518 - version = "0.42.0" 5922 + name = "windows" 5923 + version = "0.48.0" 5519 5924 source = "registry+https://github.com/rust-lang/crates.io-index" 5520 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 5925 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 5521 5926 dependencies = [ 5522 - "windows_aarch64_gnullvm 0.42.1", 5523 - "windows_aarch64_msvc 0.42.1", 5524 - "windows_i686_gnu 0.42.1", 5525 - "windows_i686_msvc 0.42.1", 5526 - "windows_x86_64_gnu 0.42.1", 5527 - "windows_x86_64_gnullvm 0.42.1", 5528 - "windows_x86_64_msvc 0.42.1", 5927 + "windows-targets 0.48.1", 5529 5928 ] 5530 5929 5531 5930 [[package]] ··· 5534 5933 source = "registry+https://github.com/rust-lang/crates.io-index" 5535 5934 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5536 5935 dependencies = [ 5537 - "windows-targets 0.42.1", 5936 + "windows-targets 0.42.2", 5538 5937 ] 5539 5938 5540 5939 [[package]] ··· 5543 5942 source = "registry+https://github.com/rust-lang/crates.io-index" 5544 5943 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5545 5944 dependencies = [ 5546 - "windows-targets 0.48.0", 5945 + "windows-targets 0.48.1", 5547 5946 ] 5548 5947 5549 5948 [[package]] 5550 5949 name = "windows-targets" 5551 - version = "0.42.1" 5950 + version = "0.42.2" 5552 5951 source = "registry+https://github.com/rust-lang/crates.io-index" 5553 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 5952 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 5554 5953 dependencies = [ 5555 - "windows_aarch64_gnullvm 0.42.1", 5556 - "windows_aarch64_msvc 0.42.1", 5557 - "windows_i686_gnu 0.42.1", 5558 - "windows_i686_msvc 0.42.1", 5559 - "windows_x86_64_gnu 0.42.1", 5560 - "windows_x86_64_gnullvm 0.42.1", 5561 - "windows_x86_64_msvc 0.42.1", 5954 + "windows_aarch64_gnullvm 0.42.2", 5955 + "windows_aarch64_msvc 0.42.2", 5956 + "windows_i686_gnu 0.42.2", 5957 + "windows_i686_msvc 0.42.2", 5958 + "windows_x86_64_gnu 0.42.2", 5959 + "windows_x86_64_gnullvm 0.42.2", 5960 + "windows_x86_64_msvc 0.42.2", 5562 5961 ] 5563 5962 5564 5963 [[package]] 5565 5964 name = "windows-targets" 5566 - version = "0.48.0" 5965 + version = "0.48.1" 5567 5966 source = "registry+https://github.com/rust-lang/crates.io-index" 5568 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 5967 + checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 5569 5968 dependencies = [ 5570 5969 "windows_aarch64_gnullvm 0.48.0", 5571 5970 "windows_aarch64_msvc 0.48.0", ··· 5578 5977 5579 5978 [[package]] 5580 5979 name = "windows_aarch64_gnullvm" 5581 - version = "0.42.1" 5980 + version = "0.42.2" 5582 5981 source = "registry+https://github.com/rust-lang/crates.io-index" 5583 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 5982 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 5584 5983 5585 5984 [[package]] 5586 5985 name = "windows_aarch64_gnullvm" ··· 5590 5989 5591 5990 [[package]] 5592 5991 name = "windows_aarch64_msvc" 5593 - version = "0.42.1" 5992 + version = "0.42.2" 5594 5993 source = "registry+https://github.com/rust-lang/crates.io-index" 5595 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 5994 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 5596 5995 5597 5996 [[package]] 5598 5997 name = "windows_aarch64_msvc" ··· 5602 6001 5603 6002 [[package]] 5604 6003 name = "windows_i686_gnu" 5605 - version = "0.42.1" 6004 + version = "0.42.2" 5606 6005 source = "registry+https://github.com/rust-lang/crates.io-index" 5607 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 6006 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5608 6007 5609 6008 [[package]] 5610 6009 name = "windows_i686_gnu" ··· 5614 6013 5615 6014 [[package]] 5616 6015 name = "windows_i686_msvc" 5617 - version = "0.42.1" 6016 + version = "0.42.2" 5618 6017 source = "registry+https://github.com/rust-lang/crates.io-index" 5619 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 6018 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5620 6019 5621 6020 [[package]] 5622 6021 name = "windows_i686_msvc" ··· 5626 6025 5627 6026 [[package]] 5628 6027 name = "windows_x86_64_gnu" 5629 - version = "0.42.1" 6028 + version = "0.42.2" 5630 6029 source = "registry+https://github.com/rust-lang/crates.io-index" 5631 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 6030 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5632 6031 5633 6032 [[package]] 5634 6033 name = "windows_x86_64_gnu" ··· 5638 6037 5639 6038 [[package]] 5640 6039 name = "windows_x86_64_gnullvm" 5641 - version = "0.42.1" 6040 + version = "0.42.2" 5642 6041 source = "registry+https://github.com/rust-lang/crates.io-index" 5643 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 6042 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5644 6043 5645 6044 [[package]] 5646 6045 name = "windows_x86_64_gnullvm" ··· 5650 6049 5651 6050 [[package]] 5652 6051 name = "windows_x86_64_msvc" 5653 - version = "0.42.1" 6052 + version = "0.42.2" 5654 6053 source = "registry+https://github.com/rust-lang/crates.io-index" 5655 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 6054 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5656 6055 5657 6056 [[package]] 5658 6057 name = "windows_x86_64_msvc" ··· 5662 6061 5663 6062 [[package]] 5664 6063 name = "winreg" 5665 - version = "0.7.0" 6064 + version = "0.10.1" 5666 6065 source = "registry+https://github.com/rust-lang/crates.io-index" 5667 - checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" 6066 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 5668 6067 dependencies = [ 5669 6068 "winapi", 5670 6069 ] 5671 6070 5672 6071 [[package]] 5673 6072 name = "winreg" 5674 - version = "0.10.1" 6073 + version = "0.50.0" 5675 6074 source = "registry+https://github.com/rust-lang/crates.io-index" 5676 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 6075 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5677 6076 dependencies = [ 5678 - "winapi", 6077 + "cfg-if", 6078 + "windows-sys 0.48.0", 5679 6079 ] 5680 6080 5681 6081 [[package]] 5682 6082 name = "wyz" 5683 - version = "0.5.0" 6083 + version = "0.5.1" 5684 6084 source = "registry+https://github.com/rust-lang/crates.io-index" 5685 - checksum = "30b31594f29d27036c383b53b59ed3476874d518f0efb151b27a4c275141390e" 6085 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 5686 6086 dependencies = [ 5687 6087 "tap", 5688 6088 ]
+3 -3
pkgs/development/tools/database/prisma-engines/default.nix
··· 14 14 # function correctly. 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "prisma-engines"; 17 - version = "5.0.0"; 17 + version = "5.2.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "prisma"; 21 21 repo = "prisma-engines"; 22 22 rev = version; 23 - sha256 = "sha256-/1wTqVvGUmN6PmoP6jXgUIB7QKkvkT5Rsg+L5zr4oN0="; 23 + sha256 = "sha256-7bZ6qy5AL7c2F6HfyM7/G36XTkSVsq+T+xxNlrBCXL4="; 24 24 }; 25 25 26 26 # Use system openssl. ··· 32 32 "barrel-0.6.6-alpha.0" = "sha256-USh0lQ1z+3Spgc69bRFySUzhuY79qprLlEExTmYWFN8="; 33 33 "graphql-parser-0.3.0" = "sha256-0ZAsj2mW6fCLhwTETucjbu4rPNzfbNiHu2wVTBlTNe4="; 34 34 "mysql_async-0.31.3" = "sha256-QIO9s0Upc0/1W7ux1RNJNGKqzO4gB4gMV3NoakAbxkQ="; 35 - "postgres-native-tls-0.5.0" = "sha256-OYbtGYAvDDCTeYfhav/BI2LJSyMyUERD7xa8GA/57rI="; 35 + "postgres-native-tls-0.5.0" = "sha256-150GAIccGDAD+t/iWkLbXe4SblrW/KUcxkTy4Mrie5U="; 36 36 }; 37 37 }; 38 38
+3 -3
pkgs/development/tools/rust/cargo-component/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage { 11 11 pname = "cargo-component"; 12 - version = "unstable-2023-08-31"; 12 + version = "unstable-2023-09-06"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "bytecodealliance"; 16 16 repo = "cargo-component"; 17 - rev = "e57d1d1405ed2d76f1f3d8647480dea700379ff8"; 18 - hash = "sha256-mN0GDyQemk71im074laeRDzWpVRUWJUFaRJenJGDwLs="; 17 + rev = "aa6e3c1168273b5cf6221fa0206f07f2ffb8567d"; 18 + hash = "sha256-80076K+KfvFxyUxneEGAs8U7b+DoJLgUioIOTv+PWtI="; 19 19 }; 20 20 21 21 cargoLock = {
+3 -3
pkgs/development/tools/rust/cargo-expand/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "cargo-expand"; 8 - version = "1.0.67"; 8 + version = "1.0.68"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "dtolnay"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "sha256-l8cEtDb6FlYMqxJyxKxyuwjvLJdefiPRmDnVzRydFPM="; 14 + sha256 = "sha256-j1Gq0mK5Gcn66QBiLFkUrIe2EfL3jwx3dRlYKyco77s="; 15 15 }; 16 16 17 - cargoHash = "sha256-IWPd4gG4vI7peXxn4ti93fJeHfJoSxEr0+EKEJWw+IE="; 17 + cargoHash = "sha256-R4S765CjVLfeGg8Mmd0RJAtERIWj3opLbuWXcdOTFTc="; 18 18 19 19 meta = with lib; { 20 20 description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
+5 -11
pkgs/development/tools/rust/cargo-semver-checks/default.nix
··· 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 4 , pkg-config 5 - , libgit2 6 - , openssl 5 + , libgit2_1_6 7 6 , zlib 8 7 , stdenv 9 8 , darwin ··· 12 11 13 12 rustPlatform.buildRustPackage rec { 14 13 pname = "cargo-semver-checks"; 15 - version = "0.22.1"; 14 + version = "0.23.0"; 16 15 17 16 src = fetchFromGitHub { 18 17 owner = "obi1kenobi"; 19 18 repo = pname; 20 19 rev = "v${version}"; 21 - hash = "sha256-Qb01NLWCD7nglceJdUTnlf/XtPHl1P6ukr+QsjxMMos="; 20 + hash = "sha256-/yMZ7ZmvCPFkrnuobbNGmgGNw16J8yT0DEUza7PD/Ow="; 22 21 }; 23 22 24 - cargoHash = "sha256-Qe/AGLoaCpbo001JkCN5qFytL4vWIPWhy3/pfBRoMmo="; 23 + cargoHash = "sha256-u8hja6+T3NwcNub181TfuhI9+QFuIrgqIBlb1lm8+yk="; 25 24 26 25 nativeBuildInputs = [ pkg-config ]; 27 26 28 27 buildInputs = [ 29 - libgit2 30 - openssl 28 + libgit2_1_6 31 29 zlib 32 30 ] ++ lib.optionals stdenv.isDarwin [ 33 31 darwin.apple_sdk.frameworks.Security ··· 37 35 git 38 36 ]; 39 37 40 - # use system openssl 41 - buildNoDefaultFeatures = true; 42 - 43 38 checkFlags = [ 44 39 # requires nightly version of cargo-rustdoc 45 40 "--skip=both_passing_manifest_path_and_directory_works" 46 - "--skip=rustdoc_cmd::tests" 47 41 "--skip=verify_binary_contains_lints" 48 42 49 43 # requires internet access
+3 -3
pkgs/development/tools/turso-cli/default.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "turso-cli"; 8 - version = "0.81.0"; 8 + version = "0.82.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "tursodatabase"; 12 12 repo = "turso-cli"; 13 13 rev = "v${version}"; 14 - hash = "sha256-Ck1q3II/o7f+n0pdR5PzUXG2c6GZmQFeddofHzPTLlA="; 14 + hash = "sha256-JFuD10EhR1/nmYPMnNsR/8PUR5ScvWyS+vhg7ZO5TpI="; 15 15 }; 16 16 17 17 vendorHash = "sha256-Y/pg8+w6B1YQqaZ5wj8QZxiBHAG0Tf3Zec5WlVyA4eI="; ··· 23 23 description = "This is the command line interface (CLI) to Turso."; 24 24 homepage = "https://turso.tech"; 25 25 license = licenses.mit; 26 - maintainers = with maintainers; [zestsystem]; 26 + maintainers = with maintainers; [ zestsystem kashw2 ]; 27 27 }; 28 28 }
+19 -28
pkgs/games/lunar-client/default.nix
··· 1 - { appimageTools, lib, fetchurl, makeDesktopItem }: 1 + { appimageTools 2 + , fetchurl 3 + , lib 4 + }: 2 5 3 6 let 4 - name = "lunar-client"; 5 - version = "2.15.1"; 6 - 7 - desktopItem = makeDesktopItem { 8 - name = "lunar-client"; 9 - exec = "lunar-client"; 10 - icon = "lunarclient"; 11 - comment = "Minecraft 1.7, 1.8, 1.12, 1.15, 1.16, 1.17, and 1.18 Client"; 12 - desktopName = "Lunar Client"; 13 - genericName = "Minecraft Client"; 14 - categories = [ "Game" ]; 15 - }; 16 - 17 - appimageContents = appimageTools.extract { 18 - inherit name src; 19 - }; 7 + pname = "lunar-client"; 8 + version = "3.0.7"; 20 9 21 10 src = fetchurl { 22 11 url = "https://launcherupdates.lunarclientcdn.com/Lunar%20Client-${version}.AppImage"; 23 - name = "lunar-client.AppImage"; 24 - hash = "sha256-8F6inLctNLCrTvO/f4IWHclpm/6vqW44NKbct0Epp4s="; 12 + hash = "sha256-JpgKxCFXO+oK9D7gpk6AfiZLWzgFlijVWKhvfkBrJwY="; 25 13 }; 14 + 15 + appimageContents = appimageTools.extract { inherit pname version src; }; 26 16 in 27 - appimageTools.wrapType1 rec { 28 - inherit name src; 17 + appimageTools.wrapType2 rec { 18 + inherit pname version src; 29 19 30 20 extraInstallCommands = '' 31 - mkdir -p $out/share/applications 32 - cp ${desktopItem}/share/applications/* $out/share/applications 33 - cp -r ${appimageContents}/usr/share/icons/ $out/share/ 21 + mv $out/bin/{${pname}-${version},${pname}} 22 + install -Dm444 ${appimageContents}/launcher.desktop $out/share/applications/lunar-client.desktop 23 + install -Dm444 ${appimageContents}/launcher.png $out/share/pixmaps/lunar-client.png 24 + substituteInPlace $out/share/applications/lunar-client.desktop \ 25 + --replace 'Exec=AppRun --no-sandbox %U' 'Exec=lunar-client' \ 26 + --replace 'Icon=launcher' 'Icon=lunar-client' 34 27 ''; 35 28 36 - extraPkgs = pkgs: [ pkgs.libpulseaudio ]; 37 - 38 29 meta = with lib; { 39 - description = "Minecraft 1.7, 1.8, 1.12, 1.15, 1.16, 1.17, and 1.18 Client"; 30 + description = "Free Minecraft client with mods, cosmetics, and performance boost."; 40 31 homepage = "https://www.lunarclient.com/"; 41 32 license = with licenses; [ unfree ]; 42 - maintainers = with maintainers; [ zyansheep Technical27 ]; 33 + maintainers = with maintainers; [ zyansheep Technical27 surfaceflinger ]; 43 34 platforms = [ "x86_64-linux" ]; 44 35 }; 45 36 }
+4 -2
pkgs/servers/apache-airflow/default.nix
··· 43 43 in 44 44 # See note in ./python-package.nix for 45 45 # instructions on manually testing the web UI 46 - with python.pkgs; (toPythonApplication apache-airflow).overrideAttrs (_:{ 46 + with python.pkgs; (toPythonApplication apache-airflow).overrideAttrs (previousAttrs: { 47 47 # Provide access to airflow's modified python package set 48 48 # for the cases where external scripts need to import 49 49 # airflow modules, though *caveat emptor* because many of 50 50 # these packages will not be built by hydra and many will 51 51 # not work at all due to the unexpected version overrides 52 52 # here. 53 - passthru.pythonPackages = python.pkgs; 53 + passthru = (previousAttrs.passthru or { }) // { 54 + pythonPackages = python.pkgs; 55 + }; 54 56 })
+10 -10
pkgs/tools/backup/duplicity/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitLab 3 4 , python3 4 5 , librsync ··· 11 12 , makeWrapper 12 13 , gettext 13 14 }: 14 - let 15 - pythonPackages = python3.pkgs; 16 - in 17 - pythonPackages.buildPythonApplication rec { 15 + 16 + python3.pkgs.buildPythonApplication rec { 18 17 pname = "duplicity"; 19 18 version = "0.8.23"; 20 19 ··· 51 50 nativeBuildInputs = [ 52 51 makeWrapper 53 52 gettext 54 - pythonPackages.wrapPython 55 - pythonPackages.setuptools-scm 53 + python3.pkgs.wrapPython 54 + python3.pkgs.setuptools-scm 56 55 ]; 56 + 57 57 buildInputs = [ 58 58 librsync 59 59 ]; 60 60 61 - pythonPath = with pythonPackages; [ 61 + pythonPath = with python3.pkgs; [ 62 62 b2sdk 63 63 boto3 64 64 cffi ··· 82 82 par2cmdline # Add 'par2' to PATH. 83 83 ] ++ lib.optionals stdenv.isLinux [ 84 84 util-linux # Add 'setsid' to PATH. 85 - ] ++ (with pythonPackages; [ 85 + ] ++ (with python3.pkgs; [ 86 86 lockfile 87 87 mock 88 88 pexpect ··· 127 127 description = "Encrypted bandwidth-efficient backup using the rsync algorithm"; 128 128 homepage = "https://duplicity.gitlab.io/duplicity-web/"; 129 129 license = licenses.gpl2Plus; 130 - platforms = platforms.unix; 130 + maintainers = with maintainers; [ ]; 131 131 }; 132 132 }
+2 -2
pkgs/tools/games/scarab/default.nix
··· 16 16 17 17 buildDotnetModule rec { 18 18 pname = "scarab"; 19 - version = "1.34.0.0"; 19 + version = "2.1.0.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "fifty-six"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-7SsByXV6HwZnT2VdjzeTZtRuktySxkXb7FulY5RPLEs="; 25 + sha256 = "sha256-TbsCj30ZlZmm+i/k31eo9X+XE9Zu13uL9QZOGaRm9zs="; 26 26 }; 27 27 28 28 nugetDeps = ./deps.nix;
+58 -17
pkgs/tools/games/scarab/deps.nix
··· 2 2 # Please dont edit it manually, your changes might get overwritten! 3 3 4 4 { fetchNuGet }: [ 5 - (fetchNuGet { pname = "Avalonia"; version = "11.0.999-cibuild0036218-beta"; sha256 = "02nsmz69jc38rh73vb7gvagfxy1wipdmgc75ddgjag17xraip5r6"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia/11.0.999-cibuild0036218-beta/avalonia.11.0.999-cibuild0036218-beta.nupkg"; }) 5 + (fetchNuGet { pname = "Avalonia"; version = "11.0.0"; sha256 = "0wfbwrr8p5hg9f809d44gh2zfkfwnwayfw84vs33hh7ms0r380gd"; }) 6 6 (fetchNuGet { pname = "Avalonia.Angle.Windows.Natives"; version = "2.1.0.2023020321"; sha256 = "1az4s1g22ipak9a3xfh55z2h3rm6lpqh7svbpw6ag4ysrgsjjsjd"; }) 7 - (fetchNuGet { pname = "Avalonia.BuildServices"; version = "0.0.19"; sha256 = "1vlhyjb2g98hh5gnisg4bdl9p93x8lmnkc97d24hpxgflcd7szs7"; }) 8 - (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1nxlmywaw6h9vqdr17l0ryyxiln50zhwhj1p2n38x4anawl33pjx"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.controls.colorpicker/11.0.999-cibuild0036218-beta/avalonia.controls.colorpicker.11.0.999-cibuild0036218-beta.nupkg"; }) 9 - (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "11.0.999-cibuild0036218-beta"; sha256 = "0qsbmipmnn1yfvs6ahniy0nyllfhdw07cas18icj2kqp8lj8km3a"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.controls.datagrid/11.0.999-cibuild0036218-beta/avalonia.controls.datagrid.11.0.999-cibuild0036218-beta.nupkg"; }) 10 - (fetchNuGet { pname = "Avalonia.Desktop"; version = "11.0.999-cibuild0036218-beta"; sha256 = "0nrg18aqwibqdik89igvs67217306j27npnmlqqx8izcs0wx9z5x"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.desktop/11.0.999-cibuild0036218-beta/avalonia.desktop.11.0.999-cibuild0036218-beta.nupkg"; }) 11 - (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1lwd3s19a7jyk78ann8rvxy3gkykg40r1wvqj6dv1353vbyamw2f"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.diagnostics/11.0.999-cibuild0036218-beta/avalonia.diagnostics.11.0.999-cibuild0036218-beta.nupkg"; }) 12 - (fetchNuGet { pname = "Avalonia.Fonts.Inter"; version = "11.0.999-cibuild0036218-beta"; sha256 = "0wsppw75yq0n76d6in0cskqpydi2gsaivz0zy13z2d7himj9cz0f"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.fonts.inter/11.0.999-cibuild0036218-beta/avalonia.fonts.inter.11.0.999-cibuild0036218-beta.nupkg"; }) 13 - (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "11.0.999-cibuild0036218-beta"; sha256 = "114xibqkrwmmfq3p4xc7q719cgkgzml5cc0wl440c415nk551bj7"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.freedesktop/11.0.999-cibuild0036218-beta/avalonia.freedesktop.11.0.999-cibuild0036218-beta.nupkg"; }) 14 - (fetchNuGet { pname = "Avalonia.Native"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1j3h7rhrl341c142i1zvahklr9ayqp4x7j4b4v9y1bvw0jkxrl60"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.native/11.0.999-cibuild0036218-beta/avalonia.native.11.0.999-cibuild0036218-beta.nupkg"; }) 15 - (fetchNuGet { pname = "Avalonia.ReactiveUI"; version = "11.0.999-cibuild0036218-beta"; sha256 = "0c7j9dks4spfc4vkz334b72h3pk9grc76d7p3q52w89k3ccc80qq"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.reactiveui/11.0.999-cibuild0036218-beta/avalonia.reactiveui.11.0.999-cibuild0036218-beta.nupkg"; }) 16 - (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1xyv0z4p7z85ydyylj3dyz428cm37y67c13qh5lrnsr14bsymvl9"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.remote.protocol/11.0.999-cibuild0036218-beta/avalonia.remote.protocol.11.0.999-cibuild0036218-beta.nupkg"; }) 17 - (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.999-cibuild0036218-beta"; sha256 = "107faba83cwfy9q1grgdapwjnw5afgnpi6w176jyi7r26nznq8xr"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.skia/11.0.999-cibuild0036218-beta/avalonia.skia.11.0.999-cibuild0036218-beta.nupkg"; }) 18 - (fetchNuGet { pname = "Avalonia.Themes.Simple"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1dki4y2q6k3xkyr102kkh06qvxigh15qmn1s6fkp771qj4kg7j7i"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.themes.simple/11.0.999-cibuild0036218-beta/avalonia.themes.simple.11.0.999-cibuild0036218-beta.nupkg"; }) 19 - (fetchNuGet { pname = "Avalonia.Win32"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1kp0db6svqgxjphjch6ln27d3n4jv96ha4ff89hn77pqf1xry4c5"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.win32/11.0.999-cibuild0036218-beta/avalonia.win32.11.0.999-cibuild0036218-beta.nupkg"; }) 20 - (fetchNuGet { pname = "Avalonia.X11"; version = "11.0.999-cibuild0036218-beta"; sha256 = "1ab5qx7pmqq7hpg8m6gdqvqsqn85m20p37va6z8qpg6vyvbmqlbr"; url = "https://pkgs.dev.azure.com/AvaloniaUI/aa84306f-2981-47b9-8206-edb3bed6250d/_packaging/f990ff61-c538-476f-9f8c-0e9691a4ee55/nuget/v3/flat2/avalonia.x11/11.0.999-cibuild0036218-beta/avalonia.x11.11.0.999-cibuild0036218-beta.nupkg"; }) 7 + (fetchNuGet { pname = "Avalonia.AvaloniaEdit"; version = "11.0.0"; sha256 = "12ibz472083iiz5zskd1ivigggbl0d9yv3nazgw17s97nmnl2lpj"; }) 8 + (fetchNuGet { pname = "Avalonia.BuildServices"; version = "0.0.28"; sha256 = "0d9hyc1zmyvzlb320arwrv12ncp45llq98hibv711b7ibm11dm7c"; }) 9 + (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.0"; sha256 = "06wgzhxkivlaxkn8p61wainsprml2g1q4jmvy9fpn64qnfywjdn7"; }) 10 + (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "11.0.0"; sha256 = "0qlcdx4w1pcljgs7sfbn5xmmnqwp2m0fqyswrgz6c8cvjzcfsjsj"; }) 11 + (fetchNuGet { pname = "Avalonia.Desktop"; version = "11.0.0"; sha256 = "08y31b357fax7c1ggwhjsfwgaj6zkm2abhpc6amlmk6ci4zn12lf"; }) 12 + (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "11.0.0"; sha256 = "134xl19rfswnz75a1mhil9yqy8haqa788rmd1p1kk6ibjbhb3np9"; }) 13 + (fetchNuGet { pname = "Avalonia.Fonts.Inter"; version = "11.0.0"; sha256 = "1vbkk97jhy9qwix25jc875m98cp6vrl86029la55cbky9m1819am"; }) 14 + (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "11.0.0"; sha256 = "042s8lc83lw6ygcsiza14wlsc09rgzw3ch2qaxkhlp73bh736ps3"; }) 15 + (fetchNuGet { pname = "Avalonia.Native"; version = "11.0.0"; sha256 = "1j7wpv81wqwh6zhfzc1f36vb5dp6s2ig45v8km9sp0q6f66zkrsh"; }) 16 + (fetchNuGet { pname = "Avalonia.ReactiveUI"; version = "11.0.0"; sha256 = "1fhp6f2aj2bmzlcj0s5r9i9rcxwakdg9gvjqvdqaq8s98d0s06qh"; }) 17 + (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.0"; sha256 = "1b5031k8slwiz7bncih67fjl6ny234yd4skqxk611l9zp5snjic2"; }) 18 + (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.0"; sha256 = "1ra1kd0kkblppr5zy7rzdbwllggrzvp9lkxblf9mg3y8rnp6fk83"; }) 19 + (fetchNuGet { pname = "Avalonia.Svg"; version = "11.0.0.1"; sha256 = "0a61xg6pcmjy90mmjv42d64av5a7q919qbrhnv6vd1rmm6hxv7zf"; }) 20 + (fetchNuGet { pname = "Avalonia.Svg.Skia"; version = "11.0.0.1"; sha256 = "1bywgrqdqc5wgcsabnhm8yssg78g9lw3p3sza5f8w5vdzmr116ff"; }) 21 + (fetchNuGet { pname = "Avalonia.Themes.Simple"; version = "11.0.0"; sha256 = "1qw76n78c14xl419yzabahbsrgymm850ql05gd4fh5naq2brksdm"; }) 22 + (fetchNuGet { pname = "Avalonia.Win32"; version = "11.0.0"; sha256 = "1djp4m5yin4i2f9sjv4v3syv02fllwbfinzm9h0hm2abc2ccvrm3"; }) 23 + (fetchNuGet { pname = "Avalonia.X11"; version = "11.0.0"; sha256 = "1gd4zrjyw3hg3d48ivhxp0ca7ma13dnpr8y1wc7d51ddlrj3c86g"; }) 21 24 (fetchNuGet { pname = "Castle.Core"; version = "5.1.1"; sha256 = "1caf4878nvjid3cw3rw18p9cn53brfs5x8dkvf82xvcdwc3i0nd1"; }) 22 25 (fetchNuGet { pname = "ColorTextBlock.Avalonia"; version = "11.0.0-d1"; sha256 = "1vf5fp11zx21bsakbpf12j6mchafh749cs03w9cifb6ci98jchgh"; }) 26 + (fetchNuGet { pname = "ColorTextBlock.Avalonia"; version = "11.0.2"; sha256 = "0zvdgpg6r142zhldam5kcpmjpi0qjxsm40cy491gb9ynrj39hrhn"; }) 23 27 (fetchNuGet { pname = "coverlet.collector"; version = "1.3.0"; sha256 = "0k65d9hag6d59w1ixf4n5ihcphp04vrjmd99x5nhga81w1k9i20y"; }) 28 + (fetchNuGet { pname = "DryIoc.dll"; version = "5.4.1"; sha256 = "1dbaac5pi7mim4qil3lrqcpad9vbn261rznk5rw26kvngzcc65n6"; }) 29 + (fetchNuGet { pname = "DryIoc.Microsoft.DependencyInjection"; version = "6.2.0"; sha256 = "0iygbabd73ggzyq1ckbxifrh1kvzwlkr3x32ahamka7pv3982khb"; }) 24 30 (fetchNuGet { pname = "DynamicData"; version = "7.9.5"; sha256 = "1m9qx8g6na5ka6kd9vhg8gjmxrnkzb6v5cl5yqp1kdjsw4rcwy6x"; }) 31 + (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 32 + (fetchNuGet { pname = "FakeItEasy"; version = "8.0.0-alpha.1.10"; sha256 = "0492cayij2ap7rc9l8rkmmch1rb0jqckaspqxrsy0myldfqc2lpq"; }) 33 + (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) 25 34 (fetchNuGet { pname = "HarfBuzzSharp"; version = "2.8.2.3"; sha256 = "115aybicqs9ijjlcv6k6r5v0agkjm1bm1nkd0rj3jglv8s0xvmp2"; }) 26 35 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "2.8.2.3"; sha256 = "1f18ahwkaginrg0vwsi6s56lvnqvvxv7pzklfs5lnknasxy1a76z"; }) 27 36 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "2.8.2.3"; sha256 = "052d8frpkj4ijs6fm6xp55xbv95b1s9biqwa0w8zp3rgm88m9236"; }) 28 37 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "2.8.2.3"; sha256 = "043hv36bg5240znbm8x5la7py17m4jfzy57q3ka32f6zjld83j36"; }) 29 38 (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "2.8.2.3"; sha256 = "08khd2jqm8sw58ljz5srangzfm2sz3gd2q1jzc5fr80lj8rv6r74"; }) 30 - (fetchNuGet { pname = "JetBrains.Annotations"; version = "2022.3.1"; sha256 = "0lkhyyz25q82ygnxy26lwy5cl8fvkdc13pcn433xpjj8akzbmgd6"; }) 39 + (fetchNuGet { pname = "HtmlAgilityPack"; version = "1.11.42"; sha256 = "0cvnc1qdfcjbqkh335bv4wp44zisb4hc69lq3zphiyzqfrjisnyb"; }) 40 + (fetchNuGet { pname = "JetBrains.Annotations"; version = "2023.2.0"; sha256 = "0nx7nrzbg9gk9skdc9x330cbr5xbsly6z9gzxm46vywf55yp8vaj"; }) 41 + (fetchNuGet { pname = "Markdown.Avalonia"; version = "11.0.2"; sha256 = "1nx1f3pqlpffwwpdk8d6bbd27mz2q45k3gkc5dz6m2pfxi0ij6ak"; }) 42 + (fetchNuGet { pname = "Markdown.Avalonia.Html"; version = "11.0.2"; sha256 = "1xjz45lg9dcfwcdl0sbfy0145m6bd8y3b6kvwh96fnnj8ks6074q"; }) 43 + (fetchNuGet { pname = "Markdown.Avalonia.Svg"; version = "11.0.2"; sha256 = "1s5yazazpmhkc2nizzm46cnfwk7wwdd6gg2lzcs30k813i3621z3"; }) 44 + (fetchNuGet { pname = "Markdown.Avalonia.SyntaxHigh"; version = "11.0.2"; sha256 = "0di7r0wiif2lvgr0wlw1lj7b9j85yp1pf5hyhh4n9ciykklkkq0p"; }) 31 45 (fetchNuGet { pname = "Markdown.Avalonia.Tight"; version = "11.0.0-d1"; sha256 = "0ks9k3wqwvdssiwbcjc4gnrfn1r8x2dbp9amraxkmws5a7vbjdyk"; }) 46 + (fetchNuGet { pname = "Markdown.Avalonia.Tight"; version = "11.0.2"; sha256 = "1mz229r42f1p320xkjl45pdv72lycn9cqk46arycm9km45jgzzgl"; }) 32 47 (fetchNuGet { pname = "MessageBox.Avalonia"; version = "2.3.1-rc1"; sha256 = "13zvqg95wa5v5b8h8kl63ydpprxqyk6zgzqdh673y005s1y58w4a"; }) 33 48 (fetchNuGet { pname = "MicroCom.Runtime"; version = "0.11.0"; sha256 = "0p9c3m0zk59x9dcqw077hzd2yk60myisbacvm36mnwpcjwzjkp2m"; }) 34 49 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.0.0"; sha256 = "0bbl0jpqywqmzz2gagld1p2gvdfldjfjmm25hil9wj2nq1zc4di8"; }) ··· 41 56 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.3.0"; sha256 = "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb"; }) 42 57 (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "7.0.0"; sha256 = "121zs4jp8iimgbpzm3wsglhjwkc06irg1pxy8c1zcdlsg34cfq1p"; }) 43 58 (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "7.0.0"; sha256 = "181d7mp9307fs17lyy42f8cxnjwysddmpsalky4m0pqxcimnr6g7"; }) 59 + (fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "7.0.0"; sha256 = "1bqd3pqn5dacgnkq0grc17cgb2i0w8z1raw12nwm3p3zhrfcvgxf"; }) 60 + (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "7.0.0"; sha256 = "1gn7d18i1wfy13vrwhmdv1rmsb4vrk26kqdld4cgvh77yigj90xs"; }) 61 + (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "7.0.0"; sha256 = "0b90zkrsk5dw3wr749rbynhpxlg4bgqdnd7d5vdlw2g9c7zlhgx6"; }) 62 + (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "7.0.0"; sha256 = "1b4km9fszid9vp2zb3gya5ni9fn8bq62bzaas2ck2r7gs0sdys80"; }) 44 63 (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "16.7.1"; sha256 = "0yqxipj74ax2n76w9ccydppx78ym8m5fda88qnvj4670qjvl0kf8"; }) 45 64 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 46 65 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) ··· 52 71 (fetchNuGet { pname = "Microsoft.Toolkit.HighPerformance"; version = "7.1.2"; sha256 = "18l950mq0l8s1z771l9p332ni7jryidjh4hi9p37l6p8frcnccxb"; }) 53 72 (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; }) 54 73 (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "6.0.0"; sha256 = "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p"; }) 55 - (fetchNuGet { pname = "Moq"; version = "4.18.4"; sha256 = "0x439pcaqg8kv0an4cjbspw8d98gq144yrqwhnnh6xf9qjaris94"; }) 56 74 (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; }) 57 75 (fetchNuGet { pname = "Newtonsoft.Json"; version = "9.0.1"; sha256 = "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r"; }) 58 76 (fetchNuGet { pname = "NuGet.Frameworks"; version = "5.0.0"; sha256 = "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr"; }) 77 + (fetchNuGet { pname = "Projektanker.Icons.Avalonia"; version = "6.6.0-rc1.1"; sha256 = "04sac2grc1mbx1rfx29i16k0yrqh29c60njsj2mq8yrs1z2ky9jj"; }) 78 + (fetchNuGet { pname = "Projektanker.Icons.Avalonia.FontAwesome"; version = "6.6.0-rc1.1"; sha256 = "1mzdgds62f7apy8gajrpsa6fay89rzfl7f9mf6y573ani7a131xc"; }) 59 79 (fetchNuGet { pname = "PropertyChanged.SourceGenerator"; version = "1.0.8"; sha256 = "05ygdj1sizcw678vf459hzhz4ynz2s5s206vl99g5gy3d9kaham6"; }) 60 80 (fetchNuGet { pname = "ReactiveUI"; version = "18.3.1"; sha256 = "1lxkc8yk9glj0w9n5vry2dnwwvh8152ad2c5bivk8aciq64zidyn"; }) 61 81 (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) ··· 99 119 (fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; sha256 = "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12"; }) 100 120 (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; }) 101 121 (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; }) 122 + (fetchNuGet { pname = "Semi.Avalonia"; version = "11.0.0"; sha256 = "1js7lk05y171y6hrh39ai6ddqn17x08ri2fdpz9iq0ic8iryrvxi"; }) 123 + (fetchNuGet { pname = "Serilog"; version = "3.0.1"; sha256 = "1sigmcsy6mvjk2lqlxdxj47f961p1wvc0b8d8nx84hwy7mfikxvi"; }) 124 + (fetchNuGet { pname = "Serilog.Extensions.Logging"; version = "7.0.0"; sha256 = "0qbdgjfr534jhrl87fjav46pbbrzj3izw3wd6hbz5gi1lrphmzar"; }) 125 + (fetchNuGet { pname = "Serilog.Sinks.Console"; version = "4.1.0"; sha256 = "1rpkphmqfh3bv3m7v1zwz88wz4sirj4xqyff9ga0c6bqhblj6wii"; }) 126 + (fetchNuGet { pname = "Serilog.Sinks.Debug"; version = "2.0.0"; sha256 = "1i7j870l47gan3gpnnlzkccn5lbm7518cnkp25a3g5gp9l0dbwpw"; }) 127 + (fetchNuGet { pname = "Serilog.Sinks.File"; version = "5.0.0"; sha256 = "097rngmgcrdfy7jy8j7dq3xaq2qky8ijwg0ws6bfv5lx0f3vvb0q"; }) 128 + (fetchNuGet { pname = "SerilogAnalyzer"; version = "0.15.0"; sha256 = "0k83cyzl9520q282vp07zb8rs16a56axv7a31l3m5fb1afq2hv9l"; }) 129 + (fetchNuGet { pname = "ShimSkiaSharp"; version = "1.0.0.1"; sha256 = "1iza1yvvvz5pfl2vx6fwlb0gj262gwva9fay6pb6kgiv70h7rmcg"; }) 102 130 (fetchNuGet { pname = "SkiaSharp"; version = "2.88.3"; sha256 = "1yq694myq2rhfp2hwwpyzcg1pzpxcp7j72wib8p9pw9dfj7008sv"; }) 131 + (fetchNuGet { pname = "SkiaSharp.HarfBuzz"; version = "2.88.3"; sha256 = "0axz2zfyg0h3zis7rr86ikrm2jbxxy0gqb3bbawpgynf1k0fsi6a"; }) 103 132 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.3"; sha256 = "0dajvr60nwvnv7s6kcqgw1w97zxdpz1c5lb7kcq7r0hi0l05ck3q"; }) 104 133 (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.3"; sha256 = "191ajgi6fnfqcvqvkayjsxasiz6l0bv3pps8vv9abbyc4b12qvph"; }) 105 134 (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.3"; sha256 = "1w5njksq3amrrp7fqxw89nv6ar2kgc5yx092i4rxv7hrjbd1aagx"; }) 106 135 (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.3"; sha256 = "03wwfbarsxjnk70qhqyd1dw65098dncqk2m0vksx92j70i7lry6q"; }) 107 136 (fetchNuGet { pname = "Splat"; version = "14.4.1"; sha256 = "03ycyjn2ii44npi015p4rk344xnjgdzz02cf63cmhx2ab8hv6p4b"; }) 108 137 (fetchNuGet { pname = "Splat"; version = "14.6.37"; sha256 = "1rj2ik4b4mxl2w2d8316a2afyfd23p6ysc5vczsis7bhxcjp1x2h"; }) 138 + (fetchNuGet { pname = "Splat"; version = "14.7.1"; sha256 = "1rs8bmwcvzg4yn05zglgk7vbmyi2flyyhjqn62sx1cjkrd9m0cs7"; }) 109 139 (fetchNuGet { pname = "Splat.Microsoft.Extensions.DependencyInjection"; version = "14.6.37"; sha256 = "1pqb0ij1kmzjx92j5slp579aqshsp499wd8vxbnm58z0ix4a7bn6"; }) 140 + (fetchNuGet { pname = "Splat.Serilog"; version = "14.7.1"; sha256 = "0xdw92jxarvpan9v8zja2710z2m03yam94qwar8j5axvnqbh8fhj"; }) 141 + (fetchNuGet { pname = "Svg.Custom"; version = "1.0.0.1"; sha256 = "00ly1pbm8a7s2k71gz7ikw42l25wfgabdx4bqrzdxysgnfaaa43d"; }) 142 + (fetchNuGet { pname = "Svg.Model"; version = "1.0.0.1"; sha256 = "0kyllnbya6zvhv8rg53b3zdndmdz9hak4k204gjzcnhkqsn8dcy6"; }) 143 + (fetchNuGet { pname = "Svg.Skia"; version = "1.0.0.1"; sha256 = "1z487pnz12cy6554xl4nifj4y4a2l15yxz5d3rlsc3asb4qs5jvy"; }) 110 144 (fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; sha256 = "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya"; }) 111 145 (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) 112 146 (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; }) 113 147 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 114 148 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; }) 149 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.6.0"; sha256 = "1pbxzdz3pwqyybzv5ff2b7nrc281bhg7hq34w0fn1w3qfgrbwyw2"; }) 115 150 (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; sha256 = "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r"; }) 151 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; sha256 = "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm"; }) 116 152 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.5.0"; sha256 = "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p"; }) 117 153 (fetchNuGet { pname = "System.Console"; version = "4.3.0"; sha256 = "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay"; }) 118 154 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; }) ··· 154 190 (fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; }) 155 191 (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; }) 156 192 (fetchNuGet { pname = "System.Reactive"; version = "5.0.0"; sha256 = "1lafmpnadhiwxyd543kraxa3jfdpm6ipblxrjlibym9b1ykpr5ik"; }) 193 + (fetchNuGet { pname = "System.Reactive.Linq"; version = "5.0.0"; sha256 = "07p05v13yixbxhs84231k5l8jw3nji0j3zcqc6nsbcmh54jpjsrb"; }) 157 194 (fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; }) 158 195 (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; }) 159 196 (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; }) ··· 174 211 (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; }) 175 212 (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; }) 176 213 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.7.1"; sha256 = "119br3pd85lq8zcgh4f60jzmv1g976q1kdgi3hvqdlhfbw6siz2j"; }) 214 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; }) 177 215 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; }) 178 216 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 179 217 (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; }) ··· 198 236 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; sha256 = "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w"; }) 199 237 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 200 238 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 239 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; sha256 = "1151hbyrcf8kyg1jz8k9awpbic98lwz9x129rg7zk1wrs6vjlpxl"; }) 240 + (fetchNuGet { pname = "System.Text.Json"; version = "7.0.0"; sha256 = "0scb0lp7wbgcinaa4kqiqs7b8i5nx4ppfad81138jiwd1sl37pyp"; }) 201 241 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; }) 202 242 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; }) 203 243 (fetchNuGet { pname = "System.Threading"; version = "4.0.11"; sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; }) ··· 209 249 (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; sha256 = "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153"; }) 210 250 (fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; }) 211 251 (fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; }) 252 + (fetchNuGet { pname = "System.ValueTuple"; version = "4.5.0"; sha256 = "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy"; }) 212 253 (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.0.11"; sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; }) 213 254 (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; }) 214 255 (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; })
+1 -1
pkgs/tools/misc/cc2538-bsl/default.nix
··· 5 5 version = "unstable-2022-08-03"; 6 6 format = "setuptools"; 7 7 8 - src = fetchFromGitHub rec { 8 + src = fetchFromGitHub { 9 9 owner = "JelmerT"; 10 10 repo = pname; 11 11 rev = "538ea0deb99530e28fdf1b454e9c9d79d85a3970";
+132
pkgs/tools/networking/connman/connman/create-libppp-compat.h.patch
··· 1 + new file mode 100644 2 + index 000000000..eee1d09d6 3 + --- /dev/null 4 + +++ b/scripts/libppp-compat.h 5 + @@ -0,0 +1,127 @@ 6 + +/* Copyright (C) Eivind Naess, eivnaes@yahoo.com */ 7 + +/* SPDX-License-Identifier: GPL-2.0-or-later */ 8 + + 9 + +#ifndef __LIBPPP_COMPAT_H__ 10 + +#define __LIBPPP_COMPAT_H__ 11 + + 12 + +/* Define USE_EAPTLS compile with EAP TLS support against older pppd headers, 13 + + * pppd >= 2.5.0 use PPP_WITH_EAPTLS and is defined in pppdconf.h */ 14 + +#define USE_EAPTLS 1 15 + + 16 + +/* Define INET6 to compile with IPv6 support against older pppd headers, 17 + + * pppd >= 2.5.0 use PPP_WITH_IPV6CP and is defined in pppdconf.h */ 18 + +#define INET6 1 19 + + 20 + +/* PPP < 2.5.0 defines and exports VERSION which overlaps with current package VERSION define. 21 + + * this silly macro magic is to work around that. */ 22 + +#undef VERSION 23 + +#include <pppd/pppd.h> 24 + + 25 + +#ifndef PPPD_VERSION 26 + +#define PPPD_VERSION VERSION 27 + +#endif 28 + + 29 + +#include <pppd/fsm.h> 30 + +#include <pppd/ccp.h> 31 + +#include <pppd/eui64.h> 32 + +#include <pppd/ipcp.h> 33 + +#include <pppd/ipv6cp.h> 34 + +#include <pppd/eap.h> 35 + +#include <pppd/upap.h> 36 + + 37 + +#ifdef HAVE_PPPD_CHAP_H 38 + +#include <pppd/chap.h> 39 + +#endif 40 + + 41 + +#ifdef HAVE_PPPD_CHAP_NEW_H 42 + +#include <pppd/chap-new.h> 43 + +#endif 44 + + 45 + +#ifdef HAVE_PPPD_CHAP_MS_H 46 + +#include <pppd/chap_ms.h> 47 + +#endif 48 + + 49 + +#ifndef PPP_PROTO_CHAP 50 + +#define PPP_PROTO_CHAP 0xc223 51 + +#endif 52 + + 53 + +#ifndef PPP_PROTO_EAP 54 + +#define PPP_PROTO_EAP 0xc227 55 + +#endif 56 + + 57 + + 58 + +#if WITH_PPP_VERSION < PPP_VERSION(2,5,0) 59 + + 60 + +static inline bool 61 + +debug_on (void) 62 + +{ 63 + + return debug; 64 + +} 65 + + 66 + +static inline const char 67 + +*ppp_ipparam (void) 68 + +{ 69 + + return ipparam; 70 + +} 71 + + 72 + +static inline int 73 + +ppp_ifunit (void) 74 + +{ 75 + + return ifunit; 76 + +} 77 + + 78 + +static inline const char * 79 + +ppp_ifname (void) 80 + +{ 81 + + return ifname; 82 + +} 83 + + 84 + +static inline int 85 + +ppp_get_mtu (int idx) 86 + +{ 87 + + return netif_get_mtu(idx); 88 + +} 89 + + 90 + +typedef enum ppp_notify 91 + +{ 92 + + NF_PID_CHANGE, 93 + + NF_PHASE_CHANGE, 94 + + NF_EXIT, 95 + + NF_SIGNALED, 96 + + NF_IP_UP, 97 + + NF_IP_DOWN, 98 + + NF_IPV6_UP, 99 + + NF_IPV6_DOWN, 100 + + NF_AUTH_UP, 101 + + NF_LINK_DOWN, 102 + + NF_FORK, 103 + + NF_MAX_NOTIFY 104 + +} ppp_notify_t; 105 + + 106 + +typedef void (ppp_notify_fn) (void *ctx, int arg); 107 + + 108 + +static inline void 109 + +ppp_add_notify (ppp_notify_t type, ppp_notify_fn *func, void *ctx) 110 + +{ 111 + + struct notifier **list[NF_MAX_NOTIFY] = { 112 + + [NF_PID_CHANGE ] = &pidchange, 113 + + [NF_PHASE_CHANGE] = &phasechange, 114 + + [NF_EXIT ] = &exitnotify, 115 + + [NF_SIGNALED ] = &sigreceived, 116 + + [NF_IP_UP ] = &ip_up_notifier, 117 + + [NF_IP_DOWN ] = &ip_down_notifier, 118 + + [NF_IPV6_UP ] = &ipv6_up_notifier, 119 + + [NF_IPV6_DOWN ] = &ipv6_down_notifier, 120 + + [NF_AUTH_UP ] = &auth_up_notifier, 121 + + [NF_LINK_DOWN ] = &link_down_notifier, 122 + + [NF_FORK ] = &fork_notifier, 123 + + }; 124 + + 125 + + struct notifier **notify = list[type]; 126 + + if (notify) { 127 + + add_notifier(notify, func, ctx); 128 + + } 129 + +} 130 + + 131 + +#endif /* #if WITH_PPP_VERSION < PPP_VERSION(2,5,0) */ 132 + +#endif /* #if__LIBPPP_COMPAT_H__ */
+8 -15
pkgs/tools/networking/connman/connman/default.nix
··· 59 59 60 60 stdenv.mkDerivation rec { 61 61 pname = "connman"; 62 - version = "1.41"; 62 + version = "1.42"; 63 63 src = fetchurl { 64 64 url = "mirror://kernel/linux/network/connman/${pname}-${version}.tar.xz"; 65 - sha256 = "sha256-eftA9P3VUwxFqo5ZL7Froj02dPOpjPELiaZXbxmN5Yk="; 65 + hash = "sha256-o+a65G/Age8una48qk92Sd6JLD3mIsICg6wMqBQjwqo="; 66 66 }; 67 67 68 68 patches = [ 69 - (fetchpatch { 70 - name = "pppd-2.5.0-compat.patch"; 71 - url = "https://git.kernel.org/pub/scm/network/connman/connman.git/patch/?id=a48864a2e5d2a725dfc6eef567108bc13b43857f"; 72 - sha256 = "sha256-jB1qL13mceQ1riv3K+oFWw4VC7ohv/CcH9sjxZPXcG4="; 73 - }) 74 - (fetchpatch { 75 - name = "CVE-2023-28488.patch"; 76 - url = "https://git.kernel.org/pub/scm/network/connman/connman.git/patch/?id=99e2c16ea1cced34a5dc450d76287a1c3e762138"; 77 - sha256 = "sha256-377CmsECji2w/c4bZXR+TxzTB7Lce0yo7KdK1oWfCVY="; 78 - }) 79 - ] ++ lib.optionals stdenv.hostPlatform.isMusl [ 69 + # simply the middle section of upstream commit a48864a2e5d2a725dfc6eef567108bc13b43857f 70 + # dist tarball is broken, hence this patch as a workaround 71 + ./create-libppp-compat.h.patch 72 + ] ++ optionals stdenv.hostPlatform.isMusl [ 80 73 # Fix Musl build by avoiding a Glibc-only API. 81 74 (fetchpatch { 82 75 url = "https://git.alpinelinux.org/aports/plain/community/connman/libresolv.patch?id=e393ea84386878cbde3cccadd36a30396e357d1e"; 83 - sha256 = "1kg2nml7pdxc82h5hgsa3npvzdxy4d2jpz2f93pa97if868i8d43"; 76 + hash = "sha256-7Q1bp8rD/gGVYUqnIXqjr9vypR8jlC926p3KYWl9kLw="; 84 77 }) 85 78 ]; 86 79 ··· 190 183 meta = with lib; { 191 184 description = "A daemon for managing internet connections"; 192 185 homepage = "https://git.kernel.org/pub/scm/network/connman/connman.git/"; 193 - maintainers = [ maintainers.matejc ]; 186 + maintainers = with maintainers; [ eclairevoyant ]; 194 187 platforms = platforms.linux; 195 188 license = licenses.gpl2Only; 196 189 };
+3 -3
pkgs/tools/text/miller/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "miller"; 5 - version = "6.8.0"; 5 + version = "6.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "johnkerl"; 9 9 repo = "miller"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-AgKkB/c7rSgk2jS017vjaLPKdiWJ5y/1K5RM6c9RWQg="; 11 + sha256 = "sha256-g2Jnqo3U9acyqohGpcEEogq871qJQTc7k0/oIawAQW8="; 12 12 }; 13 13 14 - vendorHash = "sha256-4/BB4RaCXEgtGpBJGtccEAz9diogWTA4BxVLkOOlNMw="; 14 + vendorHash = "sha256-/1/FTQL3Ki8QzL+1J4Ah8kwiJyGPd024di/1MC8gtkE="; 15 15 16 16 subPackages = [ "cmd/mlr" ]; 17 17
+1 -3
pkgs/top-level/all-packages.nix
··· 11035 11035 11036 11036 netavark = callPackage ../tools/networking/netavark { }; 11037 11037 11038 - netcdf = callPackage ../development/libraries/netcdf { 11039 - hdf5 = hdf5.override { usev110Api = true; }; 11040 - }; 11038 + netcdf = callPackage ../development/libraries/netcdf { }; 11041 11039 11042 11040 netcdf-mpi = netcdf.override { 11043 11041 hdf5 = hdf5-mpi.override { usev110Api = true; };