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