Merge remote-tracking branch 'origin/master' into staging-next

Conflicts:
pkgs/development/python-modules/bambi/default.nix
pkgs/development/python-modules/jaxopt/default.nix

+1325 -4630
+4
maintainers/maintainer-list.nix
··· 6464 githubId = 1447245; 6465 name = "Robin Gloster"; 6466 }; 6467 gmemstr = { 6468 email = "git@gmem.ca"; 6469 github = "gmemstr";
··· 6464 githubId = 1447245; 6465 name = "Robin Gloster"; 6466 }; 6467 + gm6k = { 6468 + email = "nix@quidecco.pl"; 6469 + name = "Isidor Zeuner"; 6470 + }; 6471 gmemstr = { 6472 email = "git@gmem.ca"; 6473 github = "gmemstr";
+3 -3
nixos/doc/manual/configuration/x-windows.chapter.md
··· 45 You can set the keyboard layout (and optionally the layout variant): 46 47 ```nix 48 - services.xserver.layout = "de"; 49 - services.xserver.xkbVariant = "neo"; 50 ``` 51 52 The X server is started automatically at boot time. If you don't want ··· 266 layout should be ready to use. You can try it by e.g. running 267 `setxkbmap us-greek` and then type `<alt>+a` (it may not get applied in 268 your terminal straight away). To change the default, the usual 269 - `services.xserver.layout` option can still be used. 270 271 A layout can have several other components besides `xkb_symbols`, for 272 example we will define new keycodes for some multimedia key and bind
··· 45 You can set the keyboard layout (and optionally the layout variant): 46 47 ```nix 48 + services.xserver.xkb.layout = "de"; 49 + services.xserver.xkb.variant = "neo"; 50 ``` 51 52 The X server is started automatically at boot time. If you don't want ··· 266 layout should be ready to use. You can try it by e.g. running 267 `setxkbmap us-greek` and then type `<alt>+a` (it may not get applied in 268 your terminal straight away). To change the default, the usual 269 + `services.xserver.xkb.layout` option can still be used. 270 271 A layout can have several other components besides `xkb_symbols`, for 272 example we will define new keycodes for some multimedia key and bind
+3 -5
nixos/doc/manual/development/option-declarations.section.md
··· 90 ``` 91 ::: 92 93 - ### `mkPackageOption`, `mkPackageOptionMD` {#sec-option-declarations-util-mkPackageOption} 94 95 Usage: 96 ··· 121 122 If you wish to explicitly provide no default, pass `null` as `default`. 123 124 - During the transition to CommonMark documentation `mkPackageOption` creates an option with a DocBook description attribute, once the transition is completed it will create a CommonMark description instead. `mkPackageOptionMD` always creates an option with a CommonMark description attribute and will be removed some time after the transition is completed. 125 - 126 []{#ex-options-declarations-util-mkPackageOption} 127 Examples: 128 129 ::: {#ex-options-declarations-util-mkPackageOption-hello .example} 130 ### Simple `mkPackageOption` usage 131 ```nix 132 - lib.mkPackageOptionMD pkgs "hello" { } 133 # is like 134 lib.mkOption { 135 type = lib.types.package; ··· 143 ::: {#ex-options-declarations-util-mkPackageOption-ghc .example} 144 ### `mkPackageOption` with explicit default and example 145 ```nix 146 - lib.mkPackageOptionMD pkgs "GHC" { 147 default = [ "ghc" ]; 148 example = "pkgs.haskell.packages.ghc92.ghc.withPackages (hkgs: [ hkgs.primes ])"; 149 }
··· 90 ``` 91 ::: 92 93 + ### `mkPackageOption` {#sec-option-declarations-util-mkPackageOption} 94 95 Usage: 96 ··· 121 122 If you wish to explicitly provide no default, pass `null` as `default`. 123 124 []{#ex-options-declarations-util-mkPackageOption} 125 Examples: 126 127 ::: {#ex-options-declarations-util-mkPackageOption-hello .example} 128 ### Simple `mkPackageOption` usage 129 ```nix 130 + lib.mkPackageOption pkgs "hello" { } 131 # is like 132 lib.mkOption { 133 type = lib.types.package; ··· 141 ::: {#ex-options-declarations-util-mkPackageOption-ghc .example} 142 ### `mkPackageOption` with explicit default and example 143 ```nix 144 + lib.mkPackageOption pkgs "GHC" { 145 default = [ "ghc" ]; 146 example = "pkgs.haskell.packages.ghc92.ghc.withPackages (hkgs: [ hkgs.primes ])"; 147 }
+2 -1
nixos/doc/manual/release-notes/rl-2311.section.md
··· 273 order, or relying on `mkBefore` and `mkAfter`, but may impact users calling 274 `mkOrder n` with n ≤ 400. 275 276 - `networking.networkmanager.firewallBackend` was removed as NixOS is now using iptables-nftables-compat even when using iptables, therefore Networkmanager now uses the nftables backend unconditionally. 277 278 - [`lib.lists.foldl'`](https://nixos.org/manual/nixpkgs/stable#function-library-lib.lists.foldl-prime) now always evaluates the initial accumulator argument first. ··· 448 - The `electron` packages now places its application files in `$out/libexec/electron` instead of `$out/lib/electron`. Packages using electron-builder will fail to build and need to be adjusted by changing `lib` to `libexec`. 449 450 - `teleport` has been upgraded from major version 12 to major version 14. Please see upstream [upgrade instructions](https://goteleport.com/docs/management/operations/upgrading/) and release notes for versions [13](https://goteleport.com/docs/changelog/#1300-050823) and [14](https://goteleport.com/docs/changelog/#1400-092023). Note that Teleport does not officially support upgrades across more than one major version at a time. If you're running Teleport server components, it is recommended to first upgrade to an intermediate 13.x version by setting `services.teleport.package = pkgs.teleport_13`. Afterwards, this option can be removed to upgrade to the default version (14). 451 -
··· 273 order, or relying on `mkBefore` and `mkAfter`, but may impact users calling 274 `mkOrder n` with n ≤ 400. 275 276 + - X keyboard extension (XKB) options have been reorganized into a single attribute set, `services.xserver.xkb`. Specifically, `services.xserver.layout` is now `services.xserver.xkb.layout`, `services.xserver.xkbModel` is now `services.xserver.xkb.model`, `services.xserver.xkbOptions` is now `services.xserver.xkb.options`, `services.xserver.xkbVariant` is now `services.xserver.xkb.variant`, and `services.xserver.xkbDir` is now `services.xserver.xkb.dir`. 277 + 278 - `networking.networkmanager.firewallBackend` was removed as NixOS is now using iptables-nftables-compat even when using iptables, therefore Networkmanager now uses the nftables backend unconditionally. 279 280 - [`lib.lists.foldl'`](https://nixos.org/manual/nixpkgs/stable#function-library-lib.lists.foldl-prime) now always evaluates the initial accumulator argument first. ··· 450 - The `electron` packages now places its application files in `$out/libexec/electron` instead of `$out/lib/electron`. Packages using electron-builder will fail to build and need to be adjusted by changing `lib` to `libexec`. 451 452 - `teleport` has been upgraded from major version 12 to major version 14. Please see upstream [upgrade instructions](https://goteleport.com/docs/management/operations/upgrading/) and release notes for versions [13](https://goteleport.com/docs/changelog/#1300-050823) and [14](https://goteleport.com/docs/changelog/#1400-092023). Note that Teleport does not officially support upgrades across more than one major version at a time. If you're running Teleport server components, it is recommended to first upgrade to an intermediate 13.x version by setting `services.teleport.package = pkgs.teleport_13`. Afterwards, this option can be removed to upgrade to the default version (14).
+2 -2
nixos/modules/config/console.nix
··· 127 ${optionalString (config.environment.sessionVariables ? XKB_CONFIG_ROOT) 128 "-I${config.environment.sessionVariables.XKB_CONFIG_ROOT}" 129 } \ 130 - -model '${xkbModel}' -layout '${layout}' \ 131 - -option '${xkbOptions}' -variant '${xkbVariant}' > "$out" 132 ''); 133 } 134
··· 127 ${optionalString (config.environment.sessionVariables ? XKB_CONFIG_ROOT) 128 "-I${config.environment.sessionVariables.XKB_CONFIG_ROOT}" 129 } \ 130 + -model '${xkb.model}' -layout '${xkb.layout}' \ 131 + -option '${xkb.options}' -variant '${xkb.variant}' > "$out" 132 ''); 133 } 134
-43
nixos/modules/config/gnu.nix
··· 1 - { config, lib, pkgs, ... }: 2 - 3 - { 4 - options = { 5 - gnu = lib.mkOption { 6 - type = lib.types.bool; 7 - default = false; 8 - description = lib.mdDoc '' 9 - When enabled, GNU software is chosen by default whenever a there is 10 - a choice between GNU and non-GNU software (e.g., GNU lsh 11 - vs. OpenSSH). 12 - ''; 13 - }; 14 - }; 15 - 16 - config = lib.mkIf config.gnu { 17 - 18 - environment.systemPackages = with pkgs; 19 - # TODO: Adjust `requiredPackages' from `system-path.nix'. 20 - # TODO: Add Inetutils once it has the new `ifconfig'. 21 - [ parted 22 - #fdisk # XXX: GNU fdisk currently fails to build and it's redundant 23 - # with the `parted' command. 24 - nano zile 25 - texinfo # for the stand-alone Info reader 26 - ] 27 - ++ lib.optional (!stdenv.isAarch32) grub2; 28 - 29 - 30 - # GNU GRUB, where available. 31 - boot.loader.grub.enable = !pkgs.stdenv.isAarch32; 32 - 33 - # GNU lsh. 34 - services.openssh.enable = false; 35 - services.lshd.enable = true; 36 - programs.ssh.startAgent = false; 37 - services.xserver.startGnuPGAgent = true; 38 - 39 - # TODO: GNU dico. 40 - # TODO: GNU Inetutils' inetd. 41 - # TODO: GNU Pies. 42 - }; 43 - }
···
+3 -3
nixos/modules/installer/tools/tools.nix
··· 163 # console = { 164 # font = "Lat2-Terminus16"; 165 # keyMap = "us"; 166 - # useXkbConfig = true; # use xkbOptions in tty. 167 # }; 168 169 $xserverConfig 170 171 $desktopConfiguration 172 # Configure keymap in X11 173 - # services.xserver.layout = "us"; 174 - # services.xserver.xkbOptions = "eurosign:e,caps:escape"; 175 176 # Enable CUPS to print documents. 177 # services.printing.enable = true;
··· 163 # console = { 164 # font = "Lat2-Terminus16"; 165 # keyMap = "us"; 166 + # useXkbConfig = true; # use xkb.options in tty. 167 # }; 168 169 $xserverConfig 170 171 $desktopConfiguration 172 # Configure keymap in X11 173 + # services.xserver.xkb.layout = "us"; 174 + # services.xserver.xkb.options = "eurosign:e,caps:escape"; 175 176 # Enable CUPS to print documents. 177 # services.printing.enable = true;
-1
nixos/modules/module-list.nix
··· 6 ./config/fonts/fontdir.nix 7 ./config/fonts/ghostscript.nix 8 ./config/fonts/packages.nix 9 - ./config/gnu.nix 10 ./config/gtk/gtk-icon-cache.nix 11 ./config/i18n.nix 12 ./config/iproute2.nix
··· 6 ./config/fonts/fontdir.nix 7 ./config/fonts/ghostscript.nix 8 ./config/fonts/packages.nix 9 ./config/gtk/gtk-icon-cache.nix 10 ./config/i18n.nix 11 ./config/iproute2.nix
+1
nixos/modules/services/monitoring/prometheus/exporters.nix
··· 37 "fritzbox" 38 "graphite" 39 "idrac" 40 "influxdb" 41 "ipmi" 42 "json"
··· 37 "fritzbox" 38 "graphite" 39 "idrac" 40 + "imap-mailstat" 41 "influxdb" 42 "ipmi" 43 "json"
+71
nixos/modules/services/monitoring/prometheus/exporters/imap-mailstat.nix
···
··· 1 + { config, lib, pkgs, options }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.prometheus.exporters.imap-mailstat; 7 + valueToString = value: 8 + if (builtins.typeOf value == "string") then "\"${value}\"" 9 + else ( 10 + if (builtins.typeOf value == "int") then "${toString value}" 11 + else ( 12 + if (builtins.typeOf value == "bool") then (if value then "true" else "false") 13 + else "XXX ${toString value}" 14 + ) 15 + ); 16 + createConfigFile = accounts: 17 + # unfortunately on toTOML yet 18 + # https://github.com/NixOS/nix/issues/3929 19 + pkgs.writeText "imap-mailstat-exporter.conf" '' 20 + ${concatStrings (attrValues (mapAttrs (name: config: "[[Accounts]]\nname = \"${name}\"\n${concatStrings (attrValues (mapAttrs (k: v: "${k} = ${valueToString v}\n") config))}") accounts))} 21 + ''; 22 + mkOpt = type: description: mkOption { 23 + type = types.nullOr type; 24 + default = null; 25 + description = lib.mdDoc description; 26 + }; 27 + accountOptions.options = { 28 + mailaddress = mkOpt types.str "Your email address (at the moment used as login name)"; 29 + username = mkOpt types.str "If empty string mailaddress value is used"; 30 + password = mkOpt types.str ""; 31 + serveraddress = mkOpt types.str "mailserver name or address"; 32 + serverport = mkOpt types.int "imap port number (at the moment only tls connection is supported)"; 33 + starttls = mkOpt types.bool "set to true for using STARTTLS to start a TLS connection"; 34 + }; 35 + in 36 + { 37 + port = 8081; 38 + extraOpts = { 39 + oldestUnseenDate = mkOption { 40 + type = types.bool; 41 + default = false; 42 + description = lib.mdDoc '' 43 + Enable metric with timestamp of oldest unseen mail 44 + ''; 45 + }; 46 + accounts = mkOption { 47 + type = types.attrsOf (types.submodule accountOptions); 48 + default = {}; 49 + description = lib.mdDoc '' 50 + Accounts to monitor 51 + ''; 52 + }; 53 + configurationFile = mkOption { 54 + type = types.path; 55 + example = "/path/to/config-file"; 56 + description = lib.mdDoc '' 57 + File containing the configuration 58 + ''; 59 + }; 60 + }; 61 + serviceOpts = { 62 + serviceConfig = { 63 + ExecStart = '' 64 + ${pkgs.prometheus-imap-mailstat-exporter}/bin/imap-mailstat-exporter \ 65 + -config ${createConfigFile cfg.accounts} \ 66 + ${optionalString cfg.oldestUnseenDate "-oldestunseendate"} \ 67 + ${concatStringsSep " \\\n " cfg.extraFlags} 68 + ''; 69 + }; 70 + }; 71 + }
+1 -1
nixos/modules/services/x11/desktop-managers/enlightenment.nix
··· 90 }; 91 }; 92 93 - environment.etc."X11/xkb".source = xcfg.xkbDir; 94 95 fonts.packages = [ pkgs.dejavu_fonts pkgs.ubuntu_font_family ]; 96
··· 90 }; 91 }; 92 93 + environment.etc."X11/xkb".source = xcfg.xkb.dir; 94 95 fonts.packages = [ pkgs.dejavu_fonts pkgs.ubuntu_font_family ]; 96
+1 -1
nixos/modules/services/x11/desktop-managers/plasma5.nix
··· 309 "/share" 310 ]; 311 312 - environment.etc."X11/xkb".source = xcfg.xkbDir; 313 314 environment.sessionVariables = { 315 PLASMA_USE_QT_SCALING = mkIf cfg.useQtScaling "1";
··· 309 "/share" 310 ]; 311 312 + environment.etc."X11/xkb".source = xcfg.xkb.dir; 313 314 environment.sessionVariables = { 315 PLASMA_USE_QT_SCALING = mkIf cfg.useQtScaling "1";
+4 -4
nixos/modules/services/x11/display-managers/sddm.nix
··· 204 left-handed = xcfg.libinput.mouse.leftHanded; 205 }; 206 keyboard = { 207 - keymap_model = xcfg.xkbModel; 208 - keymap_layout = xcfg.layout; 209 - keymap_variant = xcfg.xkbVariant; 210 - keymap_options = xcfg.xkbOptions; 211 }; 212 }; in "${pkgs.weston}/bin/weston --shell=fullscreen-shell.so -c ${westonIni}"; 213 description = lib.mdDoc "Command used to start the selected compositor";
··· 204 left-handed = xcfg.libinput.mouse.leftHanded; 205 }; 206 keyboard = { 207 + keymap_model = xcfg.xkb.model; 208 + keymap_layout = xcfg.xkb.layout; 209 + keymap_variant = xcfg.xkb.variant; 210 + keymap_options = xcfg.xkb.options; 211 }; 212 }; in "${pkgs.weston}/bin/weston --shell=fullscreen-shell.so -c ${westonIni}"; 213 description = lib.mdDoc "Command used to start the selected compositor";
+2 -2
nixos/modules/services/x11/extra-layouts.nix
··· 121 environment.sessionVariables = { 122 # runtime override supported by multiple libraries e. g. libxkbcommon 123 # https://xkbcommon.org/doc/current/group__include-path.html 124 - XKB_CONFIG_ROOT = config.services.xserver.xkbDir; 125 }; 126 127 services.xserver = { 128 - xkbDir = "${xkb_patched}/etc/X11/xkb"; 129 exportConfiguration = config.services.xserver.displayManager.startx.enable 130 || config.services.xserver.displayManager.sx.enable; 131 };
··· 121 environment.sessionVariables = { 122 # runtime override supported by multiple libraries e. g. libxkbcommon 123 # https://xkbcommon.org/doc/current/group__include-path.html 124 + XKB_CONFIG_ROOT = config.services.xserver.xkb.dir; 125 }; 126 127 services.xserver = { 128 + xkb.dir = "${xkb_patched}/etc/X11/xkb"; 129 exportConfiguration = config.services.xserver.displayManager.startx.enable 130 || config.services.xserver.displayManager.sx.enable; 131 };
+78 -46
nixos/modules/services/x11/xserver.nix
··· 175 "Use services.xserver.fontPath instead of useXFS") 176 (mkRemovedOptionModule [ "services" "xserver" "useGlamor" ] 177 "Option services.xserver.useGlamor was removed because it is unnecessary. Drivers that uses Glamor will use it automatically.") 178 ]; 179 180 ··· 339 ''; 340 }; 341 342 - layout = mkOption { 343 - type = types.str; 344 - default = "us"; 345 - description = lib.mdDoc '' 346 - Keyboard layout, or multiple keyboard layouts separated by commas. 347 - ''; 348 - }; 349 350 - xkbModel = mkOption { 351 - type = types.str; 352 - default = "pc104"; 353 - example = "presario"; 354 - description = lib.mdDoc '' 355 - Keyboard model. 356 - ''; 357 - }; 358 359 - xkbOptions = mkOption { 360 - type = types.commas; 361 - default = "terminate:ctrl_alt_bksp"; 362 - example = "grp:caps_toggle,grp_led:scroll"; 363 - description = lib.mdDoc '' 364 - X keyboard options; layout switching goes here. 365 - ''; 366 - }; 367 368 - xkbVariant = mkOption { 369 - type = types.str; 370 - default = ""; 371 - example = "colemak"; 372 - description = lib.mdDoc '' 373 - X keyboard variant. 374 - ''; 375 - }; 376 377 - xkbDir = mkOption { 378 - type = types.path; 379 - default = "${pkgs.xkeyboard_config}/etc/X11/xkb"; 380 - defaultText = literalExpression ''"''${pkgs.xkeyboard_config}/etc/X11/xkb"''; 381 - description = lib.mdDoc '' 382 - Path used for -xkbdir xserver parameter. 383 - ''; 384 }; 385 386 config = mkOption { ··· 667 { 668 "X11/xorg.conf".source = "${configFile}"; 669 # -xkbdir command line option does not seems to be passed to xkbcomp. 670 - "X11/xkb".source = "${cfg.xkbDir}"; 671 }) 672 # localectl looks into 00-keyboard.conf 673 //{ ··· 675 Section "InputClass" 676 Identifier "Keyboard catchall" 677 MatchIsKeyboard "on" 678 - Option "XkbModel" "${cfg.xkbModel}" 679 - Option "XkbLayout" "${cfg.layout}" 680 - Option "XkbOptions" "${cfg.xkbOptions}" 681 - Option "XkbVariant" "${cfg.xkbVariant}" 682 EndSection 683 ''; 684 } ··· 759 760 services.xserver.displayManager.xserverArgs = 761 [ "-config ${configFile}" 762 - "-xkbdir" "${cfg.xkbDir}" 763 ] ++ optional (cfg.display != null) ":${toString cfg.display}" 764 ++ optional (cfg.tty != null) "vt${toString cfg.tty}" 765 ++ optional (cfg.dpi != null) "-dpi ${toString cfg.dpi}" ··· 777 ]; 778 779 system.checks = singleton (pkgs.runCommand "xkb-validated" { 780 - inherit (cfg) xkbModel layout xkbVariant xkbOptions; 781 nativeBuildInputs = with pkgs.buildPackages; [ xkbvalidate ]; 782 preferLocalBuild = true; 783 } '' 784 ${optionalString (config.environment.sessionVariables ? XKB_CONFIG_ROOT) 785 "export XKB_CONFIG_ROOT=${config.environment.sessionVariables.XKB_CONFIG_ROOT}" 786 } 787 - xkbvalidate "$xkbModel" "$layout" "$xkbVariant" "$xkbOptions" 788 touch "$out" 789 ''); 790
··· 175 "Use services.xserver.fontPath instead of useXFS") 176 (mkRemovedOptionModule [ "services" "xserver" "useGlamor" ] 177 "Option services.xserver.useGlamor was removed because it is unnecessary. Drivers that uses Glamor will use it automatically.") 178 + (lib.mkRenamedOptionModuleWith { 179 + sinceRelease = 2311; 180 + from = [ "services" "xserver" "layout" ]; 181 + to = [ "services" "xserver" "xkb" "layout" ]; 182 + }) 183 + (lib.mkRenamedOptionModuleWith { 184 + sinceRelease = 2311; 185 + from = [ "services" "xserver" "xkbModel" ]; 186 + to = [ "services" "xserver" "xkb" "model" ]; 187 + }) 188 + (lib.mkRenamedOptionModuleWith { 189 + sinceRelease = 2311; 190 + from = [ "services" "xserver" "xkbOptions" ]; 191 + to = [ "services" "xserver" "xkb" "options" ]; 192 + }) 193 + (lib.mkRenamedOptionModuleWith { 194 + sinceRelease = 2311; 195 + from = [ "services" "xserver" "xkbVariant" ]; 196 + to = [ "services" "xserver" "xkb" "variant" ]; 197 + }) 198 + (lib.mkRenamedOptionModuleWith { 199 + sinceRelease = 2311; 200 + from = [ "services" "xserver" "xkbDir" ]; 201 + to = [ "services" "xserver" "xkb" "dir" ]; 202 + }) 203 ]; 204 205 ··· 364 ''; 365 }; 366 367 + xkb = mkOption { 368 + description = "X keyboard extension (XKB) configuration"; 369 + type = types.submodule { 370 + options = { 371 + layout = mkOption { 372 + type = types.str; 373 + default = "us"; 374 + description = lib.mdDoc '' 375 + Keyboard layout, or multiple keyboard layouts separated by commas. 376 + ''; 377 + }; 378 379 + model = mkOption { 380 + type = types.str; 381 + default = "pc104"; 382 + example = "presario"; 383 + description = lib.mdDoc '' 384 + Keyboard model. 385 + ''; 386 + }; 387 388 + options = mkOption { 389 + type = types.commas; 390 + default = "terminate:ctrl_alt_bksp"; 391 + example = "grp:caps_toggle,grp_led:scroll"; 392 + description = lib.mdDoc '' 393 + X keyboard options; layout switching goes here. 394 + ''; 395 + }; 396 397 + variant = mkOption { 398 + type = types.str; 399 + default = ""; 400 + example = "colemak"; 401 + description = lib.mdDoc '' 402 + X keyboard variant. 403 + ''; 404 + }; 405 406 + dir = mkOption { 407 + type = types.path; 408 + default = "${pkgs.xkeyboard_config}/etc/X11/xkb"; 409 + defaultText = literalExpression ''"''${pkgs.xkeyboard_config}/etc/X11/xkb"''; 410 + description = lib.mdDoc '' 411 + Path used for -xkbdir xserver parameter. 412 + ''; 413 + }; 414 + }; 415 + }; 416 }; 417 418 config = mkOption { ··· 699 { 700 "X11/xorg.conf".source = "${configFile}"; 701 # -xkbdir command line option does not seems to be passed to xkbcomp. 702 + "X11/xkb".source = "${cfg.xkb.dir}"; 703 }) 704 # localectl looks into 00-keyboard.conf 705 //{ ··· 707 Section "InputClass" 708 Identifier "Keyboard catchall" 709 MatchIsKeyboard "on" 710 + Option "XkbModel" "${cfg.xkb.model}" 711 + Option "XkbLayout" "${cfg.xkb.layout}" 712 + Option "XkbOptions" "${cfg.xkb.options}" 713 + Option "XkbVariant" "${cfg.xkb.variant}" 714 EndSection 715 ''; 716 } ··· 791 792 services.xserver.displayManager.xserverArgs = 793 [ "-config ${configFile}" 794 + "-xkbdir" "${cfg.xkb.dir}" 795 ] ++ optional (cfg.display != null) ":${toString cfg.display}" 796 ++ optional (cfg.tty != null) "vt${toString cfg.tty}" 797 ++ optional (cfg.dpi != null) "-dpi ${toString cfg.dpi}" ··· 809 ]; 810 811 system.checks = singleton (pkgs.runCommand "xkb-validated" { 812 + inherit (cfg.xkb) model layout variant options; 813 nativeBuildInputs = with pkgs.buildPackages; [ xkbvalidate ]; 814 preferLocalBuild = true; 815 } '' 816 ${optionalString (config.environment.sessionVariables ? XKB_CONFIG_ROOT) 817 "export XKB_CONFIG_ROOT=${config.environment.sessionVariables.XKB_CONFIG_ROOT}" 818 } 819 + xkbvalidate "$model" "$layout" "$variant" "$options" 820 touch "$out" 821 ''); 822
+14 -14
nixos/tests/keymap.nix
··· 31 32 nodes.machine.console.keyMap = mkOverride 900 layout; 33 nodes.machine.services.xserver.desktopManager.xterm.enable = false; 34 - nodes.machine.services.xserver.layout = mkOverride 900 layout; 35 nodes.machine.imports = [ ./common/x11.nix extraConfig ]; 36 37 testScript = '' ··· 116 }; 117 118 extraConfig.console.keyMap = "fr"; 119 - extraConfig.services.xserver.layout = "fr"; 120 }; 121 122 bone = { ··· 130 }; 131 132 extraConfig.console.keyMap = "bone"; 133 - extraConfig.services.xserver.layout = "de"; 134 - extraConfig.services.xserver.xkbVariant = "bone"; 135 }; 136 137 colemak = { ··· 141 }; 142 143 extraConfig.console.keyMap = "colemak"; 144 - extraConfig.services.xserver.layout = "us"; 145 - extraConfig.services.xserver.xkbVariant = "colemak"; 146 }; 147 148 dvorak = { ··· 154 }; 155 156 extraConfig.console.keyMap = "dvorak"; 157 - extraConfig.services.xserver.layout = "us"; 158 - extraConfig.services.xserver.xkbVariant = "dvorak"; 159 }; 160 161 dvorak-programmer = { ··· 170 }; 171 172 extraConfig.console.keyMap = "dvorak-programmer"; 173 - extraConfig.services.xserver.layout = "us"; 174 - extraConfig.services.xserver.xkbVariant = "dvp"; 175 }; 176 177 neo = { ··· 185 }; 186 187 extraConfig.console.keyMap = "neo"; 188 - extraConfig.services.xserver.layout = "de"; 189 - extraConfig.services.xserver.xkbVariant = "neo"; 190 }; 191 192 qwertz = { ··· 199 }; 200 201 extraConfig.console.keyMap = "de"; 202 - extraConfig.services.xserver.layout = "de"; 203 }; 204 205 custom = { ··· 212 }; 213 214 extraConfig.console.useXkbConfig = true; 215 - extraConfig.services.xserver.layout = "us-greek"; 216 extraConfig.services.xserver.extraLayouts.us-greek = 217 { description = "US layout with alt-gr greek"; 218 languages = [ "eng" ];
··· 31 32 nodes.machine.console.keyMap = mkOverride 900 layout; 33 nodes.machine.services.xserver.desktopManager.xterm.enable = false; 34 + nodes.machine.services.xserver.xkb.layout = mkOverride 900 layout; 35 nodes.machine.imports = [ ./common/x11.nix extraConfig ]; 36 37 testScript = '' ··· 116 }; 117 118 extraConfig.console.keyMap = "fr"; 119 + extraConfig.services.xserver.xkb.layout = "fr"; 120 }; 121 122 bone = { ··· 130 }; 131 132 extraConfig.console.keyMap = "bone"; 133 + extraConfig.services.xserver.xkb.layout = "de"; 134 + extraConfig.services.xserver.xkb.variant = "bone"; 135 }; 136 137 colemak = { ··· 141 }; 142 143 extraConfig.console.keyMap = "colemak"; 144 + extraConfig.services.xserver.xkb.layout = "us"; 145 + extraConfig.services.xserver.xkb.variant = "colemak"; 146 }; 147 148 dvorak = { ··· 154 }; 155 156 extraConfig.console.keyMap = "dvorak"; 157 + extraConfig.services.xserver.xkb.layout = "us"; 158 + extraConfig.services.xserver.xkb.variant = "dvorak"; 159 }; 160 161 dvorak-programmer = { ··· 170 }; 171 172 extraConfig.console.keyMap = "dvorak-programmer"; 173 + extraConfig.services.xserver.xkb.layout = "us"; 174 + extraConfig.services.xserver.xkb.variant = "dvp"; 175 }; 176 177 neo = { ··· 185 }; 186 187 extraConfig.console.keyMap = "neo"; 188 + extraConfig.services.xserver.xkb.layout = "de"; 189 + extraConfig.services.xserver.xkb.variant = "neo"; 190 }; 191 192 qwertz = { ··· 199 }; 200 201 extraConfig.console.keyMap = "de"; 202 + extraConfig.services.xserver.xkb.layout = "de"; 203 }; 204 205 custom = { ··· 212 }; 213 214 extraConfig.console.useXkbConfig = true; 215 + extraConfig.services.xserver.xkb.layout = "us-greek"; 216 extraConfig.services.xserver.extraLayouts.us-greek = 217 { description = "US layout with alt-gr greek"; 218 languages = [ "eng" ];
+3
nixos/tests/sabnzbd.nix
··· 18 machine.wait_until_succeeds( 19 "curl --fail -L http://localhost:8080/" 20 ) 21 ''; 22 })
··· 18 machine.wait_until_succeeds( 19 "curl --fail -L http://localhost:8080/" 20 ) 21 + _, out = machine.execute("grep SABCTools /var/lib/sabnzbd/logs/sabnzbd.log") 22 + machine.log(out) 23 + machine.fail("grep 'SABCTools disabled: no correct version found!' /var/lib/sabnzbd/logs/sabnzbd.log") 24 ''; 25 })
+2 -2
pkgs/applications/audio/monkeys-audio/default.nix
··· 5 }: 6 7 stdenv.mkDerivation (finalAttrs: { 8 - version = "10.22"; 9 pname = "monkeys-audio"; 10 11 src = fetchzip { 12 url = "https://monkeysaudio.com/files/MAC_${ 13 builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip"; 14 - sha256 = "sha256-JmDH9IudtuJdu1kSDI1RNaYiIgmPgH4RT2Myz9ihQH4="; 15 stripRoot = false; 16 }; 17 nativeBuildInputs = [
··· 5 }: 6 7 stdenv.mkDerivation (finalAttrs: { 8 + version = "10.24"; 9 pname = "monkeys-audio"; 10 11 src = fetchzip { 12 url = "https://monkeysaudio.com/files/MAC_${ 13 builtins.concatStringsSep "" (lib.strings.splitString "." finalAttrs.version)}_SDK.zip"; 14 + sha256 = "sha256-18rHv9sbxpuMfMrqoSSeEncDmQlWpdA/xNPoYJoIgJ0="; 15 stripRoot = false; 16 }; 17 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/mympd/default.nix
··· 16 17 stdenv.mkDerivation (finalAttrs: { 18 pname = "mympd"; 19 - version = "12.0.2"; 20 21 src = fetchFromGitHub { 22 owner = "jcorporation"; 23 repo = "myMPD"; 24 rev = "v${finalAttrs.version}"; 25 - sha256 = "sha256-7jE3erxrCPN2deI7EV0gDH1gy2XdwC1YdU2mo2xMI6Q="; 26 }; 27 28 nativeBuildInputs = [
··· 16 17 stdenv.mkDerivation (finalAttrs: { 18 pname = "mympd"; 19 + version = "12.0.4"; 20 21 src = fetchFromGitHub { 22 owner = "jcorporation"; 23 repo = "myMPD"; 24 rev = "v${finalAttrs.version}"; 25 + sha256 = "sha256-pOs3VfgpDUD8KiBmJ37qpGLguxOXm5cr+jlTEeRZ4Bk="; 26 }; 27 28 nativeBuildInputs = [
pkgs/applications/emulators/dosbox-staging/default.nix pkgs/by-name/do/dosbox-staging/package.nix
+14 -12
pkgs/applications/graphics/nsxiv/default.nix pkgs/by-name/ns/nsxiv/package.nix
··· 10 , conf ? null 11 }: 12 13 - stdenv.mkDerivation rec { 14 pname = "nsxiv"; 15 - version = "31"; 16 17 src = fetchFromGitea { 18 domain = "codeberg.org"; 19 owner = "nsxiv"; 20 repo = "nsxiv"; 21 - rev = "v${version}"; 22 - hash = "sha256-X1ZMr5OADs9GIe/kp/kEqKMMHZMymd58m9+f0SPzn7s="; 23 }; 24 25 buildInputs = [ 26 giflib ··· 30 libwebp 31 ] ++ lib.optional stdenv.isDarwin libinotify-kqueue; 32 33 - preBuild = lib.optionalString (conf!=null) '' 34 cp ${(builtins.toFile "config.def.h" conf)} config.def.h 35 ''; 36 37 - NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-linotify"; 38 39 makeFlags = [ "CC:=$(CC)" ]; 40 ··· 42 43 installTargets = [ "install-all" ]; 44 45 - meta = with lib; { 46 homepage = "https://nsxiv.codeberg.page/"; 47 description = "New Suckless X Image Viewer"; 48 longDescription = '' ··· 59 - Display image information in status bar 60 - Display image name/path in X title 61 ''; 62 - license = licenses.gpl2Plus; 63 - maintainers = with maintainers; [ AndersonTorres sikmir ]; 64 - platforms = platforms.unix; 65 - changelog = "https://codeberg.org/nsxiv/nsxiv/src/tag/${src.rev}/etc/CHANGELOG.md"; 66 }; 67 - }
··· 10 , conf ? null 11 }: 12 13 + stdenv.mkDerivation (finalAttrs: { 14 pname = "nsxiv"; 15 + version = "32"; 16 17 src = fetchFromGitea { 18 domain = "codeberg.org"; 19 owner = "nsxiv"; 20 repo = "nsxiv"; 21 + rev = "v${finalAttrs.version}"; 22 + hash = "sha256-UWaet7hVtgfuWTiNY4VcsMWTfS6L9r5w1fb/0dWz8SI="; 23 }; 24 + 25 + outputs = [ "out" "man" "doc" ]; 26 27 buildInputs = [ 28 giflib ··· 32 libwebp 33 ] ++ lib.optional stdenv.isDarwin libinotify-kqueue; 34 35 + postPatch = lib.optionalString (conf != null) '' 36 cp ${(builtins.toFile "config.def.h" conf)} config.def.h 37 ''; 38 39 + env.NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-linotify"; 40 41 makeFlags = [ "CC:=$(CC)" ]; 42 ··· 44 45 installTargets = [ "install-all" ]; 46 47 + meta = { 48 homepage = "https://nsxiv.codeberg.page/"; 49 description = "New Suckless X Image Viewer"; 50 longDescription = '' ··· 61 - Display image information in status bar 62 - Display image name/path in X title 63 ''; 64 + changelog = "https://codeberg.org/nsxiv/nsxiv/src/tag/${finalAttrs.src.rev}/etc/CHANGELOG.md"; 65 + license = lib.licenses.gpl2Plus; 66 + maintainers = with lib.maintainers; [ AndersonTorres sikmir ]; 67 + platforms = lib.platforms.unix; 68 }; 69 + })
+3 -3
pkgs/applications/misc/calibre/default.nix
··· 32 33 stdenv.mkDerivation (finalAttrs: { 34 pname = "calibre"; 35 - version = "6.26.0"; 36 37 src = fetchurl { 38 url = "https://download.calibre-ebook.com/${finalAttrs.version}/calibre-${finalAttrs.version}.tar.xz"; 39 - hash = "sha256-7UUnDtTRf162xKMUuZoKh+y47oeUtrOsFHUTAvtOryM="; 40 }; 41 42 patches = [ ··· 49 (fetchpatch { 50 name = "0007-Hardening-Qt-code.patch"; 51 url = "https://raw.githubusercontent.com/debian-calibre/calibre/debian/${finalAttrs.version}+ds-1/debian/patches/hardening/0007-Hardening-Qt-code.patch"; 52 - hash = "sha256-2V8H6ElvzS5yw1di+XZvMssuokUT5zP3aTzpDpMsMac="; 53 }) 54 ] 55 ++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
··· 32 33 stdenv.mkDerivation (finalAttrs: { 34 pname = "calibre"; 35 + version = "6.28.1"; 36 37 src = fetchurl { 38 url = "https://download.calibre-ebook.com/${finalAttrs.version}/calibre-${finalAttrs.version}.tar.xz"; 39 + hash = "sha256-ZoJN8weAXUQkxalRtVtEaychc30+l2kfzG9Tm5jZh9g="; 40 }; 41 42 patches = [ ··· 49 (fetchpatch { 50 name = "0007-Hardening-Qt-code.patch"; 51 url = "https://raw.githubusercontent.com/debian-calibre/calibre/debian/${finalAttrs.version}+ds-1/debian/patches/hardening/0007-Hardening-Qt-code.patch"; 52 + hash = "sha256-eTzwo8aAIJnZTIZ/8DqCQi3ZbKxycEdiv+UxRuxo12g="; 53 }) 54 ] 55 ++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
+6 -6
pkgs/applications/misc/calibre/dont_build_unrar_plugin.patch
··· 1 diff --git a/src/calibre/ebooks/metadata/archive.py b/src/calibre/ebooks/metadata/archive.py 2 - index 938ab24..1e095f8 100644 3 --- a/src/calibre/ebooks/metadata/archive.py 4 +++ b/src/calibre/ebooks/metadata/archive.py 5 - @@ -44,7 +44,7 @@ 6 description = _('Extract common e-book formats from archive files ' 7 - '(ZIP/RAR). Also try to autodetect if they are actually ' 8 - 'CBZ/CBR files.') 9 - - file_types = {'zip', 'rar'} 10 - + file_types = {'zip'} 11 supported_platforms = ['windows', 'osx', 'linux'] 12 on_import = True
··· 1 diff --git a/src/calibre/ebooks/metadata/archive.py b/src/calibre/ebooks/metadata/archive.py 2 + index 50b4750124..858e39eece 100644 3 --- a/src/calibre/ebooks/metadata/archive.py 4 +++ b/src/calibre/ebooks/metadata/archive.py 5 + @@ -99,7 +99,7 @@ class ArchiveExtract(FileTypePlugin): 6 description = _('Extract common e-book formats from archive files ' 7 + '(ZIP/RAR/7z). Also try to autodetect if they are actually ' 8 + 'CBZ/CBR/CB7 files.') 9 + - file_types = {'zip', 'rar', '7z'} 10 + + file_types = {'zip', '7z'} 11 supported_platforms = ['windows', 'osx', 'linux'] 12 on_import = True
+14 -13
pkgs/applications/misc/haunt/default.nix pkgs/by-name/ha/haunt/package.nix
··· 3 , fetchurl 4 , fetchpatch 5 , autoreconfHook 6 , guile 7 , guile-commonmark 8 , guile-reader ··· 10 , pkg-config 11 }: 12 13 - stdenv.mkDerivation rec { 14 pname = "haunt"; 15 version = "0.2.6"; 16 17 src = fetchurl { 18 - url = "https://files.dthompson.us/${pname}/${pname}-${version}.tar.gz"; 19 hash = "sha256-vPKLQ9hDJdimEAXwIBGgRRlefM8/77xFQoI+0J/lkNs="; 20 }; 21 ··· 40 makeWrapper 41 pkg-config 42 ]; 43 buildInputs = [ 44 guile 45 guile-commonmark ··· 55 --prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH" 56 ''; 57 58 - doInstallCheck = true; 59 - installCheckPhase = '' 60 - runHook preInstallCheck 61 - $out/bin/haunt --version 62 - runHook postInstallCheck 63 - ''; 64 65 - meta = with lib; { 66 homepage = "https://dthompson.us/projects/haunt.html"; 67 description = "Guile-based static site generator"; 68 longDescription = '' ··· 81 feeds, authors should feel empowered to tweak, replace, or create builders 82 to do things that aren't provided out-of-the-box. 83 ''; 84 - license = licenses.gpl3Plus; 85 - maintainers = with maintainers; [ AndersonTorres AluisioASG ]; 86 - platforms = guile.meta.platforms; 87 }; 88 - }
··· 3 , fetchurl 4 , fetchpatch 5 , autoreconfHook 6 + , callPackage 7 , guile 8 , guile-commonmark 9 , guile-reader ··· 11 , pkg-config 12 }: 13 14 + stdenv.mkDerivation (finalAttrs: { 15 pname = "haunt"; 16 version = "0.2.6"; 17 18 src = fetchurl { 19 + url = "https://files.dthompson.us/haunt/haunt-${finalAttrs.version}.tar.gz"; 20 hash = "sha256-vPKLQ9hDJdimEAXwIBGgRRlefM8/77xFQoI+0J/lkNs="; 21 }; 22 ··· 41 makeWrapper 42 pkg-config 43 ]; 44 + 45 buildInputs = [ 46 guile 47 guile-commonmark ··· 57 --prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH" 58 ''; 59 60 + passthru = { 61 + tests = { 62 + expectVersion = callPackage ./tests/001-test-version.nix { }; 63 + }; 64 + }; 65 66 + meta = { 67 homepage = "https://dthompson.us/projects/haunt.html"; 68 description = "Guile-based static site generator"; 69 longDescription = '' ··· 82 feeds, authors should feel empowered to tweak, replace, or create builders 83 to do things that aren't provided out-of-the-box. 84 ''; 85 + license = lib.licenses.gpl3Plus; 86 + maintainers = with lib.maintainers; [ AndersonTorres AluisioASG ]; 87 + inherit (guile.meta) platforms; 88 }; 89 + })
-74
pkgs/applications/misc/join-desktop/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , alsa-lib 5 - , autoPatchelfHook 6 - , dpkg 7 - , gtk3 8 - , makeWrapper 9 - , mesa 10 - , nss 11 - , systemd 12 - , xorg 13 - }: 14 - 15 - stdenv.mkDerivation rec { 16 - pname = "join-desktop"; 17 - version = "1.1.2"; 18 - 19 - src = fetchurl { 20 - url = "https://github.com/joaomgcd/JoinDesktop/releases/download/v${version}/com.joaomgcd.join_${version}_amd64.deb"; 21 - sha256 = "sha256-k1LX/HC3tfL4Raipo7wp/LnfrPa38x8NBeKRyHJ72CU="; 22 - }; 23 - 24 - nativeBuildInputs = [ 25 - autoPatchelfHook 26 - dpkg 27 - makeWrapper 28 - ]; 29 - 30 - buildInputs = [ 31 - alsa-lib 32 - gtk3 33 - mesa 34 - nss 35 - xorg.libXScrnSaver 36 - xorg.libXtst 37 - ]; 38 - 39 - unpackPhase = "dpkg-deb -x $src ."; 40 - 41 - runtimeDependencies = [ 42 - (lib.getLib systemd) 43 - # TODO: check if they are required 44 - # libnotify 45 - # libappindicator 46 - ]; 47 - 48 - installPhase = '' 49 - runHook preInstall 50 - 51 - mkdir -p $out/bin $out/share/join-desktop 52 - 53 - mv usr/share/* $out/share 54 - mv opt/Join\ Desktop/* $out/share/join-desktop 55 - 56 - ln -s $out/share/join-desktop/com.joaomgcd.join $out/bin/ 57 - 58 - substituteInPlace $out/share/applications/com.joaomgcd.join.desktop \ 59 - --replace "/opt/Join Desktop/com.joaomgcd.join" "com.joaomgcd.join" 60 - 61 - runHook postInstall 62 - ''; 63 - 64 - meta = with lib; { 65 - homepage = "https://github.com/joaomgcd/JoinDesktop/"; 66 - description = "Desktop app for Join"; 67 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 68 - # on https://joaoapps.com/join/desktop/ "Join Desktop is an open source app" but no license 69 - license = licenses.free; 70 - platforms = [ "x86_64-linux" ]; 71 - maintainers = with maintainers; [ SuperSandro2000 ]; 72 - }; 73 - 74 - }
···
+2 -2
pkgs/applications/misc/logseq/default.nix
··· 14 15 in { 16 pname = "logseq"; 17 - version = "0.9.18"; 18 19 src = fetchurl { 20 url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage"; 21 - hash = "sha256-+2BnVW0qWSJ/PIY3zl1c9qzcP9DZVp6E9B7AI6LqibE="; 22 name = "${pname}-${version}.AppImage"; 23 }; 24
··· 14 15 in { 16 pname = "logseq"; 17 + version = "0.9.19"; 18 19 src = fetchurl { 20 url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage"; 21 + hash = "sha256-Y3AeeJc+PYJdckpOma5ZDbVtBbjBTfNNDqTip4l02/E="; 22 name = "${pname}-${version}.AppImage"; 23 }; 24
+2 -2
pkgs/applications/misc/mkgmap/default.nix
··· 15 in 16 stdenv.mkDerivation rec { 17 pname = "mkgmap"; 18 - version = "4912"; 19 20 src = fetchsvn { 21 url = "https://svn.mkgmap.org.uk/mkgmap/mkgmap/trunk"; 22 rev = version; 23 - sha256 = "sha256-4A6N0bhRLKgpLXUSN1iAmIC4YX+BaiUow2YQqnxguRM="; 24 }; 25 26 patches = [
··· 15 in 16 stdenv.mkDerivation rec { 17 pname = "mkgmap"; 18 + version = "4914"; 19 20 src = fetchsvn { 21 url = "https://svn.mkgmap.org.uk/mkgmap/mkgmap/trunk"; 22 rev = version; 23 + sha256 = "sha256-aA5jGW6GTo2OvFZ/uPA4KpS+SjNB/tRGwgj1oM7zywU="; 24 }; 25 26 patches = [
pkgs/applications/misc/mupdf/1.17.nix pkgs/applications/misc/mupdf/1.17/default.nix
pkgs/applications/misc/mupdf/darwin.patch pkgs/applications/misc/mupdf/1.17/darwin.patch
pkgs/applications/misc/mupdf/mupdf-1.14-shared_libs.patch pkgs/applications/misc/mupdf/1.17/mupdf-1.14-shared_libs.patch
+436 -356
pkgs/applications/misc/pot/Cargo.lock
··· 43 44 [[package]] 45 name = "aho-corasick" 46 - version = "1.0.5" 47 source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" 49 dependencies = [ 50 "memchr", 51 ] ··· 123 source = "registry+https://github.com/rust-lang/crates.io-index" 124 checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 125 dependencies = [ 126 - "event-listener", 127 "futures-core", 128 ] 129 ··· 134 checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 135 dependencies = [ 136 "concurrent-queue", 137 - "event-listener", 138 "futures-core", 139 ] 140 141 [[package]] 142 name = "async-executor" 143 - version = "1.5.1" 144 source = "registry+https://github.com/rust-lang/crates.io-index" 145 - checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 146 dependencies = [ 147 "async-lock", 148 "async-task", 149 "concurrent-queue", 150 - "fastrand 1.9.0", 151 "futures-lite", 152 "slab", 153 ] ··· 178 "log", 179 "parking", 180 "polling", 181 - "rustix 0.37.23", 182 "slab", 183 "socket2 0.4.9", 184 "waker-fn", ··· 190 source = "registry+https://github.com/rust-lang/crates.io-index" 191 checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 192 dependencies = [ 193 - "event-listener", 194 ] 195 196 [[package]] 197 name = "async-process" 198 - version = "1.7.0" 199 source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 201 dependencies = [ 202 "async-io", 203 "async-lock", 204 - "autocfg", 205 "blocking", 206 "cfg-if", 207 - "event-listener", 208 "futures-lite", 209 - "rustix 0.37.23", 210 - "signal-hook", 211 "windows-sys 0.48.0", 212 ] 213 214 [[package]] 215 name = "async-recursion" 216 - version = "1.0.4" 217 source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 219 dependencies = [ 220 "proc-macro2", 221 "quote", 222 - "syn 2.0.29", 223 ] 224 225 [[package]] 226 name = "async-task" 227 - version = "4.4.0" 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 230 231 [[package]] 232 name = "async-trait" ··· 236 dependencies = [ 237 "proc-macro2", 238 "quote", 239 - "syn 2.0.29", 240 ] 241 242 [[package]] ··· 260 "glib-sys", 261 "gobject-sys", 262 "libc", 263 - "system-deps 6.1.1", 264 ] 265 266 [[package]] ··· 274 275 [[package]] 276 name = "atomic-waker" 277 - version = "1.1.1" 278 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 280 281 [[package]] 282 name = "auto-launch" 283 - version = "0.4.0" 284 source = "registry+https://github.com/rust-lang/crates.io-index" 285 - checksum = "5904a4d734f0235edf29aab320a14899f3e090446e594ff96508a6215f76f89c" 286 dependencies = [ 287 "dirs 4.0.0", 288 "thiserror", ··· 318 319 [[package]] 320 name = "base64" 321 - version = "0.21.3" 322 source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" 324 325 [[package]] 326 name = "base64ct" ··· 366 367 [[package]] 368 name = "blocking" 369 - version = "1.3.1" 370 source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 372 dependencies = [ 373 "async-channel", 374 "async-lock", 375 "async-task", 376 - "atomic-waker", 377 - "fastrand 1.9.0", 378 "futures-lite", 379 - "log", 380 ] 381 382 [[package]] 383 name = "brotli" 384 - version = "3.3.4" 385 source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 387 dependencies = [ 388 "alloc-no-stdlib", 389 "alloc-stdlib", ··· 392 393 [[package]] 394 name = "brotli-decompressor" 395 - version = "2.3.4" 396 source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 398 dependencies = [ 399 "alloc-no-stdlib", 400 "alloc-stdlib", ··· 412 413 [[package]] 414 name = "bumpalo" 415 - version = "3.13.0" 416 source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 418 419 [[package]] 420 name = "byte-unit" ··· 428 429 [[package]] 430 name = "bytecount" 431 - version = "0.6.3" 432 source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" 434 435 [[package]] 436 name = "bytemuck" 437 - version = "1.13.1" 438 source = "registry+https://github.com/rust-lang/crates.io-index" 439 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 440 441 [[package]] 442 name = "byteorder" 443 - version = "1.4.3" 444 source = "registry+https://github.com/rust-lang/crates.io-index" 445 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 446 447 [[package]] 448 name = "bytes" 449 - version = "1.4.0" 450 source = "registry+https://github.com/rust-lang/crates.io-index" 451 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 452 dependencies = [ 453 "serde", 454 ] ··· 495 dependencies = [ 496 "glib-sys", 497 "libc", 498 - "system-deps 6.1.1", 499 ] 500 501 [[package]] ··· 505 checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" 506 dependencies = [ 507 "serde", 508 - "toml 0.7.6", 509 ] 510 511 [[package]] ··· 555 556 [[package]] 557 name = "cfg-expr" 558 - version = "0.15.4" 559 source = "registry+https://github.com/rust-lang/crates.io-index" 560 - checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" 561 dependencies = [ 562 "smallvec", 563 "target-lexicon", ··· 571 572 [[package]] 573 name = "chrono" 574 - version = "0.4.28" 575 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "95ed24df0632f708f5f6d8082675bef2596f7084dee3dd55f632290bf35bfe0f" 577 dependencies = [ 578 "android-tzdata", 579 "iana-time-zone", 580 "js-sys", 581 "num-traits", 582 "serde", 583 - "time 0.1.45", 584 "wasm-bindgen", 585 "windows-targets 0.48.5", 586 ] ··· 630 631 [[package]] 632 name = "cocoa-foundation" 633 - version = "0.1.1" 634 source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" 636 dependencies = [ 637 "bitflags 1.3.2", 638 "block", 639 "core-foundation", 640 "core-graphics-types", 641 - "foreign-types 0.3.2", 642 "libc", 643 "objc", 644 ] ··· 674 675 [[package]] 676 name = "concurrent-queue" 677 - version = "2.2.0" 678 source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 680 dependencies = [ 681 "crossbeam-utils", 682 ] ··· 900 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 901 dependencies = [ 902 "quote", 903 - "syn 2.0.29", 904 ] 905 906 [[package]] ··· 934 "proc-macro2", 935 "quote", 936 "strsim", 937 - "syn 2.0.29", 938 ] 939 940 [[package]] ··· 945 dependencies = [ 946 "darling_core", 947 "quote", 948 - "syn 2.0.29", 949 ] 950 951 [[package]] ··· 1165 1166 [[package]] 1167 name = "embed-resource" 1168 - version = "2.3.0" 1169 source = "registry+https://github.com/rust-lang/crates.io-index" 1170 - checksum = "fd0a2c9b742a980060d22545a7a83b573acd6b73045b9de6370c9530ce652f27" 1171 dependencies = [ 1172 "cc", 1173 "rustc_version", 1174 - "toml 0.7.6", 1175 "vswhom", 1176 "winreg 0.51.0", 1177 ] ··· 1206 1207 [[package]] 1208 name = "enumflags2" 1209 - version = "0.7.7" 1210 source = "registry+https://github.com/rust-lang/crates.io-index" 1211 - checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 1212 dependencies = [ 1213 "enumflags2_derive", 1214 "serde", ··· 1216 1217 [[package]] 1218 name = "enumflags2_derive" 1219 - version = "0.7.7" 1220 source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 1222 dependencies = [ 1223 "proc-macro2", 1224 "quote", 1225 - "syn 2.0.29", 1226 ] 1227 1228 [[package]] ··· 1233 1234 [[package]] 1235 name = "errno" 1236 - version = "0.3.3" 1237 source = "registry+https://github.com/rust-lang/crates.io-index" 1238 - checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 1239 dependencies = [ 1240 - "errno-dragonfly", 1241 "libc", 1242 "windows-sys 0.48.0", 1243 ] 1244 1245 [[package]] 1246 - name = "errno-dragonfly" 1247 - version = "0.1.2" 1248 - source = "registry+https://github.com/rust-lang/crates.io-index" 1249 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1250 - dependencies = [ 1251 - "cc", 1252 - "libc", 1253 - ] 1254 - 1255 - [[package]] 1256 name = "error-code" 1257 version = "2.3.1" 1258 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1280 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1281 1282 [[package]] 1283 name = "exr" 1284 - version = "1.7.0" 1285 source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18" 1287 dependencies = [ 1288 "bit_field", 1289 "flume", ··· 1306 1307 [[package]] 1308 name = "fastrand" 1309 - version = "2.0.0" 1310 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 1312 1313 [[package]] 1314 name = "fdeflate" ··· 1374 1375 [[package]] 1376 name = "flume" 1377 - version = "0.10.14" 1378 source = "registry+https://github.com/rust-lang/crates.io-index" 1379 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1380 dependencies = [ 1381 "futures-core", 1382 "futures-sink", 1383 - "nanorand", 1384 - "pin-project", 1385 "spin 0.9.8", 1386 ] 1387 ··· 1418 dependencies = [ 1419 "proc-macro2", 1420 "quote", 1421 - "syn 2.0.29", 1422 ] 1423 1424 [[package]] ··· 1538 dependencies = [ 1539 "proc-macro2", 1540 "quote", 1541 - "syn 2.0.29", 1542 ] 1543 1544 [[package]] ··· 1618 "glib-sys", 1619 "gobject-sys", 1620 "libc", 1621 - "system-deps 6.1.1", 1622 ] 1623 1624 [[package]] ··· 1635 "libc", 1636 "pango-sys", 1637 "pkg-config", 1638 - "system-deps 6.1.1", 1639 ] 1640 1641 [[package]] ··· 1649 "gobject-sys", 1650 "libc", 1651 "pkg-config", 1652 - "system-deps 6.1.1", 1653 ] 1654 1655 [[package]] ··· 1661 "gdk-sys", 1662 "glib-sys", 1663 "libc", 1664 - "system-deps 6.1.1", 1665 "x11", 1666 ] 1667 ··· 1716 checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1717 dependencies = [ 1718 "cfg-if", 1719 - "js-sys", 1720 "libc", 1721 "wasi 0.11.0+wasi-snapshot-preview1", 1722 - "wasm-bindgen", 1723 ] 1724 1725 [[package]] ··· 1764 "glib-sys", 1765 "gobject-sys", 1766 "libc", 1767 - "system-deps 6.1.1", 1768 "winapi", 1769 ] 1770 ··· 1810 checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1811 dependencies = [ 1812 "libc", 1813 - "system-deps 6.1.1", 1814 ] 1815 1816 [[package]] ··· 1840 dependencies = [ 1841 "glib-sys", 1842 "libc", 1843 - "system-deps 6.1.1", 1844 ] 1845 1846 [[package]] ··· 1881 "gobject-sys", 1882 "libc", 1883 "pango-sys", 1884 - "system-deps 6.1.1", 1885 ] 1886 1887 [[package]] ··· 1934 1935 [[package]] 1936 name = "hashbrown" 1937 - version = "0.14.0" 1938 source = "registry+https://github.com/rust-lang/crates.io-index" 1939 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 1940 dependencies = [ 1941 "ahash", 1942 "allocator-api2", ··· 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 1949 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1950 dependencies = [ 1951 - "hashbrown 0.14.0", 1952 ] 1953 1954 [[package]] ··· 1971 1972 [[package]] 1973 name = "hermit-abi" 1974 - version = "0.3.2" 1975 source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1977 1978 [[package]] 1979 name = "hex" ··· 2016 dependencies = [ 2017 "log", 2018 "mac", 2019 - "markup5ever", 2020 "proc-macro2", 2021 "quote", 2022 "syn 1.0.109", ··· 2216 2217 [[package]] 2218 name = "indexmap" 2219 - version = "2.0.0" 2220 source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 2222 dependencies = [ 2223 "equivalent", 2224 - "hashbrown 0.14.0", 2225 "serde", 2226 ] 2227 ··· 2391 2392 [[package]] 2393 name = "json-patch" 2394 - version = "1.0.0" 2395 source = "registry+https://github.com/rust-lang/crates.io-index" 2396 - checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658" 2397 dependencies = [ 2398 "serde", 2399 "serde_json", ··· 2428 checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 2429 dependencies = [ 2430 "cssparser", 2431 - "html5ever", 2432 "matches", 2433 "selectors", 2434 ] ··· 2474 2475 [[package]] 2476 name = "libc" 2477 - version = "0.2.147" 2478 source = "registry+https://github.com/rust-lang/crates.io-index" 2479 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 2480 2481 [[package]] 2482 name = "libdbus-sys" ··· 2509 2510 [[package]] 2511 name = "libloading" 2512 - version = "0.8.0" 2513 source = "registry+https://github.com/rust-lang/crates.io-index" 2514 - checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb" 2515 dependencies = [ 2516 "cfg-if", 2517 "windows-sys 0.48.0", ··· 2519 2520 [[package]] 2521 name = "libm" 2522 - version = "0.2.7" 2523 source = "registry+https://github.com/rust-lang/crates.io-index" 2524 - checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 2525 2526 [[package]] 2527 name = "libsqlite3-sys" ··· 2755 2756 [[package]] 2757 name = "linux-raw-sys" 2758 - version = "0.4.5" 2759 source = "registry+https://github.com/rust-lang/crates.io-index" 2760 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 2761 2762 [[package]] 2763 name = "lock_api" ··· 2809 "dirs-next", 2810 "objc-foundation", 2811 "objc_id", 2812 - "time 0.3.28", 2813 ] 2814 2815 [[package]] ··· 2835 dependencies = [ 2836 "log", 2837 "phf 0.8.0", 2838 - "phf_codegen", 2839 "string_cache", 2840 "string_cache_codegen", 2841 "tendril", ··· 2858 2859 [[package]] 2860 name = "md-5" 2861 - version = "0.10.5" 2862 source = "registry+https://github.com/rust-lang/crates.io-index" 2863 - checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 2864 dependencies = [ 2865 "digest", 2866 ] 2867 2868 [[package]] 2869 name = "memchr" 2870 - version = "2.6.2" 2871 source = "registry+https://github.com/rust-lang/crates.io-index" 2872 - checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" 2873 2874 [[package]] 2875 name = "memoffset" ··· 2960 ] 2961 2962 [[package]] 2963 - name = "nanorand" 2964 - version = "0.7.0" 2965 - source = "registry+https://github.com/rust-lang/crates.io-index" 2966 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2967 - dependencies = [ 2968 - "getrandom 0.2.10", 2969 - ] 2970 - 2971 - [[package]] 2972 name = "native-tls" 2973 version = "0.2.11" 2974 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3082 3083 [[package]] 3084 name = "notify-debouncer-mini" 3085 - version = "0.3.0" 3086 source = "registry+https://github.com/rust-lang/crates.io-index" 3087 - checksum = "e55ee272914f4563a2f8b8553eb6811f3c0caea81c756346bad15b7e3ef969f0" 3088 dependencies = [ 3089 "crossbeam-channel", 3090 "notify", 3091 "serde", 3092 ] ··· 3200 3201 [[package]] 3202 name = "num-traits" 3203 - version = "0.2.16" 3204 source = "registry+https://github.com/rust-lang/crates.io-index" 3205 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 3206 dependencies = [ 3207 "autocfg", 3208 "libm", ··· 3289 3290 [[package]] 3291 name = "object" 3292 - version = "0.32.0" 3293 source = "registry+https://github.com/rust-lang/crates.io-index" 3294 - checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" 3295 dependencies = [ 3296 "memchr", 3297 ] ··· 3335 dependencies = [ 3336 "proc-macro2", 3337 "quote", 3338 - "syn 2.0.29", 3339 ] 3340 3341 [[package]] ··· 3346 3347 [[package]] 3348 name = "openssl-sys" 3349 - version = "0.9.92" 3350 source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "db7e971c2c2bba161b2d2fdf37080177eff520b3bc044787c7f1f5f9e78d869b" 3352 dependencies = [ 3353 "cc", 3354 "libc", ··· 3421 "glib-sys", 3422 "gobject-sys", 3423 "libc", 3424 - "system-deps 6.1.1", 3425 ] 3426 3427 [[package]] 3428 name = "parking" 3429 - version = "2.1.0" 3430 source = "registry+https://github.com/rust-lang/crates.io-index" 3431 - checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 3432 3433 [[package]] 3434 name = "parking_lot" ··· 3510 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 3511 dependencies = [ 3512 "fixedbitset", 3513 - "indexmap 2.0.0", 3514 ] 3515 3516 [[package]] ··· 3546 ] 3547 3548 [[package]] 3549 name = "phf_generator" 3550 version = "0.8.0" 3551 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3612 ] 3613 3614 [[package]] 3615 - name = "pin-project" 3616 - version = "1.1.3" 3617 - source = "registry+https://github.com/rust-lang/crates.io-index" 3618 - checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 3619 - dependencies = [ 3620 - "pin-project-internal", 3621 - ] 3622 - 3623 - [[package]] 3624 - name = "pin-project-internal" 3625 - version = "1.1.3" 3626 - source = "registry+https://github.com/rust-lang/crates.io-index" 3627 - checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 3628 - dependencies = [ 3629 - "proc-macro2", 3630 - "quote", 3631 - "syn 2.0.29", 3632 - ] 3633 - 3634 - [[package]] 3635 name = "pin-project-lite" 3636 version = "0.2.13" 3637 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3644 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3645 3646 [[package]] 3647 name = "pkcs1" 3648 version = "0.7.5" 3649 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3676 source = "registry+https://github.com/rust-lang/crates.io-index" 3677 checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" 3678 dependencies = [ 3679 - "base64 0.21.3", 3680 "indexmap 1.9.3", 3681 "line-wrap", 3682 "quick-xml 0.29.0", 3683 "serde", 3684 - "time 0.3.28", 3685 ] 3686 3687 [[package]] ··· 3718 version = "0.0.0" 3719 dependencies = [ 3720 "arboard", 3721 - "base64 0.21.3", 3722 "dirs 5.0.1", 3723 "image", 3724 "libloader", 3725 - "libloading 0.8.0", 3726 "lingua", 3727 "log", 3728 "mouse_position", 3729 "once_cell", 3730 "reqwest_dav", ··· 3767 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3768 dependencies = [ 3769 "once_cell", 3770 - "toml_edit", 3771 ] 3772 3773 [[package]] ··· 3802 3803 [[package]] 3804 name = "proc-macro2" 3805 - version = "1.0.66" 3806 source = "registry+https://github.com/rust-lang/crates.io-index" 3807 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 3808 dependencies = [ 3809 "unicode-ident", 3810 ] ··· 3943 3944 [[package]] 3945 name = "rayon" 3946 - version = "1.7.0" 3947 source = "registry+https://github.com/rust-lang/crates.io-index" 3948 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 3949 dependencies = [ 3950 "either", 3951 "rayon-core", ··· 3953 3954 [[package]] 3955 name = "rayon-core" 3956 - version = "1.11.0" 3957 source = "registry+https://github.com/rust-lang/crates.io-index" 3958 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 3959 dependencies = [ 3960 - "crossbeam-channel", 3961 "crossbeam-deque", 3962 "crossbeam-utils", 3963 - "num_cpus", 3964 ] 3965 3966 [[package]] ··· 3994 3995 [[package]] 3996 name = "regex" 3997 - version = "1.9.4" 3998 source = "registry+https://github.com/rust-lang/crates.io-index" 3999 - checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29" 4000 dependencies = [ 4001 "aho-corasick", 4002 "memchr", 4003 - "regex-automata 0.3.7", 4004 "regex-syntax 0.7.5", 4005 ] 4006 ··· 4015 4016 [[package]] 4017 name = "regex-automata" 4018 - version = "0.3.7" 4019 source = "registry+https://github.com/rust-lang/crates.io-index" 4020 - checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629" 4021 dependencies = [ 4022 "aho-corasick", 4023 "memchr", ··· 4038 4039 [[package]] 4040 name = "reqwest" 4041 - version = "0.11.20" 4042 source = "registry+https://github.com/rust-lang/crates.io-index" 4043 - checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" 4044 dependencies = [ 4045 - "base64 0.21.3", 4046 "bytes", 4047 "encoding_rs", 4048 "futures-core", ··· 4064 "serde", 4065 "serde_json", 4066 "serde_urlencoded", 4067 "tokio", 4068 "tokio-native-tls", 4069 "tokio-util", ··· 4078 4079 [[package]] 4080 name = "reqwest_dav" 4081 - version = "0.1.3" 4082 - source = "git+https://github.com/pot-app/reqwest_dav.git#241363249e0fb2a12912ec04400fc55c93b4a079" 4083 dependencies = [ 4084 "async-trait", 4085 "chrono", ··· 4172 4173 [[package]] 4174 name = "rustix" 4175 - version = "0.37.23" 4176 source = "registry+https://github.com/rust-lang/crates.io-index" 4177 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 4178 dependencies = [ 4179 "bitflags 1.3.2", 4180 "errno", ··· 4186 4187 [[package]] 4188 name = "rustix" 4189 - version = "0.38.10" 4190 source = "registry+https://github.com/rust-lang/crates.io-index" 4191 - checksum = "ed6248e1caa625eb708e266e06159f135e8c26f2bb7ceb72dc4b2766d0340964" 4192 dependencies = [ 4193 "bitflags 2.4.0", 4194 "errno", 4195 "libc", 4196 - "linux-raw-sys 0.4.5", 4197 "windows-sys 0.48.0", 4198 ] 4199 ··· 4214 source = "registry+https://github.com/rust-lang/crates.io-index" 4215 checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 4216 dependencies = [ 4217 - "base64 0.21.3", 4218 ] 4219 4220 [[package]] 4221 name = "rustls-webpki" 4222 - version = "0.101.4" 4223 source = "registry+https://github.com/rust-lang/crates.io-index" 4224 - checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d" 4225 dependencies = [ 4226 "ring", 4227 "untrusted", ··· 4352 "log", 4353 "matches", 4354 "phf 0.8.0", 4355 - "phf_codegen", 4356 "precomputed-hash", 4357 "servo_arc", 4358 "smallvec", ··· 4361 4362 [[package]] 4363 name = "semver" 4364 - version = "1.0.18" 4365 source = "registry+https://github.com/rust-lang/crates.io-index" 4366 - checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 4367 dependencies = [ 4368 "serde", 4369 ] ··· 4408 dependencies = [ 4409 "proc-macro2", 4410 "quote", 4411 - "syn 2.0.29", 4412 ] 4413 4414 [[package]] 4415 name = "serde_json" 4416 - version = "1.0.105" 4417 source = "registry+https://github.com/rust-lang/crates.io-index" 4418 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 4419 dependencies = [ 4420 "itoa 1.0.9", 4421 "ryu", ··· 4430 dependencies = [ 4431 "proc-macro2", 4432 "quote", 4433 - "syn 2.0.29", 4434 ] 4435 4436 [[package]] ··· 4460 source = "registry+https://github.com/rust-lang/crates.io-index" 4461 checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237" 4462 dependencies = [ 4463 - "base64 0.21.3", 4464 "chrono", 4465 "hex", 4466 "indexmap 1.9.3", 4467 - "indexmap 2.0.0", 4468 "serde", 4469 "serde_json", 4470 "serde_with_macros", 4471 - "time 0.3.28", 4472 ] 4473 4474 [[package]] ··· 4480 "darling", 4481 "proc-macro2", 4482 "quote", 4483 - "syn 2.0.29", 4484 ] 4485 4486 [[package]] ··· 4517 4518 [[package]] 4519 name = "sha1" 4520 - version = "0.10.5" 4521 source = "registry+https://github.com/rust-lang/crates.io-index" 4522 - checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 4523 dependencies = [ 4524 "cfg-if", 4525 "cpufeatures", ··· 4528 4529 [[package]] 4530 name = "sha2" 4531 - version = "0.10.7" 4532 source = "registry+https://github.com/rust-lang/crates.io-index" 4533 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 4534 dependencies = [ 4535 "cfg-if", 4536 "cpufeatures", ··· 4539 4540 [[package]] 4541 name = "sharded-slab" 4542 - version = "0.1.4" 4543 source = "registry+https://github.com/rust-lang/crates.io-index" 4544 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 4545 dependencies = [ 4546 "lazy_static", 4547 ] ··· 4554 dependencies = [ 4555 "libc", 4556 "winapi", 4557 - ] 4558 - 4559 - [[package]] 4560 - name = "signal-hook" 4561 - version = "0.3.17" 4562 - source = "registry+https://github.com/rust-lang/crates.io-index" 4563 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 4564 - dependencies = [ 4565 - "libc", 4566 - "signal-hook-registry", 4567 ] 4568 4569 [[package]] ··· 4608 4609 [[package]] 4610 name = "smallvec" 4611 - version = "1.11.0" 4612 source = "registry+https://github.com/rust-lang/crates.io-index" 4613 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 4614 4615 [[package]] 4616 name = "socket2" ··· 4624 4625 [[package]] 4626 name = "socket2" 4627 - version = "0.5.3" 4628 source = "registry+https://github.com/rust-lang/crates.io-index" 4629 - checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 4630 dependencies = [ 4631 "libc", 4632 "windows-sys 0.48.0", ··· 4698 4699 [[package]] 4700 name = "sqlx" 4701 - version = "0.7.1" 4702 source = "registry+https://github.com/rust-lang/crates.io-index" 4703 - checksum = "8e58421b6bc416714d5115a2ca953718f6c621a51b68e4f4922aea5a4391a721" 4704 dependencies = [ 4705 "sqlx-core", 4706 "sqlx-macros", ··· 4711 4712 [[package]] 4713 name = "sqlx-core" 4714 - version = "0.7.1" 4715 source = "registry+https://github.com/rust-lang/crates.io-index" 4716 - checksum = "dd4cef4251aabbae751a3710927945901ee1d97ee96d757f6880ebb9a79bfd53" 4717 dependencies = [ 4718 "ahash", 4719 "atoi", ··· 4723 "crossbeam-queue", 4724 "dotenvy", 4725 "either", 4726 - "event-listener", 4727 "futures-channel", 4728 "futures-core", 4729 "futures-intrusive", ··· 4731 "futures-util", 4732 "hashlink", 4733 "hex", 4734 - "indexmap 2.0.0", 4735 "log", 4736 "memchr", 4737 "once_cell", ··· 4745 "smallvec", 4746 "sqlformat", 4747 "thiserror", 4748 - "time 0.3.28", 4749 "tokio", 4750 "tokio-stream", 4751 "tracing", ··· 4755 4756 [[package]] 4757 name = "sqlx-macros" 4758 - version = "0.7.1" 4759 source = "registry+https://github.com/rust-lang/crates.io-index" 4760 - checksum = "208e3165167afd7f3881b16c1ef3f2af69fa75980897aac8874a0696516d12c2" 4761 dependencies = [ 4762 "proc-macro2", 4763 "quote", ··· 4768 4769 [[package]] 4770 name = "sqlx-macros-core" 4771 - version = "0.7.1" 4772 source = "registry+https://github.com/rust-lang/crates.io-index" 4773 - checksum = "8a4a8336d278c62231d87f24e8a7a74898156e34c1c18942857be2acb29c7dfc" 4774 dependencies = [ 4775 "dotenvy", 4776 "either", ··· 4794 4795 [[package]] 4796 name = "sqlx-mysql" 4797 - version = "0.7.1" 4798 source = "registry+https://github.com/rust-lang/crates.io-index" 4799 - checksum = "8ca69bf415b93b60b80dc8fda3cb4ef52b2336614d8da2de5456cc942a110482" 4800 dependencies = [ 4801 "atoi", 4802 - "base64 0.21.3", 4803 "bitflags 2.4.0", 4804 "byteorder", 4805 "bytes", ··· 4830 "sqlx-core", 4831 "stringprep", 4832 "thiserror", 4833 - "time 0.3.28", 4834 "tracing", 4835 "whoami", 4836 ] 4837 4838 [[package]] 4839 name = "sqlx-postgres" 4840 - version = "0.7.1" 4841 source = "registry+https://github.com/rust-lang/crates.io-index" 4842 - checksum = "a0db2df1b8731c3651e204629dd55e52adbae0462fa1bdcbed56a2302c18181e" 4843 dependencies = [ 4844 "atoi", 4845 - "base64 0.21.3", 4846 "bitflags 2.4.0", 4847 "byteorder", 4848 "crc", ··· 4870 "sqlx-core", 4871 "stringprep", 4872 "thiserror", 4873 - "time 0.3.28", 4874 "tracing", 4875 "whoami", 4876 ] 4877 4878 [[package]] 4879 name = "sqlx-sqlite" 4880 - version = "0.7.1" 4881 source = "registry+https://github.com/rust-lang/crates.io-index" 4882 - checksum = "be4c21bf34c7cae5b283efb3ac1bcc7670df7561124dc2f8bdc0b59be40f79a2" 4883 dependencies = [ 4884 "atoi", 4885 "flume", ··· 4893 "percent-encoding", 4894 "serde", 4895 "sqlx-core", 4896 - "time 0.3.28", 4897 "tracing", 4898 "url", 4899 ] ··· 5006 5007 [[package]] 5008 name = "syn" 5009 - version = "2.0.29" 5010 source = "registry+https://github.com/rust-lang/crates.io-index" 5011 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 5012 dependencies = [ 5013 "proc-macro2", 5014 "quote", ··· 5029 ] 5030 5031 [[package]] 5032 name = "system-deps" 5033 version = "5.0.0" 5034 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5043 5044 [[package]] 5045 name = "system-deps" 5046 - version = "6.1.1" 5047 source = "registry+https://github.com/rust-lang/crates.io-index" 5048 - checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" 5049 dependencies = [ 5050 - "cfg-expr 0.15.4", 5051 "heck 0.4.1", 5052 "pkg-config", 5053 - "toml 0.7.6", 5054 "version-compare 0.1.1", 5055 ] 5056 5057 [[package]] 5058 name = "tao" 5059 - version = "0.16.2" 5060 source = "registry+https://github.com/rust-lang/crates.io-index" 5061 - checksum = "6a6d198e01085564cea63e976ad1566c1ba2c2e4cc79578e35d9f05521505e31" 5062 dependencies = [ 5063 "bitflags 1.3.2", 5064 "cairo-rs", ··· 5133 5134 [[package]] 5135 name = "tauri" 5136 - version = "1.4.1" 5137 source = "registry+https://github.com/rust-lang/crates.io-index" 5138 - checksum = "7fbe522898e35407a8e60dc3870f7579fea2fc262a6a6072eccdd37ae1e1d91e" 5139 dependencies = [ 5140 "anyhow", 5141 - "base64 0.21.3", 5142 "bytes", 5143 "cocoa", 5144 "dirs-next", ··· 5180 "tauri-utils", 5181 "tempfile", 5182 "thiserror", 5183 - "time 0.3.28", 5184 "tokio", 5185 "url", 5186 "uuid", ··· 5192 5193 [[package]] 5194 name = "tauri-build" 5195 - version = "1.4.0" 5196 source = "registry+https://github.com/rust-lang/crates.io-index" 5197 - checksum = "7d2edd6a259b5591c8efdeb9d5702cb53515b82a6affebd55c7fd6d3a27b7d1b" 5198 dependencies = [ 5199 "anyhow", 5200 "cargo_toml", 5201 "heck 0.4.1", 5202 "json-patch", 5203 "semver", ··· 5205 "serde_json", 5206 "tauri-utils", 5207 "tauri-winres", 5208 ] 5209 5210 [[package]] 5211 name = "tauri-codegen" 5212 - version = "1.4.0" 5213 source = "registry+https://github.com/rust-lang/crates.io-index" 5214 - checksum = "54ad2d49fdeab4a08717f5b49a163bdc72efc3b1950b6758245fcde79b645e1a" 5215 dependencies = [ 5216 - "base64 0.21.3", 5217 "brotli", 5218 "ico", 5219 "json-patch", ··· 5228 "sha2", 5229 "tauri-utils", 5230 "thiserror", 5231 - "time 0.3.28", 5232 "uuid", 5233 "walkdir", 5234 ] 5235 5236 [[package]] 5237 name = "tauri-macros" 5238 - version = "1.4.0" 5239 source = "registry+https://github.com/rust-lang/crates.io-index" 5240 - checksum = "8eb12a2454e747896929338d93b0642144bb51e0dddbb36e579035731f0d76b7" 5241 dependencies = [ 5242 "heck 0.4.1", 5243 "proc-macro2", ··· 5250 [[package]] 5251 name = "tauri-plugin-autostart" 5252 version = "0.0.0" 5253 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5b814f56e6368fdec46c4ddb04a07e0923ff995a" 5254 dependencies = [ 5255 "auto-launch", 5256 "log", ··· 5263 [[package]] 5264 name = "tauri-plugin-fs-watch" 5265 version = "0.0.0" 5266 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5b814f56e6368fdec46c4ddb04a07e0923ff995a" 5267 dependencies = [ 5268 "log", 5269 "notify", ··· 5277 [[package]] 5278 name = "tauri-plugin-log" 5279 version = "0.0.0" 5280 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5b814f56e6368fdec46c4ddb04a07e0923ff995a" 5281 dependencies = [ 5282 "byte-unit", 5283 "fern", ··· 5286 "serde_json", 5287 "serde_repr", 5288 "tauri", 5289 - "time 0.3.28", 5290 ] 5291 5292 [[package]] 5293 name = "tauri-plugin-single-instance" 5294 version = "0.0.0" 5295 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5b814f56e6368fdec46c4ddb04a07e0923ff995a" 5296 dependencies = [ 5297 "log", 5298 "serde", ··· 5306 [[package]] 5307 name = "tauri-plugin-sql" 5308 version = "0.0.0" 5309 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5b814f56e6368fdec46c4ddb04a07e0923ff995a" 5310 dependencies = [ 5311 "futures-core", 5312 "log", ··· 5315 "sqlx", 5316 "tauri", 5317 "thiserror", 5318 - "time 0.3.28", 5319 "tokio", 5320 ] 5321 5322 [[package]] 5323 name = "tauri-plugin-store" 5324 version = "0.0.0" 5325 - source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#5b814f56e6368fdec46c4ddb04a07e0923ff995a" 5326 dependencies = [ 5327 "log", 5328 "serde", ··· 5333 5334 [[package]] 5335 name = "tauri-runtime" 5336 - version = "0.14.0" 5337 source = "registry+https://github.com/rust-lang/crates.io-index" 5338 - checksum = "108683199cb18f96d2d4134187bb789964143c845d2d154848dda209191fd769" 5339 dependencies = [ 5340 "gtk", 5341 "http", ··· 5354 5355 [[package]] 5356 name = "tauri-runtime-wry" 5357 - version = "0.14.0" 5358 source = "registry+https://github.com/rust-lang/crates.io-index" 5359 - checksum = "0b7aa256a1407a3a091b5d843eccc1a5042289baf0a43d1179d9f0fcfea37c1b" 5360 dependencies = [ 5361 "cocoa", 5362 "gtk", ··· 5374 5375 [[package]] 5376 name = "tauri-utils" 5377 - version = "1.4.0" 5378 source = "registry+https://github.com/rust-lang/crates.io-index" 5379 - checksum = "03fc02bb6072bb397e1d473c6f76c953cda48b4a2d0cce605df284aa74a12e84" 5380 dependencies = [ 5381 "brotli", 5382 "ctor", 5383 "dunce", 5384 "glob", 5385 "heck 0.4.1", 5386 - "html5ever", 5387 "infer", 5388 "json-patch", 5389 - "kuchiki", 5390 "memchr", 5391 "phf 0.10.1", 5392 "proc-macro2", ··· 5408 checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 5409 dependencies = [ 5410 "embed-resource", 5411 - "toml 0.7.6", 5412 ] 5413 5414 [[package]] ··· 5428 checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 5429 dependencies = [ 5430 "cfg-if", 5431 - "fastrand 2.0.0", 5432 "redox_syscall 0.3.5", 5433 - "rustix 0.38.10", 5434 "windows-sys 0.48.0", 5435 ] 5436 ··· 5453 5454 [[package]] 5455 name = "thiserror" 5456 - version = "1.0.47" 5457 source = "registry+https://github.com/rust-lang/crates.io-index" 5458 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 5459 dependencies = [ 5460 "thiserror-impl", 5461 ] 5462 5463 [[package]] 5464 name = "thiserror-impl" 5465 - version = "1.0.47" 5466 source = "registry+https://github.com/rust-lang/crates.io-index" 5467 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 5468 dependencies = [ 5469 "proc-macro2", 5470 "quote", 5471 - "syn 2.0.29", 5472 ] 5473 5474 [[package]] ··· 5494 5495 [[package]] 5496 name = "time" 5497 - version = "0.1.45" 5498 - source = "registry+https://github.com/rust-lang/crates.io-index" 5499 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 5500 - dependencies = [ 5501 - "libc", 5502 - "wasi 0.10.0+wasi-snapshot-preview1", 5503 - "winapi", 5504 - ] 5505 - 5506 - [[package]] 5507 - name = "time" 5508 - version = "0.3.28" 5509 source = "registry+https://github.com/rust-lang/crates.io-index" 5510 - checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" 5511 dependencies = [ 5512 "deranged", 5513 "itoa 1.0.9", ··· 5520 5521 [[package]] 5522 name = "time-core" 5523 - version = "0.1.1" 5524 source = "registry+https://github.com/rust-lang/crates.io-index" 5525 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 5526 5527 [[package]] 5528 name = "time-macros" 5529 - version = "0.2.14" 5530 source = "registry+https://github.com/rust-lang/crates.io-index" 5531 - checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" 5532 dependencies = [ 5533 "time-core", 5534 ] ··· 5571 5572 [[package]] 5573 name = "tokio" 5574 - version = "1.32.0" 5575 source = "registry+https://github.com/rust-lang/crates.io-index" 5576 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 5577 dependencies = [ 5578 "backtrace", 5579 "bytes", ··· 5581 "mio", 5582 "num_cpus", 5583 "pin-project-lite", 5584 - "socket2 0.5.3", 5585 "windows-sys 0.48.0", 5586 ] 5587 ··· 5608 5609 [[package]] 5610 name = "tokio-util" 5611 - version = "0.7.8" 5612 source = "registry+https://github.com/rust-lang/crates.io-index" 5613 - checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 5614 dependencies = [ 5615 "bytes", 5616 "futures-core", ··· 5631 5632 [[package]] 5633 name = "toml" 5634 - version = "0.7.6" 5635 source = "registry+https://github.com/rust-lang/crates.io-index" 5636 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 5637 dependencies = [ 5638 "serde", 5639 "serde_spanned", 5640 "toml_datetime", 5641 - "toml_edit", 5642 ] 5643 5644 [[package]] ··· 5652 5653 [[package]] 5654 name = "toml_edit" 5655 - version = "0.19.14" 5656 source = "registry+https://github.com/rust-lang/crates.io-index" 5657 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 5658 dependencies = [ 5659 - "indexmap 2.0.0", 5660 "serde", 5661 "serde_spanned", 5662 "toml_datetime", ··· 5690 dependencies = [ 5691 "proc-macro2", 5692 "quote", 5693 - "syn 2.0.29", 5694 ] 5695 5696 [[package]] ··· 5763 5764 [[package]] 5765 name = "typenum" 5766 - version = "1.16.0" 5767 source = "registry+https://github.com/rust-lang/crates.io-index" 5768 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 5769 5770 [[package]] 5771 name = "uds_windows" ··· 5794 5795 [[package]] 5796 name = "unicode-ident" 5797 - version = "1.0.11" 5798 source = "registry+https://github.com/rust-lang/crates.io-index" 5799 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 5800 5801 [[package]] 5802 name = "unicode-normalization" ··· 5916 5917 [[package]] 5918 name = "waker-fn" 5919 - version = "1.1.0" 5920 source = "registry+https://github.com/rust-lang/crates.io-index" 5921 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 5922 5923 [[package]] 5924 name = "walkdir" 5925 - version = "2.3.3" 5926 source = "registry+https://github.com/rust-lang/crates.io-index" 5927 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 5928 dependencies = [ 5929 "same-file", 5930 "winapi-util", ··· 5947 5948 [[package]] 5949 name = "wasi" 5950 - version = "0.10.0+wasi-snapshot-preview1" 5951 - source = "registry+https://github.com/rust-lang/crates.io-index" 5952 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 5953 - 5954 - [[package]] 5955 - name = "wasi" 5956 version = "0.11.0+wasi-snapshot-preview1" 5957 source = "registry+https://github.com/rust-lang/crates.io-index" 5958 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ··· 5978 "once_cell", 5979 "proc-macro2", 5980 "quote", 5981 - "syn 2.0.29", 5982 "wasm-bindgen-shared", 5983 ] 5984 ··· 6012 dependencies = [ 6013 "proc-macro2", 6014 "quote", 6015 - "syn 2.0.29", 6016 "wasm-bindgen-backend", 6017 "wasm-bindgen-shared", 6018 ] ··· 6149 "pango-sys", 6150 "pkg-config", 6151 "soup2-sys", 6152 - "system-deps 6.1.1", 6153 ] 6154 6155 [[package]] ··· 6235 6236 [[package]] 6237 name = "winapi-util" 6238 - version = "0.1.5" 6239 source = "registry+https://github.com/rust-lang/crates.io-index" 6240 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 6241 dependencies = [ 6242 "winapi", 6243 ] ··· 6574 6575 [[package]] 6576 name = "winnow" 6577 - version = "0.5.15" 6578 source = "registry+https://github.com/rust-lang/crates.io-index" 6579 - checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 6580 dependencies = [ 6581 "memchr", 6582 ] ··· 6630 6631 [[package]] 6632 name = "wry" 6633 - version = "0.24.3" 6634 source = "registry+https://github.com/rust-lang/crates.io-index" 6635 - checksum = "33748f35413c8a98d45f7a08832d848c0c5915501803d1faade5a4ebcd258cea" 6636 dependencies = [ 6637 "base64 0.13.1", 6638 "block", ··· 6644 "gio", 6645 "glib", 6646 "gtk", 6647 - "html5ever", 6648 "http", 6649 "kuchiki", 6650 "libc", ··· 6750 6751 [[package]] 6752 name = "xml-rs" 6753 - version = "0.8.16" 6754 source = "registry+https://github.com/rust-lang/crates.io-index" 6755 - checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" 6756 6757 [[package]] 6758 name = "zbus" ··· 6773 "byteorder", 6774 "derivative", 6775 "enumflags2", 6776 - "event-listener", 6777 "futures-core", 6778 "futures-sink", 6779 "futures-util", ··· 6842 "hmac", 6843 "pbkdf2", 6844 "sha1", 6845 - "time 0.3.28", 6846 "zstd", 6847 ] 6848
··· 43 44 [[package]] 45 name = "aho-corasick" 46 + version = "1.1.2" 47 source = "registry+https://github.com/rust-lang/crates.io-index" 48 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 49 dependencies = [ 50 "memchr", 51 ] ··· 123 source = "registry+https://github.com/rust-lang/crates.io-index" 124 checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 125 dependencies = [ 126 + "event-listener 2.5.3", 127 "futures-core", 128 ] 129 ··· 134 checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 135 dependencies = [ 136 "concurrent-queue", 137 + "event-listener 2.5.3", 138 "futures-core", 139 ] 140 141 [[package]] 142 name = "async-executor" 143 + version = "1.5.4" 144 source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499" 146 dependencies = [ 147 "async-lock", 148 "async-task", 149 "concurrent-queue", 150 + "fastrand 2.0.1", 151 "futures-lite", 152 "slab", 153 ] ··· 178 "log", 179 "parking", 180 "polling", 181 + "rustix 0.37.24", 182 "slab", 183 "socket2 0.4.9", 184 "waker-fn", ··· 190 source = "registry+https://github.com/rust-lang/crates.io-index" 191 checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 192 dependencies = [ 193 + "event-listener 2.5.3", 194 ] 195 196 [[package]] 197 name = "async-process" 198 + version = "1.8.1" 199 source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 201 dependencies = [ 202 "async-io", 203 "async-lock", 204 + "async-signal", 205 "blocking", 206 "cfg-if", 207 + "event-listener 3.0.0", 208 "futures-lite", 209 + "rustix 0.38.18", 210 "windows-sys 0.48.0", 211 ] 212 213 [[package]] 214 name = "async-recursion" 215 + version = "1.0.5" 216 source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 218 dependencies = [ 219 "proc-macro2", 220 "quote", 221 + "syn 2.0.38", 222 + ] 223 + 224 + [[package]] 225 + name = "async-signal" 226 + version = "0.2.4" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "d2a5415b7abcdc9cd7d63d6badba5288b2ca017e3fbd4173b8f405449f1a2399" 229 + dependencies = [ 230 + "async-io", 231 + "async-lock", 232 + "atomic-waker", 233 + "cfg-if", 234 + "futures-core", 235 + "futures-io", 236 + "rustix 0.38.18", 237 + "signal-hook-registry", 238 + "slab", 239 + "windows-sys 0.48.0", 240 ] 241 242 [[package]] 243 name = "async-task" 244 + version = "4.4.1" 245 source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921" 247 248 [[package]] 249 name = "async-trait" ··· 253 dependencies = [ 254 "proc-macro2", 255 "quote", 256 + "syn 2.0.38", 257 ] 258 259 [[package]] ··· 277 "glib-sys", 278 "gobject-sys", 279 "libc", 280 + "system-deps 6.1.2", 281 ] 282 283 [[package]] ··· 291 292 [[package]] 293 name = "atomic-waker" 294 + version = "1.1.2" 295 source = "registry+https://github.com/rust-lang/crates.io-index" 296 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 297 298 [[package]] 299 name = "auto-launch" 300 + version = "0.5.0" 301 source = "registry+https://github.com/rust-lang/crates.io-index" 302 + checksum = "1f012b8cc0c850f34117ec8252a44418f2e34a2cf501de89e29b241ae5f79471" 303 dependencies = [ 304 "dirs 4.0.0", 305 "thiserror", ··· 335 336 [[package]] 337 name = "base64" 338 + version = "0.21.4" 339 source = "registry+https://github.com/rust-lang/crates.io-index" 340 + checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 341 342 [[package]] 343 name = "base64ct" ··· 383 384 [[package]] 385 name = "blocking" 386 + version = "1.4.1" 387 source = "registry+https://github.com/rust-lang/crates.io-index" 388 + checksum = "8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a" 389 dependencies = [ 390 "async-channel", 391 "async-lock", 392 "async-task", 393 + "fastrand 2.0.1", 394 + "futures-io", 395 "futures-lite", 396 + "piper", 397 + "tracing", 398 ] 399 400 [[package]] 401 name = "brotli" 402 + version = "3.4.0" 403 source = "registry+https://github.com/rust-lang/crates.io-index" 404 + checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" 405 dependencies = [ 406 "alloc-no-stdlib", 407 "alloc-stdlib", ··· 410 411 [[package]] 412 name = "brotli-decompressor" 413 + version = "2.5.0" 414 source = "registry+https://github.com/rust-lang/crates.io-index" 415 + checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" 416 dependencies = [ 417 "alloc-no-stdlib", 418 "alloc-stdlib", ··· 430 431 [[package]] 432 name = "bumpalo" 433 + version = "3.14.0" 434 source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 436 437 [[package]] 438 name = "byte-unit" ··· 446 447 [[package]] 448 name = "bytecount" 449 + version = "0.6.4" 450 source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "ad152d03a2c813c80bb94fedbf3a3f02b28f793e39e7c214c8a0bcc196343de7" 452 453 [[package]] 454 name = "bytemuck" 455 + version = "1.14.0" 456 source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 458 459 [[package]] 460 name = "byteorder" 461 + version = "1.5.0" 462 source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 464 465 [[package]] 466 name = "bytes" 467 + version = "1.5.0" 468 source = "registry+https://github.com/rust-lang/crates.io-index" 469 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 470 dependencies = [ 471 "serde", 472 ] ··· 513 dependencies = [ 514 "glib-sys", 515 "libc", 516 + "system-deps 6.1.2", 517 ] 518 519 [[package]] ··· 523 checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838" 524 dependencies = [ 525 "serde", 526 + "toml 0.7.8", 527 ] 528 529 [[package]] ··· 573 574 [[package]] 575 name = "cfg-expr" 576 + version = "0.15.5" 577 source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" 579 dependencies = [ 580 "smallvec", 581 "target-lexicon", ··· 589 590 [[package]] 591 name = "chrono" 592 + version = "0.4.31" 593 source = "registry+https://github.com/rust-lang/crates.io-index" 594 + checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 595 dependencies = [ 596 "android-tzdata", 597 "iana-time-zone", 598 "js-sys", 599 "num-traits", 600 "serde", 601 "wasm-bindgen", 602 "windows-targets 0.48.5", 603 ] ··· 647 648 [[package]] 649 name = "cocoa-foundation" 650 + version = "0.1.2" 651 source = "registry+https://github.com/rust-lang/crates.io-index" 652 + checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 653 dependencies = [ 654 "bitflags 1.3.2", 655 "block", 656 "core-foundation", 657 "core-graphics-types", 658 "libc", 659 "objc", 660 ] ··· 690 691 [[package]] 692 name = "concurrent-queue" 693 + version = "2.3.0" 694 source = "registry+https://github.com/rust-lang/crates.io-index" 695 + checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" 696 dependencies = [ 697 "crossbeam-utils", 698 ] ··· 916 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 917 dependencies = [ 918 "quote", 919 + "syn 2.0.38", 920 ] 921 922 [[package]] ··· 950 "proc-macro2", 951 "quote", 952 "strsim", 953 + "syn 2.0.38", 954 ] 955 956 [[package]] ··· 961 dependencies = [ 962 "darling_core", 963 "quote", 964 + "syn 2.0.38", 965 ] 966 967 [[package]] ··· 1181 1182 [[package]] 1183 name = "embed-resource" 1184 + version = "2.4.0" 1185 source = "registry+https://github.com/rust-lang/crates.io-index" 1186 + checksum = "f54cc3e827ee1c3812239a9a41dede7b4d7d5d5464faa32d71bd7cba28ce2cb2" 1187 dependencies = [ 1188 "cc", 1189 "rustc_version", 1190 + "toml 0.8.2", 1191 "vswhom", 1192 "winreg 0.51.0", 1193 ] ··· 1222 1223 [[package]] 1224 name = "enumflags2" 1225 + version = "0.7.8" 1226 source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" 1228 dependencies = [ 1229 "enumflags2_derive", 1230 "serde", ··· 1232 1233 [[package]] 1234 name = "enumflags2_derive" 1235 + version = "0.7.8" 1236 source = "registry+https://github.com/rust-lang/crates.io-index" 1237 + checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" 1238 dependencies = [ 1239 "proc-macro2", 1240 "quote", 1241 + "syn 2.0.38", 1242 ] 1243 1244 [[package]] ··· 1249 1250 [[package]] 1251 name = "errno" 1252 + version = "0.3.5" 1253 source = "registry+https://github.com/rust-lang/crates.io-index" 1254 + checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" 1255 dependencies = [ 1256 "libc", 1257 "windows-sys 0.48.0", 1258 ] 1259 1260 [[package]] 1261 name = "error-code" 1262 version = "2.3.1" 1263 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1285 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1286 1287 [[package]] 1288 + name = "event-listener" 1289 + version = "3.0.0" 1290 + source = "registry+https://github.com/rust-lang/crates.io-index" 1291 + checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325" 1292 + dependencies = [ 1293 + "concurrent-queue", 1294 + "parking", 1295 + "pin-project-lite", 1296 + ] 1297 + 1298 + [[package]] 1299 name = "exr" 1300 + version = "1.71.0" 1301 source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" 1303 dependencies = [ 1304 "bit_field", 1305 "flume", ··· 1322 1323 [[package]] 1324 name = "fastrand" 1325 + version = "2.0.1" 1326 source = "registry+https://github.com/rust-lang/crates.io-index" 1327 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1328 1329 [[package]] 1330 name = "fdeflate" ··· 1390 1391 [[package]] 1392 name = "flume" 1393 + version = "0.11.0" 1394 source = "registry+https://github.com/rust-lang/crates.io-index" 1395 + checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1396 dependencies = [ 1397 "futures-core", 1398 "futures-sink", 1399 "spin 0.9.8", 1400 ] 1401 ··· 1432 dependencies = [ 1433 "proc-macro2", 1434 "quote", 1435 + "syn 2.0.38", 1436 ] 1437 1438 [[package]] ··· 1552 dependencies = [ 1553 "proc-macro2", 1554 "quote", 1555 + "syn 2.0.38", 1556 ] 1557 1558 [[package]] ··· 1632 "glib-sys", 1633 "gobject-sys", 1634 "libc", 1635 + "system-deps 6.1.2", 1636 ] 1637 1638 [[package]] ··· 1649 "libc", 1650 "pango-sys", 1651 "pkg-config", 1652 + "system-deps 6.1.2", 1653 ] 1654 1655 [[package]] ··· 1663 "gobject-sys", 1664 "libc", 1665 "pkg-config", 1666 + "system-deps 6.1.2", 1667 ] 1668 1669 [[package]] ··· 1675 "gdk-sys", 1676 "glib-sys", 1677 "libc", 1678 + "system-deps 6.1.2", 1679 "x11", 1680 ] 1681 ··· 1730 checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1731 dependencies = [ 1732 "cfg-if", 1733 "libc", 1734 "wasi 0.11.0+wasi-snapshot-preview1", 1735 ] 1736 1737 [[package]] ··· 1776 "glib-sys", 1777 "gobject-sys", 1778 "libc", 1779 + "system-deps 6.1.2", 1780 "winapi", 1781 ] 1782 ··· 1822 checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1823 dependencies = [ 1824 "libc", 1825 + "system-deps 6.1.2", 1826 ] 1827 1828 [[package]] ··· 1852 dependencies = [ 1853 "glib-sys", 1854 "libc", 1855 + "system-deps 6.1.2", 1856 ] 1857 1858 [[package]] ··· 1893 "gobject-sys", 1894 "libc", 1895 "pango-sys", 1896 + "system-deps 6.1.2", 1897 ] 1898 1899 [[package]] ··· 1946 1947 [[package]] 1948 name = "hashbrown" 1949 + version = "0.14.1" 1950 source = "registry+https://github.com/rust-lang/crates.io-index" 1951 + checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" 1952 dependencies = [ 1953 "ahash", 1954 "allocator-api2", ··· 1960 source = "registry+https://github.com/rust-lang/crates.io-index" 1961 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1962 dependencies = [ 1963 + "hashbrown 0.14.1", 1964 ] 1965 1966 [[package]] ··· 1983 1984 [[package]] 1985 name = "hermit-abi" 1986 + version = "0.3.3" 1987 source = "registry+https://github.com/rust-lang/crates.io-index" 1988 + checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 1989 1990 [[package]] 1991 name = "hex" ··· 2028 dependencies = [ 2029 "log", 2030 "mac", 2031 + "markup5ever 0.10.1", 2032 + "proc-macro2", 2033 + "quote", 2034 + "syn 1.0.109", 2035 + ] 2036 + 2037 + [[package]] 2038 + name = "html5ever" 2039 + version = "0.26.0" 2040 + source = "registry+https://github.com/rust-lang/crates.io-index" 2041 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 2042 + dependencies = [ 2043 + "log", 2044 + "mac", 2045 + "markup5ever 0.11.0", 2046 "proc-macro2", 2047 "quote", 2048 "syn 1.0.109", ··· 2242 2243 [[package]] 2244 name = "indexmap" 2245 + version = "2.0.2" 2246 source = "registry+https://github.com/rust-lang/crates.io-index" 2247 + checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" 2248 dependencies = [ 2249 "equivalent", 2250 + "hashbrown 0.14.1", 2251 "serde", 2252 ] 2253 ··· 2417 2418 [[package]] 2419 name = "json-patch" 2420 + version = "1.1.0" 2421 source = "registry+https://github.com/rust-lang/crates.io-index" 2422 + checksum = "4f7765dccf8c39c3a470fc694efe322969d791e713ca46bc7b5c506886157572" 2423 dependencies = [ 2424 "serde", 2425 "serde_json", ··· 2454 checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 2455 dependencies = [ 2456 "cssparser", 2457 + "html5ever 0.25.2", 2458 + "matches", 2459 + "selectors", 2460 + ] 2461 + 2462 + [[package]] 2463 + name = "kuchikiki" 2464 + version = "0.8.2" 2465 + source = "registry+https://github.com/rust-lang/crates.io-index" 2466 + checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 2467 + dependencies = [ 2468 + "cssparser", 2469 + "html5ever 0.26.0", 2470 + "indexmap 1.9.3", 2471 "matches", 2472 "selectors", 2473 ] ··· 2513 2514 [[package]] 2515 name = "libc" 2516 + version = "0.2.149" 2517 source = "registry+https://github.com/rust-lang/crates.io-index" 2518 + checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 2519 2520 [[package]] 2521 name = "libdbus-sys" ··· 2548 2549 [[package]] 2550 name = "libloading" 2551 + version = "0.8.1" 2552 source = "registry+https://github.com/rust-lang/crates.io-index" 2553 + checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161" 2554 dependencies = [ 2555 "cfg-if", 2556 "windows-sys 0.48.0", ··· 2558 2559 [[package]] 2560 name = "libm" 2561 + version = "0.2.8" 2562 source = "registry+https://github.com/rust-lang/crates.io-index" 2563 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2564 2565 [[package]] 2566 name = "libsqlite3-sys" ··· 2794 2795 [[package]] 2796 name = "linux-raw-sys" 2797 + version = "0.4.10" 2798 source = "registry+https://github.com/rust-lang/crates.io-index" 2799 + checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 2800 2801 [[package]] 2802 name = "lock_api" ··· 2848 "dirs-next", 2849 "objc-foundation", 2850 "objc_id", 2851 + "time", 2852 + ] 2853 + 2854 + [[package]] 2855 + name = "macos-accessibility-client" 2856 + version = "0.0.1" 2857 + source = "registry+https://github.com/rust-lang/crates.io-index" 2858 + checksum = "edf7710fbff50c24124331760978fb9086d6de6288dcdb38b25a97f8b1bdebbb" 2859 + dependencies = [ 2860 + "core-foundation", 2861 + "core-foundation-sys", 2862 ] 2863 2864 [[package]] ··· 2884 dependencies = [ 2885 "log", 2886 "phf 0.8.0", 2887 + "phf_codegen 0.8.0", 2888 + "string_cache", 2889 + "string_cache_codegen", 2890 + "tendril", 2891 + ] 2892 + 2893 + [[package]] 2894 + name = "markup5ever" 2895 + version = "0.11.0" 2896 + source = "registry+https://github.com/rust-lang/crates.io-index" 2897 + checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2898 + dependencies = [ 2899 + "log", 2900 + "phf 0.10.1", 2901 + "phf_codegen 0.10.0", 2902 "string_cache", 2903 "string_cache_codegen", 2904 "tendril", ··· 2921 2922 [[package]] 2923 name = "md-5" 2924 + version = "0.10.6" 2925 source = "registry+https://github.com/rust-lang/crates.io-index" 2926 + checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2927 dependencies = [ 2928 + "cfg-if", 2929 "digest", 2930 ] 2931 2932 [[package]] 2933 name = "memchr" 2934 + version = "2.6.4" 2935 source = "registry+https://github.com/rust-lang/crates.io-index" 2936 + checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 2937 2938 [[package]] 2939 name = "memoffset" ··· 3024 ] 3025 3026 [[package]] 3027 name = "native-tls" 3028 version = "0.2.11" 3029 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3137 3138 [[package]] 3139 name = "notify-debouncer-mini" 3140 + version = "0.4.1" 3141 source = "registry+https://github.com/rust-lang/crates.io-index" 3142 + checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" 3143 dependencies = [ 3144 "crossbeam-channel", 3145 + "log", 3146 "notify", 3147 "serde", 3148 ] ··· 3256 3257 [[package]] 3258 name = "num-traits" 3259 + version = "0.2.17" 3260 source = "registry+https://github.com/rust-lang/crates.io-index" 3261 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3262 dependencies = [ 3263 "autocfg", 3264 "libm", ··· 3345 3346 [[package]] 3347 name = "object" 3348 + version = "0.32.1" 3349 source = "registry+https://github.com/rust-lang/crates.io-index" 3350 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3351 dependencies = [ 3352 "memchr", 3353 ] ··· 3391 dependencies = [ 3392 "proc-macro2", 3393 "quote", 3394 + "syn 2.0.38", 3395 ] 3396 3397 [[package]] ··· 3402 3403 [[package]] 3404 name = "openssl-sys" 3405 + version = "0.9.93" 3406 source = "registry+https://github.com/rust-lang/crates.io-index" 3407 + checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 3408 dependencies = [ 3409 "cc", 3410 "libc", ··· 3477 "glib-sys", 3478 "gobject-sys", 3479 "libc", 3480 + "system-deps 6.1.2", 3481 ] 3482 3483 [[package]] 3484 name = "parking" 3485 + version = "2.1.1" 3486 source = "registry+https://github.com/rust-lang/crates.io-index" 3487 + checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" 3488 3489 [[package]] 3490 name = "parking_lot" ··· 3566 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 3567 dependencies = [ 3568 "fixedbitset", 3569 + "indexmap 2.0.2", 3570 ] 3571 3572 [[package]] ··· 3602 ] 3603 3604 [[package]] 3605 + name = "phf_codegen" 3606 + version = "0.10.0" 3607 + source = "registry+https://github.com/rust-lang/crates.io-index" 3608 + checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 3609 + dependencies = [ 3610 + "phf_generator 0.10.0", 3611 + "phf_shared 0.10.0", 3612 + ] 3613 + 3614 + [[package]] 3615 name = "phf_generator" 3616 version = "0.8.0" 3617 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3678 ] 3679 3680 [[package]] 3681 name = "pin-project-lite" 3682 version = "0.2.13" 3683 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3690 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3691 3692 [[package]] 3693 + name = "piper" 3694 + version = "0.2.1" 3695 + source = "registry+https://github.com/rust-lang/crates.io-index" 3696 + checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" 3697 + dependencies = [ 3698 + "atomic-waker", 3699 + "fastrand 2.0.1", 3700 + "futures-io", 3701 + ] 3702 + 3703 + [[package]] 3704 name = "pkcs1" 3705 version = "0.7.5" 3706 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3733 source = "registry+https://github.com/rust-lang/crates.io-index" 3734 checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" 3735 dependencies = [ 3736 + "base64 0.21.4", 3737 "indexmap 1.9.3", 3738 "line-wrap", 3739 "quick-xml 0.29.0", 3740 "serde", 3741 + "time", 3742 ] 3743 3744 [[package]] ··· 3775 version = "0.0.0" 3776 dependencies = [ 3777 "arboard", 3778 + "base64 0.21.4", 3779 "dirs 5.0.1", 3780 "image", 3781 "libloader", 3782 + "libloading 0.8.1", 3783 "lingua", 3784 "log", 3785 + "macos-accessibility-client", 3786 "mouse_position", 3787 "once_cell", 3788 "reqwest_dav", ··· 3825 checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3826 dependencies = [ 3827 "once_cell", 3828 + "toml_edit 0.19.15", 3829 ] 3830 3831 [[package]] ··· 3860 3861 [[package]] 3862 name = "proc-macro2" 3863 + version = "1.0.69" 3864 source = "registry+https://github.com/rust-lang/crates.io-index" 3865 + checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 3866 dependencies = [ 3867 "unicode-ident", 3868 ] ··· 4001 4002 [[package]] 4003 name = "rayon" 4004 + version = "1.8.0" 4005 source = "registry+https://github.com/rust-lang/crates.io-index" 4006 + checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 4007 dependencies = [ 4008 "either", 4009 "rayon-core", ··· 4011 4012 [[package]] 4013 name = "rayon-core" 4014 + version = "1.12.0" 4015 source = "registry+https://github.com/rust-lang/crates.io-index" 4016 + checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 4017 dependencies = [ 4018 "crossbeam-deque", 4019 "crossbeam-utils", 4020 ] 4021 4022 [[package]] ··· 4050 4051 [[package]] 4052 name = "regex" 4053 + version = "1.9.6" 4054 source = "registry+https://github.com/rust-lang/crates.io-index" 4055 + checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" 4056 dependencies = [ 4057 "aho-corasick", 4058 "memchr", 4059 + "regex-automata 0.3.9", 4060 "regex-syntax 0.7.5", 4061 ] 4062 ··· 4071 4072 [[package]] 4073 name = "regex-automata" 4074 + version = "0.3.9" 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 4076 + checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" 4077 dependencies = [ 4078 "aho-corasick", 4079 "memchr", ··· 4094 4095 [[package]] 4096 name = "reqwest" 4097 + version = "0.11.22" 4098 source = "registry+https://github.com/rust-lang/crates.io-index" 4099 + checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 4100 dependencies = [ 4101 + "base64 0.21.4", 4102 "bytes", 4103 "encoding_rs", 4104 "futures-core", ··· 4120 "serde", 4121 "serde_json", 4122 "serde_urlencoded", 4123 + "system-configuration", 4124 "tokio", 4125 "tokio-native-tls", 4126 "tokio-util", ··· 4135 4136 [[package]] 4137 name = "reqwest_dav" 4138 + version = "0.1.4" 4139 + source = "registry+https://github.com/rust-lang/crates.io-index" 4140 + checksum = "fb731945e2fa330114abcab8ea68ba22e4f5943853c45adb2cdd19c68a46930b" 4141 dependencies = [ 4142 "async-trait", 4143 "chrono", ··· 4230 4231 [[package]] 4232 name = "rustix" 4233 + version = "0.37.24" 4234 source = "registry+https://github.com/rust-lang/crates.io-index" 4235 + checksum = "4279d76516df406a8bd37e7dff53fd37d1a093f997a3c34a5c21658c126db06d" 4236 dependencies = [ 4237 "bitflags 1.3.2", 4238 "errno", ··· 4244 4245 [[package]] 4246 name = "rustix" 4247 + version = "0.38.18" 4248 source = "registry+https://github.com/rust-lang/crates.io-index" 4249 + checksum = "5a74ee2d7c2581cd139b42447d7d9389b889bdaad3a73f1ebb16f2a3237bb19c" 4250 dependencies = [ 4251 "bitflags 2.4.0", 4252 "errno", 4253 "libc", 4254 + "linux-raw-sys 0.4.10", 4255 "windows-sys 0.48.0", 4256 ] 4257 ··· 4272 source = "registry+https://github.com/rust-lang/crates.io-index" 4273 checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 4274 dependencies = [ 4275 + "base64 0.21.4", 4276 ] 4277 4278 [[package]] 4279 name = "rustls-webpki" 4280 + version = "0.101.6" 4281 source = "registry+https://github.com/rust-lang/crates.io-index" 4282 + checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" 4283 dependencies = [ 4284 "ring", 4285 "untrusted", ··· 4410 "log", 4411 "matches", 4412 "phf 0.8.0", 4413 + "phf_codegen 0.8.0", 4414 "precomputed-hash", 4415 "servo_arc", 4416 "smallvec", ··· 4419 4420 [[package]] 4421 name = "semver" 4422 + version = "1.0.19" 4423 source = "registry+https://github.com/rust-lang/crates.io-index" 4424 + checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0" 4425 dependencies = [ 4426 "serde", 4427 ] ··· 4466 dependencies = [ 4467 "proc-macro2", 4468 "quote", 4469 + "syn 2.0.38", 4470 ] 4471 4472 [[package]] 4473 name = "serde_json" 4474 + version = "1.0.107" 4475 source = "registry+https://github.com/rust-lang/crates.io-index" 4476 + checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 4477 dependencies = [ 4478 "itoa 1.0.9", 4479 "ryu", ··· 4488 dependencies = [ 4489 "proc-macro2", 4490 "quote", 4491 + "syn 2.0.38", 4492 ] 4493 4494 [[package]] ··· 4518 source = "registry+https://github.com/rust-lang/crates.io-index" 4519 checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237" 4520 dependencies = [ 4521 + "base64 0.21.4", 4522 "chrono", 4523 "hex", 4524 "indexmap 1.9.3", 4525 + "indexmap 2.0.2", 4526 "serde", 4527 "serde_json", 4528 "serde_with_macros", 4529 + "time", 4530 ] 4531 4532 [[package]] ··· 4538 "darling", 4539 "proc-macro2", 4540 "quote", 4541 + "syn 2.0.38", 4542 ] 4543 4544 [[package]] ··· 4575 4576 [[package]] 4577 name = "sha1" 4578 + version = "0.10.6" 4579 source = "registry+https://github.com/rust-lang/crates.io-index" 4580 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4581 dependencies = [ 4582 "cfg-if", 4583 "cpufeatures", ··· 4586 4587 [[package]] 4588 name = "sha2" 4589 + version = "0.10.8" 4590 source = "registry+https://github.com/rust-lang/crates.io-index" 4591 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 4592 dependencies = [ 4593 "cfg-if", 4594 "cpufeatures", ··· 4597 4598 [[package]] 4599 name = "sharded-slab" 4600 + version = "0.1.7" 4601 source = "registry+https://github.com/rust-lang/crates.io-index" 4602 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 4603 dependencies = [ 4604 "lazy_static", 4605 ] ··· 4612 dependencies = [ 4613 "libc", 4614 "winapi", 4615 ] 4616 4617 [[package]] ··· 4656 4657 [[package]] 4658 name = "smallvec" 4659 + version = "1.11.1" 4660 source = "registry+https://github.com/rust-lang/crates.io-index" 4661 + checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" 4662 4663 [[package]] 4664 name = "socket2" ··· 4672 4673 [[package]] 4674 name = "socket2" 4675 + version = "0.5.4" 4676 source = "registry+https://github.com/rust-lang/crates.io-index" 4677 + checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" 4678 dependencies = [ 4679 "libc", 4680 "windows-sys 0.48.0", ··· 4746 4747 [[package]] 4748 name = "sqlx" 4749 + version = "0.7.2" 4750 source = "registry+https://github.com/rust-lang/crates.io-index" 4751 + checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33" 4752 dependencies = [ 4753 "sqlx-core", 4754 "sqlx-macros", ··· 4759 4760 [[package]] 4761 name = "sqlx-core" 4762 + version = "0.7.2" 4763 source = "registry+https://github.com/rust-lang/crates.io-index" 4764 + checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d" 4765 dependencies = [ 4766 "ahash", 4767 "atoi", ··· 4771 "crossbeam-queue", 4772 "dotenvy", 4773 "either", 4774 + "event-listener 2.5.3", 4775 "futures-channel", 4776 "futures-core", 4777 "futures-intrusive", ··· 4779 "futures-util", 4780 "hashlink", 4781 "hex", 4782 + "indexmap 2.0.2", 4783 "log", 4784 "memchr", 4785 "once_cell", ··· 4793 "smallvec", 4794 "sqlformat", 4795 "thiserror", 4796 + "time", 4797 "tokio", 4798 "tokio-stream", 4799 "tracing", ··· 4803 4804 [[package]] 4805 name = "sqlx-macros" 4806 + version = "0.7.2" 4807 source = "registry+https://github.com/rust-lang/crates.io-index" 4808 + checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec" 4809 dependencies = [ 4810 "proc-macro2", 4811 "quote", ··· 4816 4817 [[package]] 4818 name = "sqlx-macros-core" 4819 + version = "0.7.2" 4820 source = "registry+https://github.com/rust-lang/crates.io-index" 4821 + checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc" 4822 dependencies = [ 4823 "dotenvy", 4824 "either", ··· 4842 4843 [[package]] 4844 name = "sqlx-mysql" 4845 + version = "0.7.2" 4846 source = "registry+https://github.com/rust-lang/crates.io-index" 4847 + checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db" 4848 dependencies = [ 4849 "atoi", 4850 + "base64 0.21.4", 4851 "bitflags 2.4.0", 4852 "byteorder", 4853 "bytes", ··· 4878 "sqlx-core", 4879 "stringprep", 4880 "thiserror", 4881 + "time", 4882 "tracing", 4883 "whoami", 4884 ] 4885 4886 [[package]] 4887 name = "sqlx-postgres" 4888 + version = "0.7.2" 4889 source = "registry+https://github.com/rust-lang/crates.io-index" 4890 + checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624" 4891 dependencies = [ 4892 "atoi", 4893 + "base64 0.21.4", 4894 "bitflags 2.4.0", 4895 "byteorder", 4896 "crc", ··· 4918 "sqlx-core", 4919 "stringprep", 4920 "thiserror", 4921 + "time", 4922 "tracing", 4923 "whoami", 4924 ] 4925 4926 [[package]] 4927 name = "sqlx-sqlite" 4928 + version = "0.7.2" 4929 source = "registry+https://github.com/rust-lang/crates.io-index" 4930 + checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f" 4931 dependencies = [ 4932 "atoi", 4933 "flume", ··· 4941 "percent-encoding", 4942 "serde", 4943 "sqlx-core", 4944 + "time", 4945 "tracing", 4946 "url", 4947 ] ··· 5054 5055 [[package]] 5056 name = "syn" 5057 + version = "2.0.38" 5058 source = "registry+https://github.com/rust-lang/crates.io-index" 5059 + checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 5060 dependencies = [ 5061 "proc-macro2", 5062 "quote", ··· 5077 ] 5078 5079 [[package]] 5080 + name = "system-configuration" 5081 + version = "0.5.1" 5082 + source = "registry+https://github.com/rust-lang/crates.io-index" 5083 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 5084 + dependencies = [ 5085 + "bitflags 1.3.2", 5086 + "core-foundation", 5087 + "system-configuration-sys", 5088 + ] 5089 + 5090 + [[package]] 5091 + name = "system-configuration-sys" 5092 + version = "0.5.0" 5093 + source = "registry+https://github.com/rust-lang/crates.io-index" 5094 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 5095 + dependencies = [ 5096 + "core-foundation-sys", 5097 + "libc", 5098 + ] 5099 + 5100 + [[package]] 5101 name = "system-deps" 5102 version = "5.0.0" 5103 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5112 5113 [[package]] 5114 name = "system-deps" 5115 + version = "6.1.2" 5116 source = "registry+https://github.com/rust-lang/crates.io-index" 5117 + checksum = "94af52f9402f94aac4948a2518b43359be8d9ce6cd9efc1c4de3b2f7b7e897d6" 5118 dependencies = [ 5119 + "cfg-expr 0.15.5", 5120 "heck 0.4.1", 5121 "pkg-config", 5122 + "toml 0.8.2", 5123 "version-compare 0.1.1", 5124 ] 5125 5126 [[package]] 5127 name = "tao" 5128 + version = "0.16.4" 5129 source = "registry+https://github.com/rust-lang/crates.io-index" 5130 + checksum = "b768eb5cf657b045d03304b1f60ecb54eac8b520f393c4f4240a94111a1caa17" 5131 dependencies = [ 5132 "bitflags 1.3.2", 5133 "cairo-rs", ··· 5202 5203 [[package]] 5204 name = "tauri" 5205 + version = "1.5.1" 5206 source = "registry+https://github.com/rust-lang/crates.io-index" 5207 + checksum = "0238c5063bf9613054149a1b6bce4935922e532b7d8211f36989a490a79806be" 5208 dependencies = [ 5209 "anyhow", 5210 + "base64 0.21.4", 5211 "bytes", 5212 "cocoa", 5213 "dirs-next", ··· 5249 "tauri-utils", 5250 "tempfile", 5251 "thiserror", 5252 + "time", 5253 "tokio", 5254 "url", 5255 "uuid", ··· 5261 5262 [[package]] 5263 name = "tauri-build" 5264 + version = "1.5.0" 5265 source = "registry+https://github.com/rust-lang/crates.io-index" 5266 + checksum = "defbfc551bd38ab997e5f8e458f87396d2559d05ce32095076ad6c30f7fc5f9c" 5267 dependencies = [ 5268 "anyhow", 5269 "cargo_toml", 5270 + "dirs-next", 5271 "heck 0.4.1", 5272 "json-patch", 5273 "semver", ··· 5275 "serde_json", 5276 "tauri-utils", 5277 "tauri-winres", 5278 + "walkdir", 5279 ] 5280 5281 [[package]] 5282 name = "tauri-codegen" 5283 + version = "1.4.1" 5284 source = "registry+https://github.com/rust-lang/crates.io-index" 5285 + checksum = "7b3475e55acec0b4a50fb96435f19631fb58cbcd31923e1a213de5c382536bbb" 5286 dependencies = [ 5287 + "base64 0.21.4", 5288 "brotli", 5289 "ico", 5290 "json-patch", ··· 5299 "sha2", 5300 "tauri-utils", 5301 "thiserror", 5302 + "time", 5303 "uuid", 5304 "walkdir", 5305 ] 5306 5307 [[package]] 5308 name = "tauri-macros" 5309 + version = "1.4.1" 5310 source = "registry+https://github.com/rust-lang/crates.io-index" 5311 + checksum = "613740228de92d9196b795ac455091d3a5fbdac2654abb8bb07d010b62ab43af" 5312 dependencies = [ 5313 "heck 0.4.1", 5314 "proc-macro2", ··· 5321 [[package]] 5322 name = "tauri-plugin-autostart" 5323 version = "0.0.0" 5324 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5325 dependencies = [ 5326 "auto-launch", 5327 "log", ··· 5334 [[package]] 5335 name = "tauri-plugin-fs-watch" 5336 version = "0.0.0" 5337 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5338 dependencies = [ 5339 "log", 5340 "notify", ··· 5348 [[package]] 5349 name = "tauri-plugin-log" 5350 version = "0.0.0" 5351 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5352 dependencies = [ 5353 "byte-unit", 5354 "fern", ··· 5357 "serde_json", 5358 "serde_repr", 5359 "tauri", 5360 + "time", 5361 ] 5362 5363 [[package]] 5364 name = "tauri-plugin-single-instance" 5365 version = "0.0.0" 5366 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5367 dependencies = [ 5368 "log", 5369 "serde", ··· 5377 [[package]] 5378 name = "tauri-plugin-sql" 5379 version = "0.0.0" 5380 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5381 dependencies = [ 5382 "futures-core", 5383 "log", ··· 5386 "sqlx", 5387 "tauri", 5388 "thiserror", 5389 + "time", 5390 "tokio", 5391 ] 5392 5393 [[package]] 5394 name = "tauri-plugin-store" 5395 version = "0.0.0" 5396 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#07650ca94b70b309a48d499a99ad1ad6519ce17a" 5397 dependencies = [ 5398 "log", 5399 "serde", ··· 5404 5405 [[package]] 5406 name = "tauri-runtime" 5407 + version = "0.14.1" 5408 source = "registry+https://github.com/rust-lang/crates.io-index" 5409 + checksum = "07f8e9e53e00e9f41212c115749e87d5cd2a9eebccafca77a19722eeecd56d43" 5410 dependencies = [ 5411 "gtk", 5412 "http", ··· 5425 5426 [[package]] 5427 name = "tauri-runtime-wry" 5428 + version = "0.14.1" 5429 source = "registry+https://github.com/rust-lang/crates.io-index" 5430 + checksum = "8141d72b6b65f2008911e9ef5b98a68d1e3413b7a1464e8f85eb3673bb19a895" 5431 dependencies = [ 5432 "cocoa", 5433 "gtk", ··· 5445 5446 [[package]] 5447 name = "tauri-utils" 5448 + version = "1.5.0" 5449 source = "registry+https://github.com/rust-lang/crates.io-index" 5450 + checksum = "34d55e185904a84a419308d523c2c6891d5e2dbcee740c4997eb42e75a7b0f46" 5451 dependencies = [ 5452 "brotli", 5453 "ctor", 5454 "dunce", 5455 "glob", 5456 "heck 0.4.1", 5457 + "html5ever 0.26.0", 5458 "infer", 5459 "json-patch", 5460 + "kuchikiki", 5461 + "log", 5462 "memchr", 5463 "phf 0.10.1", 5464 "proc-macro2", ··· 5480 checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 5481 dependencies = [ 5482 "embed-resource", 5483 + "toml 0.7.8", 5484 ] 5485 5486 [[package]] ··· 5500 checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 5501 dependencies = [ 5502 "cfg-if", 5503 + "fastrand 2.0.1", 5504 "redox_syscall 0.3.5", 5505 + "rustix 0.38.18", 5506 "windows-sys 0.48.0", 5507 ] 5508 ··· 5525 5526 [[package]] 5527 name = "thiserror" 5528 + version = "1.0.49" 5529 source = "registry+https://github.com/rust-lang/crates.io-index" 5530 + checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" 5531 dependencies = [ 5532 "thiserror-impl", 5533 ] 5534 5535 [[package]] 5536 name = "thiserror-impl" 5537 + version = "1.0.49" 5538 source = "registry+https://github.com/rust-lang/crates.io-index" 5539 + checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" 5540 dependencies = [ 5541 "proc-macro2", 5542 "quote", 5543 + "syn 2.0.38", 5544 ] 5545 5546 [[package]] ··· 5566 5567 [[package]] 5568 name = "time" 5569 + version = "0.3.29" 5570 source = "registry+https://github.com/rust-lang/crates.io-index" 5571 + checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" 5572 dependencies = [ 5573 "deranged", 5574 "itoa 1.0.9", ··· 5581 5582 [[package]] 5583 name = "time-core" 5584 + version = "0.1.2" 5585 source = "registry+https://github.com/rust-lang/crates.io-index" 5586 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 5587 5588 [[package]] 5589 name = "time-macros" 5590 + version = "0.2.15" 5591 source = "registry+https://github.com/rust-lang/crates.io-index" 5592 + checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 5593 dependencies = [ 5594 "time-core", 5595 ] ··· 5632 5633 [[package]] 5634 name = "tokio" 5635 + version = "1.33.0" 5636 source = "registry+https://github.com/rust-lang/crates.io-index" 5637 + checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" 5638 dependencies = [ 5639 "backtrace", 5640 "bytes", ··· 5642 "mio", 5643 "num_cpus", 5644 "pin-project-lite", 5645 + "socket2 0.5.4", 5646 "windows-sys 0.48.0", 5647 ] 5648 ··· 5669 5670 [[package]] 5671 name = "tokio-util" 5672 + version = "0.7.9" 5673 source = "registry+https://github.com/rust-lang/crates.io-index" 5674 + checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" 5675 dependencies = [ 5676 "bytes", 5677 "futures-core", ··· 5692 5693 [[package]] 5694 name = "toml" 5695 + version = "0.7.8" 5696 source = "registry+https://github.com/rust-lang/crates.io-index" 5697 + checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 5698 dependencies = [ 5699 "serde", 5700 "serde_spanned", 5701 "toml_datetime", 5702 + "toml_edit 0.19.15", 5703 + ] 5704 + 5705 + [[package]] 5706 + name = "toml" 5707 + version = "0.8.2" 5708 + source = "registry+https://github.com/rust-lang/crates.io-index" 5709 + checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 5710 + dependencies = [ 5711 + "serde", 5712 + "serde_spanned", 5713 + "toml_datetime", 5714 + "toml_edit 0.20.2", 5715 ] 5716 5717 [[package]] ··· 5725 5726 [[package]] 5727 name = "toml_edit" 5728 + version = "0.19.15" 5729 source = "registry+https://github.com/rust-lang/crates.io-index" 5730 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5731 dependencies = [ 5732 + "indexmap 2.0.2", 5733 + "serde", 5734 + "serde_spanned", 5735 + "toml_datetime", 5736 + "winnow", 5737 + ] 5738 + 5739 + [[package]] 5740 + name = "toml_edit" 5741 + version = "0.20.2" 5742 + source = "registry+https://github.com/rust-lang/crates.io-index" 5743 + checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 5744 + dependencies = [ 5745 + "indexmap 2.0.2", 5746 "serde", 5747 "serde_spanned", 5748 "toml_datetime", ··· 5776 dependencies = [ 5777 "proc-macro2", 5778 "quote", 5779 + "syn 2.0.38", 5780 ] 5781 5782 [[package]] ··· 5849 5850 [[package]] 5851 name = "typenum" 5852 + version = "1.17.0" 5853 source = "registry+https://github.com/rust-lang/crates.io-index" 5854 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 5855 5856 [[package]] 5857 name = "uds_windows" ··· 5880 5881 [[package]] 5882 name = "unicode-ident" 5883 + version = "1.0.12" 5884 source = "registry+https://github.com/rust-lang/crates.io-index" 5885 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 5886 5887 [[package]] 5888 name = "unicode-normalization" ··· 6002 6003 [[package]] 6004 name = "waker-fn" 6005 + version = "1.1.1" 6006 source = "registry+https://github.com/rust-lang/crates.io-index" 6007 + checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" 6008 6009 [[package]] 6010 name = "walkdir" 6011 + version = "2.4.0" 6012 source = "registry+https://github.com/rust-lang/crates.io-index" 6013 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 6014 dependencies = [ 6015 "same-file", 6016 "winapi-util", ··· 6033 6034 [[package]] 6035 name = "wasi" 6036 version = "0.11.0+wasi-snapshot-preview1" 6037 source = "registry+https://github.com/rust-lang/crates.io-index" 6038 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ··· 6058 "once_cell", 6059 "proc-macro2", 6060 "quote", 6061 + "syn 2.0.38", 6062 "wasm-bindgen-shared", 6063 ] 6064 ··· 6092 dependencies = [ 6093 "proc-macro2", 6094 "quote", 6095 + "syn 2.0.38", 6096 "wasm-bindgen-backend", 6097 "wasm-bindgen-shared", 6098 ] ··· 6229 "pango-sys", 6230 "pkg-config", 6231 "soup2-sys", 6232 + "system-deps 6.1.2", 6233 ] 6234 6235 [[package]] ··· 6315 6316 [[package]] 6317 name = "winapi-util" 6318 + version = "0.1.6" 6319 source = "registry+https://github.com/rust-lang/crates.io-index" 6320 + checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 6321 dependencies = [ 6322 "winapi", 6323 ] ··· 6654 6655 [[package]] 6656 name = "winnow" 6657 + version = "0.5.16" 6658 source = "registry+https://github.com/rust-lang/crates.io-index" 6659 + checksum = "037711d82167854aff2018dfd193aa0fef5370f456732f0d5a0c59b0f1b4b907" 6660 dependencies = [ 6661 "memchr", 6662 ] ··· 6710 6711 [[package]] 6712 name = "wry" 6713 + version = "0.24.4" 6714 source = "registry+https://github.com/rust-lang/crates.io-index" 6715 + checksum = "88ef04bdad49eba2e01f06e53688c8413bd6a87b0bc14b72284465cf96e3578e" 6716 dependencies = [ 6717 "base64 0.13.1", 6718 "block", ··· 6724 "gio", 6725 "glib", 6726 "gtk", 6727 + "html5ever 0.25.2", 6728 "http", 6729 "kuchiki", 6730 "libc", ··· 6830 6831 [[package]] 6832 name = "xml-rs" 6833 + version = "0.8.19" 6834 source = "registry+https://github.com/rust-lang/crates.io-index" 6835 + checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 6836 6837 [[package]] 6838 name = "zbus" ··· 6853 "byteorder", 6854 "derivative", 6855 "enumflags2", 6856 + "event-listener 2.5.3", 6857 "futures-core", 6858 "futures-sink", 6859 "futures-util", ··· 6922 "hmac", 6923 "pbkdf2", 6924 "sha1", 6925 + "time", 6926 "zstd", 6927 ] 6928
+4 -5
pkgs/applications/misc/pot/default.nix
··· 23 24 stdenv.mkDerivation rec { 25 pname = "pot"; 26 - version = "2.4.2"; 27 28 src = fetchFromGitHub { 29 owner = "pot-app"; 30 repo = "pot-desktop"; 31 rev = version; 32 - hash = "sha256-n12uO5QbD/HgD5Rq5d+TQ8j8Gn5hl6wTi27TqFmunIM="; 33 }; 34 35 sourceRoot = "${src.name}/src-tauri"; ··· 66 67 dontFixup = true; 68 outputHashMode = "recursive"; 69 - outputHash = "sha256-/5bB4czTPS3ZM9f7NBIHbwd95BqY2dRwKaBOWVsef04="; 70 }; 71 72 cargoDeps = rustPlatform.importCargoLock { 73 lockFile = ./Cargo.lock; 74 outputHashes = { 75 # All other crates in the same workspace reuse this hash. 76 - "tauri-plugin-autostart-0.0.0" = "sha256-7Qi07yRb+ww569+sEXFIwAtS8jbUNQx6LsrUnMl5YOo="; 77 - "reqwest_dav-0.1.3" = "sha256-nWOH1SOoNA2o2lmGAIEJj3OLOlP39FjlXqK8LPZ95hI="; 78 }; 79 }; 80
··· 23 24 stdenv.mkDerivation rec { 25 pname = "pot"; 26 + version = "2.6.2"; 27 28 src = fetchFromGitHub { 29 owner = "pot-app"; 30 repo = "pot-desktop"; 31 rev = version; 32 + hash = "sha256-0NnZe1o8HsB1GR6wp8Da/CTLhcve/sGIumD2qb9DC3s="; 33 }; 34 35 sourceRoot = "${src.name}/src-tauri"; ··· 66 67 dontFixup = true; 68 outputHashMode = "recursive"; 69 + outputHash = "sha256-m83cDKtFfwA3Xv8EqXNyF37ss+8qFDdFhu/1X1g7n/0="; 70 }; 71 72 cargoDeps = rustPlatform.importCargoLock { 73 lockFile = ./Cargo.lock; 74 outputHashes = { 75 # All other crates in the same workspace reuse this hash. 76 + "tauri-plugin-autostart-0.0.0" = "sha256-hvR9tUp7yFhSP2bqE0mGwT8NHL7fGOYQ3Gz2wYi0bXI="; 77 }; 78 }; 79
+2 -2
pkgs/applications/networking/cluster/hubble/default.nix
··· 2 3 buildGoModule rec { 4 pname = "hubble"; 5 - version = "0.12.0"; 6 7 src = fetchFromGitHub { 8 owner = "cilium"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-QtslAJC9qPR1jnyK4SLPVv8YTxOUvrzrSA1TzEwajS8="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "hubble"; 5 + version = "0.12.1"; 6 7 src = fetchFromGitHub { 8 owner = "cilium"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-YJrL4fLJnTkfzZQp4MzPZL8ZZOGhFbHUzOpvaA5JrOA="; 12 }; 13 14 vendorHash = null;
+2 -2
pkgs/applications/networking/cluster/timoni/default.nix
··· 6 7 buildGo121Module rec { 8 pname = "timoni"; 9 - version = "0.14.1"; 10 11 src = fetchFromGitHub { 12 owner = "stefanprodan"; 13 repo = "timoni"; 14 rev = "v${version}"; 15 - hash = "sha256-DzJNNikvODP3v1jgQLbFcXEhcFfTeIYR6qHhUzEP/Ns="; 16 }; 17 18 vendorHash = "sha256-lRZFRnft8vEntVxiLOBcR00FP8AXexLyo3h2LCNWN00=";
··· 6 7 buildGo121Module rec { 8 pname = "timoni"; 9 + version = "0.14.2"; 10 11 src = fetchFromGitHub { 12 owner = "stefanprodan"; 13 repo = "timoni"; 14 rev = "v${version}"; 15 + hash = "sha256-45OIj57gb8njYoks7SgIlcMjz07ShEz2G/EECaTRTQg="; 16 }; 17 18 vendorHash = "sha256-lRZFRnft8vEntVxiLOBcR00FP8AXexLyo3h2LCNWN00=";
+5 -3
pkgs/applications/office/appflowy/default.nix
··· 8 , gtk3 9 , xdg-user-dirs 10 , keybinder3 11 }: 12 13 stdenv.mkDerivation rec { 14 pname = "appflowy"; 15 - version = "0.3.2"; 16 17 src = fetchzip { 18 - url = "https://github.com/AppFlowy-IO/appflowy/releases/download/${version}/AppFlowy_x86_64-unknown-linux-gnu_ubuntu-20.04.tar.gz"; 19 - hash = "sha256-UmBXAfRIr9zOScqibKPHeKzr+UTx3gbGEm0tl7qn+oE="; 20 stripRoot = false; 21 }; 22 ··· 29 buildInputs = [ 30 gtk3 31 keybinder3 32 ]; 33 34 dontBuild = true;
··· 8 , gtk3 9 , xdg-user-dirs 10 , keybinder3 11 + , libnotify 12 }: 13 14 stdenv.mkDerivation rec { 15 pname = "appflowy"; 16 + version = "0.3.5"; 17 18 src = fetchzip { 19 + url = "https://github.com/AppFlowy-IO/appflowy/releases/download/${version}/AppFlowy-${version}-linux-x86_64.tar.gz"; 20 + hash = "sha256-NKoRsT8UQ1IHS95KATHNzbAYWCi6zwwmRZvR+U7MVhk="; 21 stripRoot = false; 22 }; 23 ··· 30 buildInputs = [ 31 gtk3 32 keybinder3 33 + libnotify 34 ]; 35 36 dontBuild = true;
+2 -2
pkgs/applications/radio/multimon-ng/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "multimon-ng"; 5 - version = "1.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "EliasOenal"; 9 repo = "multimon-ng"; 10 rev = version; 11 - sha256 = "sha256-Qk9zg3aSrEfC16wQqL/EMG6MPobX8dnJ1OLH8EMap0I="; 12 }; 13 14 buildInputs = lib.optionals stdenv.isLinux [ libpulseaudio libX11 ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "multimon-ng"; 5 + version = "1.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "EliasOenal"; 9 repo = "multimon-ng"; 10 rev = version; 11 + sha256 = "sha256-IJnvOVajkcjaa0DDo8hbkkVvBnDqPKQUN8wJHlafo70="; 12 }; 13 14 buildInputs = lib.optionals stdenv.isLinux [ libpulseaudio libX11 ];
+6 -4
pkgs/applications/science/molecular-dynamics/gromacs/default.nix
··· 27 sha256 = "sha256-vOFIByfksruQBBO3XZmjJm81B4d9pPWy1JHfeY+fza4="; 28 }; 29 30 nativeBuildInputs = [ cmake ]; 31 32 buildInputs = [ ··· 64 ] 65 ) ++ lib.optional enableCuda "-DGMX_GPU=CUDA"; 66 67 - postFixup = '' 68 - substituteInPlace "$out"/lib/pkgconfig/*.pc \ 69 - --replace '=''${prefix}//' '=/' \ 70 - --replace "$out/$out/" "$out/" 71 ''; 72 73 meta = with lib; {
··· 27 sha256 = "sha256-vOFIByfksruQBBO3XZmjJm81B4d9pPWy1JHfeY+fza4="; 28 }; 29 30 + patches = [ ./pkgconfig.patch ]; 31 + 32 + outputs = [ "out" "dev" "man" ]; 33 + 34 nativeBuildInputs = [ cmake ]; 35 36 buildInputs = [ ··· 68 ] 69 ) ++ lib.optional enableCuda "-DGMX_GPU=CUDA"; 70 71 + postInstall = '' 72 + moveToOutput share/cmake $dev 73 ''; 74 75 meta = with lib; {
+24
pkgs/applications/science/molecular-dynamics/gromacs/pkgconfig.patch
···
··· 1 + diff --git a/src/external/muparser/muparser.pc.in b/src/external/muparser/muparser.pc.in 2 + index 646787cb53..9b97ad57f7 100644 3 + --- a/src/external/muparser/muparser.pc.in 4 + +++ b/src/external/muparser/muparser.pc.in 5 + @@ -1,7 +1,5 @@ 6 + -prefix=@CMAKE_INSTALL_PREFIX@ 7 + -exec_prefix=${prefix} 8 + -libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ 9 + -includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ 10 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 11 + +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 12 + 13 + Name: @PACKAGE_NAME@ 14 + Description: Mathematical expressions parser library 15 + diff --git a/src/gromacs/libgromacs.pc.cmakein b/src/gromacs/libgromacs.pc.cmakein 16 + index ec1ed6684e..ca1105474a 100644 17 + --- a/src/gromacs/libgromacs.pc.cmakein 18 + +++ b/src/gromacs/libgromacs.pc.cmakein 19 + @@ -1,4 +1,4 @@ 20 + -libdir=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ 21 + +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 22 + 23 + Name: libgromacs@GMX_LIBS_SUFFIX@ 24 + Description: Gromacs library
+19 -12
pkgs/applications/terminal-emulators/germinal/default.nix pkgs/by-name/ge/germinal/package.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 - , autoreconfHook 4 - , pkg-config 5 , appstream-glib 6 , dbus 7 , pango 8 , pcre2 9 , tmux 10 , vte 11 , wrapGAppsHook 12 , nixosTests 13 }: 14 15 - stdenv.mkDerivation rec { 16 pname = "germinal"; 17 version = "26"; 18 19 src = fetchFromGitHub { 20 owner = "Keruspe"; 21 repo = "Germinal"; 22 - rev = "v${version}"; 23 - sha256 = "sha256-HUi+skF4bJj5CY2cNTOC4tl7jhvpXYKqBx2rqKzjlo0="; 24 }; 25 26 - nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ]; 27 buildInputs = [ 28 appstream-glib 29 dbus ··· 48 49 passthru.tests.test = nixosTests.terminal-emulators.germinal; 50 51 - meta = with lib; { 52 description = "A minimal terminal emulator"; 53 homepage = "https://github.com/Keruspe/Germinal"; 54 - license = with licenses; gpl3Plus; 55 - platforms = with platforms; unix; 56 - maintainers = with maintainers; [ AndersonTorres ]; 57 }; 58 - }
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , appstream-glib 5 + , autoreconfHook 6 , dbus 7 , pango 8 , pcre2 9 + , pkg-config 10 , tmux 11 , vte 12 , wrapGAppsHook 13 , nixosTests 14 }: 15 16 + stdenv.mkDerivation (finalAttrs: { 17 pname = "germinal"; 18 version = "26"; 19 20 src = fetchFromGitHub { 21 owner = "Keruspe"; 22 repo = "Germinal"; 23 + rev = "v${finalAttrs.version}"; 24 + hash = "sha256-HUi+skF4bJj5CY2cNTOC4tl7jhvpXYKqBx2rqKzjlo0="; 25 }; 26 27 + nativeBuildInputs = [ 28 + autoreconfHook 29 + pkg-config 30 + wrapGAppsHook 31 + ]; 32 + 33 buildInputs = [ 34 appstream-glib 35 dbus ··· 54 55 passthru.tests.test = nixosTests.terminal-emulators.germinal; 56 57 + meta = { 58 description = "A minimal terminal emulator"; 59 homepage = "https://github.com/Keruspe/Germinal"; 60 + license = lib.licenses.gpl3Plus; 61 + mainProgram = "germinal"; 62 + maintainers = with lib.maintainers; [ AndersonTorres ]; 63 + platforms = lib.platforms.unix; 64 }; 65 + })
-56
pkgs/applications/terminal-emulators/havoc/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , libxkbcommon 5 - , pkg-config 6 - , wayland-protocols 7 - , wayland-scanner 8 - , wayland 9 - }: 10 - 11 - stdenv.mkDerivation rec { 12 - pname = "havoc"; 13 - version = "0.5.0"; 14 - 15 - src = fetchFromGitHub { 16 - owner = "ii8"; 17 - repo = pname; 18 - rev = version; 19 - hash = "sha256-jvGm2gFdMS61otETF7gOEpYn6IuLfqI95IpEVfIv+C4="; 20 - }; 21 - 22 - depsBuildBuild = [ 23 - pkg-config 24 - ]; 25 - 26 - nativeBuildInputs = [ 27 - wayland-protocols 28 - wayland-scanner 29 - ]; 30 - 31 - buildInputs = [ 32 - libxkbcommon 33 - wayland 34 - ]; 35 - 36 - dontConfigure = true; 37 - 38 - installFlags = [ "PREFIX=$$out" ]; 39 - 40 - postInstall = '' 41 - install -D -m 644 havoc.cfg -t $out/etc/${pname}/ 42 - install -D -m 644 README.md -t $out/share/doc/${pname}-${version}/ 43 - ''; 44 - 45 - enableParallelBuilding = true; 46 - 47 - meta = with lib; { 48 - homepage = "https://github.com/ii8/havoc"; 49 - description = "A minimal terminal emulator for Wayland"; 50 - license = with licenses; [ mit publicDomain ]; 51 - platforms = with platforms; unix; 52 - maintainers = with maintainers; [ AndersonTorres ]; 53 - # fatal error: 'sys/epoll.h' file not found 54 - broken = stdenv.isDarwin; 55 - }; 56 - }
···
+8 -5
pkgs/applications/terminal-emulators/kermit-terminal/default.nix pkgs/by-name/ke/kermit-terminal/package.nix
··· 15 16 src = fetchFromGitHub { 17 owner = "orhun"; 18 - repo = finalAttrs.pname; 19 rev = finalAttrs.version; 20 hash = "sha256-XPHF33Nu+H8OcQFwsuUOhDBDWKm8sh5B36sfROeSWPg="; 21 }; 22 23 nativeBuildInputs = [ 24 cmake ··· 33 34 passthru.tests.test = nixosTests.terminal-emulators.kermit; 35 36 - meta = with lib; { 37 homepage = "https://github.com/orhun/kermit"; 38 description = "A VTE-based, simple and froggy terminal emulator"; 39 changelog = "https://github.com/orhun/kermit/releases/tag/${finalAttrs.version}"; 40 - license = licenses.gpl3Only; 41 - maintainers = with maintainers; [ AndersonTorres ]; 42 - platforms = with platforms; unix; 43 }; 44 })
··· 15 16 src = fetchFromGitHub { 17 owner = "orhun"; 18 + repo = "kermit"; 19 rev = finalAttrs.version; 20 hash = "sha256-XPHF33Nu+H8OcQFwsuUOhDBDWKm8sh5B36sfROeSWPg="; 21 }; 22 + 23 + outputs = [ "out" "man" ]; 24 25 nativeBuildInputs = [ 26 cmake ··· 35 36 passthru.tests.test = nixosTests.terminal-emulators.kermit; 37 38 + meta = { 39 homepage = "https://github.com/orhun/kermit"; 40 description = "A VTE-based, simple and froggy terminal emulator"; 41 changelog = "https://github.com/orhun/kermit/releases/tag/${finalAttrs.version}"; 42 + license = lib.licenses.gpl3Only; 43 + mainProgram = "kermit"; 44 + maintainers = with lib.maintainers; [ AndersonTorres ]; 45 + platforms = lib.platforms.unix; 46 }; 47 })
+24 -18
pkgs/applications/terminal-emulators/tilda/default.nix pkgs/by-name/ti/tilda/package.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 , autoreconfHook 4 - , pkg-config 5 , expat 6 , gettext 7 - , gtk 8 , libconfuse 9 , pcre2 10 , vte 11 - , makeWrapper 12 , nixosTests 13 }: 14 15 - stdenv.mkDerivation rec { 16 pname = "tilda"; 17 version = "1.5.4"; 18 19 src = fetchFromGitHub { 20 owner = "lanoxx"; 21 repo = "tilda"; 22 - rev = "${pname}-${version}"; 23 - sha256 = "sha256-uDx28jmjNUyzJbgTJiHbjI9U5mYb9bnfl/9AjbxNUWA="; 24 }; 25 26 - nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ]; 27 buildInputs = [ 28 gettext 29 - gtk 30 libconfuse 31 pcre2 32 vte 33 ]; 34 35 - LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build 36 37 - # The config locking scheme relies on the binary being called "tilda", 38 # (`pgrep -C tilda`), so a simple `wrapProgram` won't suffice: 39 postInstall = '' 40 mkdir $out/bin/wrapped ··· 45 46 passthru.tests.test = nixosTests.terminal-emulators.tilda; 47 48 - meta = with lib; { 49 description = "A Gtk based drop down terminal for Linux and Unix"; 50 - homepage = "https://github.com/lanoxx/tilda/"; 51 - license = licenses.gpl3Plus; 52 - maintainers = [ maintainers.AndersonTorres ]; 53 - platforms = platforms.linux; 54 }; 55 - } 56 -
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , autoreconfHook 5 , expat 6 , gettext 7 + , gtk3 8 , libconfuse 9 + , makeWrapper 10 , pcre2 11 + , pkg-config 12 , vte 13 , nixosTests 14 }: 15 16 + stdenv.mkDerivation (finalAttrs: { 17 pname = "tilda"; 18 version = "1.5.4"; 19 20 src = fetchFromGitHub { 21 owner = "lanoxx"; 22 repo = "tilda"; 23 + rev = "tilda-${finalAttrs.version}"; 24 + hash = "sha256-uDx28jmjNUyzJbgTJiHbjI9U5mYb9bnfl/9AjbxNUWA="; 25 }; 26 27 + nativeBuildInputs = [ 28 + autoreconfHook 29 + makeWrapper 30 + pkg-config 31 + ]; 32 + 33 buildInputs = [ 34 gettext 35 + gtk3 36 libconfuse 37 pcre2 38 vte 39 ]; 40 41 + # ugly hack for xgettext to work during build 42 + env.LD_LIBRARY_PATH = "${lib.getLib expat}/lib"; 43 44 + # The config locking scheme relies on the binary being called "tilda" 45 # (`pgrep -C tilda`), so a simple `wrapProgram` won't suffice: 46 postInstall = '' 47 mkdir $out/bin/wrapped ··· 52 53 passthru.tests.test = nixosTests.terminal-emulators.tilda; 54 55 + meta = { 56 + homepage = "https://github.com/lanoxx/tilda/"; 57 description = "A Gtk based drop down terminal for Linux and Unix"; 58 + license = lib.licenses.gpl3Plus; 59 + maintainers = [ lib.maintainers.AndersonTorres ]; 60 + platforms = lib.platforms.linux; 61 }; 62 + })
+2 -2
pkgs/applications/version-management/gerrit/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gerrit"; 5 - version = "3.8.0"; 6 7 src = fetchurl { 8 url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war"; 9 - sha256 = "sha256-wial+K5eUZSJ+asFBLrFoJQOLWLHkl5ot4b4CIsg7Tc="; 10 }; 11 12 buildCommand = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gerrit"; 5 + version = "3.8.2"; 6 7 src = fetchurl { 8 url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war"; 9 + hash = "sha256-irzzG8qLJaBdRULGRyoYkn0tc4Yfcg/xe2SLriD8mtM="; 10 }; 11 12 buildCommand = ''
+3 -3
pkgs/applications/version-management/git-mit/default.nix
··· 10 }: 11 12 let 13 - version = "5.12.157"; 14 in 15 rustPlatform.buildRustPackage { 16 pname = "git-mit"; ··· 20 owner = "PurpleBooth"; 21 repo = "git-mit"; 22 rev = "v${version}"; 23 - hash = "sha256-Okb+HOCgtGLKSbhmhwA63BxS43ulZlSkHDOPsYzO2ZE="; 24 }; 25 26 - cargoHash = "sha256-I3sP6nhjMBXnANRrPT3+3HlY62TvfX6lFea7tHefOV8="; 27 28 nativeBuildInputs = [ pkg-config ]; 29
··· 10 }: 11 12 let 13 + version = "5.12.158"; 14 in 15 rustPlatform.buildRustPackage { 16 pname = "git-mit"; ··· 20 owner = "PurpleBooth"; 21 repo = "git-mit"; 22 rev = "v${version}"; 23 + hash = "sha256-vMrIkM8ShfaSrIEFiY6Jiwo8/6LMrjlqpD1B8DNtWcI="; 24 }; 25 26 + cargoHash = "sha256-kdXnj1O9AWFwFWQwZ6QPe5ePlxjr/F68vJEpAZgph6I="; 27 28 nativeBuildInputs = [ pkg-config ]; 29
+16 -25
pkgs/build-support/kernel/make-initrd-ng/Cargo.lock
··· 3 version = 3 4 5 [[package]] 6 - name = "cfg-if" 7 - version = "1.0.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 10 - 11 - [[package]] 12 name = "eyre" 13 version = "0.6.8" 14 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 20 21 [[package]] 22 name = "goblin" 23 - version = "0.5.3" 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "91766b1121940d622933a13e20665857648681816089c9bc2075c4b75a6e4f6b" 26 dependencies = [ 27 "log", 28 "plain", ··· 37 38 [[package]] 39 name = "log" 40 - version = "0.4.17" 41 source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 43 - dependencies = [ 44 - "cfg-if", 45 - ] 46 47 [[package]] 48 name = "make-initrd-ng" ··· 54 55 [[package]] 56 name = "once_cell" 57 - version = "1.17.1" 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 60 61 [[package]] 62 name = "plain" ··· 66 67 [[package]] 68 name = "proc-macro2" 69 - version = "1.0.42" 70 source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "c278e965f1d8cf32d6e0e96de3d3e79712178ae67986d9cf9151f51e95aac89b" 72 dependencies = [ 73 "unicode-ident", 74 ] 75 76 [[package]] 77 name = "quote" 78 - version = "1.0.20" 79 source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" 81 dependencies = [ 82 "proc-macro2", 83 ] ··· 93 94 [[package]] 95 name = "scroll_derive" 96 - version = "0.11.0" 97 source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "bdbda6ac5cd1321e724fa9cee216f3a61885889b896f073b8f82322789c5250e" 99 dependencies = [ 100 "proc-macro2", 101 "quote", ··· 104 105 [[package]] 106 name = "syn" 107 - version = "1.0.98" 108 source = "registry+https://github.com/rust-lang/crates.io-index" 109 - checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" 110 dependencies = [ 111 "proc-macro2", 112 "quote", ··· 115 116 [[package]] 117 name = "unicode-ident" 118 - version = "1.0.2" 119 source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
··· 3 version = 3 4 5 [[package]] 6 name = "eyre" 7 version = "0.6.8" 8 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 14 15 [[package]] 16 name = "goblin" 17 + version = "0.5.4" 18 source = "registry+https://github.com/rust-lang/crates.io-index" 19 + checksum = "a7666983ed0dd8d21a6f6576ee00053ca0926fb281a5522577a4dbd0f1b54143" 20 dependencies = [ 21 "log", 22 "plain", ··· 31 32 [[package]] 33 name = "log" 34 + version = "0.4.20" 35 source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 37 38 [[package]] 39 name = "make-initrd-ng" ··· 45 46 [[package]] 47 name = "once_cell" 48 + version = "1.18.0" 49 source = "registry+https://github.com/rust-lang/crates.io-index" 50 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 51 52 [[package]] 53 name = "plain" ··· 57 58 [[package]] 59 name = "proc-macro2" 60 + version = "1.0.69" 61 source = "registry+https://github.com/rust-lang/crates.io-index" 62 + checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 63 dependencies = [ 64 "unicode-ident", 65 ] 66 67 [[package]] 68 name = "quote" 69 + version = "1.0.33" 70 source = "registry+https://github.com/rust-lang/crates.io-index" 71 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 72 dependencies = [ 73 "proc-macro2", 74 ] ··· 84 85 [[package]] 86 name = "scroll_derive" 87 + version = "0.11.1" 88 source = "registry+https://github.com/rust-lang/crates.io-index" 89 + checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" 90 dependencies = [ 91 "proc-macro2", 92 "quote", ··· 95 96 [[package]] 97 name = "syn" 98 + version = "2.0.38" 99 source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" 101 dependencies = [ 102 "proc-macro2", 103 "quote", ··· 106 107 [[package]] 108 name = "unicode-ident" 109 + version = "1.0.12" 110 source = "registry+https://github.com/rust-lang/crates.io-index" 111 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+2 -1
pkgs/by-name/ga/gash-utils/package.nix
··· 32 postInstall = '' 33 for f in $out/bin/*; do 34 wrapProgram $f \ 35 - --prefix GUILE_LOAD_PATH : "${gash}/${guile.siteDir}" 36 done 37 ''; 38
··· 32 postInstall = '' 33 for f in $out/bin/*; do 34 wrapProgram $f \ 35 + --prefix GUILE_LOAD_PATH : "$out/${guile.siteDir}:$GUILE_LOAD_PATH" \ 36 + --prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH" 37 done 38 ''; 39
+21
pkgs/by-name/ha/haunt/tests/001-test-version.nix
···
··· 1 + { lib 2 + , stdenv 3 + , haunt 4 + }: 5 + 6 + stdenv.mkDerivation { 7 + pname = "haunt-test-version"; 8 + inherit (haunt) version; 9 + 10 + nativeBuildInputs = [ haunt ]; 11 + 12 + dontInstall = true; 13 + 14 + buildCommand = '' 15 + haunt --version 16 + 17 + touch $out 18 + ''; 19 + 20 + meta.timeout = 10; 21 + }
+56
pkgs/by-name/ha/havoc/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , libxkbcommon 5 + , pkg-config 6 + , wayland 7 + , wayland-protocols 8 + , wayland-scanner 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "havoc"; 13 + version = "0.5.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ii8"; 17 + repo = "havoc"; 18 + rev = finalAttrs.version; 19 + hash = "sha256-jvGm2gFdMS61otETF7gOEpYn6IuLfqI95IpEVfIv+C4="; 20 + }; 21 + 22 + depsBuildBuild = [ 23 + pkg-config 24 + ]; 25 + 26 + nativeBuildInputs = [ 27 + wayland-protocols 28 + wayland-scanner 29 + ]; 30 + 31 + buildInputs = [ 32 + libxkbcommon 33 + wayland 34 + ]; 35 + 36 + dontConfigure = true; 37 + 38 + installFlags = [ "PREFIX=$$out" ]; 39 + 40 + postInstall = '' 41 + install -Dm 644 havoc.cfg -t $out/etc/havoc/ 42 + install -Dm 644 README.md -t $out/share/doc/havoc-${finalAttrs.version}/ 43 + ''; 44 + 45 + enableParallelBuilding = true; 46 + 47 + meta = { 48 + homepage = "https://github.com/ii8/havoc"; 49 + description = "A minimal terminal emulator for Wayland"; 50 + license = with lib.licenses; [ mit publicDomain ]; 51 + mainProgram = "havoc"; 52 + maintainers = with lib.maintainers; [ AndersonTorres ]; 53 + inherit (wayland.meta) platforms; 54 + broken = stdenv.isDarwin; # fatal error: 'sys/epoll.h' file not found 55 + }; 56 + })
+28
pkgs/by-name/mi/minetest-mapserver/package.nix
···
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "minetest-mapserver"; 8 + version = "4.7.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = pname; 12 + repo = "mapserver"; 13 + rev = "v${version}"; 14 + hash = "sha256-qThdNXb17mh3Ph57d3oUl/KhP64AKPZJOCVsvr2SDWk="; 15 + }; 16 + 17 + vendorHash = "sha256-VSyzdiPNcHDH/ebM2A0pTAyiMblMaJGEIULsIzupmaw="; 18 + 19 + meta = with lib; { 20 + description = "Realtime mapserver for minetest"; 21 + mainProgram = "mapserver"; 22 + homepage = "https://github.com/${pname}/mapserver/blob/master/readme.md"; 23 + changelog = "https://github.com/${pname}/mapserver/releases/tag/v${version}"; 24 + license = with licenses; [ mit cc-by-sa-30 ]; 25 + platforms = platforms.all; 26 + maintainers = with maintainers; [ gm6k ]; 27 + }; 28 + }
+40
pkgs/by-name/sc/scimark/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , unzip 5 + }: 6 + 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "scimark"; 9 + version = "4c"; 10 + 11 + src = fetchurl { 12 + url = "https://math.nist.gov/scimark2/scimark${finalAttrs.version}.zip"; 13 + hash = "sha256-kcg5vKYp0B7+bC/CmFMO/tMwxf9q6nvuFv0vRSy3MbE="; 14 + }; 15 + 16 + nativeBuildInputs = [ 17 + unzip 18 + ]; 19 + 20 + dontConfigure = true; 21 + 22 + installPhase = '' 23 + runHook preInstall 24 + 25 + install -Dm755 scimark4 -t $out/bin/ 26 + 27 + runHook postInstall 28 + ''; 29 + 30 + meta = { 31 + homepage = "https://math.nist.gov/scimark2/index.html"; 32 + description = "Scientific and numerical computing benchmark (ANSI C version)"; 33 + downloadPage = "https://math.nist.gov/scimark2/download_c.html"; 34 + license = lib.licenses.publicDomain; 35 + mainProgram = "scimark4"; 36 + maintainers = with lib.maintainers; [ AndersonTorres ]; 37 + platforms = lib.platforms.all; 38 + }; 39 + }) 40 + # TODO [ AndersonTorres ]: Java version
+3 -3
pkgs/development/compilers/erg/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "erg"; 12 - version = "0.6.21"; 13 14 src = fetchFromGitHub { 15 owner = "erg-lang"; 16 repo = "erg"; 17 rev = "v${version}"; 18 - hash = "sha256-NS9LpnCAYmninAcliwdEXPSYqqQZ8impaaK2eceoi3k="; 19 }; 20 21 - cargoHash = "sha256-JJPbArXb3Hmf7bDRlYM0ZOnaolYnDtc41EFazFtApWc="; 22 23 nativeBuildInputs = [ 24 makeWrapper
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "erg"; 12 + version = "0.6.22"; 13 14 src = fetchFromGitHub { 15 owner = "erg-lang"; 16 repo = "erg"; 17 rev = "v${version}"; 18 + hash = "sha256-dUGwSNN6eAMXIaIn3/xQxZAcyH1tTOrj4oRMkkI1KXU="; 19 }; 20 21 + cargoHash = "sha256-TLEFy4r+CA8XcPYw5cX7qCIRrj/8q9Z1YOnkAKpjwug="; 22 23 nativeBuildInputs = [ 24 makeWrapper
pkgs/development/interpreters/nickel/Cargo.lock pkgs/by-name/ni/nickel/Cargo.lock
+1 -1
pkgs/development/interpreters/nickel/default.nix pkgs/by-name/ni/nickel/package.nix
··· 11 12 src = fetchFromGitHub { 13 owner = "tweag"; 14 - repo = pname; 15 rev = "refs/tags/${version}"; 16 hash = "sha256-g7pRTwa2sniIOmgdYCxfYxGRtxnQP8zaVWuPjzEZTSg="; 17 };
··· 11 12 src = fetchFromGitHub { 13 owner = "tweag"; 14 + repo = "nickel"; 15 rev = "refs/tags/${version}"; 16 hash = "sha256-g7pRTwa2sniIOmgdYCxfYxGRtxnQP8zaVWuPjzEZTSg="; 17 };
+2 -2
pkgs/development/libraries/gvm-libs/default.nix
··· 23 24 stdenv.mkDerivation rec { 25 pname = "gvm-libs"; 26 - version = "22.7.1"; 27 28 src = fetchFromGitHub { 29 owner = "greenbone"; 30 repo = pname; 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-TSi537RLZGwnyC1nL/Ge3lTlV2FmH1nmAzFSHmaTv04="; 33 }; 34 35 nativeBuildInputs = [
··· 23 24 stdenv.mkDerivation rec { 25 pname = "gvm-libs"; 26 + version = "22.7.2"; 27 28 src = fetchFromGitHub { 29 owner = "greenbone"; 30 repo = pname; 31 rev = "refs/tags/v${version}"; 32 + hash = "sha256-vcCugIohuZg+GhUA7ZgkyhMxN0KSvCFVO/HLOnrNxxA="; 33 }; 34 35 nativeBuildInputs = [
+2
pkgs/development/libraries/libfabric/default.nix
··· 23 sha256 = "sha256-7VOhdZOPBe1qh8OK8OTNKA5I4A5whl6aOubAzsUDSRw="; 24 }; 25 26 nativeBuildInputs = [ pkg-config autoreconfHook ]; 27 28 buildInputs = lib.optionals enableOpx [ libuuid numactl ] ++ lib.optionals enablePsm2 [ libpsm2 ];
··· 23 sha256 = "sha256-7VOhdZOPBe1qh8OK8OTNKA5I4A5whl6aOubAzsUDSRw="; 24 }; 25 26 + outputs = [ "out" "dev" "man" ]; 27 + 28 nativeBuildInputs = [ pkg-config autoreconfHook ]; 29 30 buildInputs = lib.optionals enableOpx [ libuuid numactl ] ++ lib.optionals enablePsm2 [ libpsm2 ];
+2 -2
pkgs/development/libraries/mongocxx/default.nix
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "mongocxx"; 12 - version = "3.8.0"; 13 14 src = fetchFromGitHub { 15 owner = "mongodb"; 16 repo = "mongo-cxx-driver"; 17 rev = "refs/tags/r${finalAttrs.version}"; 18 - hash = "sha256-7pMVBWMIGV6k04/0rKULwNcl0NMO4hqMnOzWv+0/DrA="; 19 }; 20 21 postPatch = ''
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "mongocxx"; 12 + version = "3.8.1"; 13 14 src = fetchFromGitHub { 15 owner = "mongodb"; 16 repo = "mongo-cxx-driver"; 17 rev = "refs/tags/r${finalAttrs.version}"; 18 + hash = "sha256-fBZg69jsvXzhllpcPBGXkjYyvUQImnGNkb2Ek5Oi0p4="; 19 }; 20 21 postPatch = ''
+2
pkgs/development/libraries/mpich/default.nix
··· 18 sha256 = "sha256-NJLpitq2K1l+8NKS+yRZthI7yABwqKoKML5pYgdaEvA="; 19 }; 20 21 configureFlags = [ 22 "--enable-shared" 23 "--enable-sharedlib"
··· 18 sha256 = "sha256-NJLpitq2K1l+8NKS+yRZthI7yABwqKoKML5pYgdaEvA="; 19 }; 20 21 + outputs = [ "out" "doc" "man" ]; 22 + 23 configureFlags = [ 24 "--enable-shared" 25 "--enable-sharedlib"
+2
pkgs/development/libraries/mvapich/default.nix
··· 21 sha256 = "sha256-w5pEkvS+UN9hAHhXSLoolOI85FCpQSgYHVFtpXV3Ua4="; 22 }; 23 24 nativeBuildInputs = [ pkg-config bison makeWrapper gfortran ]; 25 propagatedBuildInputs = [ numactl rdma-core zlib opensm ]; 26 buildInputs = with lib; [
··· 21 sha256 = "sha256-w5pEkvS+UN9hAHhXSLoolOI85FCpQSgYHVFtpXV3Ua4="; 22 }; 23 24 + outputs = [ "out" "doc" "man" ]; 25 + 26 nativeBuildInputs = [ pkg-config bison makeWrapper gfortran ]; 27 propagatedBuildInputs = [ numactl rdma-core zlib opensm ]; 28 buildInputs = with lib; [
+6 -4
pkgs/development/libraries/openmpi/default.nix
··· 43 find -name "Makefile.in" -exec sed -i "s/\`date\`/$ts/" \{} \; 44 ''; 45 46 buildInputs = [ zlib ] 47 ++ lib.optionals stdenv.isLinux [ libnl numactl pmix ucx ] 48 ++ lib.optionals cudaSupport [ cudatoolkit ] ··· 56 configureFlags = lib.optional (!cudaSupport) "--disable-mca-dso" 57 ++ lib.optional (!fortranSupport) "--disable-mpi-fortran" 58 ++ lib.optionals stdenv.isLinux [ 59 - "--with-libnl=${libnl.dev}" 60 - "--with-pmix=${pmix}" 61 "--with-pmix-libdir=${pmix}/lib" 62 "--enable-mpi-cxx" 63 ] ++ lib.optional enableSGE "--with-sge" ··· 66 # https://github.com/openucx/ucx 67 # https://www.open-mpi.org/faq/?category=buildcuda 68 ++ lib.optionals cudaSupport [ "--with-cuda=${cudatoolkit_joined}" "--enable-dlopen" ] 69 - ++ lib.optionals fabricSupport [ "--with-psm2=${libpsm2}" "--with-libfabric=${libfabric}" ] 70 ; 71 72 enableParallelBuilding = true; 73 74 postInstall = '' 75 - rm -f $out/lib/*.la 76 ''; 77 78 postFixup = ''
··· 43 find -name "Makefile.in" -exec sed -i "s/\`date\`/$ts/" \{} \; 44 ''; 45 46 + outputs = [ "out" "man" ]; 47 + 48 buildInputs = [ zlib ] 49 ++ lib.optionals stdenv.isLinux [ libnl numactl pmix ucx ] 50 ++ lib.optionals cudaSupport [ cudatoolkit ] ··· 58 configureFlags = lib.optional (!cudaSupport) "--disable-mca-dso" 59 ++ lib.optional (!fortranSupport) "--disable-mpi-fortran" 60 ++ lib.optionals stdenv.isLinux [ 61 + "--with-libnl=${lib.getDev libnl}" 62 + "--with-pmix=${lib.getDev pmix}" 63 "--with-pmix-libdir=${pmix}/lib" 64 "--enable-mpi-cxx" 65 ] ++ lib.optional enableSGE "--with-sge" ··· 68 # https://github.com/openucx/ucx 69 # https://www.open-mpi.org/faq/?category=buildcuda 70 ++ lib.optionals cudaSupport [ "--with-cuda=${cudatoolkit_joined}" "--enable-dlopen" ] 71 + ++ lib.optionals fabricSupport [ "--with-psm2=${lib.getDev libpsm2}" "--with-libfabric=${lib.getDev libfabric}" ] 72 ; 73 74 enableParallelBuilding = true; 75 76 postInstall = '' 77 + find $out/lib/ -name "*.la" -exec rm -f \{} \; 78 ''; 79 80 postFixup = ''
+6 -2
pkgs/development/libraries/pmix/default.nix
··· 23 buildInputs = [ libevent hwloc munge zlib ]; 24 25 configureFlags = [ 26 - "--with-libevent=${libevent.dev}" 27 "--with-munge=${munge}" 28 - "--with-hwloc=${hwloc.dev}" 29 ]; 30 31 preConfigure = '' 32 ./autogen.pl 33 ''; 34 35 enableParallelBuilding = true;
··· 23 buildInputs = [ libevent hwloc munge zlib ]; 24 25 configureFlags = [ 26 + "--with-libevent=${lib.getDev libevent}" 27 "--with-munge=${munge}" 28 + "--with-hwloc=${lib.getDev hwloc}" 29 ]; 30 31 preConfigure = '' 32 ./autogen.pl 33 + ''; 34 + 35 + postInstall = '' 36 + find $out/lib/ -name "*.la" -exec rm -f \{} \; 37 ''; 38 39 enableParallelBuilding = true;
+8
pkgs/development/libraries/ucc/default.nix
··· 18 sha256 = "sha256-7Mo9zU0sogGyDdWIfTgUPoR5Z8D722asC2y7sHnKbzs="; 19 }; 20 21 enableParallelBuilding = true; 22 23 postPatch = '' ··· 41 ++ lib.optional enableSse42 "--with-sse42" 42 ++ lib.optional enableAvx "--with-avx" 43 ++ lib.optional enableCuda "--with-cuda=${cudatoolkit}"; 44 45 meta = with lib; { 46 description = "Collective communication operations API";
··· 18 sha256 = "sha256-7Mo9zU0sogGyDdWIfTgUPoR5Z8D722asC2y7sHnKbzs="; 19 }; 20 21 + outputs = [ "out" "dev" ]; 22 + 23 enableParallelBuilding = true; 24 25 postPatch = '' ··· 43 ++ lib.optional enableSse42 "--with-sse42" 44 ++ lib.optional enableAvx "--with-avx" 45 ++ lib.optional enableCuda "--with-cuda=${cudatoolkit}"; 46 + 47 + postInstall = '' 48 + find $out/lib/ -name "*.la" -exec rm -f \{} \; 49 + 50 + moveToOutput bin/ucc_info $dev 51 + ''; 52 53 meta = with lib; { 54 description = "Collective communication operations API";
+10
pkgs/development/libraries/ucx/default.nix
··· 33 sha256 = "sha256-VxIxrk9qKM6Ncfczl4p2EhXiLNgPaYTmjhqi6/w2ZNY="; 34 }; 35 36 nativeBuildInputs = [ autoreconfHook doxygen pkg-config ]; 37 38 buildInputs = [ ··· 53 "--with-verbs=${lib.getDev rdma-core}" 54 ] ++ lib.optional enableCuda "--with-cuda=${cudatoolkit'}" 55 ++ lib.optional enableRocm "--with-rocm=${rocm}"; 56 57 enableParallelBuilding = true; 58
··· 33 sha256 = "sha256-VxIxrk9qKM6Ncfczl4p2EhXiLNgPaYTmjhqi6/w2ZNY="; 34 }; 35 36 + outputs = [ "out" "doc" "dev" ]; 37 + 38 nativeBuildInputs = [ autoreconfHook doxygen pkg-config ]; 39 40 buildInputs = [ ··· 55 "--with-verbs=${lib.getDev rdma-core}" 56 ] ++ lib.optional enableCuda "--with-cuda=${cudatoolkit'}" 57 ++ lib.optional enableRocm "--with-rocm=${rocm}"; 58 + 59 + postInstall = '' 60 + find $out/lib/ -name "*.la" -exec rm -f \{} \; 61 + 62 + moveToOutput bin/ucx_info $dev 63 + 64 + moveToOutput share/ucx/examples $doc 65 + ''; 66 67 enableParallelBuilding = true; 68
+2 -17
pkgs/development/python-modules/aioambient/default.nix
··· 3 , aresponses 4 , buildPythonPackage 5 , fetchFromGitHub 6 - , fetchpatch 7 , poetry-core 8 , pytest-aiohttp 9 , pytest-asyncio ··· 16 17 buildPythonPackage rec { 18 pname = "aioambient"; 19 - version = "2023.08.0"; 20 format = "pyproject"; 21 22 disabled = pythonOlder "3.9"; ··· 25 owner = "bachya"; 26 repo = pname; 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-Y8I4iPvxcK98Olb3JURNK37MKggdhcweKvNBa0ZtG6I="; 29 }; 30 - 31 - patches = [ 32 - # This patch removes references to setuptools and wheel that are no longer 33 - # necessary and changes poetry to poetry-core, so that we don't need to add 34 - # unnecessary nativeBuildInputs. 35 - # 36 - # https://github.com/bachya/aioambient/pull/295 37 - # 38 - (fetchpatch { 39 - name = "clean-up-build-dependencies.patch"; 40 - url = "https://github.com/bachya/aioambient/commit/fa21a2e82678a231a73c8a1153032980926f4c35.patch"; 41 - hash = "sha256-RLRbHmaR2A8MNc96WHx0L8ccyygoBUaOulAuRJkFuUM="; 42 - }) 43 - ]; 44 45 postPatch = '' 46 substituteInPlace pyproject.toml \
··· 3 , aresponses 4 , buildPythonPackage 5 , fetchFromGitHub 6 , poetry-core 7 , pytest-aiohttp 8 , pytest-asyncio ··· 15 16 buildPythonPackage rec { 17 pname = "aioambient"; 18 + version = "2023.10.1"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.9"; ··· 24 owner = "bachya"; 25 repo = pname; 26 rev = "refs/tags/${version}"; 27 + hash = "sha256-Q7jb0tJsbVM2vEqKgjXOWJN2OwR9qLchU/4ShOUGPT4="; 28 }; 29 30 postPatch = '' 31 substituteInPlace pyproject.toml \
+2 -2
pkgs/development/python-modules/aioqsw/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "aioqsw"; 13 - version = "0.3.4"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.11"; ··· 19 owner = "Noltari"; 20 repo = pname; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-YGVQsw7UhRWXtfn2MQa3GHNlgXR4LJlFnaeLCGjmWfQ="; 23 }; 24 25 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "aioqsw"; 13 + version = "0.3.5"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.11"; ··· 19 owner = "Noltari"; 20 repo = pname; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-kSwTHwVSMGyXA0SF74f9gyBN82XhdjdN6DWrQV0PiaU="; 23 }; 24 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aliyun-python-sdk-sts/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "aliyun-python-sdk-sts"; 10 - version = "3.1.1"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-1pCgIw2Glc5Fyp/eoJJXew80SJz7VDcg9vvUpeZpBYk="; 18 }; 19 20 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "aliyun-python-sdk-sts"; 10 + version = "3.1.2"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-GLzieAX0j/aEKeKj37PtBQJy3c2zWgy1no7/lXiYSU0="; 18 }; 19 20 propagatedBuildInputs = [
+9 -6
pkgs/development/python-modules/bambi/default.nix
··· 18 buildPythonPackage rec { 19 pname = "bambi"; 20 version = "0.12.0"; 21 - format = "pyproject"; 22 23 - disabled = pythonOlder "3.8"; 24 25 src = fetchFromGitHub { 26 owner = "bambinos"; 27 - repo = pname; 28 rev = "refs/tags/${version}"; 29 hash = "sha256-36D8u813v2vWQdNqBWfM8YVnAJuLGvn5vqdHs94odmU="; 30 }; ··· 55 56 disabledTests = [ 57 # Tests require network access 58 "test_custom_prior" 59 "test_data_is_copied" 60 "test_distributional_model" 61 "test_gamma_with_splines" 62 - "test_non_distributional_model_with_categories" 63 "test_non_distributional_model" 64 "test_normal_with_splines" 65 "test_predict_offset" 66 - # Assertion issue 67 - "test_custom_likelihood_function" 68 ]; 69 70 pythonImportsCheck = [ ··· 74 meta = with lib; { 75 homepage = "https://bambinos.github.io/bambi"; 76 description = "High-level Bayesian model-building interface"; 77 license = licenses.mit; 78 maintainers = with maintainers; [ bcdarwin ]; 79 };
··· 18 buildPythonPackage rec { 19 pname = "bambi"; 20 version = "0.12.0"; 21 + pyproject = true; 22 23 + disabled = pythonOlder "3.9"; 24 25 src = fetchFromGitHub { 26 owner = "bambinos"; 27 + repo = "bambi"; 28 rev = "refs/tags/${version}"; 29 hash = "sha256-36D8u813v2vWQdNqBWfM8YVnAJuLGvn5vqdHs94odmU="; 30 }; ··· 55 56 disabledTests = [ 57 # Tests require network access 58 + "test_alias_equal_to_name" 59 "test_custom_prior" 60 "test_data_is_copied" 61 "test_distributional_model" 62 + "test_extra_namespace" 63 "test_gamma_with_splines" 64 "test_non_distributional_model" 65 "test_normal_with_splines" 66 "test_predict_offset" 67 + "test_predict_new_groups" 68 + "test_predict_new_groups_fail" 69 + "test_set_alias_warnings" 70 ]; 71 72 pythonImportsCheck = [ ··· 76 meta = with lib; { 77 homepage = "https://bambinos.github.io/bambi"; 78 description = "High-level Bayesian model-building interface"; 79 + changelog = "https://github.com/bambinos/bambi/releases/tag/${version}"; 80 license = licenses.mit; 81 maintainers = with maintainers; [ bcdarwin ]; 82 };
+7 -2
pkgs/development/python-modules/bip_utils/default.nix pkgs/development/python-modules/bip-utils/default.nix
··· 10 , py-sr25519-bindings 11 , cbor2 12 , pycryptodome 13 }: 14 15 buildPythonPackage rec { 16 pname = "bip-utils"; 17 - version = "2.7.0"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "ebellocchia"; 24 repo = "bip_utils"; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-m7/CC5/T6qR2Ot4y5WQlzOAR0czz6XHCjJskES+2nns="; 27 }; 28 29 postPatch = '' ··· 40 ed25519-blake2b 41 py-sr25519-bindings 42 pycryptodome 43 ]; 44 45 pythonImportsCheck = [
··· 10 , py-sr25519-bindings 11 , cbor2 12 , pycryptodome 13 + , pytestCheckHook 14 }: 15 16 buildPythonPackage rec { 17 pname = "bip-utils"; 18 + version = "2.7.1"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; ··· 24 owner = "ebellocchia"; 25 repo = "bip_utils"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-QrCkLiGBdZTQCnbWSTN0PeoAsQfg2CoSGdZcbhqTvOk="; 28 }; 29 30 postPatch = '' ··· 41 ed25519-blake2b 42 py-sr25519-bindings 43 pycryptodome 44 + ]; 45 + 46 + nativeCheckInputs = [ 47 + pytestCheckHook 48 ]; 49 50 pythonImportsCheck = [
+10 -12
pkgs/development/python-modules/blackjax/default.nix
··· 2 , buildPythonPackage 3 , pythonOlder 4 , fetchFromGitHub 5 - , fetchpatch 6 , pytestCheckHook 7 , fastprogress 8 , jax 9 , jaxlib ··· 14 15 buildPythonPackage rec { 16 pname = "blackjax"; 17 - version = "0.9.6"; 18 - disabled = pythonOlder "3.7"; 19 20 src = fetchFromGitHub { 21 owner = "blackjax-devs"; 22 repo = pname; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-EieDu9SJxi2cp1bHlxX4vvFZeDGMGIm24GoR8nSyjvE="; 25 }; 26 27 - patches = [ 28 - # remove in next release 29 - (fetchpatch { 30 - name = "fix-lbfgs-args"; 31 - url = "https://github.com/blackjax-devs/blackjax/commit/1aaa6f64bbcb0557b658604b2daba826e260cbc6.patch"; 32 - hash = "sha256-XyjorXPH5Ap35Tv1/lTeTWamjplJF29SsvOq59ypftE="; 33 - }) 34 - ]; 35 36 propagatedBuildInputs = [ 37 fastprogress ··· 56 meta = with lib; { 57 homepage = "https://blackjax-devs.github.io/blackjax"; 58 description = "Sampling library designed for ease of use, speed and modularity"; 59 license = licenses.asl20; 60 maintainers = with maintainers; [ bcdarwin ]; 61 };
··· 2 , buildPythonPackage 3 , pythonOlder 4 , fetchFromGitHub 5 , pytestCheckHook 6 + , setuptools-scm 7 , fastprogress 8 , jax 9 , jaxlib ··· 14 15 buildPythonPackage rec { 16 pname = "blackjax"; 17 + version = "1.0.0"; 18 + pyproject = true; 19 + 20 + disabled = pythonOlder "3.8"; 21 22 src = fetchFromGitHub { 23 owner = "blackjax-devs"; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 + hash = "sha256-hqOKSHyZ/BmOu6MJLeecD3H1BbLbZqywmlBzn3xjQRk="; 27 }; 28 29 + nativeBuildInputs = [ setuptools-scm ]; 30 + 31 + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 32 33 propagatedBuildInputs = [ 34 fastprogress ··· 53 meta = with lib; { 54 homepage = "https://blackjax-devs.github.io/blackjax"; 55 description = "Sampling library designed for ease of use, speed and modularity"; 56 + changelog = "https://github.com/blackjax-devs/blackjax/releases/tag/${version}"; 57 license = licenses.asl20; 58 maintainers = with maintainers; [ bcdarwin ]; 59 };
+3 -2
pkgs/development/python-modules/chex/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "chex"; 18 - version = "0.1.82"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.9"; ··· 24 owner = "deepmind"; 25 repo = pname; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-xBq22AaR2Tp1NSPefEyvCDeUYqRZlAf5LVHWo0luiXk="; 28 }; 29 30 propagatedBuildInputs = [ ··· 49 meta = with lib; { 50 description = "Chex is a library of utilities for helping to write reliable JAX code."; 51 homepage = "https://github.com/deepmind/chex"; 52 license = licenses.asl20; 53 maintainers = with maintainers; [ ndl ]; 54 };
··· 15 16 buildPythonPackage rec { 17 pname = "chex"; 18 + version = "0.1.83"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.9"; ··· 24 owner = "deepmind"; 25 repo = pname; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-iEachJf5NjOnkMWdP0aVQHWNPgUUBkMnzHKq3GP7t4w="; 28 }; 29 30 propagatedBuildInputs = [ ··· 49 meta = with lib; { 50 description = "Chex is a library of utilities for helping to write reliable JAX code."; 51 homepage = "https://github.com/deepmind/chex"; 52 + changelog = "https://github.com/google-deepmind/chex/releases/tag/v${version}"; 53 license = licenses.asl20; 54 maintainers = with maintainers; [ ndl ]; 55 };
+2 -2
pkgs/development/python-modules/in-n-out/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "in-n-out"; 16 - version = "0.1.8"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; ··· 21 src = fetchPypi { 22 pname = "in_n_out"; 23 inherit version; 24 - hash = "sha256-gWKvh4fmgutLNtBH+RQZnYDxEk46QUIM1T3mgOfQolQ="; 25 }; 26 27 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "in-n-out"; 16 + version = "0.1.9"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; ··· 21 src = fetchPypi { 22 pname = "in_n_out"; 23 inherit version; 24 + hash = "sha256-if65ROQg+vQtPCVCFFaBtNVxRDVZMsK4WWlfzcT5oto="; 25 }; 26 27 nativeBuildInputs = [
+4 -3
pkgs/development/python-modules/jaxopt/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "jaxopt"; 19 - version = "0.8"; 20 format = "setuptools"; 21 22 - disabled = pythonOlder "3.7"; 23 24 src = fetchFromGitHub { 25 owner = "google"; 26 repo = pname; 27 rev = "refs/tags/jaxopt-v${version}"; 28 - hash = "sha256-y3F2uXe1/TYy42WJl5Toj+CjY2FqYVK8D33apRdNvf4="; 29 }; 30 31 propagatedBuildInputs = [ ··· 60 meta = with lib; { 61 homepage = "https://jaxopt.github.io"; 62 description = "Hardware accelerated, batchable and differentiable optimizers in JAX"; 63 license = licenses.asl20; 64 maintainers = with maintainers; [ bcdarwin ]; 65 };
··· 16 17 buildPythonPackage rec { 18 pname = "jaxopt"; 19 + version = "0.8.1"; 20 format = "setuptools"; 21 22 + disabled = pythonOlder "3.8"; 23 24 src = fetchFromGitHub { 25 owner = "google"; 26 repo = pname; 27 rev = "refs/tags/jaxopt-v${version}"; 28 + hash = "sha256-5+GfRFzXyc1Ukp86NeK0qstTq9fkx+eDb4iXvxzRoKs="; 29 }; 30 31 propagatedBuildInputs = [ ··· 60 meta = with lib; { 61 homepage = "https://jaxopt.github.io"; 62 description = "Hardware accelerated, batchable and differentiable optimizers in JAX"; 63 + changelog = "https://github.com/google/jaxopt/releases/tag/jaxopt-v${version}"; 64 license = licenses.asl20; 65 maintainers = with maintainers; [ bcdarwin ]; 66 };
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "meshtastic"; 23 - version = "2.2.9"; 24 format = "setuptools"; 25 26 disabled = pythonOlder "3.7"; ··· 29 owner = "meshtastic"; 30 repo = "Meshtastic-python"; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-VHL5wxq9Ckczur5jmmsYzOnQhLwCXftR8rmBGQ80gOo="; 33 }; 34 35 propagatedBuildInputs = [
··· 20 21 buildPythonPackage rec { 22 pname = "meshtastic"; 23 + version = "2.2.10"; 24 format = "setuptools"; 25 26 disabled = pythonOlder "3.7"; ··· 29 owner = "meshtastic"; 30 repo = "Meshtastic-python"; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-AaEAI61MQCi1bUEc0xVNmDaVjXCPMvDIstIR/FuQ8aU="; 33 }; 34 35 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/zha-quirks/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "zha-quirks"; 12 - version = "0.0.104"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "zigpy"; 19 repo = "zha-device-handlers"; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-oPg+eQ89GhNX5ADTK9JvgXuBhH7HZs3Ktuami2v2a38="; 22 }; 23 24 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "zha-quirks"; 12 + version = "0.0.105"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "zigpy"; 19 repo = "zha-device-handlers"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-k4azIBjlS/J448ncu6cgB6oJtpS0Qb2Bnm11vq7RFEI="; 22 }; 23 24 propagatedBuildInputs = [
+4 -1
pkgs/development/rocm-modules/5/clr/default.nix
··· 147 }; 148 149 impureTests = { 150 - clr-icd = callPackage ./test.nix { 151 inherit rocm-smi; 152 clr = finalAttrs.finalPackage; 153 }; 154 };
··· 147 }; 148 149 impureTests = { 150 + rocm-smi = callPackage ./test-rocm-smi.nix { 151 inherit rocm-smi; 152 + clr = finalAttrs.finalPackage; 153 + }; 154 + opencl-example = callPackage ./test-opencl-example.nix { 155 clr = finalAttrs.finalPackage; 156 }; 157 };
+75
pkgs/development/rocm-modules/5/clr/test-opencl-example.nix
···
··· 1 + { lib 2 + , stdenv 3 + , makeImpureTest 4 + , fetchFromGitHub 5 + , clr 6 + , cmake 7 + , pkg-config 8 + , glew 9 + , freeglut 10 + , opencl-headers 11 + , ocl-icd 12 + }: 13 + 14 + let 15 + 16 + examples = stdenv.mkDerivation { 17 + pname = "amd-app-samples"; 18 + version = "2018-06-10"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "OpenCL"; 22 + repo = "AMD_APP_samples"; 23 + rev = "54da6ca465634e78fc51fc25edf5840467ee2411"; 24 + hash = "sha256-qARQpUiYsamHbko/I1gPZE9pUGJ+3396Vk2n7ERSftA="; 25 + }; 26 + 27 + nativeBuildInputs = [ cmake pkg-config ]; 28 + 29 + buildInputs = [ glew freeglut opencl-headers ocl-icd ]; 30 + 31 + installPhase = '' 32 + runHook preInstall 33 + 34 + mkdir -p $out/bin 35 + # Example path is bin/x86_64/Release/cl/Reduction/Reduction 36 + cp -r bin/*/*/*/*/* $out/bin/ 37 + 38 + runHook postInstall 39 + ''; 40 + 41 + cmakeFlags = [ "-DBUILD_CPP_CL=OFF" ]; 42 + 43 + meta = with lib; { 44 + description = "Samples from the AMD APP SDK (with OpenCRun support) "; 45 + homepage = "https://github.com/OpenCL/AMD_APP_samples"; 46 + license = licenses.bsd2; 47 + platforms = platforms.linux; 48 + maintainers = lib.teams.rocm.members; 49 + }; 50 + }; 51 + 52 + in 53 + makeImpureTest { 54 + name = "opencl-example"; 55 + testedPackage = "rocmPackages_5.clr"; 56 + 57 + sandboxPaths = [ "/sys" "/dev/dri" "/dev/kfd" ]; 58 + 59 + nativeBuildInputs = [ examples ]; 60 + 61 + OCL_ICD_VENDORS = "${clr.icd}/etc/OpenCL/vendors"; 62 + 63 + testScript = '' 64 + # Examples load resources from current directory 65 + cd ${examples}/bin 66 + echo OCL_ICD_VENDORS=$OCL_ICD_VENDORS 67 + pwd 68 + 69 + HelloWorld | grep HelloWorld 70 + ''; 71 + 72 + meta = with lib; { 73 + maintainers = teams.rocm.members; 74 + }; 75 + }
+2 -2
pkgs/development/rocm-modules/5/clr/test.nix pkgs/development/rocm-modules/5/clr/test-rocm-smi.nix
··· 6 }: 7 8 makeImpureTest { 9 - name = "clr-icd"; 10 - testedPackage = "rocmPackages.clr"; 11 nativeBuildInputs = [ clinfo rocm-smi ]; 12 OCL_ICD_VENDORS = "${clr.icd}/etc/OpenCL/vendors"; 13
··· 6 }: 7 8 makeImpureTest { 9 + name = "rocm-smi"; 10 + testedPackage = "rocmPackages_5.clr"; 11 nativeBuildInputs = [ clinfo rocm-smi ]; 12 OCL_ICD_VENDORS = "${clr.icd}/etc/OpenCL/vendors"; 13
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 - version = "2.5.6"; 26 format = "setuptools"; 27 28 src = fetchFromGitHub { 29 owner = "bridgecrewio"; 30 repo = pname; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-X+JEhoFKT+nxgxABojC8jZiGp8bubJWi0qWNfU9kwDc="; 33 }; 34 35 patches = [
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 + version = "2.5.7"; 26 format = "setuptools"; 27 28 src = fetchFromGitHub { 29 owner = "bridgecrewio"; 30 repo = pname; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-w9clUN/g7pKxqQNw6RwG66UOoUCaNm2tCC6+/ofs8HM="; 33 }; 34 35 patches = [
-3536
pkgs/development/tools/language-servers/nls/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "addr2line" 7 - version = "0.21.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 - 20 - [[package]] 21 - name = "ahash" 22 - version = "0.8.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 25 - dependencies = [ 26 - "cfg-if", 27 - "getrandom 0.2.10", 28 - "once_cell", 29 - "version_check", 30 - ] 31 - 32 - [[package]] 33 - name = "aho-corasick" 34 - version = "1.0.5" 35 - source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" 37 - dependencies = [ 38 - "memchr", 39 - ] 40 - 41 - [[package]] 42 - name = "anes" 43 - version = "0.1.6" 44 - source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 46 - 47 - [[package]] 48 - name = "ansi_term" 49 - version = "0.12.1" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 52 - dependencies = [ 53 - "winapi", 54 - ] 55 - 56 - [[package]] 57 - name = "anstream" 58 - version = "0.5.0" 59 - source = "registry+https://github.com/rust-lang/crates.io-index" 60 - checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" 61 - dependencies = [ 62 - "anstyle", 63 - "anstyle-parse", 64 - "anstyle-query", 65 - "anstyle-wincon", 66 - "colorchoice", 67 - "utf8parse", 68 - ] 69 - 70 - [[package]] 71 - name = "anstyle" 72 - version = "1.0.3" 73 - source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46" 75 - 76 - [[package]] 77 - name = "anstyle-parse" 78 - version = "0.2.1" 79 - source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 81 - dependencies = [ 82 - "utf8parse", 83 - ] 84 - 85 - [[package]] 86 - name = "anstyle-query" 87 - version = "1.0.0" 88 - source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 90 - dependencies = [ 91 - "windows-sys 0.48.0", 92 - ] 93 - 94 - [[package]] 95 - name = "anstyle-wincon" 96 - version = "2.1.0" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" 99 - dependencies = [ 100 - "anstyle", 101 - "windows-sys 0.48.0", 102 - ] 103 - 104 - [[package]] 105 - name = "anyhow" 106 - version = "1.0.75" 107 - source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 109 - 110 - [[package]] 111 - name = "arrayvec" 112 - version = "0.5.2" 113 - source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 115 - 116 - [[package]] 117 - name = "arrayvec" 118 - version = "0.7.4" 119 - source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 121 - 122 - [[package]] 123 - name = "ascii-canvas" 124 - version = "3.0.0" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 127 - dependencies = [ 128 - "term", 129 - ] 130 - 131 - [[package]] 132 - name = "assert_cmd" 133 - version = "2.0.12" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6" 136 - dependencies = [ 137 - "anstyle", 138 - "bstr", 139 - "doc-comment", 140 - "predicates", 141 - "predicates-core", 142 - "predicates-tree", 143 - "wait-timeout", 144 - ] 145 - 146 - [[package]] 147 - name = "assert_matches" 148 - version = "1.5.0" 149 - source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 151 - 152 - [[package]] 153 - name = "atty" 154 - version = "0.2.14" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 157 - dependencies = [ 158 - "hermit-abi 0.1.19", 159 - "libc", 160 - "winapi", 161 - ] 162 - 163 - [[package]] 164 - name = "autocfg" 165 - version = "1.1.0" 166 - source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 168 - 169 - [[package]] 170 - name = "backtrace" 171 - version = "0.3.69" 172 - source = "registry+https://github.com/rust-lang/crates.io-index" 173 - checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 174 - dependencies = [ 175 - "addr2line", 176 - "cc", 177 - "cfg-if", 178 - "libc", 179 - "miniz_oxide", 180 - "object", 181 - "rustc-demangle", 182 - ] 183 - 184 - [[package]] 185 - name = "base64" 186 - version = "0.13.1" 187 - source = "registry+https://github.com/rust-lang/crates.io-index" 188 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 189 - 190 - [[package]] 191 - name = "base64" 192 - version = "0.21.4" 193 - source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 195 - 196 - [[package]] 197 - name = "beef" 198 - version = "0.5.2" 199 - source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1" 201 - 202 - [[package]] 203 - name = "bincode" 204 - version = "1.3.3" 205 - source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 207 - dependencies = [ 208 - "serde", 209 - ] 210 - 211 - [[package]] 212 - name = "bit-set" 213 - version = "0.5.3" 214 - source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 216 - dependencies = [ 217 - "bit-vec", 218 - ] 219 - 220 - [[package]] 221 - name = "bit-vec" 222 - version = "0.6.3" 223 - source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 225 - 226 - [[package]] 227 - name = "bitflags" 228 - version = "1.3.2" 229 - source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 231 - 232 - [[package]] 233 - name = "bitflags" 234 - version = "2.4.0" 235 - source = "registry+https://github.com/rust-lang/crates.io-index" 236 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 237 - 238 - [[package]] 239 - name = "block-buffer" 240 - version = "0.9.0" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 243 - dependencies = [ 244 - "block-padding", 245 - "generic-array", 246 - ] 247 - 248 - [[package]] 249 - name = "block-buffer" 250 - version = "0.10.4" 251 - source = "registry+https://github.com/rust-lang/crates.io-index" 252 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 253 - dependencies = [ 254 - "generic-array", 255 - ] 256 - 257 - [[package]] 258 - name = "block-padding" 259 - version = "0.2.1" 260 - source = "registry+https://github.com/rust-lang/crates.io-index" 261 - checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" 262 - 263 - [[package]] 264 - name = "bstr" 265 - version = "1.6.2" 266 - source = "registry+https://github.com/rust-lang/crates.io-index" 267 - checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" 268 - dependencies = [ 269 - "memchr", 270 - "regex-automata", 271 - "serde", 272 - ] 273 - 274 - [[package]] 275 - name = "bumpalo" 276 - version = "3.13.0" 277 - source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 279 - 280 - [[package]] 281 - name = "bytemuck" 282 - version = "1.14.0" 283 - source = "registry+https://github.com/rust-lang/crates.io-index" 284 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 285 - 286 - [[package]] 287 - name = "cast" 288 - version = "0.3.0" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 291 - 292 - [[package]] 293 - name = "cc" 294 - version = "1.0.83" 295 - source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 297 - dependencies = [ 298 - "libc", 299 - ] 300 - 301 - [[package]] 302 - name = "cfg-if" 303 - version = "1.0.0" 304 - source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 306 - 307 - [[package]] 308 - name = "ciborium" 309 - version = "0.2.1" 310 - source = "registry+https://github.com/rust-lang/crates.io-index" 311 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 312 - dependencies = [ 313 - "ciborium-io", 314 - "ciborium-ll", 315 - "serde", 316 - ] 317 - 318 - [[package]] 319 - name = "ciborium-io" 320 - version = "0.2.1" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 323 - 324 - [[package]] 325 - name = "ciborium-ll" 326 - version = "0.2.1" 327 - source = "registry+https://github.com/rust-lang/crates.io-index" 328 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 329 - dependencies = [ 330 - "ciborium-io", 331 - "half", 332 - ] 333 - 334 - [[package]] 335 - name = "clap" 336 - version = "3.2.25" 337 - source = "registry+https://github.com/rust-lang/crates.io-index" 338 - checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 339 - dependencies = [ 340 - "bitflags 1.3.2", 341 - "clap_lex 0.2.4", 342 - "indexmap 1.9.3", 343 - "textwrap", 344 - ] 345 - 346 - [[package]] 347 - name = "clap" 348 - version = "4.4.3" 349 - source = "registry+https://github.com/rust-lang/crates.io-index" 350 - checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6" 351 - dependencies = [ 352 - "clap_builder", 353 - "clap_derive", 354 - ] 355 - 356 - [[package]] 357 - name = "clap_builder" 358 - version = "4.4.2" 359 - source = "registry+https://github.com/rust-lang/crates.io-index" 360 - checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" 361 - dependencies = [ 362 - "anstream", 363 - "anstyle", 364 - "clap_lex 0.5.1", 365 - "strsim", 366 - "terminal_size", 367 - ] 368 - 369 - [[package]] 370 - name = "clap_complete" 371 - version = "4.4.1" 372 - source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "4110a1e6af615a9e6d0a36f805d5c99099f8bab9b8042f5bc1fa220a4a89e36f" 374 - dependencies = [ 375 - "clap 4.4.3", 376 - ] 377 - 378 - [[package]] 379 - name = "clap_derive" 380 - version = "4.4.2" 381 - source = "registry+https://github.com/rust-lang/crates.io-index" 382 - checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" 383 - dependencies = [ 384 - "heck", 385 - "proc-macro2 1.0.67", 386 - "quote 1.0.33", 387 - "syn 2.0.33", 388 - ] 389 - 390 - [[package]] 391 - name = "clap_lex" 392 - version = "0.2.4" 393 - source = "registry+https://github.com/rust-lang/crates.io-index" 394 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 395 - dependencies = [ 396 - "os_str_bytes", 397 - ] 398 - 399 - [[package]] 400 - name = "clap_lex" 401 - version = "0.5.1" 402 - source = "registry+https://github.com/rust-lang/crates.io-index" 403 - checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" 404 - 405 - [[package]] 406 - name = "clipboard-win" 407 - version = "4.5.0" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" 410 - dependencies = [ 411 - "error-code", 412 - "str-buf", 413 - "winapi", 414 - ] 415 - 416 - [[package]] 417 - name = "codespan" 418 - version = "0.11.1" 419 - source = "registry+https://github.com/rust-lang/crates.io-index" 420 - checksum = "3362992a0d9f1dd7c3d0e89e0ab2bb540b7a95fea8cd798090e758fda2899b5e" 421 - dependencies = [ 422 - "codespan-reporting", 423 - ] 424 - 425 - [[package]] 426 - name = "codespan-lsp" 427 - version = "0.11.1" 428 - source = "registry+https://github.com/rust-lang/crates.io-index" 429 - checksum = "fc4159b76af02757139baf42c0c971c6dc155330999fbfd8eddb29b97fb2db68" 430 - dependencies = [ 431 - "codespan-reporting", 432 - "lsp-types", 433 - "url", 434 - ] 435 - 436 - [[package]] 437 - name = "codespan-reporting" 438 - version = "0.11.1" 439 - source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 441 - dependencies = [ 442 - "termcolor", 443 - "unicode-width", 444 - ] 445 - 446 - [[package]] 447 - name = "colorchoice" 448 - version = "1.0.0" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 451 - 452 - [[package]] 453 - name = "comrak" 454 - version = "0.17.1" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "0c5a805f31fb098b1611170028501077ceb8c9e78f5345530f4fdefae9b61119" 457 - dependencies = [ 458 - "clap 4.4.3", 459 - "entities", 460 - "memchr", 461 - "once_cell", 462 - "regex", 463 - "shell-words", 464 - "slug", 465 - "syntect", 466 - "typed-arena", 467 - "unicode_categories", 468 - "xdg", 469 - ] 470 - 471 - [[package]] 472 - name = "console" 473 - version = "0.15.7" 474 - source = "registry+https://github.com/rust-lang/crates.io-index" 475 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 476 - dependencies = [ 477 - "encode_unicode", 478 - "lazy_static", 479 - "libc", 480 - "windows-sys 0.45.0", 481 - ] 482 - 483 - [[package]] 484 - name = "convert_case" 485 - version = "0.4.0" 486 - source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 488 - 489 - [[package]] 490 - name = "coolor" 491 - version = "0.5.0" 492 - source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "af4d7a805ca0d92f8c61a31c809d4323fdaa939b0b440e544d21db7797c5aaad" 494 - dependencies = [ 495 - "crossterm", 496 - ] 497 - 498 - [[package]] 499 - name = "cpp_demangle" 500 - version = "0.4.3" 501 - source = "registry+https://github.com/rust-lang/crates.io-index" 502 - checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119" 503 - dependencies = [ 504 - "cfg-if", 505 - ] 506 - 507 - [[package]] 508 - name = "cpufeatures" 509 - version = "0.2.9" 510 - source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 512 - dependencies = [ 513 - "libc", 514 - ] 515 - 516 - [[package]] 517 - name = "crc32fast" 518 - version = "1.3.2" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 521 - dependencies = [ 522 - "cfg-if", 523 - ] 524 - 525 - [[package]] 526 - name = "criterion" 527 - version = "0.4.0" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 530 - dependencies = [ 531 - "anes", 532 - "atty", 533 - "cast", 534 - "ciborium", 535 - "clap 3.2.25", 536 - "criterion-plot", 537 - "itertools 0.10.5", 538 - "lazy_static", 539 - "num-traits", 540 - "oorandom", 541 - "plotters", 542 - "rayon", 543 - "regex", 544 - "serde", 545 - "serde_derive", 546 - "serde_json", 547 - "tinytemplate", 548 - "walkdir", 549 - ] 550 - 551 - [[package]] 552 - name = "criterion-plot" 553 - version = "0.5.0" 554 - source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 556 - dependencies = [ 557 - "cast", 558 - "itertools 0.10.5", 559 - ] 560 - 561 - [[package]] 562 - name = "crossbeam" 563 - version = "0.8.2" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 566 - dependencies = [ 567 - "cfg-if", 568 - "crossbeam-channel", 569 - "crossbeam-deque", 570 - "crossbeam-epoch", 571 - "crossbeam-queue", 572 - "crossbeam-utils", 573 - ] 574 - 575 - [[package]] 576 - name = "crossbeam-channel" 577 - version = "0.5.8" 578 - source = "registry+https://github.com/rust-lang/crates.io-index" 579 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 580 - dependencies = [ 581 - "cfg-if", 582 - "crossbeam-utils", 583 - ] 584 - 585 - [[package]] 586 - name = "crossbeam-deque" 587 - version = "0.8.3" 588 - source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 590 - dependencies = [ 591 - "cfg-if", 592 - "crossbeam-epoch", 593 - "crossbeam-utils", 594 - ] 595 - 596 - [[package]] 597 - name = "crossbeam-epoch" 598 - version = "0.9.15" 599 - source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 601 - dependencies = [ 602 - "autocfg", 603 - "cfg-if", 604 - "crossbeam-utils", 605 - "memoffset 0.9.0", 606 - "scopeguard", 607 - ] 608 - 609 - [[package]] 610 - name = "crossbeam-queue" 611 - version = "0.3.8" 612 - source = "registry+https://github.com/rust-lang/crates.io-index" 613 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 614 - dependencies = [ 615 - "cfg-if", 616 - "crossbeam-utils", 617 - ] 618 - 619 - [[package]] 620 - name = "crossbeam-utils" 621 - version = "0.8.16" 622 - source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 624 - dependencies = [ 625 - "cfg-if", 626 - ] 627 - 628 - [[package]] 629 - name = "crossterm" 630 - version = "0.23.2" 631 - source = "registry+https://github.com/rust-lang/crates.io-index" 632 - checksum = "a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17" 633 - dependencies = [ 634 - "bitflags 1.3.2", 635 - "crossterm_winapi", 636 - "libc", 637 - "mio", 638 - "parking_lot", 639 - "signal-hook", 640 - "signal-hook-mio", 641 - "winapi", 642 - ] 643 - 644 - [[package]] 645 - name = "crossterm_winapi" 646 - version = "0.9.1" 647 - source = "registry+https://github.com/rust-lang/crates.io-index" 648 - checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 649 - dependencies = [ 650 - "winapi", 651 - ] 652 - 653 - [[package]] 654 - name = "crunchy" 655 - version = "0.2.2" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 658 - 659 - [[package]] 660 - name = "crypto-common" 661 - version = "0.1.6" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 664 - dependencies = [ 665 - "generic-array", 666 - "typenum", 667 - ] 668 - 669 - [[package]] 670 - name = "csv" 671 - version = "1.2.2" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" 674 - dependencies = [ 675 - "csv-core", 676 - "itoa", 677 - "ryu", 678 - "serde", 679 - ] 680 - 681 - [[package]] 682 - name = "csv-core" 683 - version = "0.1.10" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 686 - dependencies = [ 687 - "memchr", 688 - ] 689 - 690 - [[package]] 691 - name = "debugid" 692 - version = "0.8.0" 693 - source = "registry+https://github.com/rust-lang/crates.io-index" 694 - checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 695 - dependencies = [ 696 - "uuid", 697 - ] 698 - 699 - [[package]] 700 - name = "deranged" 701 - version = "0.3.8" 702 - source = "registry+https://github.com/rust-lang/crates.io-index" 703 - checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 704 - 705 - [[package]] 706 - name = "derive_more" 707 - version = "0.99.17" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 710 - dependencies = [ 711 - "convert_case", 712 - "proc-macro2 1.0.67", 713 - "quote 1.0.33", 714 - "rustc_version", 715 - "syn 1.0.109", 716 - ] 717 - 718 - [[package]] 719 - name = "deunicode" 720 - version = "0.4.4" 721 - source = "registry+https://github.com/rust-lang/crates.io-index" 722 - checksum = "d95203a6a50906215a502507c0f879a0ce7ff205a6111e2db2a5ef8e4bb92e43" 723 - 724 - [[package]] 725 - name = "diff" 726 - version = "0.1.13" 727 - source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 729 - 730 - [[package]] 731 - name = "difflib" 732 - version = "0.4.0" 733 - source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 735 - 736 - [[package]] 737 - name = "digest" 738 - version = "0.9.0" 739 - source = "registry+https://github.com/rust-lang/crates.io-index" 740 - checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 741 - dependencies = [ 742 - "generic-array", 743 - ] 744 - 745 - [[package]] 746 - name = "digest" 747 - version = "0.10.7" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 750 - dependencies = [ 751 - "block-buffer 0.10.4", 752 - "crypto-common", 753 - ] 754 - 755 - [[package]] 756 - name = "directories" 757 - version = "4.0.1" 758 - source = "registry+https://github.com/rust-lang/crates.io-index" 759 - checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210" 760 - dependencies = [ 761 - "dirs-sys", 762 - ] 763 - 764 - [[package]] 765 - name = "dirs-next" 766 - version = "2.0.0" 767 - source = "registry+https://github.com/rust-lang/crates.io-index" 768 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 769 - dependencies = [ 770 - "cfg-if", 771 - "dirs-sys-next", 772 - ] 773 - 774 - [[package]] 775 - name = "dirs-sys" 776 - version = "0.3.7" 777 - source = "registry+https://github.com/rust-lang/crates.io-index" 778 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 779 - dependencies = [ 780 - "libc", 781 - "redox_users", 782 - "winapi", 783 - ] 784 - 785 - [[package]] 786 - name = "dirs-sys-next" 787 - version = "0.1.2" 788 - source = "registry+https://github.com/rust-lang/crates.io-index" 789 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 790 - dependencies = [ 791 - "libc", 792 - "redox_users", 793 - "winapi", 794 - ] 795 - 796 - [[package]] 797 - name = "doc-comment" 798 - version = "0.3.3" 799 - source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 801 - 802 - [[package]] 803 - name = "either" 804 - version = "1.9.0" 805 - source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 807 - 808 - [[package]] 809 - name = "embed-doc-image" 810 - version = "0.1.4" 811 - source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "af36f591236d9d822425cb6896595658fa558fcebf5ee8accac1d4b92c47166e" 813 - dependencies = [ 814 - "base64 0.13.1", 815 - "proc-macro2 1.0.67", 816 - "quote 1.0.33", 817 - "syn 1.0.109", 818 - ] 819 - 820 - [[package]] 821 - name = "ena" 822 - version = "0.14.2" 823 - source = "registry+https://github.com/rust-lang/crates.io-index" 824 - checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" 825 - dependencies = [ 826 - "log", 827 - ] 828 - 829 - [[package]] 830 - name = "encode_unicode" 831 - version = "0.3.6" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 834 - 835 - [[package]] 836 - name = "endian-type" 837 - version = "0.1.2" 838 - source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 840 - 841 - [[package]] 842 - name = "entities" 843 - version = "1.0.1" 844 - source = "registry+https://github.com/rust-lang/crates.io-index" 845 - checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca" 846 - 847 - [[package]] 848 - name = "env_logger" 849 - version = "0.10.0" 850 - source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 852 - dependencies = [ 853 - "humantime", 854 - "is-terminal", 855 - "log", 856 - "regex", 857 - "termcolor", 858 - ] 859 - 860 - [[package]] 861 - name = "equivalent" 862 - version = "1.0.1" 863 - source = "registry+https://github.com/rust-lang/crates.io-index" 864 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 865 - 866 - [[package]] 867 - name = "errno" 868 - version = "0.3.3" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 871 - dependencies = [ 872 - "errno-dragonfly", 873 - "libc", 874 - "windows-sys 0.48.0", 875 - ] 876 - 877 - [[package]] 878 - name = "errno-dragonfly" 879 - version = "0.1.2" 880 - source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 882 - dependencies = [ 883 - "cc", 884 - "libc", 885 - ] 886 - 887 - [[package]] 888 - name = "error-code" 889 - version = "2.3.1" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 892 - dependencies = [ 893 - "libc", 894 - "str-buf", 895 - ] 896 - 897 - [[package]] 898 - name = "fancy-regex" 899 - version = "0.11.0" 900 - source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 902 - dependencies = [ 903 - "bit-set", 904 - "regex", 905 - ] 906 - 907 - [[package]] 908 - name = "fastrand" 909 - version = "2.0.0" 910 - source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 912 - 913 - [[package]] 914 - name = "fd-lock" 915 - version = "3.0.13" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5" 918 - dependencies = [ 919 - "cfg-if", 920 - "rustix 0.38.13", 921 - "windows-sys 0.48.0", 922 - ] 923 - 924 - [[package]] 925 - name = "findshlibs" 926 - version = "0.10.2" 927 - source = "registry+https://github.com/rust-lang/crates.io-index" 928 - checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 929 - dependencies = [ 930 - "cc", 931 - "lazy_static", 932 - "libc", 933 - "winapi", 934 - ] 935 - 936 - [[package]] 937 - name = "fixedbitset" 938 - version = "0.4.2" 939 - source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 941 - 942 - [[package]] 943 - name = "flate2" 944 - version = "1.0.27" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 947 - dependencies = [ 948 - "crc32fast", 949 - "miniz_oxide", 950 - ] 951 - 952 - [[package]] 953 - name = "fnv" 954 - version = "1.0.7" 955 - source = "registry+https://github.com/rust-lang/crates.io-index" 956 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 957 - 958 - [[package]] 959 - name = "form_urlencoded" 960 - version = "1.2.0" 961 - source = "registry+https://github.com/rust-lang/crates.io-index" 962 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 963 - dependencies = [ 964 - "percent-encoding", 965 - ] 966 - 967 - [[package]] 968 - name = "futures" 969 - version = "0.3.28" 970 - source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 972 - dependencies = [ 973 - "futures-channel", 974 - "futures-core", 975 - "futures-executor", 976 - "futures-io", 977 - "futures-sink", 978 - "futures-task", 979 - "futures-util", 980 - ] 981 - 982 - [[package]] 983 - name = "futures-channel" 984 - version = "0.3.28" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 987 - dependencies = [ 988 - "futures-core", 989 - "futures-sink", 990 - ] 991 - 992 - [[package]] 993 - name = "futures-core" 994 - version = "0.3.28" 995 - source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 997 - 998 - [[package]] 999 - name = "futures-executor" 1000 - version = "0.3.28" 1001 - source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1003 - dependencies = [ 1004 - "futures-core", 1005 - "futures-task", 1006 - "futures-util", 1007 - ] 1008 - 1009 - [[package]] 1010 - name = "futures-io" 1011 - version = "0.3.28" 1012 - source = "registry+https://github.com/rust-lang/crates.io-index" 1013 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1014 - 1015 - [[package]] 1016 - name = "futures-macro" 1017 - version = "0.3.28" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1020 - dependencies = [ 1021 - "proc-macro2 1.0.67", 1022 - "quote 1.0.33", 1023 - "syn 2.0.33", 1024 - ] 1025 - 1026 - [[package]] 1027 - name = "futures-sink" 1028 - version = "0.3.28" 1029 - source = "registry+https://github.com/rust-lang/crates.io-index" 1030 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1031 - 1032 - [[package]] 1033 - name = "futures-task" 1034 - version = "0.3.28" 1035 - source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1037 - 1038 - [[package]] 1039 - name = "futures-util" 1040 - version = "0.3.28" 1041 - source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1043 - dependencies = [ 1044 - "futures-channel", 1045 - "futures-core", 1046 - "futures-io", 1047 - "futures-macro", 1048 - "futures-sink", 1049 - "futures-task", 1050 - "memchr", 1051 - "pin-project-lite", 1052 - "pin-utils", 1053 - "slab", 1054 - ] 1055 - 1056 - [[package]] 1057 - name = "generic-array" 1058 - version = "0.14.7" 1059 - source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1061 - dependencies = [ 1062 - "typenum", 1063 - "version_check", 1064 - ] 1065 - 1066 - [[package]] 1067 - name = "getrandom" 1068 - version = "0.1.16" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1071 - dependencies = [ 1072 - "cfg-if", 1073 - "libc", 1074 - "wasi 0.9.0+wasi-snapshot-preview1", 1075 - ] 1076 - 1077 - [[package]] 1078 - name = "getrandom" 1079 - version = "0.2.10" 1080 - source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 1082 - dependencies = [ 1083 - "cfg-if", 1084 - "libc", 1085 - "wasi 0.11.0+wasi-snapshot-preview1", 1086 - ] 1087 - 1088 - [[package]] 1089 - name = "gimli" 1090 - version = "0.28.0" 1091 - source = "registry+https://github.com/rust-lang/crates.io-index" 1092 - checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1093 - 1094 - [[package]] 1095 - name = "git-version" 1096 - version = "0.3.5" 1097 - source = "registry+https://github.com/rust-lang/crates.io-index" 1098 - checksum = "f6b0decc02f4636b9ccad390dcbe77b722a77efedfa393caf8379a51d5c61899" 1099 - dependencies = [ 1100 - "git-version-macro", 1101 - "proc-macro-hack", 1102 - ] 1103 - 1104 - [[package]] 1105 - name = "git-version-macro" 1106 - version = "0.3.5" 1107 - source = "registry+https://github.com/rust-lang/crates.io-index" 1108 - checksum = "fe69f1cbdb6e28af2bac214e943b99ce8a0a06b447d15d3e61161b0423139f3f" 1109 - dependencies = [ 1110 - "proc-macro-hack", 1111 - "proc-macro2 1.0.67", 1112 - "quote 1.0.33", 1113 - "syn 1.0.109", 1114 - ] 1115 - 1116 - [[package]] 1117 - name = "glob" 1118 - version = "0.3.1" 1119 - source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1121 - 1122 - [[package]] 1123 - name = "half" 1124 - version = "1.8.2" 1125 - source = "registry+https://github.com/rust-lang/crates.io-index" 1126 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1127 - 1128 - [[package]] 1129 - name = "hashbrown" 1130 - version = "0.12.3" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1133 - 1134 - [[package]] 1135 - name = "hashbrown" 1136 - version = "0.14.0" 1137 - source = "registry+https://github.com/rust-lang/crates.io-index" 1138 - checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 1139 - 1140 - [[package]] 1141 - name = "heck" 1142 - version = "0.4.1" 1143 - source = "registry+https://github.com/rust-lang/crates.io-index" 1144 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1145 - 1146 - [[package]] 1147 - name = "hermit-abi" 1148 - version = "0.1.19" 1149 - source = "registry+https://github.com/rust-lang/crates.io-index" 1150 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1151 - dependencies = [ 1152 - "libc", 1153 - ] 1154 - 1155 - [[package]] 1156 - name = "hermit-abi" 1157 - version = "0.3.2" 1158 - source = "registry+https://github.com/rust-lang/crates.io-index" 1159 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1160 - 1161 - [[package]] 1162 - name = "humantime" 1163 - version = "2.1.0" 1164 - source = "registry+https://github.com/rust-lang/crates.io-index" 1165 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1166 - 1167 - [[package]] 1168 - name = "idna" 1169 - version = "0.4.0" 1170 - source = "registry+https://github.com/rust-lang/crates.io-index" 1171 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1172 - dependencies = [ 1173 - "unicode-bidi", 1174 - "unicode-normalization", 1175 - ] 1176 - 1177 - [[package]] 1178 - name = "indexmap" 1179 - version = "1.9.3" 1180 - source = "registry+https://github.com/rust-lang/crates.io-index" 1181 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1182 - dependencies = [ 1183 - "autocfg", 1184 - "hashbrown 0.12.3", 1185 - "serde", 1186 - ] 1187 - 1188 - [[package]] 1189 - name = "indexmap" 1190 - version = "2.0.0" 1191 - source = "registry+https://github.com/rust-lang/crates.io-index" 1192 - checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 1193 - dependencies = [ 1194 - "equivalent", 1195 - "hashbrown 0.14.0", 1196 - ] 1197 - 1198 - [[package]] 1199 - name = "indoc" 1200 - version = "1.0.9" 1201 - source = "registry+https://github.com/rust-lang/crates.io-index" 1202 - checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 1203 - 1204 - [[package]] 1205 - name = "indoc" 1206 - version = "2.0.3" 1207 - source = "registry+https://github.com/rust-lang/crates.io-index" 1208 - checksum = "2c785eefb63ebd0e33416dfcb8d6da0bf27ce752843a45632a67bf10d4d4b5c4" 1209 - 1210 - [[package]] 1211 - name = "inferno" 1212 - version = "0.11.16" 1213 - source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "73c0fefcb6d409a6587c07515951495d482006f89a21daa0f2f783aa4fd5e027" 1215 - dependencies = [ 1216 - "ahash", 1217 - "indexmap 2.0.0", 1218 - "is-terminal", 1219 - "itoa", 1220 - "log", 1221 - "num-format", 1222 - "once_cell", 1223 - "quick-xml 0.26.0", 1224 - "rgb", 1225 - "str_stack", 1226 - ] 1227 - 1228 - [[package]] 1229 - name = "insta" 1230 - version = "1.31.0" 1231 - source = "registry+https://github.com/rust-lang/crates.io-index" 1232 - checksum = "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" 1233 - dependencies = [ 1234 - "console", 1235 - "lazy_static", 1236 - "linked-hash-map", 1237 - "regex", 1238 - "similar", 1239 - "yaml-rust", 1240 - ] 1241 - 1242 - [[package]] 1243 - name = "io-lifetimes" 1244 - version = "1.0.11" 1245 - source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1247 - dependencies = [ 1248 - "hermit-abi 0.3.2", 1249 - "libc", 1250 - "windows-sys 0.48.0", 1251 - ] 1252 - 1253 - [[package]] 1254 - name = "is-terminal" 1255 - version = "0.4.9" 1256 - source = "registry+https://github.com/rust-lang/crates.io-index" 1257 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1258 - dependencies = [ 1259 - "hermit-abi 0.3.2", 1260 - "rustix 0.38.13", 1261 - "windows-sys 0.48.0", 1262 - ] 1263 - 1264 - [[package]] 1265 - name = "itertools" 1266 - version = "0.9.0" 1267 - source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 1269 - dependencies = [ 1270 - "either", 1271 - ] 1272 - 1273 - [[package]] 1274 - name = "itertools" 1275 - version = "0.10.5" 1276 - source = "registry+https://github.com/rust-lang/crates.io-index" 1277 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1278 - dependencies = [ 1279 - "either", 1280 - ] 1281 - 1282 - [[package]] 1283 - name = "itertools" 1284 - version = "0.11.0" 1285 - source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 1287 - dependencies = [ 1288 - "either", 1289 - ] 1290 - 1291 - [[package]] 1292 - name = "itoa" 1293 - version = "1.0.9" 1294 - source = "registry+https://github.com/rust-lang/crates.io-index" 1295 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1296 - 1297 - [[package]] 1298 - name = "js-sys" 1299 - version = "0.3.61" 1300 - source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1302 - dependencies = [ 1303 - "wasm-bindgen", 1304 - ] 1305 - 1306 - [[package]] 1307 - name = "keccak" 1308 - version = "0.1.4" 1309 - source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" 1311 - dependencies = [ 1312 - "cpufeatures", 1313 - ] 1314 - 1315 - [[package]] 1316 - name = "lalrpop" 1317 - version = "0.19.12" 1318 - source = "registry+https://github.com/rust-lang/crates.io-index" 1319 - checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" 1320 - dependencies = [ 1321 - "ascii-canvas", 1322 - "bit-set", 1323 - "diff", 1324 - "ena", 1325 - "is-terminal", 1326 - "itertools 0.10.5", 1327 - "lalrpop-util", 1328 - "petgraph", 1329 - "regex", 1330 - "regex-syntax 0.6.29", 1331 - "string_cache", 1332 - "term", 1333 - "tiny-keccak", 1334 - "unicode-xid 0.2.4", 1335 - ] 1336 - 1337 - [[package]] 1338 - name = "lalrpop-util" 1339 - version = "0.19.12" 1340 - source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" 1342 - dependencies = [ 1343 - "regex", 1344 - ] 1345 - 1346 - [[package]] 1347 - name = "lazy_static" 1348 - version = "1.4.0" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1351 - 1352 - [[package]] 1353 - name = "libc" 1354 - version = "0.2.148" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 1357 - 1358 - [[package]] 1359 - name = "line-wrap" 1360 - version = "0.1.1" 1361 - source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1363 - dependencies = [ 1364 - "safemem", 1365 - ] 1366 - 1367 - [[package]] 1368 - name = "linked-hash-map" 1369 - version = "0.5.6" 1370 - source = "registry+https://github.com/rust-lang/crates.io-index" 1371 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1372 - 1373 - [[package]] 1374 - name = "linux-raw-sys" 1375 - version = "0.3.8" 1376 - source = "registry+https://github.com/rust-lang/crates.io-index" 1377 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1378 - 1379 - [[package]] 1380 - name = "linux-raw-sys" 1381 - version = "0.4.7" 1382 - source = "registry+https://github.com/rust-lang/crates.io-index" 1383 - checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" 1384 - 1385 - [[package]] 1386 - name = "lock_api" 1387 - version = "0.4.10" 1388 - source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1390 - dependencies = [ 1391 - "autocfg", 1392 - "scopeguard", 1393 - ] 1394 - 1395 - [[package]] 1396 - name = "log" 1397 - version = "0.4.20" 1398 - source = "registry+https://github.com/rust-lang/crates.io-index" 1399 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1400 - 1401 - [[package]] 1402 - name = "logos" 1403 - version = "0.12.1" 1404 - source = "registry+https://github.com/rust-lang/crates.io-index" 1405 - checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1" 1406 - dependencies = [ 1407 - "logos-derive", 1408 - ] 1409 - 1410 - [[package]] 1411 - name = "logos-derive" 1412 - version = "0.12.1" 1413 - source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c" 1415 - dependencies = [ 1416 - "beef", 1417 - "fnv", 1418 - "proc-macro2 1.0.67", 1419 - "quote 1.0.33", 1420 - "regex-syntax 0.6.29", 1421 - "syn 1.0.109", 1422 - ] 1423 - 1424 - [[package]] 1425 - name = "lsp-harness" 1426 - version = "0.1.0" 1427 - dependencies = [ 1428 - "anyhow", 1429 - "assert_cmd", 1430 - "env_logger", 1431 - "insta", 1432 - "log", 1433 - "lsp-server", 1434 - "lsp-types", 1435 - "nickel-lang-utils", 1436 - "serde", 1437 - "serde_json", 1438 - "test-generator", 1439 - "toml", 1440 - ] 1441 - 1442 - [[package]] 1443 - name = "lsp-server" 1444 - version = "0.6.0" 1445 - source = "registry+https://github.com/rust-lang/crates.io-index" 1446 - checksum = "f70570c1c29cf6654029b8fe201a5507c153f0d85be6f234d471d756bc36775a" 1447 - dependencies = [ 1448 - "crossbeam-channel", 1449 - "log", 1450 - "serde", 1451 - "serde_json", 1452 - ] 1453 - 1454 - [[package]] 1455 - name = "lsp-types" 1456 - version = "0.88.0" 1457 - source = "registry+https://github.com/rust-lang/crates.io-index" 1458 - checksum = "d8e8e042772e4e10b3785822f63c82399d0dd233825de44d2596f7fa86e023e0" 1459 - dependencies = [ 1460 - "bitflags 1.3.2", 1461 - "serde", 1462 - "serde_json", 1463 - "serde_repr", 1464 - "url", 1465 - ] 1466 - 1467 - [[package]] 1468 - name = "malachite" 1469 - version = "0.3.2" 1470 - source = "registry+https://github.com/rust-lang/crates.io-index" 1471 - checksum = "f6cf7f4730c30071ba374fac86ad35b1cb7a0716f774737768667ea3fa1828e3" 1472 - dependencies = [ 1473 - "malachite-base", 1474 - "malachite-nz", 1475 - "malachite-q", 1476 - ] 1477 - 1478 - [[package]] 1479 - name = "malachite-base" 1480 - version = "0.3.2" 1481 - source = "registry+https://github.com/rust-lang/crates.io-index" 1482 - checksum = "2b06bfa98a4b4802af5a4263b4ad4660e28e51e8490f6354eb9336c70767e1c5" 1483 - dependencies = [ 1484 - "itertools 0.9.0", 1485 - "rand", 1486 - "rand_chacha", 1487 - "ryu", 1488 - "sha3", 1489 - ] 1490 - 1491 - [[package]] 1492 - name = "malachite-nz" 1493 - version = "0.3.2" 1494 - source = "registry+https://github.com/rust-lang/crates.io-index" 1495 - checksum = "c89e21c64b7af5be3dc8cef16f786243faf59459fe4ba93b44efdeb264e5ade4" 1496 - dependencies = [ 1497 - "embed-doc-image", 1498 - "itertools 0.9.0", 1499 - "malachite-base", 1500 - "serde", 1501 - ] 1502 - 1503 - [[package]] 1504 - name = "malachite-q" 1505 - version = "0.3.2" 1506 - source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - checksum = "3755e541d5134b5016594c9043094172c4dda9259b3ce824a7b8101941850360" 1508 - dependencies = [ 1509 - "itertools 0.9.0", 1510 - "malachite-base", 1511 - "malachite-nz", 1512 - "serde", 1513 - ] 1514 - 1515 - [[package]] 1516 - name = "md-5" 1517 - version = "0.10.5" 1518 - source = "registry+https://github.com/rust-lang/crates.io-index" 1519 - checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 1520 - dependencies = [ 1521 - "digest 0.10.7", 1522 - ] 1523 - 1524 - [[package]] 1525 - name = "memchr" 1526 - version = "2.6.3" 1527 - source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 1529 - 1530 - [[package]] 1531 - name = "memmap2" 1532 - version = "0.5.10" 1533 - source = "registry+https://github.com/rust-lang/crates.io-index" 1534 - checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 1535 - dependencies = [ 1536 - "libc", 1537 - ] 1538 - 1539 - [[package]] 1540 - name = "memoffset" 1541 - version = "0.6.5" 1542 - source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1544 - dependencies = [ 1545 - "autocfg", 1546 - ] 1547 - 1548 - [[package]] 1549 - name = "memoffset" 1550 - version = "0.9.0" 1551 - source = "registry+https://github.com/rust-lang/crates.io-index" 1552 - checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1553 - dependencies = [ 1554 - "autocfg", 1555 - ] 1556 - 1557 - [[package]] 1558 - name = "minimad" 1559 - version = "0.12.0" 1560 - source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "38b136454924e4d020e55c4992e07c105b40d5c41b84662862f0e15bc0a2efef" 1562 - dependencies = [ 1563 - "once_cell", 1564 - ] 1565 - 1566 - [[package]] 1567 - name = "miniz_oxide" 1568 - version = "0.7.1" 1569 - source = "registry+https://github.com/rust-lang/crates.io-index" 1570 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1571 - dependencies = [ 1572 - "adler", 1573 - ] 1574 - 1575 - [[package]] 1576 - name = "mio" 1577 - version = "0.8.8" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1580 - dependencies = [ 1581 - "libc", 1582 - "log", 1583 - "wasi 0.11.0+wasi-snapshot-preview1", 1584 - "windows-sys 0.48.0", 1585 - ] 1586 - 1587 - [[package]] 1588 - name = "new_debug_unreachable" 1589 - version = "1.0.4" 1590 - source = "registry+https://github.com/rust-lang/crates.io-index" 1591 - checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1592 - 1593 - [[package]] 1594 - name = "nibble_vec" 1595 - version = "0.1.0" 1596 - source = "registry+https://github.com/rust-lang/crates.io-index" 1597 - checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 1598 - dependencies = [ 1599 - "smallvec", 1600 - ] 1601 - 1602 - [[package]] 1603 - name = "nickel-lang-cli" 1604 - version = "1.2.1" 1605 - dependencies = [ 1606 - "clap 4.4.3", 1607 - "clap_complete", 1608 - "directories", 1609 - "git-version", 1610 - "insta", 1611 - "nickel-lang-core", 1612 - "nickel-lang-utils", 1613 - "serde", 1614 - "tempfile", 1615 - "test-generator", 1616 - ] 1617 - 1618 - [[package]] 1619 - name = "nickel-lang-core" 1620 - version = "0.2.0" 1621 - dependencies = [ 1622 - "ansi_term", 1623 - "assert_matches", 1624 - "clap 4.4.3", 1625 - "codespan", 1626 - "codespan-reporting", 1627 - "comrak", 1628 - "criterion", 1629 - "indexmap 1.9.3", 1630 - "indoc 2.0.3", 1631 - "js-sys", 1632 - "lalrpop", 1633 - "lalrpop-util", 1634 - "logos", 1635 - "malachite", 1636 - "malachite-q", 1637 - "md-5", 1638 - "nickel-lang-utils", 1639 - "once_cell", 1640 - "pprof", 1641 - "pretty", 1642 - "pretty_assertions", 1643 - "regex", 1644 - "rustyline", 1645 - "rustyline-derive", 1646 - "serde", 1647 - "serde-wasm-bindgen", 1648 - "serde_json", 1649 - "serde_repr", 1650 - "serde_yaml", 1651 - "sha-1", 1652 - "sha2", 1653 - "similar", 1654 - "simple-counter", 1655 - "strip-ansi-escapes", 1656 - "termimad", 1657 - "test-generator", 1658 - "toml", 1659 - "topiary", 1660 - "tree-sitter-nickel 0.1.0", 1661 - "typed-arena", 1662 - "unicode-segmentation", 1663 - "void", 1664 - "wasm-bindgen", 1665 - ] 1666 - 1667 - [[package]] 1668 - name = "nickel-lang-lsp" 1669 - version = "1.2.1" 1670 - dependencies = [ 1671 - "anyhow", 1672 - "assert_cmd", 1673 - "assert_matches", 1674 - "clap 4.4.3", 1675 - "codespan", 1676 - "codespan-lsp", 1677 - "codespan-reporting", 1678 - "csv", 1679 - "derive_more", 1680 - "env_logger", 1681 - "insta", 1682 - "lalrpop", 1683 - "lalrpop-util", 1684 - "lazy_static", 1685 - "log", 1686 - "lsp-harness", 1687 - "lsp-server", 1688 - "lsp-types", 1689 - "nickel-lang-core", 1690 - "nickel-lang-utils", 1691 - "pretty_assertions", 1692 - "regex", 1693 - "serde", 1694 - "serde_json", 1695 - "test-generator", 1696 - "thiserror", 1697 - ] 1698 - 1699 - [[package]] 1700 - name = "nickel-lang-utils" 1701 - version = "0.1.0" 1702 - dependencies = [ 1703 - "codespan", 1704 - "criterion", 1705 - "nickel-lang-core", 1706 - "serde", 1707 - "toml", 1708 - ] 1709 - 1710 - [[package]] 1711 - name = "nickel-wasm-repl" 1712 - version = "0.1.0" 1713 - dependencies = [ 1714 - "nickel-lang-core", 1715 - ] 1716 - 1717 - [[package]] 1718 - name = "nix" 1719 - version = "0.26.4" 1720 - source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 1722 - dependencies = [ 1723 - "bitflags 1.3.2", 1724 - "cfg-if", 1725 - "libc", 1726 - ] 1727 - 1728 - [[package]] 1729 - name = "num-format" 1730 - version = "0.4.4" 1731 - source = "registry+https://github.com/rust-lang/crates.io-index" 1732 - checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 1733 - dependencies = [ 1734 - "arrayvec 0.7.4", 1735 - "itoa", 1736 - ] 1737 - 1738 - [[package]] 1739 - name = "num-traits" 1740 - version = "0.2.16" 1741 - source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1743 - dependencies = [ 1744 - "autocfg", 1745 - ] 1746 - 1747 - [[package]] 1748 - name = "num_cpus" 1749 - version = "1.16.0" 1750 - source = "registry+https://github.com/rust-lang/crates.io-index" 1751 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1752 - dependencies = [ 1753 - "hermit-abi 0.3.2", 1754 - "libc", 1755 - ] 1756 - 1757 - [[package]] 1758 - name = "object" 1759 - version = "0.32.1" 1760 - source = "registry+https://github.com/rust-lang/crates.io-index" 1761 - checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1762 - dependencies = [ 1763 - "memchr", 1764 - ] 1765 - 1766 - [[package]] 1767 - name = "once_cell" 1768 - version = "1.18.0" 1769 - source = "registry+https://github.com/rust-lang/crates.io-index" 1770 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1771 - 1772 - [[package]] 1773 - name = "onig" 1774 - version = "6.4.0" 1775 - source = "registry+https://github.com/rust-lang/crates.io-index" 1776 - checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 1777 - dependencies = [ 1778 - "bitflags 1.3.2", 1779 - "libc", 1780 - "once_cell", 1781 - "onig_sys", 1782 - ] 1783 - 1784 - [[package]] 1785 - name = "onig_sys" 1786 - version = "69.8.1" 1787 - source = "registry+https://github.com/rust-lang/crates.io-index" 1788 - checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 1789 - dependencies = [ 1790 - "cc", 1791 - "pkg-config", 1792 - ] 1793 - 1794 - [[package]] 1795 - name = "oorandom" 1796 - version = "11.1.3" 1797 - source = "registry+https://github.com/rust-lang/crates.io-index" 1798 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1799 - 1800 - [[package]] 1801 - name = "opaque-debug" 1802 - version = "0.3.0" 1803 - source = "registry+https://github.com/rust-lang/crates.io-index" 1804 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1805 - 1806 - [[package]] 1807 - name = "os_str_bytes" 1808 - version = "6.5.1" 1809 - source = "registry+https://github.com/rust-lang/crates.io-index" 1810 - checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" 1811 - 1812 - [[package]] 1813 - name = "pad" 1814 - version = "0.1.6" 1815 - source = "registry+https://github.com/rust-lang/crates.io-index" 1816 - checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3" 1817 - dependencies = [ 1818 - "unicode-width", 1819 - ] 1820 - 1821 - [[package]] 1822 - name = "parking_lot" 1823 - version = "0.12.1" 1824 - source = "registry+https://github.com/rust-lang/crates.io-index" 1825 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1826 - dependencies = [ 1827 - "lock_api", 1828 - "parking_lot_core", 1829 - ] 1830 - 1831 - [[package]] 1832 - name = "parking_lot_core" 1833 - version = "0.9.8" 1834 - source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1836 - dependencies = [ 1837 - "cfg-if", 1838 - "libc", 1839 - "redox_syscall 0.3.5", 1840 - "smallvec", 1841 - "windows-targets 0.48.5", 1842 - ] 1843 - 1844 - [[package]] 1845 - name = "percent-encoding" 1846 - version = "2.3.0" 1847 - source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1849 - 1850 - [[package]] 1851 - name = "petgraph" 1852 - version = "0.6.4" 1853 - source = "registry+https://github.com/rust-lang/crates.io-index" 1854 - checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 1855 - dependencies = [ 1856 - "fixedbitset", 1857 - "indexmap 2.0.0", 1858 - ] 1859 - 1860 - [[package]] 1861 - name = "phf_shared" 1862 - version = "0.10.0" 1863 - source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1865 - dependencies = [ 1866 - "siphasher", 1867 - ] 1868 - 1869 - [[package]] 1870 - name = "pin-project-lite" 1871 - version = "0.2.13" 1872 - source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1874 - 1875 - [[package]] 1876 - name = "pin-utils" 1877 - version = "0.1.0" 1878 - source = "registry+https://github.com/rust-lang/crates.io-index" 1879 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1880 - 1881 - [[package]] 1882 - name = "pkg-config" 1883 - version = "0.3.27" 1884 - source = "registry+https://github.com/rust-lang/crates.io-index" 1885 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1886 - 1887 - [[package]] 1888 - name = "plist" 1889 - version = "1.5.0" 1890 - source = "registry+https://github.com/rust-lang/crates.io-index" 1891 - checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" 1892 - dependencies = [ 1893 - "base64 0.21.4", 1894 - "indexmap 1.9.3", 1895 - "line-wrap", 1896 - "quick-xml 0.29.0", 1897 - "serde", 1898 - "time", 1899 - ] 1900 - 1901 - [[package]] 1902 - name = "plotters" 1903 - version = "0.3.5" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 1906 - dependencies = [ 1907 - "num-traits", 1908 - "plotters-backend", 1909 - "plotters-svg", 1910 - "wasm-bindgen", 1911 - "web-sys", 1912 - ] 1913 - 1914 - [[package]] 1915 - name = "plotters-backend" 1916 - version = "0.3.5" 1917 - source = "registry+https://github.com/rust-lang/crates.io-index" 1918 - checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 1919 - 1920 - [[package]] 1921 - name = "plotters-svg" 1922 - version = "0.3.5" 1923 - source = "registry+https://github.com/rust-lang/crates.io-index" 1924 - checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 1925 - dependencies = [ 1926 - "plotters-backend", 1927 - ] 1928 - 1929 - [[package]] 1930 - name = "pprof" 1931 - version = "0.11.1" 1932 - source = "registry+https://github.com/rust-lang/crates.io-index" 1933 - checksum = "196ded5d4be535690899a4631cc9f18cdc41b7ebf24a79400f46f48e49a11059" 1934 - dependencies = [ 1935 - "backtrace", 1936 - "cfg-if", 1937 - "criterion", 1938 - "findshlibs", 1939 - "inferno", 1940 - "libc", 1941 - "log", 1942 - "nix", 1943 - "once_cell", 1944 - "parking_lot", 1945 - "smallvec", 1946 - "symbolic-demangle", 1947 - "tempfile", 1948 - "thiserror", 1949 - ] 1950 - 1951 - [[package]] 1952 - name = "ppv-lite86" 1953 - version = "0.2.17" 1954 - source = "registry+https://github.com/rust-lang/crates.io-index" 1955 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1956 - 1957 - [[package]] 1958 - name = "precomputed-hash" 1959 - version = "0.1.1" 1960 - source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1962 - 1963 - [[package]] 1964 - name = "predicates" 1965 - version = "3.0.3" 1966 - source = "registry+https://github.com/rust-lang/crates.io-index" 1967 - checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" 1968 - dependencies = [ 1969 - "anstyle", 1970 - "difflib", 1971 - "itertools 0.10.5", 1972 - "predicates-core", 1973 - ] 1974 - 1975 - [[package]] 1976 - name = "predicates-core" 1977 - version = "1.0.6" 1978 - source = "registry+https://github.com/rust-lang/crates.io-index" 1979 - checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 1980 - 1981 - [[package]] 1982 - name = "predicates-tree" 1983 - version = "1.0.9" 1984 - source = "registry+https://github.com/rust-lang/crates.io-index" 1985 - checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 1986 - dependencies = [ 1987 - "predicates-core", 1988 - "termtree", 1989 - ] 1990 - 1991 - [[package]] 1992 - name = "pretty" 1993 - version = "0.11.3" 1994 - source = "registry+https://github.com/rust-lang/crates.io-index" 1995 - checksum = "83f3aa1e3ca87d3b124db7461265ac176b40c277f37e503eaa29c9c75c037846" 1996 - dependencies = [ 1997 - "arrayvec 0.5.2", 1998 - "log", 1999 - "typed-arena", 2000 - "unicode-segmentation", 2001 - ] 2002 - 2003 - [[package]] 2004 - name = "pretty_assertions" 2005 - version = "1.4.0" 2006 - source = "registry+https://github.com/rust-lang/crates.io-index" 2007 - checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 2008 - dependencies = [ 2009 - "diff", 2010 - "yansi", 2011 - ] 2012 - 2013 - [[package]] 2014 - name = "prettydiff" 2015 - version = "0.6.4" 2016 - source = "registry+https://github.com/rust-lang/crates.io-index" 2017 - checksum = "8ff1fec61082821f8236cf6c0c14e8172b62ce8a72a0eedc30d3b247bb68dc11" 2018 - dependencies = [ 2019 - "ansi_term", 2020 - "pad", 2021 - ] 2022 - 2023 - [[package]] 2024 - name = "proc-macro-hack" 2025 - version = "0.5.20+deprecated" 2026 - source = "registry+https://github.com/rust-lang/crates.io-index" 2027 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2028 - 2029 - [[package]] 2030 - name = "proc-macro2" 2031 - version = "0.4.30" 2032 - source = "registry+https://github.com/rust-lang/crates.io-index" 2033 - checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 2034 - dependencies = [ 2035 - "unicode-xid 0.1.0", 2036 - ] 2037 - 2038 - [[package]] 2039 - name = "proc-macro2" 2040 - version = "1.0.67" 2041 - source = "registry+https://github.com/rust-lang/crates.io-index" 2042 - checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 2043 - dependencies = [ 2044 - "unicode-ident", 2045 - ] 2046 - 2047 - [[package]] 2048 - name = "pyckel" 2049 - version = "1.2.1" 2050 - dependencies = [ 2051 - "codespan-reporting", 2052 - "nickel-lang-core", 2053 - "pyo3", 2054 - "pyo3-build-config", 2055 - ] 2056 - 2057 - [[package]] 2058 - name = "pyo3" 2059 - version = "0.17.3" 2060 - source = "registry+https://github.com/rust-lang/crates.io-index" 2061 - checksum = "268be0c73583c183f2b14052337465768c07726936a260f480f0857cb95ba543" 2062 - dependencies = [ 2063 - "cfg-if", 2064 - "indoc 1.0.9", 2065 - "libc", 2066 - "memoffset 0.6.5", 2067 - "parking_lot", 2068 - "pyo3-build-config", 2069 - "pyo3-ffi", 2070 - "pyo3-macros", 2071 - "unindent", 2072 - ] 2073 - 2074 - [[package]] 2075 - name = "pyo3-build-config" 2076 - version = "0.17.3" 2077 - source = "registry+https://github.com/rust-lang/crates.io-index" 2078 - checksum = "28fcd1e73f06ec85bf3280c48c67e731d8290ad3d730f8be9dc07946923005c8" 2079 - dependencies = [ 2080 - "once_cell", 2081 - "target-lexicon", 2082 - ] 2083 - 2084 - [[package]] 2085 - name = "pyo3-ffi" 2086 - version = "0.17.3" 2087 - source = "registry+https://github.com/rust-lang/crates.io-index" 2088 - checksum = "0f6cb136e222e49115b3c51c32792886defbfb0adead26a688142b346a0b9ffc" 2089 - dependencies = [ 2090 - "libc", 2091 - "pyo3-build-config", 2092 - ] 2093 - 2094 - [[package]] 2095 - name = "pyo3-macros" 2096 - version = "0.17.3" 2097 - source = "registry+https://github.com/rust-lang/crates.io-index" 2098 - checksum = "94144a1266e236b1c932682136dc35a9dee8d3589728f68130c7c3861ef96b28" 2099 - dependencies = [ 2100 - "proc-macro2 1.0.67", 2101 - "pyo3-macros-backend", 2102 - "quote 1.0.33", 2103 - "syn 1.0.109", 2104 - ] 2105 - 2106 - [[package]] 2107 - name = "pyo3-macros-backend" 2108 - version = "0.17.3" 2109 - source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "c8df9be978a2d2f0cdebabb03206ed73b11314701a5bfe71b0d753b81997777f" 2111 - dependencies = [ 2112 - "proc-macro2 1.0.67", 2113 - "quote 1.0.33", 2114 - "syn 1.0.109", 2115 - ] 2116 - 2117 - [[package]] 2118 - name = "quick-xml" 2119 - version = "0.26.0" 2120 - source = "registry+https://github.com/rust-lang/crates.io-index" 2121 - checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" 2122 - dependencies = [ 2123 - "memchr", 2124 - ] 2125 - 2126 - [[package]] 2127 - name = "quick-xml" 2128 - version = "0.29.0" 2129 - source = "registry+https://github.com/rust-lang/crates.io-index" 2130 - checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51" 2131 - dependencies = [ 2132 - "memchr", 2133 - ] 2134 - 2135 - [[package]] 2136 - name = "quote" 2137 - version = "0.6.13" 2138 - source = "registry+https://github.com/rust-lang/crates.io-index" 2139 - checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" 2140 - dependencies = [ 2141 - "proc-macro2 0.4.30", 2142 - ] 2143 - 2144 - [[package]] 2145 - name = "quote" 2146 - version = "1.0.33" 2147 - source = "registry+https://github.com/rust-lang/crates.io-index" 2148 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 2149 - dependencies = [ 2150 - "proc-macro2 1.0.67", 2151 - ] 2152 - 2153 - [[package]] 2154 - name = "radix_trie" 2155 - version = "0.2.1" 2156 - source = "registry+https://github.com/rust-lang/crates.io-index" 2157 - checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 2158 - dependencies = [ 2159 - "endian-type", 2160 - "nibble_vec", 2161 - ] 2162 - 2163 - [[package]] 2164 - name = "rand" 2165 - version = "0.7.3" 2166 - source = "registry+https://github.com/rust-lang/crates.io-index" 2167 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2168 - dependencies = [ 2169 - "getrandom 0.1.16", 2170 - "libc", 2171 - "rand_chacha", 2172 - "rand_core", 2173 - "rand_hc", 2174 - ] 2175 - 2176 - [[package]] 2177 - name = "rand_chacha" 2178 - version = "0.2.2" 2179 - source = "registry+https://github.com/rust-lang/crates.io-index" 2180 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2181 - dependencies = [ 2182 - "ppv-lite86", 2183 - "rand_core", 2184 - ] 2185 - 2186 - [[package]] 2187 - name = "rand_core" 2188 - version = "0.5.1" 2189 - source = "registry+https://github.com/rust-lang/crates.io-index" 2190 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2191 - dependencies = [ 2192 - "getrandom 0.1.16", 2193 - ] 2194 - 2195 - [[package]] 2196 - name = "rand_hc" 2197 - version = "0.2.0" 2198 - source = "registry+https://github.com/rust-lang/crates.io-index" 2199 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2200 - dependencies = [ 2201 - "rand_core", 2202 - ] 2203 - 2204 - [[package]] 2205 - name = "rayon" 2206 - version = "1.7.0" 2207 - source = "registry+https://github.com/rust-lang/crates.io-index" 2208 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 2209 - dependencies = [ 2210 - "either", 2211 - "rayon-core", 2212 - ] 2213 - 2214 - [[package]] 2215 - name = "rayon-core" 2216 - version = "1.11.0" 2217 - source = "registry+https://github.com/rust-lang/crates.io-index" 2218 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 2219 - dependencies = [ 2220 - "crossbeam-channel", 2221 - "crossbeam-deque", 2222 - "crossbeam-utils", 2223 - "num_cpus", 2224 - ] 2225 - 2226 - [[package]] 2227 - name = "redox_syscall" 2228 - version = "0.2.16" 2229 - source = "registry+https://github.com/rust-lang/crates.io-index" 2230 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2231 - dependencies = [ 2232 - "bitflags 1.3.2", 2233 - ] 2234 - 2235 - [[package]] 2236 - name = "redox_syscall" 2237 - version = "0.3.5" 2238 - source = "registry+https://github.com/rust-lang/crates.io-index" 2239 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2240 - dependencies = [ 2241 - "bitflags 1.3.2", 2242 - ] 2243 - 2244 - [[package]] 2245 - name = "redox_users" 2246 - version = "0.4.3" 2247 - source = "registry+https://github.com/rust-lang/crates.io-index" 2248 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2249 - dependencies = [ 2250 - "getrandom 0.2.10", 2251 - "redox_syscall 0.2.16", 2252 - "thiserror", 2253 - ] 2254 - 2255 - [[package]] 2256 - name = "regex" 2257 - version = "1.9.5" 2258 - source = "registry+https://github.com/rust-lang/crates.io-index" 2259 - checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 2260 - dependencies = [ 2261 - "aho-corasick", 2262 - "memchr", 2263 - "regex-automata", 2264 - "regex-syntax 0.7.5", 2265 - ] 2266 - 2267 - [[package]] 2268 - name = "regex-automata" 2269 - version = "0.3.8" 2270 - source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 2272 - dependencies = [ 2273 - "aho-corasick", 2274 - "memchr", 2275 - "regex-syntax 0.7.5", 2276 - ] 2277 - 2278 - [[package]] 2279 - name = "regex-syntax" 2280 - version = "0.6.29" 2281 - source = "registry+https://github.com/rust-lang/crates.io-index" 2282 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2283 - 2284 - [[package]] 2285 - name = "regex-syntax" 2286 - version = "0.7.5" 2287 - source = "registry+https://github.com/rust-lang/crates.io-index" 2288 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 2289 - 2290 - [[package]] 2291 - name = "rgb" 2292 - version = "0.8.36" 2293 - source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 2295 - dependencies = [ 2296 - "bytemuck", 2297 - ] 2298 - 2299 - [[package]] 2300 - name = "rustc-demangle" 2301 - version = "0.1.23" 2302 - source = "registry+https://github.com/rust-lang/crates.io-index" 2303 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2304 - 2305 - [[package]] 2306 - name = "rustc_version" 2307 - version = "0.4.0" 2308 - source = "registry+https://github.com/rust-lang/crates.io-index" 2309 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2310 - dependencies = [ 2311 - "semver", 2312 - ] 2313 - 2314 - [[package]] 2315 - name = "rustix" 2316 - version = "0.37.23" 2317 - source = "registry+https://github.com/rust-lang/crates.io-index" 2318 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 2319 - dependencies = [ 2320 - "bitflags 1.3.2", 2321 - "errno", 2322 - "io-lifetimes", 2323 - "libc", 2324 - "linux-raw-sys 0.3.8", 2325 - "windows-sys 0.48.0", 2326 - ] 2327 - 2328 - [[package]] 2329 - name = "rustix" 2330 - version = "0.38.13" 2331 - source = "registry+https://github.com/rust-lang/crates.io-index" 2332 - checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" 2333 - dependencies = [ 2334 - "bitflags 2.4.0", 2335 - "errno", 2336 - "libc", 2337 - "linux-raw-sys 0.4.7", 2338 - "windows-sys 0.48.0", 2339 - ] 2340 - 2341 - [[package]] 2342 - name = "rustversion" 2343 - version = "1.0.14" 2344 - source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2346 - 2347 - [[package]] 2348 - name = "rustyline" 2349 - version = "11.0.0" 2350 - source = "registry+https://github.com/rust-lang/crates.io-index" 2351 - checksum = "5dfc8644681285d1fb67a467fb3021bfea306b99b4146b166a1fe3ada965eece" 2352 - dependencies = [ 2353 - "bitflags 1.3.2", 2354 - "cfg-if", 2355 - "clipboard-win", 2356 - "dirs-next", 2357 - "fd-lock", 2358 - "libc", 2359 - "log", 2360 - "memchr", 2361 - "nix", 2362 - "radix_trie", 2363 - "scopeguard", 2364 - "unicode-segmentation", 2365 - "unicode-width", 2366 - "utf8parse", 2367 - "winapi", 2368 - ] 2369 - 2370 - [[package]] 2371 - name = "rustyline-derive" 2372 - version = "0.8.0" 2373 - source = "registry+https://github.com/rust-lang/crates.io-index" 2374 - checksum = "8218eaf5d960e3c478a1b0f129fa888dd3d8d22eb3de097e9af14c1ab4438024" 2375 - dependencies = [ 2376 - "proc-macro2 1.0.67", 2377 - "quote 1.0.33", 2378 - "syn 1.0.109", 2379 - ] 2380 - 2381 - [[package]] 2382 - name = "ryu" 2383 - version = "1.0.15" 2384 - source = "registry+https://github.com/rust-lang/crates.io-index" 2385 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2386 - 2387 - [[package]] 2388 - name = "safemem" 2389 - version = "0.3.3" 2390 - source = "registry+https://github.com/rust-lang/crates.io-index" 2391 - checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2392 - 2393 - [[package]] 2394 - name = "same-file" 2395 - version = "1.0.6" 2396 - source = "registry+https://github.com/rust-lang/crates.io-index" 2397 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2398 - dependencies = [ 2399 - "winapi-util", 2400 - ] 2401 - 2402 - [[package]] 2403 - name = "scopeguard" 2404 - version = "1.2.0" 2405 - source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2407 - 2408 - [[package]] 2409 - name = "semver" 2410 - version = "1.0.18" 2411 - source = "registry+https://github.com/rust-lang/crates.io-index" 2412 - checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 2413 - 2414 - [[package]] 2415 - name = "serde" 2416 - version = "1.0.188" 2417 - source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 2419 - dependencies = [ 2420 - "serde_derive", 2421 - ] 2422 - 2423 - [[package]] 2424 - name = "serde-wasm-bindgen" 2425 - version = "0.5.0" 2426 - source = "registry+https://github.com/rust-lang/crates.io-index" 2427 - checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" 2428 - dependencies = [ 2429 - "js-sys", 2430 - "serde", 2431 - "wasm-bindgen", 2432 - ] 2433 - 2434 - [[package]] 2435 - name = "serde_derive" 2436 - version = "1.0.188" 2437 - source = "registry+https://github.com/rust-lang/crates.io-index" 2438 - checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 2439 - dependencies = [ 2440 - "proc-macro2 1.0.67", 2441 - "quote 1.0.33", 2442 - "syn 2.0.33", 2443 - ] 2444 - 2445 - [[package]] 2446 - name = "serde_json" 2447 - version = "1.0.107" 2448 - source = "registry+https://github.com/rust-lang/crates.io-index" 2449 - checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 2450 - dependencies = [ 2451 - "itoa", 2452 - "ryu", 2453 - "serde", 2454 - ] 2455 - 2456 - [[package]] 2457 - name = "serde_repr" 2458 - version = "0.1.16" 2459 - source = "registry+https://github.com/rust-lang/crates.io-index" 2460 - checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 2461 - dependencies = [ 2462 - "proc-macro2 1.0.67", 2463 - "quote 1.0.33", 2464 - "syn 2.0.33", 2465 - ] 2466 - 2467 - [[package]] 2468 - name = "serde_spanned" 2469 - version = "0.6.3" 2470 - source = "registry+https://github.com/rust-lang/crates.io-index" 2471 - checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" 2472 - dependencies = [ 2473 - "serde", 2474 - ] 2475 - 2476 - [[package]] 2477 - name = "serde_yaml" 2478 - version = "0.9.25" 2479 - source = "registry+https://github.com/rust-lang/crates.io-index" 2480 - checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" 2481 - dependencies = [ 2482 - "indexmap 2.0.0", 2483 - "itoa", 2484 - "ryu", 2485 - "serde", 2486 - "unsafe-libyaml", 2487 - ] 2488 - 2489 - [[package]] 2490 - name = "sha-1" 2491 - version = "0.10.1" 2492 - source = "registry+https://github.com/rust-lang/crates.io-index" 2493 - checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 2494 - dependencies = [ 2495 - "cfg-if", 2496 - "cpufeatures", 2497 - "digest 0.10.7", 2498 - ] 2499 - 2500 - [[package]] 2501 - name = "sha2" 2502 - version = "0.10.7" 2503 - source = "registry+https://github.com/rust-lang/crates.io-index" 2504 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 2505 - dependencies = [ 2506 - "cfg-if", 2507 - "cpufeatures", 2508 - "digest 0.10.7", 2509 - ] 2510 - 2511 - [[package]] 2512 - name = "sha3" 2513 - version = "0.9.1" 2514 - source = "registry+https://github.com/rust-lang/crates.io-index" 2515 - checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" 2516 - dependencies = [ 2517 - "block-buffer 0.9.0", 2518 - "digest 0.9.0", 2519 - "keccak", 2520 - "opaque-debug", 2521 - ] 2522 - 2523 - [[package]] 2524 - name = "shell-words" 2525 - version = "1.1.0" 2526 - source = "registry+https://github.com/rust-lang/crates.io-index" 2527 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 2528 - 2529 - [[package]] 2530 - name = "signal-hook" 2531 - version = "0.3.17" 2532 - source = "registry+https://github.com/rust-lang/crates.io-index" 2533 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 2534 - dependencies = [ 2535 - "libc", 2536 - "signal-hook-registry", 2537 - ] 2538 - 2539 - [[package]] 2540 - name = "signal-hook-mio" 2541 - version = "0.2.3" 2542 - source = "registry+https://github.com/rust-lang/crates.io-index" 2543 - checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 2544 - dependencies = [ 2545 - "libc", 2546 - "mio", 2547 - "signal-hook", 2548 - ] 2549 - 2550 - [[package]] 2551 - name = "signal-hook-registry" 2552 - version = "1.4.1" 2553 - source = "registry+https://github.com/rust-lang/crates.io-index" 2554 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2555 - dependencies = [ 2556 - "libc", 2557 - ] 2558 - 2559 - [[package]] 2560 - name = "similar" 2561 - version = "2.2.1" 2562 - source = "registry+https://github.com/rust-lang/crates.io-index" 2563 - checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 2564 - 2565 - [[package]] 2566 - name = "simple-counter" 2567 - version = "0.1.0" 2568 - source = "registry+https://github.com/rust-lang/crates.io-index" 2569 - checksum = "4bb57743b52ea059937169c0061d70298fe2df1d2c988b44caae79dd979d9b49" 2570 - 2571 - [[package]] 2572 - name = "siphasher" 2573 - version = "0.3.11" 2574 - source = "registry+https://github.com/rust-lang/crates.io-index" 2575 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 2576 - 2577 - [[package]] 2578 - name = "slab" 2579 - version = "0.4.9" 2580 - source = "registry+https://github.com/rust-lang/crates.io-index" 2581 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2582 - dependencies = [ 2583 - "autocfg", 2584 - ] 2585 - 2586 - [[package]] 2587 - name = "slug" 2588 - version = "0.1.4" 2589 - source = "registry+https://github.com/rust-lang/crates.io-index" 2590 - checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" 2591 - dependencies = [ 2592 - "deunicode", 2593 - ] 2594 - 2595 - [[package]] 2596 - name = "smallvec" 2597 - version = "1.11.0" 2598 - source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 2600 - 2601 - [[package]] 2602 - name = "stable_deref_trait" 2603 - version = "1.2.0" 2604 - source = "registry+https://github.com/rust-lang/crates.io-index" 2605 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2606 - 2607 - [[package]] 2608 - name = "str-buf" 2609 - version = "1.0.6" 2610 - source = "registry+https://github.com/rust-lang/crates.io-index" 2611 - checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 2612 - 2613 - [[package]] 2614 - name = "str_stack" 2615 - version = "0.1.0" 2616 - source = "registry+https://github.com/rust-lang/crates.io-index" 2617 - checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb" 2618 - 2619 - [[package]] 2620 - name = "string_cache" 2621 - version = "0.8.7" 2622 - source = "registry+https://github.com/rust-lang/crates.io-index" 2623 - checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 2624 - dependencies = [ 2625 - "new_debug_unreachable", 2626 - "once_cell", 2627 - "parking_lot", 2628 - "phf_shared", 2629 - "precomputed-hash", 2630 - ] 2631 - 2632 - [[package]] 2633 - name = "strip-ansi-escapes" 2634 - version = "0.2.0" 2635 - source = "registry+https://github.com/rust-lang/crates.io-index" 2636 - checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa" 2637 - dependencies = [ 2638 - "vte", 2639 - ] 2640 - 2641 - [[package]] 2642 - name = "strsim" 2643 - version = "0.10.0" 2644 - source = "registry+https://github.com/rust-lang/crates.io-index" 2645 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2646 - 2647 - [[package]] 2648 - name = "symbolic-common" 2649 - version = "10.2.1" 2650 - source = "registry+https://github.com/rust-lang/crates.io-index" 2651 - checksum = "1b55cdc318ede251d0957f07afe5fed912119b8c1bc5a7804151826db999e737" 2652 - dependencies = [ 2653 - "debugid", 2654 - "memmap2", 2655 - "stable_deref_trait", 2656 - "uuid", 2657 - ] 2658 - 2659 - [[package]] 2660 - name = "symbolic-demangle" 2661 - version = "10.2.1" 2662 - source = "registry+https://github.com/rust-lang/crates.io-index" 2663 - checksum = "79be897be8a483a81fff6a3a4e195b4ac838ef73ca42d348b3f722da9902e489" 2664 - dependencies = [ 2665 - "cpp_demangle", 2666 - "rustc-demangle", 2667 - "symbolic-common", 2668 - ] 2669 - 2670 - [[package]] 2671 - name = "syn" 2672 - version = "0.15.44" 2673 - source = "registry+https://github.com/rust-lang/crates.io-index" 2674 - checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" 2675 - dependencies = [ 2676 - "proc-macro2 0.4.30", 2677 - "quote 0.6.13", 2678 - "unicode-xid 0.1.0", 2679 - ] 2680 - 2681 - [[package]] 2682 - name = "syn" 2683 - version = "1.0.109" 2684 - source = "registry+https://github.com/rust-lang/crates.io-index" 2685 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2686 - dependencies = [ 2687 - "proc-macro2 1.0.67", 2688 - "quote 1.0.33", 2689 - "unicode-ident", 2690 - ] 2691 - 2692 - [[package]] 2693 - name = "syn" 2694 - version = "2.0.33" 2695 - source = "registry+https://github.com/rust-lang/crates.io-index" 2696 - checksum = "9caece70c63bfba29ec2fed841a09851b14a235c60010fa4de58089b6c025668" 2697 - dependencies = [ 2698 - "proc-macro2 1.0.67", 2699 - "quote 1.0.33", 2700 - "unicode-ident", 2701 - ] 2702 - 2703 - [[package]] 2704 - name = "syntect" 2705 - version = "5.1.0" 2706 - source = "registry+https://github.com/rust-lang/crates.io-index" 2707 - checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91" 2708 - dependencies = [ 2709 - "bincode", 2710 - "bitflags 1.3.2", 2711 - "fancy-regex", 2712 - "flate2", 2713 - "fnv", 2714 - "once_cell", 2715 - "onig", 2716 - "plist", 2717 - "regex-syntax 0.7.5", 2718 - "serde", 2719 - "serde_json", 2720 - "thiserror", 2721 - "walkdir", 2722 - "yaml-rust", 2723 - ] 2724 - 2725 - [[package]] 2726 - name = "target-lexicon" 2727 - version = "0.12.11" 2728 - source = "registry+https://github.com/rust-lang/crates.io-index" 2729 - checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 2730 - 2731 - [[package]] 2732 - name = "tempfile" 2733 - version = "3.8.0" 2734 - source = "registry+https://github.com/rust-lang/crates.io-index" 2735 - checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 2736 - dependencies = [ 2737 - "cfg-if", 2738 - "fastrand", 2739 - "redox_syscall 0.3.5", 2740 - "rustix 0.38.13", 2741 - "windows-sys 0.48.0", 2742 - ] 2743 - 2744 - [[package]] 2745 - name = "term" 2746 - version = "0.7.0" 2747 - source = "registry+https://github.com/rust-lang/crates.io-index" 2748 - checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 2749 - dependencies = [ 2750 - "dirs-next", 2751 - "rustversion", 2752 - "winapi", 2753 - ] 2754 - 2755 - [[package]] 2756 - name = "termcolor" 2757 - version = "1.2.0" 2758 - source = "registry+https://github.com/rust-lang/crates.io-index" 2759 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2760 - dependencies = [ 2761 - "winapi-util", 2762 - ] 2763 - 2764 - [[package]] 2765 - name = "termimad" 2766 - version = "0.23.2" 2767 - source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "2e32883199fc52cda7e431958dee8bc3ec6898afabc152b76959b9e0e74e2202" 2769 - dependencies = [ 2770 - "coolor", 2771 - "crossbeam", 2772 - "crossterm", 2773 - "minimad", 2774 - "thiserror", 2775 - "unicode-width", 2776 - ] 2777 - 2778 - [[package]] 2779 - name = "terminal_size" 2780 - version = "0.2.6" 2781 - source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 2783 - dependencies = [ 2784 - "rustix 0.37.23", 2785 - "windows-sys 0.48.0", 2786 - ] 2787 - 2788 - [[package]] 2789 - name = "termtree" 2790 - version = "0.4.1" 2791 - source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 2793 - 2794 - [[package]] 2795 - name = "test-generator" 2796 - version = "0.3.1" 2797 - source = "registry+https://github.com/rust-lang/crates.io-index" 2798 - checksum = "5b23be2add79223226e1cb6446cb3e37506a5927089870687a0f1149bb7a073a" 2799 - dependencies = [ 2800 - "glob", 2801 - "proc-macro2 0.4.30", 2802 - "quote 0.6.13", 2803 - "syn 0.15.44", 2804 - ] 2805 - 2806 - [[package]] 2807 - name = "textwrap" 2808 - version = "0.16.0" 2809 - source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 2811 - 2812 - [[package]] 2813 - name = "thiserror" 2814 - version = "1.0.48" 2815 - source = "registry+https://github.com/rust-lang/crates.io-index" 2816 - checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" 2817 - dependencies = [ 2818 - "thiserror-impl", 2819 - ] 2820 - 2821 - [[package]] 2822 - name = "thiserror-impl" 2823 - version = "1.0.48" 2824 - source = "registry+https://github.com/rust-lang/crates.io-index" 2825 - checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" 2826 - dependencies = [ 2827 - "proc-macro2 1.0.67", 2828 - "quote 1.0.33", 2829 - "syn 2.0.33", 2830 - ] 2831 - 2832 - [[package]] 2833 - name = "time" 2834 - version = "0.3.28" 2835 - source = "registry+https://github.com/rust-lang/crates.io-index" 2836 - checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" 2837 - dependencies = [ 2838 - "deranged", 2839 - "itoa", 2840 - "serde", 2841 - "time-core", 2842 - "time-macros", 2843 - ] 2844 - 2845 - [[package]] 2846 - name = "time-core" 2847 - version = "0.1.1" 2848 - source = "registry+https://github.com/rust-lang/crates.io-index" 2849 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 2850 - 2851 - [[package]] 2852 - name = "time-macros" 2853 - version = "0.2.14" 2854 - source = "registry+https://github.com/rust-lang/crates.io-index" 2855 - checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" 2856 - dependencies = [ 2857 - "time-core", 2858 - ] 2859 - 2860 - [[package]] 2861 - name = "tiny-keccak" 2862 - version = "2.0.2" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 2865 - dependencies = [ 2866 - "crunchy", 2867 - ] 2868 - 2869 - [[package]] 2870 - name = "tinytemplate" 2871 - version = "1.2.1" 2872 - source = "registry+https://github.com/rust-lang/crates.io-index" 2873 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 2874 - dependencies = [ 2875 - "serde", 2876 - "serde_json", 2877 - ] 2878 - 2879 - [[package]] 2880 - name = "tinyvec" 2881 - version = "1.6.0" 2882 - source = "registry+https://github.com/rust-lang/crates.io-index" 2883 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2884 - dependencies = [ 2885 - "tinyvec_macros", 2886 - ] 2887 - 2888 - [[package]] 2889 - name = "tinyvec_macros" 2890 - version = "0.1.1" 2891 - source = "registry+https://github.com/rust-lang/crates.io-index" 2892 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2893 - 2894 - [[package]] 2895 - name = "tokio" 2896 - version = "1.32.0" 2897 - source = "registry+https://github.com/rust-lang/crates.io-index" 2898 - checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 2899 - dependencies = [ 2900 - "backtrace", 2901 - "pin-project-lite", 2902 - "tokio-macros", 2903 - ] 2904 - 2905 - [[package]] 2906 - name = "tokio-macros" 2907 - version = "2.1.0" 2908 - source = "registry+https://github.com/rust-lang/crates.io-index" 2909 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2910 - dependencies = [ 2911 - "proc-macro2 1.0.67", 2912 - "quote 1.0.33", 2913 - "syn 2.0.33", 2914 - ] 2915 - 2916 - [[package]] 2917 - name = "toml" 2918 - version = "0.7.8" 2919 - source = "registry+https://github.com/rust-lang/crates.io-index" 2920 - checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 2921 - dependencies = [ 2922 - "serde", 2923 - "serde_spanned", 2924 - "toml_datetime", 2925 - "toml_edit", 2926 - ] 2927 - 2928 - [[package]] 2929 - name = "toml_datetime" 2930 - version = "0.6.3" 2931 - source = "registry+https://github.com/rust-lang/crates.io-index" 2932 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 2933 - dependencies = [ 2934 - "serde", 2935 - ] 2936 - 2937 - [[package]] 2938 - name = "toml_edit" 2939 - version = "0.19.15" 2940 - source = "registry+https://github.com/rust-lang/crates.io-index" 2941 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 2942 - dependencies = [ 2943 - "indexmap 2.0.0", 2944 - "serde", 2945 - "serde_spanned", 2946 - "toml_datetime", 2947 - "winnow", 2948 - ] 2949 - 2950 - [[package]] 2951 - name = "topiary" 2952 - version = "0.2.3" 2953 - source = "git+https://github.com/tweag/topiary.git?rev=refs/heads/main#7e6cb4f8b505eacee57aaf3c1ab0f3cf539da159" 2954 - dependencies = [ 2955 - "clap 4.4.3", 2956 - "futures", 2957 - "itertools 0.11.0", 2958 - "log", 2959 - "pretty_assertions", 2960 - "prettydiff", 2961 - "regex", 2962 - "serde", 2963 - "serde_json", 2964 - "tokio", 2965 - "toml", 2966 - "tree-sitter-bash", 2967 - "tree-sitter-facade", 2968 - "tree-sitter-json", 2969 - "tree-sitter-nickel 0.0.1", 2970 - "tree-sitter-ocaml", 2971 - "tree-sitter-ocamllex", 2972 - "tree-sitter-query", 2973 - "tree-sitter-rust", 2974 - "tree-sitter-toml", 2975 - "unescape", 2976 - "web-tree-sitter-sys", 2977 - ] 2978 - 2979 - [[package]] 2980 - name = "tree-sitter" 2981 - version = "0.20.10" 2982 - source = "registry+https://github.com/rust-lang/crates.io-index" 2983 - checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d" 2984 - dependencies = [ 2985 - "cc", 2986 - "regex", 2987 - ] 2988 - 2989 - [[package]] 2990 - name = "tree-sitter-bash" 2991 - version = "0.20.3" 2992 - source = "git+https://github.com/tree-sitter/tree-sitter-bash#bdcd56c5a3896f7bbb7684e223c43d9f24380351" 2993 - dependencies = [ 2994 - "cc", 2995 - "tree-sitter", 2996 - ] 2997 - 2998 - [[package]] 2999 - name = "tree-sitter-facade" 3000 - version = "0.9.3" 3001 - source = "git+https://github.com/tweag/tree-sitter-facade#1b290e795e700a57d8bd303f98a9715ab1c4f598" 3002 - dependencies = [ 3003 - "js-sys", 3004 - "tree-sitter", 3005 - "wasm-bindgen", 3006 - "web-sys", 3007 - "web-tree-sitter-sys", 3008 - ] 3009 - 3010 - [[package]] 3011 - name = "tree-sitter-json" 3012 - version = "0.19.0" 3013 - source = "registry+https://github.com/rust-lang/crates.io-index" 3014 - checksum = "90b04c4e1a92139535eb9fca4ec8fa9666cc96b618005d3ae35f3c957fa92f92" 3015 - dependencies = [ 3016 - "cc", 3017 - "tree-sitter", 3018 - ] 3019 - 3020 - [[package]] 3021 - name = "tree-sitter-nickel" 3022 - version = "0.0.1" 3023 - source = "git+https://github.com/nickel-lang/tree-sitter-nickel?rev=b1a4718601ebd29a62bf3a7fd1069a99ccf48093#b1a4718601ebd29a62bf3a7fd1069a99ccf48093" 3024 - dependencies = [ 3025 - "cc", 3026 - "tree-sitter", 3027 - ] 3028 - 3029 - [[package]] 3030 - name = "tree-sitter-nickel" 3031 - version = "0.1.0" 3032 - source = "registry+https://github.com/rust-lang/crates.io-index" 3033 - checksum = "8e95267764f0648c768e4da3e4c31b96bc5716446497dfa8b6296924b149f64a" 3034 - dependencies = [ 3035 - "cc", 3036 - "tree-sitter", 3037 - ] 3038 - 3039 - [[package]] 3040 - name = "tree-sitter-ocaml" 3041 - version = "0.20.4" 3042 - source = "registry+https://github.com/rust-lang/crates.io-index" 3043 - checksum = "fd1163abc658cf8ae0ecffbd8f4bd3ee00a2b98729de74f3b08f0e24f3ac208a" 3044 - dependencies = [ 3045 - "cc", 3046 - "tree-sitter", 3047 - ] 3048 - 3049 - [[package]] 3050 - name = "tree-sitter-ocamllex" 3051 - version = "0.20.2" 3052 - source = "registry+https://github.com/rust-lang/crates.io-index" 3053 - checksum = "9e774222086fd065999b6605fb231fbfc386bf782aa7dbad52503ff00b429a62" 3054 - dependencies = [ 3055 - "cc", 3056 - "tree-sitter", 3057 - ] 3058 - 3059 - [[package]] 3060 - name = "tree-sitter-query" 3061 - version = "0.1.0" 3062 - source = "git+https://github.com/nvim-treesitter/tree-sitter-query#3a9808b22742d5bd906ef5d1a562f2f1ae57406d" 3063 - dependencies = [ 3064 - "cc", 3065 - "tree-sitter", 3066 - ] 3067 - 3068 - [[package]] 3069 - name = "tree-sitter-rust" 3070 - version = "0.20.4" 3071 - source = "registry+https://github.com/rust-lang/crates.io-index" 3072 - checksum = "b0832309b0b2b6d33760ce5c0e818cb47e1d72b468516bfe4134408926fa7594" 3073 - dependencies = [ 3074 - "cc", 3075 - "tree-sitter", 3076 - ] 3077 - 3078 - [[package]] 3079 - name = "tree-sitter-toml" 3080 - version = "0.20.0" 3081 - source = "registry+https://github.com/rust-lang/crates.io-index" 3082 - checksum = "ca517f578a98b23d20780247cc2688407fa81effad5b627a5a364ec3339b53e8" 3083 - dependencies = [ 3084 - "cc", 3085 - "tree-sitter", 3086 - ] 3087 - 3088 - [[package]] 3089 - name = "typed-arena" 3090 - version = "2.0.2" 3091 - source = "registry+https://github.com/rust-lang/crates.io-index" 3092 - checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 3093 - 3094 - [[package]] 3095 - name = "typenum" 3096 - version = "1.16.0" 3097 - source = "registry+https://github.com/rust-lang/crates.io-index" 3098 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3099 - 3100 - [[package]] 3101 - name = "unescape" 3102 - version = "0.1.0" 3103 - source = "registry+https://github.com/rust-lang/crates.io-index" 3104 - checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e" 3105 - 3106 - [[package]] 3107 - name = "unicode-bidi" 3108 - version = "0.3.13" 3109 - source = "registry+https://github.com/rust-lang/crates.io-index" 3110 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 3111 - 3112 - [[package]] 3113 - name = "unicode-ident" 3114 - version = "1.0.12" 3115 - source = "registry+https://github.com/rust-lang/crates.io-index" 3116 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 3117 - 3118 - [[package]] 3119 - name = "unicode-normalization" 3120 - version = "0.1.22" 3121 - source = "registry+https://github.com/rust-lang/crates.io-index" 3122 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3123 - dependencies = [ 3124 - "tinyvec", 3125 - ] 3126 - 3127 - [[package]] 3128 - name = "unicode-segmentation" 3129 - version = "1.10.1" 3130 - source = "registry+https://github.com/rust-lang/crates.io-index" 3131 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3132 - 3133 - [[package]] 3134 - name = "unicode-width" 3135 - version = "0.1.10" 3136 - source = "registry+https://github.com/rust-lang/crates.io-index" 3137 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3138 - 3139 - [[package]] 3140 - name = "unicode-xid" 3141 - version = "0.1.0" 3142 - source = "registry+https://github.com/rust-lang/crates.io-index" 3143 - checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" 3144 - 3145 - [[package]] 3146 - name = "unicode-xid" 3147 - version = "0.2.4" 3148 - source = "registry+https://github.com/rust-lang/crates.io-index" 3149 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 3150 - 3151 - [[package]] 3152 - name = "unicode_categories" 3153 - version = "0.1.1" 3154 - source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 3156 - 3157 - [[package]] 3158 - name = "unindent" 3159 - version = "0.1.11" 3160 - source = "registry+https://github.com/rust-lang/crates.io-index" 3161 - checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 3162 - 3163 - [[package]] 3164 - name = "unsafe-libyaml" 3165 - version = "0.2.9" 3166 - source = "registry+https://github.com/rust-lang/crates.io-index" 3167 - checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 3168 - 3169 - [[package]] 3170 - name = "url" 3171 - version = "2.4.1" 3172 - source = "registry+https://github.com/rust-lang/crates.io-index" 3173 - checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 3174 - dependencies = [ 3175 - "form_urlencoded", 3176 - "idna", 3177 - "percent-encoding", 3178 - "serde", 3179 - ] 3180 - 3181 - [[package]] 3182 - name = "utf8parse" 3183 - version = "0.2.1" 3184 - source = "registry+https://github.com/rust-lang/crates.io-index" 3185 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 3186 - 3187 - [[package]] 3188 - name = "uuid" 3189 - version = "1.4.1" 3190 - source = "registry+https://github.com/rust-lang/crates.io-index" 3191 - checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 3192 - 3193 - [[package]] 3194 - name = "version_check" 3195 - version = "0.9.4" 3196 - source = "registry+https://github.com/rust-lang/crates.io-index" 3197 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3198 - 3199 - [[package]] 3200 - name = "void" 3201 - version = "1.0.2" 3202 - source = "registry+https://github.com/rust-lang/crates.io-index" 3203 - checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 3204 - 3205 - [[package]] 3206 - name = "vte" 3207 - version = "0.11.1" 3208 - source = "registry+https://github.com/rust-lang/crates.io-index" 3209 - checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 3210 - dependencies = [ 3211 - "utf8parse", 3212 - "vte_generate_state_changes", 3213 - ] 3214 - 3215 - [[package]] 3216 - name = "vte_generate_state_changes" 3217 - version = "0.1.1" 3218 - source = "registry+https://github.com/rust-lang/crates.io-index" 3219 - checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 3220 - dependencies = [ 3221 - "proc-macro2 1.0.67", 3222 - "quote 1.0.33", 3223 - ] 3224 - 3225 - [[package]] 3226 - name = "wait-timeout" 3227 - version = "0.2.0" 3228 - source = "registry+https://github.com/rust-lang/crates.io-index" 3229 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 3230 - dependencies = [ 3231 - "libc", 3232 - ] 3233 - 3234 - [[package]] 3235 - name = "walkdir" 3236 - version = "2.4.0" 3237 - source = "registry+https://github.com/rust-lang/crates.io-index" 3238 - checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 3239 - dependencies = [ 3240 - "same-file", 3241 - "winapi-util", 3242 - ] 3243 - 3244 - [[package]] 3245 - name = "wasi" 3246 - version = "0.9.0+wasi-snapshot-preview1" 3247 - source = "registry+https://github.com/rust-lang/crates.io-index" 3248 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3249 - 3250 - [[package]] 3251 - name = "wasi" 3252 - version = "0.11.0+wasi-snapshot-preview1" 3253 - source = "registry+https://github.com/rust-lang/crates.io-index" 3254 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3255 - 3256 - [[package]] 3257 - name = "wasm-bindgen" 3258 - version = "0.2.84" 3259 - source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 3261 - dependencies = [ 3262 - "cfg-if", 3263 - "serde", 3264 - "serde_json", 3265 - "wasm-bindgen-macro", 3266 - ] 3267 - 3268 - [[package]] 3269 - name = "wasm-bindgen-backend" 3270 - version = "0.2.84" 3271 - source = "registry+https://github.com/rust-lang/crates.io-index" 3272 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 3273 - dependencies = [ 3274 - "bumpalo", 3275 - "log", 3276 - "once_cell", 3277 - "proc-macro2 1.0.67", 3278 - "quote 1.0.33", 3279 - "syn 1.0.109", 3280 - "wasm-bindgen-shared", 3281 - ] 3282 - 3283 - [[package]] 3284 - name = "wasm-bindgen-futures" 3285 - version = "0.4.34" 3286 - source = "registry+https://github.com/rust-lang/crates.io-index" 3287 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 3288 - dependencies = [ 3289 - "cfg-if", 3290 - "js-sys", 3291 - "wasm-bindgen", 3292 - "web-sys", 3293 - ] 3294 - 3295 - [[package]] 3296 - name = "wasm-bindgen-macro" 3297 - version = "0.2.84" 3298 - source = "registry+https://github.com/rust-lang/crates.io-index" 3299 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 3300 - dependencies = [ 3301 - "quote 1.0.33", 3302 - "wasm-bindgen-macro-support", 3303 - ] 3304 - 3305 - [[package]] 3306 - name = "wasm-bindgen-macro-support" 3307 - version = "0.2.84" 3308 - source = "registry+https://github.com/rust-lang/crates.io-index" 3309 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 3310 - dependencies = [ 3311 - "proc-macro2 1.0.67", 3312 - "quote 1.0.33", 3313 - "syn 1.0.109", 3314 - "wasm-bindgen-backend", 3315 - "wasm-bindgen-shared", 3316 - ] 3317 - 3318 - [[package]] 3319 - name = "wasm-bindgen-shared" 3320 - version = "0.2.84" 3321 - source = "registry+https://github.com/rust-lang/crates.io-index" 3322 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 3323 - 3324 - [[package]] 3325 - name = "web-sys" 3326 - version = "0.3.61" 3327 - source = "registry+https://github.com/rust-lang/crates.io-index" 3328 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 3329 - dependencies = [ 3330 - "js-sys", 3331 - "wasm-bindgen", 3332 - ] 3333 - 3334 - [[package]] 3335 - name = "web-tree-sitter-sys" 3336 - version = "1.3.0" 3337 - source = "git+https://github.com/tweag/web-tree-sitter-sys#9e9755b9ab59055092de4717ba0bafe6483f4e5c" 3338 - dependencies = [ 3339 - "js-sys", 3340 - "wasm-bindgen", 3341 - "wasm-bindgen-futures", 3342 - "web-sys", 3343 - ] 3344 - 3345 - [[package]] 3346 - name = "winapi" 3347 - version = "0.3.9" 3348 - source = "registry+https://github.com/rust-lang/crates.io-index" 3349 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3350 - dependencies = [ 3351 - "winapi-i686-pc-windows-gnu", 3352 - "winapi-x86_64-pc-windows-gnu", 3353 - ] 3354 - 3355 - [[package]] 3356 - name = "winapi-i686-pc-windows-gnu" 3357 - version = "0.4.0" 3358 - source = "registry+https://github.com/rust-lang/crates.io-index" 3359 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3360 - 3361 - [[package]] 3362 - name = "winapi-util" 3363 - version = "0.1.5" 3364 - source = "registry+https://github.com/rust-lang/crates.io-index" 3365 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3366 - dependencies = [ 3367 - "winapi", 3368 - ] 3369 - 3370 - [[package]] 3371 - name = "winapi-x86_64-pc-windows-gnu" 3372 - version = "0.4.0" 3373 - source = "registry+https://github.com/rust-lang/crates.io-index" 3374 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3375 - 3376 - [[package]] 3377 - name = "windows-sys" 3378 - version = "0.45.0" 3379 - source = "registry+https://github.com/rust-lang/crates.io-index" 3380 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3381 - dependencies = [ 3382 - "windows-targets 0.42.2", 3383 - ] 3384 - 3385 - [[package]] 3386 - name = "windows-sys" 3387 - version = "0.48.0" 3388 - source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3390 - dependencies = [ 3391 - "windows-targets 0.48.5", 3392 - ] 3393 - 3394 - [[package]] 3395 - name = "windows-targets" 3396 - version = "0.42.2" 3397 - source = "registry+https://github.com/rust-lang/crates.io-index" 3398 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3399 - dependencies = [ 3400 - "windows_aarch64_gnullvm 0.42.2", 3401 - "windows_aarch64_msvc 0.42.2", 3402 - "windows_i686_gnu 0.42.2", 3403 - "windows_i686_msvc 0.42.2", 3404 - "windows_x86_64_gnu 0.42.2", 3405 - "windows_x86_64_gnullvm 0.42.2", 3406 - "windows_x86_64_msvc 0.42.2", 3407 - ] 3408 - 3409 - [[package]] 3410 - name = "windows-targets" 3411 - version = "0.48.5" 3412 - source = "registry+https://github.com/rust-lang/crates.io-index" 3413 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3414 - dependencies = [ 3415 - "windows_aarch64_gnullvm 0.48.5", 3416 - "windows_aarch64_msvc 0.48.5", 3417 - "windows_i686_gnu 0.48.5", 3418 - "windows_i686_msvc 0.48.5", 3419 - "windows_x86_64_gnu 0.48.5", 3420 - "windows_x86_64_gnullvm 0.48.5", 3421 - "windows_x86_64_msvc 0.48.5", 3422 - ] 3423 - 3424 - [[package]] 3425 - name = "windows_aarch64_gnullvm" 3426 - version = "0.42.2" 3427 - source = "registry+https://github.com/rust-lang/crates.io-index" 3428 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3429 - 3430 - [[package]] 3431 - name = "windows_aarch64_gnullvm" 3432 - version = "0.48.5" 3433 - source = "registry+https://github.com/rust-lang/crates.io-index" 3434 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3435 - 3436 - [[package]] 3437 - name = "windows_aarch64_msvc" 3438 - version = "0.42.2" 3439 - source = "registry+https://github.com/rust-lang/crates.io-index" 3440 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3441 - 3442 - [[package]] 3443 - name = "windows_aarch64_msvc" 3444 - version = "0.48.5" 3445 - source = "registry+https://github.com/rust-lang/crates.io-index" 3446 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3447 - 3448 - [[package]] 3449 - name = "windows_i686_gnu" 3450 - version = "0.42.2" 3451 - source = "registry+https://github.com/rust-lang/crates.io-index" 3452 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3453 - 3454 - [[package]] 3455 - name = "windows_i686_gnu" 3456 - version = "0.48.5" 3457 - source = "registry+https://github.com/rust-lang/crates.io-index" 3458 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3459 - 3460 - [[package]] 3461 - name = "windows_i686_msvc" 3462 - version = "0.42.2" 3463 - source = "registry+https://github.com/rust-lang/crates.io-index" 3464 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3465 - 3466 - [[package]] 3467 - name = "windows_i686_msvc" 3468 - version = "0.48.5" 3469 - source = "registry+https://github.com/rust-lang/crates.io-index" 3470 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3471 - 3472 - [[package]] 3473 - name = "windows_x86_64_gnu" 3474 - version = "0.42.2" 3475 - source = "registry+https://github.com/rust-lang/crates.io-index" 3476 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3477 - 3478 - [[package]] 3479 - name = "windows_x86_64_gnu" 3480 - version = "0.48.5" 3481 - source = "registry+https://github.com/rust-lang/crates.io-index" 3482 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3483 - 3484 - [[package]] 3485 - name = "windows_x86_64_gnullvm" 3486 - version = "0.42.2" 3487 - source = "registry+https://github.com/rust-lang/crates.io-index" 3488 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3489 - 3490 - [[package]] 3491 - name = "windows_x86_64_gnullvm" 3492 - version = "0.48.5" 3493 - source = "registry+https://github.com/rust-lang/crates.io-index" 3494 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3495 - 3496 - [[package]] 3497 - name = "windows_x86_64_msvc" 3498 - version = "0.42.2" 3499 - source = "registry+https://github.com/rust-lang/crates.io-index" 3500 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3501 - 3502 - [[package]] 3503 - name = "windows_x86_64_msvc" 3504 - version = "0.48.5" 3505 - source = "registry+https://github.com/rust-lang/crates.io-index" 3506 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3507 - 3508 - [[package]] 3509 - name = "winnow" 3510 - version = "0.5.15" 3511 - source = "registry+https://github.com/rust-lang/crates.io-index" 3512 - checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 3513 - dependencies = [ 3514 - "memchr", 3515 - ] 3516 - 3517 - [[package]] 3518 - name = "xdg" 3519 - version = "2.5.2" 3520 - source = "registry+https://github.com/rust-lang/crates.io-index" 3521 - checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 3522 - 3523 - [[package]] 3524 - name = "yaml-rust" 3525 - version = "0.4.5" 3526 - source = "registry+https://github.com/rust-lang/crates.io-index" 3527 - checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 3528 - dependencies = [ 3529 - "linked-hash-map", 3530 - ] 3531 - 3532 - [[package]] 3533 - name = "yansi" 3534 - version = "0.5.1" 3535 - source = "registry+https://github.com/rust-lang/crates.io-index" 3536 - checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
···
pkgs/development/tools/language-servers/nls/default.nix pkgs/by-name/nl/nls/package.nix
+2 -2
pkgs/development/tools/misc/go-md2man/default.nix
··· 2 3 buildGoModule rec { 4 pname = "go-md2man"; 5 - version = "2.0.2"; 6 7 vendorHash = null; 8 ··· 10 rev = "v${version}"; 11 owner = "cpuguy83"; 12 repo = "go-md2man"; 13 - sha256 = "sha256-C+MaDtvfPYABSC2qoMfZVHe2xX/WtDjp6v/ayFCIGac="; 14 }; 15 16 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "go-md2man"; 5 + version = "2.0.3"; 6 7 vendorHash = null; 8 ··· 10 rev = "v${version}"; 11 owner = "cpuguy83"; 12 repo = "go-md2man"; 13 + sha256 = "sha256-bgAuN+pF9JekCQ/Eg4ph3WDv3RP8MB/10GDp1JMp9Kg="; 14 }; 15 16 meta = with lib; {
+2 -2
pkgs/development/tools/misc/n98-magerun2/default.nix
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "n98-magerun2"; 12 - version = "7.1.0"; 13 14 src = fetchurl { 15 url = "https://github.com/netz98/n98-magerun2/releases/download/${finalAttrs.version}/n98-magerun2.phar"; 16 - hash = "sha256-DE5q1zoWZ4gJSs5JM5cr157oh5ufD1gaNt9X9vtuW/c="; 17 }; 18 19 dontUnpack = true;
··· 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "n98-magerun2"; 12 + version = "7.2.0"; 13 14 src = fetchurl { 15 url = "https://github.com/netz98/n98-magerun2/releases/download/${finalAttrs.version}/n98-magerun2.phar"; 16 + hash = "sha256-w+58TTyoS44Ouaz6KFIJLhSl/UeF1I7cSznlZH6fLXw="; 17 }; 18 19 dontUnpack = true;
+3 -3
pkgs/development/tools/oh-my-posh/default.nix
··· 6 7 buildGoModule rec { 8 pname = "oh-my-posh"; 9 - version = "18.10.3"; 10 11 src = fetchFromGitHub { 12 owner = "jandedobbeleer"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-gNSG4jGGkvLyitqO4o44tv/nRGzOcX5haLUFdj/PqBM="; 16 }; 17 18 - vendorHash = "sha256-ia5uglahH4btHYqeG3yyStOoM1ALxm/lQ+pyc0oxIwE="; 19 20 sourceRoot = "${src.name}/src"; 21
··· 6 7 buildGoModule rec { 8 pname = "oh-my-posh"; 9 + version = "18.11.0"; 10 11 src = fetchFromGitHub { 12 owner = "jandedobbeleer"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-sUP2xBrh7JpAaHhiMm6AilgEUNIfK1U2hbloUJYHn6c="; 16 }; 17 18 + vendorHash = "sha256-i5K7f70MevNJcRsP2P9rsMZRpKPVWsTx9M4t2AoEJew="; 19 20 sourceRoot = "${src.name}/src"; 21
+3 -3
pkgs/development/tools/rust/cargo-expand/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "cargo-expand"; 8 - version = "1.0.72"; 9 10 src = fetchFromGitHub { 11 owner = "dtolnay"; 12 repo = pname; 13 rev = version; 14 - sha256 = "sha256-W9mrqF5zQWvCEsgm3fNPG0p/ZHgL1agTAfYW1t9tajo="; 15 }; 16 17 - cargoHash = "sha256-4gV69Ld60hBErfVXgrKfoeI6QrnYrg6w5hHqRufUlG8="; 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.73"; 9 10 src = fetchFromGitHub { 11 owner = "dtolnay"; 12 repo = pname; 13 rev = version; 14 + sha256 = "sha256-GCHZcNpy4V6WF8AchWIuqIiTY36AsgvA6QjJTCeZP1U="; 15 }; 16 17 + cargoHash = "sha256-+itB3byWmzzNsoxc+pqSRGTyUkFk+KM2ImjeBwTEb/E="; 18 19 meta = with lib; { 20 description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
+3 -3
pkgs/development/tools/rust/leptosfmt/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "leptosfmt"; 8 - version = "0.1.16"; 9 10 src = fetchFromGitHub { 11 owner = "bram209"; 12 repo = "leptosfmt"; 13 rev = version; 14 - hash = "sha256-VzKwBqVoGa3bF6NK7mGOBEzUk9H+ZVQ/NdE/hhCEhUg="; 15 }; 16 17 - cargoHash = "sha256-OHAK1UX2mSBASUHT4qhGmWUdCrvP18RmXMCSnGSUBAA="; 18 19 meta = with lib; { 20 description = "A formatter for the leptos view! macro";
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "leptosfmt"; 8 + version = "0.1.17"; 9 10 src = fetchFromGitHub { 11 owner = "bram209"; 12 repo = "leptosfmt"; 13 rev = version; 14 + hash = "sha256-LZOB0HF6Chs1BxRPqQnMQrjk2CbFR2UoVQl+W32R9yI="; 15 }; 16 17 + cargoHash = "sha256-9io8cSKwBONw8epPw5foa+/ur4VvvjQrOcj5Hse3oJ4="; 18 19 meta = with lib; { 20 description = "A formatter for the leptos view! macro";
pkgs/misc/base16-shell-preview/default.nix pkgs/by-name/ba/base16-shell-preview/package.nix
-36
pkgs/misc/scimark/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , unzip 5 - }: 6 - 7 - stdenv.mkDerivation rec { 8 - pname = "scimark"; 9 - version = "4c"; 10 - 11 - src = fetchurl { 12 - url = "https://math.nist.gov/scimark2/${pname}${version}.zip"; 13 - hash = "sha256-kcg5vKYp0B7+bC/CmFMO/tMwxf9q6nvuFv0vRSy3MbE="; 14 - }; 15 - 16 - nativeBuildInputs = [ 17 - unzip 18 - ]; 19 - 20 - dontConfigure = true; 21 - 22 - installPhase = '' 23 - install -d $out/bin/ 24 - install scimark4 $out/bin/ 25 - ''; 26 - 27 - meta = with lib; { 28 - homepage = "https://math.nist.gov/scimark2/index.html"; 29 - description = "Scientific and numerical computing benchmark (ANSI C version)"; 30 - license = licenses.publicDomain; 31 - maintainers = with maintainers; [ AndersonTorres ]; 32 - mainProgram = "scimark4"; 33 - platforms = platforms.all; 34 - }; 35 - } 36 - # TODO [ AndersonTorres ]: Java version
···
pkgs/misc/screensavers/xscreensaver/default.nix pkgs/by-name/xs/xscreensaver/package.nix
+8 -5
pkgs/misc/sound-of-sorting/default.nix pkgs/by-name/so/sound-of-sorting/package.nix
··· 7 , darwin 8 }: 9 10 - stdenv.mkDerivation { 11 pname = "sound-of-sorting"; 12 - version = "unstable-2022-10-12"; 13 14 src = fetchFromGitHub { 15 owner = "bingmann"; ··· 26 wxGTK32 27 SDL2 28 ] 29 - ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa ; 30 31 meta = { 32 description = "Audibilization and Visualization of Sorting Algorithms"; 33 homepage = "https://panthema.net/2013/sound-of-sorting/"; 34 license = lib.licenses.gpl3Plus; 35 maintainers = with lib.maintainers; [ AndersonTorres ]; 36 - platforms = lib.platforms.unix; 37 }; 38 - }
··· 7 , darwin 8 }: 9 10 + stdenv.mkDerivation (finalAttrs: { 11 pname = "sound-of-sorting"; 12 + version = "0.6.5-unstable-2022-10-12"; 13 14 src = fetchFromGitHub { 15 owner = "bingmann"; ··· 26 wxGTK32 27 SDL2 28 ] 29 + ++ lib.optionals stdenv.isDarwin [ 30 + darwin.apple_sdk.frameworks.Cocoa 31 + ]; 32 33 meta = { 34 description = "Audibilization and Visualization of Sorting Algorithms"; 35 homepage = "https://panthema.net/2013/sound-of-sorting/"; 36 license = lib.licenses.gpl3Plus; 37 + mainProgram = "sound-of-sorting"; 38 maintainers = with lib.maintainers; [ AndersonTorres ]; 39 + inherit (SDL2.meta) platforms; 40 }; 41 + })
+2 -2
pkgs/os-specific/darwin/sketchybar/default.nix
··· 21 in 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "sketchybar"; 24 - version = "2.16.3"; 25 26 src = fetchFromGitHub { 27 owner = "FelixKratz"; 28 repo = "SketchyBar"; 29 rev = "v${finalAttrs.version}"; 30 - hash = "sha256-PCAGIcO7lvIAEFXlJn/e9zG5kxvDABshxFbu/bXWX7o="; 31 }; 32 33 buildInputs = [
··· 21 in 22 stdenv.mkDerivation (finalAttrs: { 23 pname = "sketchybar"; 24 + version = "2.17.0"; 25 26 src = fetchFromGitHub { 27 owner = "FelixKratz"; 28 repo = "SketchyBar"; 29 rev = "v${finalAttrs.version}"; 30 + hash = "sha256-FntWC180wpUyxP5iYdo/p2LbP0dbv1y6CXersfBT5b4="; 31 }; 32 33 buildInputs = [
+2 -4
pkgs/os-specific/linux/dcgm/default.nix
··· 1 { lib 2 - , callPackage 3 , gcc11Stdenv 4 , fetchFromGitHub 5 - , addOpenGLRunpath 6 , catch2 7 , cmake 8 , cudaPackages_10_2 ··· 87 # C.f. https://github.com/NVIDIA/DCGM/blob/7e1012302679e4bb7496483b32dcffb56e528c92/dcgmbuild/build.sh#L22 88 in gcc11Stdenv.mkDerivation rec { 89 pname = "dcgm"; 90 - version = "3.1.8"; 91 92 src = fetchFromGitHub { 93 owner = "NVIDIA"; 94 repo = "DCGM"; 95 rev = "refs/tags/v${version}"; 96 - hash = "sha256-OXqXkP2ZUNPzafGIgJ0MKa39xB84keVFFYl+JsHgnks="; 97 }; 98 99 # Add our paths to the CUDA paths so FindCuda.cmake can find them.
··· 1 { lib 2 , gcc11Stdenv 3 , fetchFromGitHub 4 , catch2 5 , cmake 6 , cudaPackages_10_2 ··· 85 # C.f. https://github.com/NVIDIA/DCGM/blob/7e1012302679e4bb7496483b32dcffb56e528c92/dcgmbuild/build.sh#L22 86 in gcc11Stdenv.mkDerivation rec { 87 pname = "dcgm"; 88 + version = "3.2.5"; # N.B: If you change this, be sure prometheus-dcgm-exporter supports this version. 89 90 src = fetchFromGitHub { 91 owner = "NVIDIA"; 92 repo = "DCGM"; 93 rev = "refs/tags/v${version}"; 94 + hash = "sha256-iMyYOr3dSpdRV2S/TlB/tEOAWYhK09373ZRbd5vzogQ="; 95 }; 96 97 # Add our paths to the CUDA paths so FindCuda.cmake can find them.
+3 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 65 # Vulkan developer beta driver 66 # See here for more information: https://developer.nvidia.com/vulkan-driver 67 vulkan_beta = generic rec { 68 - version = "535.43.11"; 69 persistencedVersion = "535.98"; 70 settingsVersion = "535.98"; 71 - sha256_64bit = "sha256-cL/gnPNqjsj8ZYJP4WmybS2Fnh6EHsUbi4nGlt6Bt00="; 72 - openSha256 = "sha256-QzNRwXk6c5iTJD0YGKAlW1swF/PBW/7LFnkllkBEhUU="; 73 settingsSha256 = "sha256-jCRfeB1w6/dA27gaz6t5/Qo7On0zbAPIi74LYLel34s="; 74 persistencedSha256 = "sha256-WviDU6B50YG8dO64CGvU3xK8WFUX8nvvVYm/fuGyroM="; 75 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux";
··· 65 # Vulkan developer beta driver 66 # See here for more information: https://developer.nvidia.com/vulkan-driver 67 vulkan_beta = generic rec { 68 + version = "535.43.13"; 69 persistencedVersion = "535.98"; 70 settingsVersion = "535.98"; 71 + sha256_64bit = "sha256-qrzoZWoUSTh4UQ8e/amOhwPrspZOI1kwdPHLn4ySc/Q="; 72 + openSha256 = "sha256-aVUdHNoFaUY7MiwEFxwsj8XS1+onckT3V7RiVMEkQP8="; 73 settingsSha256 = "sha256-jCRfeB1w6/dA27gaz6t5/Qo7On0zbAPIi74LYLel34s="; 74 persistencedSha256 = "sha256-WviDU6B50YG8dO64CGvU3xK8WFUX8nvvVYm/fuGyroM="; 75 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux";
+14 -15
pkgs/os-specific/linux/uclibc-ng/default.nix pkgs/by-name/uc/uclibc-ng/package.nix
··· 56 UCLIBC_HAS_FPU n 57 ''; 58 in 59 - stdenv.mkDerivation rec { 60 pname = "uclibc-ng"; 61 version = "1.0.44"; 62 63 src = fetchurl { 64 - url = "https://downloads.uclibc-ng.org/releases/${version}/uClibc-ng-${version}.tar.xz"; 65 sha256 = "sha256-ffnZh5VYJzgvHCQA2lE0Vr7Ltvhovf03c3Jl8cvuyZQ="; 66 }; 67 ··· 108 runHook postInstall 109 ''; 110 111 - meta = with lib; { 112 homepage = "https://uclibc-ng.org"; 113 description = "Embedded C library"; 114 longDescription = '' ··· 126 processors. Alpha, FR-V, HPPA, IA64, LM32, NIOS2, Tile and Sparc64 are 127 experimental and need more testing. 128 ''; 129 - license = licenses.lgpl2Plus; 130 - maintainers = with maintainers; [ rasendubi AndersonTorres ]; 131 - platforms = platforms.linux; 132 - badPlatforms = platforms.aarch64; 133 }; 134 - 135 - passthru = { 136 - # Derivations may check for the existance of this attribute, to know what to 137 - # link to. 138 - libiconv = libiconvReal; 139 - }; 140 - 141 - }
··· 56 UCLIBC_HAS_FPU n 57 ''; 58 in 59 + stdenv.mkDerivation (finalAttrs: { 60 pname = "uclibc-ng"; 61 version = "1.0.44"; 62 63 src = fetchurl { 64 + url = "https://downloads.uclibc-ng.org/releases/${finalAttrs.version}/uClibc-ng-${finalAttrs.version}.tar.xz"; 65 sha256 = "sha256-ffnZh5VYJzgvHCQA2lE0Vr7Ltvhovf03c3Jl8cvuyZQ="; 66 }; 67 ··· 108 runHook postInstall 109 ''; 110 111 + passthru = { 112 + # Derivations may check for the existance of this attribute, to know what to 113 + # link to. 114 + libiconv = libiconvReal; 115 + }; 116 + 117 + meta = { 118 homepage = "https://uclibc-ng.org"; 119 description = "Embedded C library"; 120 longDescription = '' ··· 132 processors. Alpha, FR-V, HPPA, IA64, LM32, NIOS2, Tile and Sparc64 are 133 experimental and need more testing. 134 ''; 135 + license = lib.licenses.lgpl2Plus; 136 + maintainers = with lib.maintainers; [ rasendubi AndersonTorres ]; 137 + platforms = lib.platforms.linux; 138 + badPlatforms = lib.platforms.aarch64; 139 }; 140 + })
+3
pkgs/os-specific/linux/zfs/generic.nix
··· 83 substituteInPlace ./udev/vdev_id \ 84 --replace "PATH=/bin:/sbin:/usr/bin:/usr/sbin" \ 85 "PATH=${makeBinPath [ coreutils gawk gnused gnugrep systemd ]}" 86 '' else '' 87 substituteInPlace ./etc/zfs/Makefile.am --replace "\$(sysconfdir)/zfs" "$out/etc/zfs" 88
··· 83 substituteInPlace ./udev/vdev_id \ 84 --replace "PATH=/bin:/sbin:/usr/bin:/usr/sbin" \ 85 "PATH=${makeBinPath [ coreutils gawk gnused gnugrep systemd ]}" 86 + substituteInPlace ./config/zfs-build.m4 \ 87 + --replace "bashcompletiondir=/etc/bash_completion.d" \ 88 + "bashcompletiondir=$out/share/bash-completion/completions" 89 '' else '' 90 substituteInPlace ./etc/zfs/Makefile.am --replace "\$(sysconfdir)/zfs" "$out/etc/zfs" 91
+6 -4
pkgs/os-specific/linux/zfs/unstable.nix
··· 12 callPackage ./generic.nix args { 13 # check the release notes for compatible kernels 14 kernelCompatible = if stdenv'.isx86_64 || removeLinuxDRM 15 - then kernel.kernelOlder "6.5" 16 else kernel.kernelOlder "6.2"; 17 18 - latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_1; 19 20 # this package should point to a version / git revision compatible with the latest kernel release 21 # IMPORTANT: Always use a tagged release candidate or commits from the 22 # zfs-<version>-staging branch, because this is tested by the OpenZFS 23 # maintainers. 24 - version = "2.2.0-rc4"; 25 26 - sha256 = "sha256-zTG6iujlWB2H8j6i+t59zdyztoDFk373AjgHzC8x5mQ="; 27 28 isUnstable = true; 29 }
··· 12 callPackage ./generic.nix args { 13 # check the release notes for compatible kernels 14 kernelCompatible = if stdenv'.isx86_64 || removeLinuxDRM 15 + then kernel.kernelOlder "6.6" 16 else kernel.kernelOlder "6.2"; 17 18 + latestCompatibleLinuxPackages = if stdenv'.isx86_64 || removeLinuxDRM 19 + then linuxKernel.packages.linux_6_5 20 + else linuxKernel.packages.linux_6_1; 21 22 # this package should point to a version / git revision compatible with the latest kernel release 23 # IMPORTANT: Always use a tagged release candidate or commits from the 24 # zfs-<version>-staging branch, because this is tested by the OpenZFS 25 # maintainers. 26 + version = "2.2.0-rc5"; 27 28 + sha256 = "sha256-97dTmSneAuhDR7LrJxG7/xPpI1hGv5mDDuq8HRTZKx0="; 29 30 isUnstable = true; 31 }
+2 -2
pkgs/servers/dns/pdns/default.nix
··· 23 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "pdns"; 26 - version = "4.8.2"; 27 28 src = fetchurl { 29 url = "https://downloads.powerdns.com/releases/pdns-${finalAttrs.version}.tar.bz2"; 30 - hash = "sha256-Oxc/2kxRuwe1pR2MWZ7t15YqAgVrQQ48nZ1p7Ze+Nbk="; 31 }; 32 # redact configure flags from version output to reduce closure size 33 patches = [ ./version.patch ];
··· 23 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "pdns"; 26 + version = "4.8.3"; 27 28 src = fetchurl { 29 url = "https://downloads.powerdns.com/releases/pdns-${finalAttrs.version}.tar.bz2"; 30 + hash = "sha256-d7kRmb33GHQzRQHGfiZGnCZno3PYQjgD/mV0Fylcd7o="; 31 }; 32 # redact configure flags from version output to reduce closure size 33 patches = [ ./version.patch ];
+3 -3
pkgs/servers/geospatial/martin/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "martin"; 5 - version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "maplibre"; 9 repo = "martin"; 10 rev = "v${version}"; 11 - hash = "sha256-dx6TcEZpnsWbRliBo/CkOZNwXiipRYS8+oWHTEAF5XQ="; 12 }; 13 14 - cargoHash = "sha256-6r2rrSthEdQ/CnrGt4/VZW2jp66zE0au8r81+nBD8UE="; 15 16 nativeBuildInputs = [ pkg-config ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "martin"; 5 + version = "0.9.1"; 6 7 src = fetchFromGitHub { 8 owner = "maplibre"; 9 repo = "martin"; 10 rev = "v${version}"; 11 + hash = "sha256-Jq72aEwM5bIaVywmS3HetR6nnBZnr3oa9a/4ZbgeL9E="; 12 }; 13 14 + cargoHash = "sha256-RO9nUH2+0jOCbvGtZ5j802mL85tY+Jz7ygPrNuFeE98="; 15 16 nativeBuildInputs = [ pkg-config ]; 17
+4 -1
pkgs/servers/monitoring/prometheus/dcgm-exporter/default.nix
··· 7 }: 8 buildGoModule rec { 9 pname = "dcgm-exporter"; 10 - version = "3.2.5-3.1.7"; 11 12 src = fetchFromGitHub { 13 owner = "NVIDIA";
··· 7 }: 8 buildGoModule rec { 9 pname = "dcgm-exporter"; 10 + 11 + # The first portion of this version string corresponds to a compatible DCGM 12 + # version. 13 + version = "3.2.5-3.1.7"; # N.B: If you change this, update dcgm as well to the matching version. 14 15 src = fetchFromGitHub { 16 owner = "NVIDIA";
+29
pkgs/servers/monitoring/prometheus/imap-mailstat-exporter.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "imap-mailstat-exporter"; 9 + version = "0.0.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "bt909"; 13 + repo = "imap-mailstat-exporter"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-aR/94C9SI+FPs3zg3bpexmgGYrhxghyHwpXj25x0yuw="; 16 + }; 17 + 18 + vendorSha256 = "sha256-M5Ho4CiO5DC6mWzenXEo2pu0WLHj5S8AV3oEFwD31Sw="; 19 + 20 + nativeBuildInputs = [ installShellFiles ]; 21 + 22 + meta = with lib; { 23 + description = "Export Prometheus-style metrics about how many emails you have in your INBOX and in additional configured folders"; 24 + homepage = "https://github.com/bt909/imap-mailstat-exporter"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ raboof ]; 27 + platforms = platforms.linux; 28 + }; 29 + }
+2 -2
pkgs/servers/sql/postgresql/ext/pgvector.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pgvector"; 5 - version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "pgvector"; 9 repo = "pgvector"; 10 rev = "v${version}"; 11 - hash = "sha256-7GRqGgU15VQAY0wvZqfPU9og7s+/0NlOpTMclXPVwlQ="; 12 }; 13 14 buildInputs = [ postgresql ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pgvector"; 5 + version = "0.5.1"; 6 7 src = fetchFromGitHub { 8 owner = "pgvector"; 9 repo = "pgvector"; 10 rev = "v${version}"; 11 + hash = "sha256-ZNzq+dATZn9LUgeOczsaadr5hwdbt9y/+sAOPIdr77U="; 12 }; 13 14 buildInputs = [ postgresql ];
+3 -3
pkgs/servers/web-apps/livebook/default.nix
··· 1 { lib, beamPackages, makeWrapper, rebar3, elixir, erlang, fetchFromGitHub }: 2 beamPackages.mixRelease rec { 3 pname = "livebook"; 4 - version = "0.10.0"; 5 6 inherit elixir; 7 ··· 13 owner = "livebook-dev"; 14 repo = "livebook"; 15 rev = "v${version}"; 16 - hash = "sha256-Bp1CEvVv5DPDDikRPubsG6p4LLiHXTEXE+ZIip3LsGA="; 17 }; 18 19 mixFodDeps = beamPackages.fetchMixDeps { 20 pname = "mix-deps-${pname}"; 21 inherit src version; 22 - hash = "sha256-qFLCWr7LzI9WNgj0AJO3Tw7rrA1JhBOEpX79RMjv2nk="; 23 }; 24 25 installPhase = ''
··· 1 { lib, beamPackages, makeWrapper, rebar3, elixir, erlang, fetchFromGitHub }: 2 beamPackages.mixRelease rec { 3 pname = "livebook"; 4 + version = "0.11.1"; 5 6 inherit elixir; 7 ··· 13 owner = "livebook-dev"; 14 repo = "livebook"; 15 rev = "v${version}"; 16 + hash = "sha256-8td6BUaJiEPjABrfsJTvaA+PXZ+8PnRl2hj7Ft/kb+Q="; 17 }; 18 19 mixFodDeps = beamPackages.fetchMixDeps { 20 pname = "mix-deps-${pname}"; 21 inherit src version; 22 + hash = "sha256-+6lq0t9K6eIyGIFs+aI35v0T6W2DASOxA+tHtFL4u28="; 23 }; 24 25 installPhase = ''
+4 -4
pkgs/tools/X11/xkbvalidate/xkbvalidate.c
··· 121 122 rdef = malloc(sizeof(struct xkb_rule_names)); 123 124 - TRY_KEYMAP(model, argv[1], "xkbModel"); 125 - TRY_KEYMAP(layout, argv[2], "layout"); 126 - TRY_KEYMAP(variant, argv[3], "xkbVariant"); 127 - TRY_KEYMAP(options, argv[4], "xkbOptions"); 128 129 free_logs(); 130 rdef->model = argv[1];
··· 121 122 rdef = malloc(sizeof(struct xkb_rule_names)); 123 124 + TRY_KEYMAP(model, argv[1], "xkb.model"); 125 + TRY_KEYMAP(layout, argv[2], "xkb.layout"); 126 + TRY_KEYMAP(variant, argv[3], "xkb.variant"); 127 + TRY_KEYMAP(options, argv[4], "xkb.options"); 128 129 free_logs(); 130 rdef->model = argv[1];
+2 -2
pkgs/tools/admin/aliyun-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "aliyun-cli"; 5 - version = "3.0.181"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "aliyun"; 10 repo = pname; 11 fetchSubmodules = true; 12 - sha256 = "sha256-xjOoWQyQCVoCDJMXboxFAyil7jRCWU6oIEt7gcPkIPo="; 13 }; 14 15 vendorHash = "sha256-S8Nthnr3wASvRyZS5UTHILPnUA+FeZJEwIvT0O39U3I=";
··· 2 3 buildGoModule rec { 4 pname = "aliyun-cli"; 5 + version = "3.0.183"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "aliyun"; 10 repo = pname; 11 fetchSubmodules = true; 12 + sha256 = "sha256-L00vQTuY4m5vGqu09FyOdM/XOIMyLZG/BSj8dktEa40="; 13 }; 14 15 vendorHash = "sha256-S8Nthnr3wASvRyZS5UTHILPnUA+FeZJEwIvT0O39U3I=";
-87
pkgs/tools/admin/lexicon/default.nix
··· 1 - { lib 2 - , python3 3 - , fetchFromGitHub 4 - }: 5 - 6 - with python3.pkgs; 7 - 8 - buildPythonApplication rec { 9 - pname = "lexicon"; 10 - version = "3.11.7"; 11 - format = "pyproject"; 12 - 13 - src = fetchFromGitHub { 14 - owner = "AnalogJ"; 15 - repo = pname; 16 - rev = "refs/tags/v${version}"; 17 - hash = "sha256-TySgIxBEl2RolndAkEN4vCIDKaI48vrh2ocd+CTn7Ow="; 18 - }; 19 - 20 - nativeBuildInputs = [ 21 - poetry-core 22 - ]; 23 - 24 - propagatedBuildInputs = [ 25 - beautifulsoup4 26 - cryptography 27 - importlib-metadata 28 - pyyaml 29 - requests 30 - tldextract 31 - ]; 32 - 33 - passthru.optional-dependencies = { 34 - route53 = [ 35 - boto3 36 - ]; 37 - localzone = [ 38 - localzone 39 - ]; 40 - softlayer = [ 41 - softlayer 42 - ]; 43 - gransy = [ 44 - zeep 45 - ]; 46 - ddns = [ 47 - dnspython 48 - ]; 49 - oci = [ 50 - oci 51 - ]; 52 - full = [ 53 - boto3 54 - dnspython 55 - localzone 56 - oci 57 - softlayer 58 - zeep 59 - ]; 60 - }; 61 - 62 - nativeCheckInputs = [ 63 - mock 64 - pytestCheckHook 65 - pytest-xdist 66 - vcrpy 67 - ] ++ passthru.optional-dependencies.full; 68 - 69 - disabledTestPaths = [ 70 - # Tests require network access 71 - "lexicon/tests/providers/test_auto.py" 72 - # Tests require an additional setup 73 - "lexicon/tests/providers/test_localzone.py" 74 - ]; 75 - 76 - pythonImportsCheck = [ 77 - "lexicon" 78 - ]; 79 - 80 - meta = with lib; { 81 - description = "Manipulate DNS records of various DNS providers in a standardized way"; 82 - homepage = "https://github.com/AnalogJ/lexicon"; 83 - changelog = "https://github.com/AnalogJ/lexicon/blob/v${version}/CHANGELOG.md"; 84 - license = licenses.mit; 85 - maintainers = with maintainers; [ flyfloh ]; 86 - }; 87 - }
···
+2 -2
pkgs/tools/archivers/peazip/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "peazip"; 19 - version = "9.9.0"; 20 21 src = fetchFromGitHub { 22 owner = "peazip"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-1UavigwVp/Gna2BOUECQrn/VQjov8wDw5EdPWX3mpvM="; 26 }; 27 sourceRoot = "${src.name}/peazip-sources"; 28
··· 16 17 stdenv.mkDerivation rec { 18 pname = "peazip"; 19 + version = "9.4.0"; 20 21 src = fetchFromGitHub { 22 owner = "peazip"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-to5VhuTomw33WRWrtSIMF/SD+KVXsUKmSrJ84BNatqw="; 26 }; 27 sourceRoot = "${src.name}/peazip-sources"; 28
+2 -2
pkgs/tools/archivers/unrar/default.nix
··· 5 6 stdenv.mkDerivation (finalAttrs: { 7 pname = "unrar"; 8 - version = "6.2.11"; 9 10 src = fetchzip { 11 url = "https://www.rarlab.com/rar/unrarsrc-${finalAttrs.version}.tar.gz"; 12 stripRoot = false; 13 - hash = "sha256-HFglLjn4UE8dalp2ZIFlqqaE9FahahFrDNsPrKUIQPI="; 14 }; 15 16 sourceRoot = finalAttrs.src.name;
··· 5 6 stdenv.mkDerivation (finalAttrs: { 7 pname = "unrar"; 8 + version = "6.2.12"; 9 10 src = fetchzip { 11 url = "https://www.rarlab.com/rar/unrarsrc-${finalAttrs.version}.tar.gz"; 12 stripRoot = false; 13 + hash = "sha256-VAL3o9JGmkAcEssa/P/SL9nyxnigb7dX9YZBHrG9f0A="; 14 }; 15 16 sourceRoot = finalAttrs.src.name;
+20 -6
pkgs/tools/misc/bat/default.nix pkgs/by-name/ba/bat/package.nix
··· 4 , fetchFromGitHub 5 , pkg-config 6 , less 7 - , Security 8 , libiconv 9 , installShellFiles 10 , makeWrapper 11 }: 12 13 rustPlatform.buildRustPackage rec { 14 pname = "bat"; 15 - version = "0.23.0"; 16 17 src = fetchFromGitHub { 18 owner = "sharkdp"; 19 repo = "bat"; 20 rev = "v${version}"; 21 - hash = "sha256-cGHxB3Wp8yEcJBMtSOec6l7iBsMLhUtJ7nh5fijnWZs="; 22 }; 23 - cargoHash = "sha256-wZNdYGCLKD80gV1QUTgKsFSNYkbDubknPB3e6dsyEgs="; 24 25 nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ]; 26 27 - buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ]; 28 29 postInstall = '' 30 installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1 ··· 38 --prefix PATH : "${lib.makeBinPath [ less ]}" 39 ''; 40 41 - checkFlags = [ "--skip=pager_more" "--skip=pager_most" ]; 42 43 doInstallCheck = true; 44 installCheckPhase = ''
··· 4 , fetchFromGitHub 5 , pkg-config 6 , less 7 , libiconv 8 , installShellFiles 9 , makeWrapper 10 + , darwin 11 }: 12 13 rustPlatform.buildRustPackage rec { 14 pname = "bat"; 15 + version = "0.24.0"; 16 17 src = fetchFromGitHub { 18 owner = "sharkdp"; 19 repo = "bat"; 20 rev = "v${version}"; 21 + hash = "sha256-1RjlJEmY/jMf0IYQbrWrT1CHFyiqgarOl72u9xjjQiQ="; 22 }; 23 + cargoHash = "sha256-b7wNWdKQ4QLeCf7bNZRfzT9hD/D/oDglU7Xyb65IrGY="; 24 25 nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ]; 26 27 + buildInputs = lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ]; 28 29 postInstall = '' 30 installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1 ··· 38 --prefix PATH : "${lib.makeBinPath [ less ]}" 39 ''; 40 41 + # Skip test cases which depends on `more` 42 + checkFlags = [ 43 + "--skip=alias_pager_disable_long_overrides_short" 44 + "--skip=config_read_arguments_from_file" 45 + "--skip=env_var_bat_paging" 46 + "--skip=pager_arg_override_env_noconfig" 47 + "--skip=pager_arg_override_env_withconfig" 48 + "--skip=pager_basic" 49 + "--skip=pager_basic_arg" 50 + "--skip=pager_env_bat_pager_override_config" 51 + "--skip=pager_env_pager_nooverride_config" 52 + "--skip=pager_more" 53 + "--skip=pager_most" 54 + "--skip=pager_overwrite" 55 + ]; 56 57 doInstallCheck = true; 58 installCheckPhase = ''
+2 -2
pkgs/tools/misc/lazydocker/default.nix
··· 2 3 buildGoModule rec { 4 pname = "lazydocker"; 5 - version = "0.21.1"; 6 7 src = fetchFromGitHub { 8 owner = "jesseduffield"; 9 repo = "lazydocker"; 10 rev = "v${version}"; 11 - sha256 = "sha256-fzHsLKtlyTKcuOqTYtoE5Wv0Y45tAMgRpYmXA4oYrVY="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "lazydocker"; 5 + version = "0.23.0"; 6 7 src = fetchFromGitHub { 8 owner = "jesseduffield"; 9 repo = "lazydocker"; 10 rev = "v${version}"; 11 + sha256 = "sha256-BxIv0HCdrR9U9mmJnBdQqiUf/vbK+XEnL8ALPkuap0M="; 12 }; 13 14 vendorHash = null;
+2 -2
pkgs/tools/misc/tgpt/default.nix
··· 5 6 buildGoModule rec { 7 pname = "tgpt"; 8 - version = "2.0.2"; 9 10 src = fetchFromGitHub { 11 owner = "aandrew-me"; 12 repo = "tgpt"; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-WSOsAgWq0ivD5tjrdnRrNoBs/jFjdWGEx32tAtR3JXs="; 15 }; 16 17 vendorHash = "sha256-HXpSoihk0s218DVCHe9VCGLBggWY8I25sw2qSaiUz4I=";
··· 5 6 buildGoModule rec { 7 pname = "tgpt"; 8 + version = "2.0.3"; 9 10 src = fetchFromGitHub { 11 owner = "aandrew-me"; 12 repo = "tgpt"; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-4zm2dsYhN5itGto39p2Aq+9vF4iqqjCGwMWACuKSMs0="; 15 }; 16 17 vendorHash = "sha256-HXpSoihk0s218DVCHe9VCGLBggWY8I25sw2qSaiUz4I=";
+2 -2
pkgs/tools/networking/ipinfo/default.nix
··· 5 6 buildGoModule rec { 7 pname = "ipinfo"; 8 - version = "3.0.1"; 9 10 src = fetchFromGitHub { 11 owner = pname; 12 repo = "cli"; 13 rev = "refs/tags/${pname}-${version}"; 14 - hash = "sha256-b6Rh5TJHqcdexZ4AHY+4jQsCMdn69J3MTbmgKXEaACw="; 15 }; 16 17 vendorHash = null;
··· 5 6 buildGoModule rec { 7 pname = "ipinfo"; 8 + version = "3.1.2"; 9 10 src = fetchFromGitHub { 11 owner = pname; 12 repo = "cli"; 13 rev = "refs/tags/${pname}-${version}"; 14 + hash = "sha256-KCdKfZs1u3ZLaG+Lmod/vV0T0LaW8hs4ReGlVA7A9pA="; 15 }; 16 17 vendorHash = null;
+3 -3
pkgs/tools/networking/oha/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "oha"; 12 - version = "0.6.4"; 13 14 src = fetchFromGitHub { 15 owner = "hatoo"; 16 repo = pname; 17 rev = "refs/tags/v${version}"; 18 - sha256 = "sha256-zupenhIxw93EifV1JRcM9ryGli+wqo88JH+8JciOn8E="; 19 }; 20 21 - cargoSha256 = "sha256-g0YJu34LmqqKCSVqS6LaO71iCJ26QKvbMpR6+sMLTr4="; 22 23 nativeBuildInputs = lib.optionals stdenv.isLinux [ 24 pkg-config
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "oha"; 12 + version = "0.6.5"; 13 14 src = fetchFromGitHub { 15 owner = "hatoo"; 16 repo = pname; 17 rev = "refs/tags/v${version}"; 18 + sha256 = "sha256-eC0EiBD0FQ/Ucvjh5q1htZLVmpzzOzKAVmHW6/Krc0Q="; 19 }; 20 21 + cargoSha256 = "sha256-AmFDi5l55tJ3yZwTH4DyxOsium8WoSW7JVmn1L+lRpU="; 22 23 nativeBuildInputs = lib.optionals stdenv.isLinux [ 24 pkg-config
+2 -2
pkgs/tools/networking/openapi-generator-cli/default.nix
··· 1 { callPackage, lib, stdenv, fetchurl, jre, makeWrapper }: 2 3 let this = stdenv.mkDerivation rec { 4 - version = "7.0.0"; 5 pname = "openapi-generator-cli"; 6 7 jarfilename = "${pname}-${version}.jar"; ··· 12 13 src = fetchurl { 14 url = "mirror://maven/org/openapitools/${pname}/${version}/${jarfilename}"; 15 - sha256 = "sha256-gOjp1xvb31E7jGXPfT/C/j2IqutOOaLG4ggx8AAyx3U="; 16 }; 17 18 dontUnpack = true;
··· 1 { callPackage, lib, stdenv, fetchurl, jre, makeWrapper }: 2 3 let this = stdenv.mkDerivation rec { 4 + version = "7.0.1"; 5 pname = "openapi-generator-cli"; 6 7 jarfilename = "${pname}-${version}.jar"; ··· 12 13 src = fetchurl { 14 url = "mirror://maven/org/openapitools/${pname}/${version}/${jarfilename}"; 15 + sha256 = "sha256-ATh8c5Bd5Hpuz4gB+RyNYWJPih6JDIBYIl31HUk7wyo="; 16 }; 17 18 dontUnpack = true;
+3 -3
pkgs/tools/networking/sing-box/default.nix
··· 11 12 buildGoModule rec { 13 pname = "sing-box"; 14 - version = "1.5.2"; 15 16 src = fetchFromGitHub { 17 owner = "SagerNet"; 18 repo = pname; 19 rev = "v${version}"; 20 - hash = "sha256-ZDx9ZiYhqznDU4PvWWBxaK5/fRPW9cnLrzdg5fmTfSA="; 21 }; 22 23 - vendorHash = "sha256-MRGet2P1QLgrm649+if7ROhuPHhXKYp6ACK86LvbFN0="; 24 25 tags = [ 26 "with_quic"
··· 11 12 buildGoModule rec { 13 pname = "sing-box"; 14 + version = "1.5.3"; 15 16 src = fetchFromGitHub { 17 owner = "SagerNet"; 18 repo = pname; 19 rev = "v${version}"; 20 + hash = "sha256-Vyp8AlcHhkKitcSaQ3ecjfevjSYPUZQercRJsjaXgTk="; 21 }; 22 23 + vendorHash = "sha256-Lcrc24GfkVfabMnT15scaoQFSiKJ3umbs0rAMDxtQR8="; 24 25 tags = [ 26 "with_quic"
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 - version = "2023-10-03"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-lK8Yj7YcnWX2PVIM8RkfGGvWutwT1333TYO1qrJKToc="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 + version = "2023-10-10"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-svFj+Kc2lonKqkwA4fbrvWK+JNJm3ANfWL+DCjB67pQ="; 16 }; 17 18 nativeBuildInputs = [
+3 -3
pkgs/tools/security/naabu/default.nix
··· 6 7 buildGoModule rec { 8 pname = "naabu"; 9 - version = "2.1.8"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "naabu"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-/EVlg0NhWJRowHttwYq+i/3BhO5o8w74kRLWIjSI6AQ="; 16 }; 17 18 - vendorHash = "sha256-LoYArDsCJCDSI02nFSUVemYNeF+q5xAjV2QyWjMOXIY="; 19 20 buildInputs = [ 21 libpcap
··· 6 7 buildGoModule rec { 8 pname = "naabu"; 9 + version = "2.1.9"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "naabu"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-MxIAWVcMiLLmddvyjPNprJWseOw+9ZEYV+LSMeH2Igo="; 16 }; 17 18 + vendorHash = "sha256-4lTik5POzK4aE3c1gGi3NuefEdbMdTLvJIkvTRSPraI="; 19 20 buildInputs = [ 21 libpcap
+2 -2
pkgs/tools/security/nmap-formatter/default.nix
··· 5 6 buildGoModule rec { 7 pname = "nmap-formatter"; 8 - version = "2.1.2"; 9 10 src = fetchFromGitHub { 11 owner = "vdjagilev"; 12 repo = pname; 13 rev = "v${version}"; 14 - hash = "sha256-Y7BAMJlcu5j8css2F75Bgq90nUGGo/H/kNc5aVwFJew="; 15 }; 16 17 vendorHash = "sha256-c2n8GlaD6q21gWUqr31UOioZRxO0s0tSpVRKl/YHXZU=";
··· 5 6 buildGoModule rec { 7 pname = "nmap-formatter"; 8 + version = "2.1.3"; 9 10 src = fetchFromGitHub { 11 owner = "vdjagilev"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-tc946SAWBeKSNgLJZSkEoygxyXm3xbQm3cinIK1uOoY="; 15 }; 16 17 vendorHash = "sha256-c2n8GlaD6q21gWUqr31UOioZRxO0s0tSpVRKl/YHXZU=";
+2 -2
pkgs/tools/security/smbmap/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "smbmap"; 8 - version = "1.9.1"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = "ShawnDEvans"; 13 repo = "smbmap"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-NsxmH1W5VUckGvqqTIrxhaVz0l7gsHmc8KJuvC/iVbA="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "smbmap"; 8 + version = "1.9.2"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = "ShawnDEvans"; 13 repo = "smbmap"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-n0cLj1K9Xt/1TlHOh9Kp/xIXYaUhmGSxrHL/yxDbfk4="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/tools/security/sops/default.nix
··· 2 3 buildGoModule rec { 4 pname = "sops"; 5 - version = "3.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "getsops"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-nUeygUZdtDyYGW3hZdxBHSUxYILJcHoIIYRpoxkAlI4="; 12 }; 13 14 - vendorHash = "sha256-/fh6pQ7u1icIYGM4gJHXyDNQlAbLnVluw5icovBMZ5k="; 15 16 subPackages = [ "cmd/sops" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "sops"; 5 + version = "3.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "getsops"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-4K09wLV1+TvYTtvha6YyGhjlhEldWL1eVazNwcEhi3Q="; 12 }; 13 14 + vendorHash = "sha256-iRgLspYhwSVuL0yarPdjXCKfjK7TGDZeQCOcIYtNvzA="; 15 16 subPackages = [ "cmd/sops" ]; 17
+3 -3
pkgs/tools/system/consul-template/default.nix
··· 2 3 buildGoModule rec { 4 pname = "consul-template"; 5 - version = "0.33.0"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "consul-template"; 10 rev = "v${version}"; 11 - hash = "sha256-78RYFFpsW6onWd1aAxDf28GUblIGVtg0uZeURZPla8E="; 12 }; 13 14 - vendorHash = "sha256-LRH3wMRSHIpavXSupFA9HLojBqWVObQfL+SM8ah4oBg="; 15 16 # consul-template tests depend on vault and consul services running to 17 # execute tests so we skip them here
··· 2 3 buildGoModule rec { 4 pname = "consul-template"; 5 + version = "0.34.0"; 6 7 src = fetchFromGitHub { 8 owner = "hashicorp"; 9 repo = "consul-template"; 10 rev = "v${version}"; 11 + hash = "sha256-LqgA990os33Hftu8+h/HKnOcGcKsAXVuQl1hmCmA5n4="; 12 }; 13 14 + vendorHash = "sha256-zY6c9Wnq00cAuw0WIK3XsTZ1/YL8lnzSEnusUY5VsxY="; 15 16 # consul-template tests depend on vault and consul services running to 17 # execute tests so we skip them here
+44
pkgs/tools/text/percollate/default.nix
···
··· 1 + { lib, buildNpmPackage, fetchFromGitHub, chromium, makeWrapper }: 2 + 3 + buildNpmPackage rec { 4 + pname = "percollate"; 5 + version = "4.0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "danburzo"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + hash = "sha256-QLbLg/zdDCZsRKgC4vR0OT//JHaapGmX33l7jIqUc1M="; 12 + }; 13 + 14 + npmDepsHash = "sha256-Hxhgjdiz0zC/UlFXK8vvKZFI963Wi2Wx6iHWegr6f10="; 15 + 16 + dontNpmBuild = true; 17 + 18 + # Dev dependencies include an unnecessary Java dependency (epubchecker) 19 + # https://github.com/danburzo/percollate/blob/v4.0.2/package.json#L40 20 + npmInstallFlags = [ "--omit=dev" ]; 21 + 22 + nativeBuildInputs = [ makeWrapper ]; 23 + 24 + env = { 25 + PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = true; 26 + }; 27 + 28 + postPatch = '' 29 + substituteInPlace package.json --replace "git config core.hooksPath .git-hooks" "" 30 + ''; 31 + 32 + postInstall = '' 33 + wrapProgram $out/bin/percollate \ 34 + --set PUPPETEER_EXECUTABLE_PATH ${chromium}/bin/chromium 35 + ''; 36 + 37 + meta = with lib; { 38 + description = "A command-line tool to turn web pages into readable PDF, EPUB, HTML, or Markdown docs"; 39 + homepage = "https://github.com/danburzo/percollate"; 40 + license = licenses.mit; 41 + maintainers = [ maintainers.austinbutler ]; 42 + mainProgram = "percollate"; 43 + }; 44 + }
pkgs/tools/text/pru/Gemfile pkgs/by-name/pr/pru/Gemfile
pkgs/tools/text/pru/Gemfile.lock pkgs/by-name/pr/pru/Gemfile.lock
pkgs/tools/text/pru/default.nix pkgs/by-name/pr/pru/package.nix
pkgs/tools/text/pru/gemset.nix pkgs/by-name/pr/pru/gemset.nix
pkgs/tools/text/pyp/default.nix pkgs/by-name/py/pyp/package.nix
+5 -5
pkgs/tools/text/robodoc/default.nix pkgs/by-name/ro/robodoc/package.nix
··· 4 , autoreconfHook 5 }: 6 7 - stdenv.mkDerivation rec { 8 pname = "robodoc"; 9 version = "4.99.44"; 10 11 src = fetchFromGitHub { 12 owner = "gumpu"; 13 repo = "ROBODoc"; 14 - rev = "v${version}"; 15 - sha256 = "l3prSdaGhOvXmZfCPbsZJNocO7y20zJjLQpajRTJOqE="; 16 }; 17 18 postConfigure = lib.optionalString stdenv.isDarwin '' ··· 48 ''; 49 license = with licenses; gpl3Plus; 50 maintainers = with maintainers; [ AndersonTorres ]; 51 - platforms = with platforms; all; 52 }; 53 - }
··· 4 , autoreconfHook 5 }: 6 7 + stdenv.mkDerivation (finalAttrs: { 8 pname = "robodoc"; 9 version = "4.99.44"; 10 11 src = fetchFromGitHub { 12 owner = "gumpu"; 13 repo = "ROBODoc"; 14 + rev = "v${finalAttrs.version}"; 15 + hash = "sha256-l3prSdaGhOvXmZfCPbsZJNocO7y20zJjLQpajRTJOqE="; 16 }; 17 18 postConfigure = lib.optionalString stdenv.isDarwin '' ··· 48 ''; 49 license = with licenses; gpl3Plus; 50 maintainers = with maintainers; [ AndersonTorres ]; 51 + platforms = platforms.all; 52 }; 53 + })
pkgs/tools/text/rs/default.nix pkgs/by-name/rs/rs/package.nix
pkgs/tools/text/rst2html5/default.nix pkgs/by-name/rs/rst2html5/package.nix
pkgs/tools/text/txr/default.nix pkgs/by-name/tx/txr/package.nix
+1
pkgs/top-level/aliases.nix
··· 382 jfbpdf = throw "'jfbpdf' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 383 jfbview = throw "'jfbview' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 384 jira-cli = throw "jira-cli was removed because it is no longer maintained"; # Added 2023-02-28 385 386 # Julia 387
··· 382 jfbpdf = throw "'jfbpdf' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 383 jfbview = throw "'jfbview' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 384 jira-cli = throw "jira-cli was removed because it is no longer maintained"; # Added 2023-02-28 385 + join-desktop = throw "'join-desktop' has been removed because it is unmaintained upstream"; # Added 2023-10-04 386 387 # Julia 388
+11 -54
pkgs/top-level/all-packages.nix
··· 2623 SDL = if stdenv.isDarwin then SDL else SDL_compat; 2624 }; 2625 2626 - dosbox-staging = callPackage ../applications/emulators/dosbox-staging { }; 2627 - 2628 dosbox-x = darwin.apple_sdk_11_0.callPackage ../applications/emulators/dosbox-x { 2629 inherit (darwin.apple_sdk_11_0.frameworks) AudioUnit Carbon Cocoa; 2630 }; ··· 3009 3010 foot = callPackage ../applications/terminal-emulators/foot { }; 3011 3012 - germinal = callPackage ../applications/terminal-emulators/germinal { }; 3013 - 3014 guake = callPackage ../applications/terminal-emulators/guake { }; 3015 3016 - havoc = callPackage ../applications/terminal-emulators/havoc { }; 3017 - 3018 hyper = callPackage ../applications/terminal-emulators/hyper { }; 3019 3020 iterm2 = callPackage ../applications/terminal-emulators/iterm2 { }; 3021 - 3022 - kermit-terminal = callPackage ../applications/terminal-emulators/kermit-terminal { }; 3023 3024 kitty = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/kitty { 3025 go = go_1_21; ··· 3090 termite-unwrapped = callPackage ../applications/terminal-emulators/termite { }; 3091 3092 termonad = callPackage ../applications/terminal-emulators/termonad { }; 3093 - 3094 - tilda = callPackage ../applications/terminal-emulators/tilda { 3095 - gtk = gtk3; 3096 - }; 3097 3098 tilix = callPackage ../applications/terminal-emulators/tilix { }; 3099 ··· 4271 4272 bar = callPackage ../tools/system/bar { }; 4273 4274 - base16-shell-preview = callPackage ../misc/base16-shell-preview { }; 4275 - 4276 base16-builder = callPackage ../misc/base16-builder { }; 4277 4278 basex = callPackage ../tools/text/xml/basex { }; ··· 4293 4294 bashmount = callPackage ../tools/filesystems/bashmount { }; 4295 4296 - bat = callPackage ../tools/misc/bat { 4297 - inherit (darwin.apple_sdk.frameworks) Security; 4298 - }; 4299 - 4300 bat-extras = recurseIntoAttrs (callPackages ../tools/misc/bat-extras { }); 4301 4302 beats = callPackage ../tools/misc/beats { }; ··· 5856 5857 lexend = callPackage ../data/fonts/lexend { }; 5858 5859 - lexicon = callPackage ../tools/admin/lexicon { }; 5860 5861 lenpaste = callPackage ../servers/lenpaste { }; 5862 ··· 8902 inherit (darwin.apple_sdk.frameworks) Security; 8903 }; 8904 8905 - robodoc = callPackage ../tools/text/robodoc { }; 8906 - 8907 grive2 = callPackage ../tools/filesystems/grive2 { }; 8908 8909 groff = callPackage ../tools/text/groff { }; ··· 11364 11365 npapi_sdk = callPackage ../development/libraries/npapi-sdk { }; 11366 11367 - nickel = callPackage ../development/interpreters/nickel { }; 11368 - 11369 npiet = callPackage ../development/interpreters/npiet { }; 11370 11371 npth = callPackage ../development/libraries/npth { }; ··· 12012 12013 peco = callPackage ../tools/text/peco { }; 12014 12015 pg_activity = callPackage ../development/tools/database/pg_activity { }; 12016 12017 pg_checksums = callPackage ../development/tools/database/pg_checksums { }; ··· 12669 12670 rlci = callPackage ../development/interpreters/rlci { }; 12671 12672 - rs = callPackage ../tools/text/rs { }; 12673 - 12674 - rst2html5 = callPackage ../tools/text/rst2html5 { }; 12675 - 12676 rst2pdf = with python3Packages; toPythonApplication rst2pdf; 12677 12678 rstcheck = with python3Packages; toPythonApplication rstcheck; ··· 13025 scorecard = callPackage ../tools/security/scorecard { }; 13026 13027 scream = callPackage ../applications/audio/scream { }; 13028 - 13029 - scimark = callPackage ../misc/scimark { }; 13030 13031 screen = callPackage ../tools/misc/screen { 13032 inherit (darwin.apple_sdk.libs) utmp; ··· 14217 14218 twurl = callPackage ../tools/misc/twurl { }; 14219 14220 - txr = callPackage ../tools/text/txr { }; 14221 - 14222 txt2man = callPackage ../tools/misc/txt2man { }; 14223 14224 txt2tags = callPackage ../tools/text/txt2tags { }; ··· 18413 nix = nixVersions.nix_2_16; 18414 }; 18415 18416 - nls = callPackage ../development/tools/language-servers/nls { }; 18417 - 18418 openscad-lsp = callPackage ../development/tools/language-servers/openscad-lsp { }; 18419 18420 perlnavigator = callPackage ../development/tools/language-servers/perlnavigator { }; ··· 18610 18611 bazel-remote = callPackage ../development/tools/build-managers/bazel/bazel-remote { }; 18612 18613 - bazel-watcher = callPackage ../development/tools/bazel-watcher { 18614 - go = go_1_18; 18615 - }; 18616 18617 bazel-gazelle = callPackage ../development/tools/bazel-gazelle { }; 18618 ··· 24570 buildPythonApplication click future six; 24571 }; 24572 24573 - pyp = callPackage ../tools/text/pyp { }; 24574 - 24575 - pru = callPackage ../tools/text/pru { }; 24576 - 24577 prospector = callPackage ../development/tools/prospector { }; 24578 24579 protobuf = protobuf3_24; ··· 27045 OVMF = callPackage ../applications/virtualization/OVMF { }; 27046 OVMFFull = callPackage ../applications/virtualization/OVMF { 27047 secureBoot = true; 27048 - csmSupport = true; 27049 httpSupport = true; 27050 tpmSupport = true; 27051 }; ··· 27140 prometheus-graphite-exporter = callPackage ../servers/monitoring/prometheus/graphite-exporter.nix { }; 27141 prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; 27142 prometheus-idrac-exporter = callPackage ../servers/monitoring/prometheus/idrac-exporter.nix { }; 27143 prometheus-influxdb-exporter = callPackage ../servers/monitoring/prometheus/influxdb-exporter.nix { }; 27144 prometheus-ipmi-exporter = callPackage ../servers/monitoring/prometheus/ipmi-exporter.nix { }; 27145 prometheus-jitsi-exporter = callPackage ../servers/monitoring/prometheus/jitsi-exporter.nix { }; ··· 28897 buildBarebox 28898 bareboxTools; 28899 28900 - uclibc-ng = callPackage ../os-specific/linux/uclibc-ng { }; 28901 - 28902 - uclibc-ng-cross = callPackage ../os-specific/linux/uclibc-ng { 28903 stdenv = crossLibcStdenv; 28904 }; 28905 ··· 30551 jnetmap = callPackage ../applications/networking/jnetmap { }; 30552 30553 jxplorer = callPackage ../applications/networking/jxplorer {}; 30554 - 30555 - join-desktop = callPackage ../applications/misc/join-desktop { }; 30556 30557 joincap = callPackage ../tools/security/joincap { }; 30558 ··· 32471 hugin = callPackage ../applications/graphics/hugin { 32472 wxGTK = wxGTK32; 32473 }; 32474 - 32475 - haunt = callPackage ../applications/misc/haunt { }; 32476 32477 huggle = libsForQt5.callPackage ../applications/misc/huggle { }; 32478 ··· 34319 }; 34320 34321 mupdf = callPackage ../applications/misc/mupdf { }; 34322 - mupdf_1_17 = callPackage ../applications/misc/mupdf/1.17.nix { }; 34323 34324 muso = callPackage ../applications/audio/muso { 34325 inherit (darwin.apple_sdk.frameworks) CoreServices; ··· 35393 imlib2 = imlib2Full; 35394 }; 35395 35396 - nsxiv = callPackage ../applications/graphics/nsxiv { 35397 imlib2 = imlib2Full; 35398 }; 35399 ··· 36804 }; 36805 36806 xscope = callPackage ../applications/misc/xscope { }; 36807 - 36808 - xscreensaver = callPackage ../misc/screensavers/xscreensaver { }; 36809 36810 xsubfind3r = callPackage ../tools/security/xsubfind3r { }; 36811 ··· 41127 snscrape = with python3Packages; toPythonApplication snscrape; 41128 41129 soundmodem = callPackage ../applications/radio/soundmodem { }; 41130 - 41131 - sound-of-sorting = callPackage ../misc/sound-of-sorting { }; 41132 41133 sourceAndTags = callPackage ../misc/source-and-tags { 41134 hasktags = haskellPackages.hasktags;
··· 2623 SDL = if stdenv.isDarwin then SDL else SDL_compat; 2624 }; 2625 2626 dosbox-x = darwin.apple_sdk_11_0.callPackage ../applications/emulators/dosbox-x { 2627 inherit (darwin.apple_sdk_11_0.frameworks) AudioUnit Carbon Cocoa; 2628 }; ··· 3007 3008 foot = callPackage ../applications/terminal-emulators/foot { }; 3009 3010 guake = callPackage ../applications/terminal-emulators/guake { }; 3011 3012 hyper = callPackage ../applications/terminal-emulators/hyper { }; 3013 3014 iterm2 = callPackage ../applications/terminal-emulators/iterm2 { }; 3015 3016 kitty = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/kitty { 3017 go = go_1_21; ··· 3082 termite-unwrapped = callPackage ../applications/terminal-emulators/termite { }; 3083 3084 termonad = callPackage ../applications/terminal-emulators/termonad { }; 3085 3086 tilix = callPackage ../applications/terminal-emulators/tilix { }; 3087 ··· 4259 4260 bar = callPackage ../tools/system/bar { }; 4261 4262 base16-builder = callPackage ../misc/base16-builder { }; 4263 4264 basex = callPackage ../tools/text/xml/basex { }; ··· 4279 4280 bashmount = callPackage ../tools/filesystems/bashmount { }; 4281 4282 bat-extras = recurseIntoAttrs (callPackages ../tools/misc/bat-extras { }); 4283 4284 beats = callPackage ../tools/misc/beats { }; ··· 5838 5839 lexend = callPackage ../data/fonts/lexend { }; 5840 5841 + lexicon = with python3Packages; toPythonApplication dns-lexicon; 5842 5843 lenpaste = callPackage ../servers/lenpaste { }; 5844 ··· 8884 inherit (darwin.apple_sdk.frameworks) Security; 8885 }; 8886 8887 grive2 = callPackage ../tools/filesystems/grive2 { }; 8888 8889 groff = callPackage ../tools/text/groff { }; ··· 11344 11345 npapi_sdk = callPackage ../development/libraries/npapi-sdk { }; 11346 11347 npiet = callPackage ../development/interpreters/npiet { }; 11348 11349 npth = callPackage ../development/libraries/npth { }; ··· 11990 11991 peco = callPackage ../tools/text/peco { }; 11992 11993 + percollate = callPackage ../tools/text/percollate { }; 11994 + 11995 pg_activity = callPackage ../development/tools/database/pg_activity { }; 11996 11997 pg_checksums = callPackage ../development/tools/database/pg_checksums { }; ··· 12649 12650 rlci = callPackage ../development/interpreters/rlci { }; 12651 12652 rst2pdf = with python3Packages; toPythonApplication rst2pdf; 12653 12654 rstcheck = with python3Packages; toPythonApplication rstcheck; ··· 13001 scorecard = callPackage ../tools/security/scorecard { }; 13002 13003 scream = callPackage ../applications/audio/scream { }; 13004 13005 screen = callPackage ../tools/misc/screen { 13006 inherit (darwin.apple_sdk.libs) utmp; ··· 14191 14192 twurl = callPackage ../tools/misc/twurl { }; 14193 14194 txt2man = callPackage ../tools/misc/txt2man { }; 14195 14196 txt2tags = callPackage ../tools/text/txt2tags { }; ··· 18385 nix = nixVersions.nix_2_16; 18386 }; 18387 18388 openscad-lsp = callPackage ../development/tools/language-servers/openscad-lsp { }; 18389 18390 perlnavigator = callPackage ../development/tools/language-servers/perlnavigator { }; ··· 18580 18581 bazel-remote = callPackage ../development/tools/build-managers/bazel/bazel-remote { }; 18582 18583 + bazel-watcher = callPackage ../development/tools/bazel-watcher { }; 18584 18585 bazel-gazelle = callPackage ../development/tools/bazel-gazelle { }; 18586 ··· 24538 buildPythonApplication click future six; 24539 }; 24540 24541 prospector = callPackage ../development/tools/prospector { }; 24542 24543 protobuf = protobuf3_24; ··· 27009 OVMF = callPackage ../applications/virtualization/OVMF { }; 27010 OVMFFull = callPackage ../applications/virtualization/OVMF { 27011 secureBoot = true; 27012 + # CSM support is a BIOS emulation mechanism, 27013 + # SeaBIOS is only available on x86. 27014 + csmSupport = stdenv.hostPlatform.isx86; 27015 httpSupport = true; 27016 tpmSupport = true; 27017 }; ··· 27106 prometheus-graphite-exporter = callPackage ../servers/monitoring/prometheus/graphite-exporter.nix { }; 27107 prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; 27108 prometheus-idrac-exporter = callPackage ../servers/monitoring/prometheus/idrac-exporter.nix { }; 27109 + prometheus-imap-mailstat-exporter = callPackage ../servers/monitoring/prometheus/imap-mailstat-exporter.nix { }; 27110 prometheus-influxdb-exporter = callPackage ../servers/monitoring/prometheus/influxdb-exporter.nix { }; 27111 prometheus-ipmi-exporter = callPackage ../servers/monitoring/prometheus/ipmi-exporter.nix { }; 27112 prometheus-jitsi-exporter = callPackage ../servers/monitoring/prometheus/jitsi-exporter.nix { }; ··· 28864 buildBarebox 28865 bareboxTools; 28866 28867 + uclibc-ng-cross = uclibc-ng.override { 28868 stdenv = crossLibcStdenv; 28869 }; 28870 ··· 30516 jnetmap = callPackage ../applications/networking/jnetmap { }; 30517 30518 jxplorer = callPackage ../applications/networking/jxplorer {}; 30519 30520 joincap = callPackage ../tools/security/joincap { }; 30521 ··· 32434 hugin = callPackage ../applications/graphics/hugin { 32435 wxGTK = wxGTK32; 32436 }; 32437 32438 huggle = libsForQt5.callPackage ../applications/misc/huggle { }; 32439 ··· 34280 }; 34281 34282 mupdf = callPackage ../applications/misc/mupdf { }; 34283 + mupdf_1_17 = callPackage ../applications/misc/mupdf/1.17 { }; 34284 34285 muso = callPackage ../applications/audio/muso { 34286 inherit (darwin.apple_sdk.frameworks) CoreServices; ··· 35354 imlib2 = imlib2Full; 35355 }; 35356 35357 + nsxiv = callPackage ../by-name/ns/nsxiv/package.nix { 35358 imlib2 = imlib2Full; 35359 }; 35360 ··· 36765 }; 36766 36767 xscope = callPackage ../applications/misc/xscope { }; 36768 36769 xsubfind3r = callPackage ../tools/security/xsubfind3r { }; 36770 ··· 41086 snscrape = with python3Packages; toPythonApplication snscrape; 41087 41088 soundmodem = callPackage ../applications/radio/soundmodem { }; 41089 41090 sourceAndTags = callPackage ../misc/source-and-tags { 41091 hasktags = haskellPackages.hasktags;
+1
pkgs/top-level/python-aliases.nix
··· 59 backports_weakref = throw "backports_weakref has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28 60 beancount_docverif = beancount-docverif; # added 2023-10-08 61 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 62 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15 63 BlinkStick = blinkstick; # added 2023-02-19 64 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29
··· 59 backports_weakref = throw "backports_weakref has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28 60 beancount_docverif = beancount-docverif; # added 2023-10-08 61 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 62 + bip_utils = bip-utils; # 2023-10-08 63 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15 64 BlinkStick = blinkstick; # added 2023-02-19 65 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29
+1 -1
pkgs/top-level/python-packages.nix
··· 1438 1439 biplist = callPackage ../development/python-modules/biplist { }; 1440 1441 - bip_utils = callPackage ../development/python-modules/bip_utils { }; 1442 1443 bitarray = callPackage ../development/python-modules/bitarray { }; 1444
··· 1438 1439 biplist = callPackage ../development/python-modules/biplist { }; 1440 1441 + bip-utils = callPackage ../development/python-modules/bip-utils { }; 1442 1443 bitarray = callPackage ../development/python-modules/bitarray { }; 1444