Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub c815a0e1 903a7876

+3057 -9393
+12
maintainers/maintainer-list.nix
··· 9101 9101 github = "gytis-ivaskevicius"; 9102 9102 githubId = 23264966; 9103 9103 }; 9104 + h3cth0r = { 9105 + name = "Hector Miranda"; 9106 + email = "hector.miranda@tec.mx"; 9107 + github = "h3cth0r"; 9108 + githubId = 43997408; 9109 + }; 9104 9110 h7x4 = { 9105 9111 name = "h7x4"; 9106 9112 email = "h7x4@nani.wtf"; ··· 13364 13370 github = "liam-murphy14"; 13365 13371 githubId = 54590679; 13366 13372 name = "Liam Murphy"; 13373 + }; 13374 + Liamolucko = { 13375 + name = "Liam Murphy"; 13376 + email = "liampm32@gmail.com"; 13377 + github = "Liamolucko"; 13378 + githubId = 43807659; 13367 13379 }; 13368 13380 liarokapisv = { 13369 13381 email = "liarokapis.v@gmail.com";
+6 -7
nixos/doc/manual/configuration/gpu-accel.chapter.md
··· 64 64 65 65 ### Intel {#sec-gpu-accel-opencl-intel} 66 66 67 - [Intel Gen8 and later 68 - GPUs](https://en.wikipedia.org/wiki/List_of_Intel_graphics_processing_units#Gen8) 69 - are supported by the Intel NEO OpenCL runtime that is provided by the 70 - intel-compute-runtime package. The proprietary Intel OpenCL runtime, in 71 - the intel-ocl package, is an alternative for Gen7 GPUs. 67 + [Intel Gen12 and later GPUs](https://en.wikipedia.org/wiki/List_of_Intel_graphics_processing_units#Gen12) 68 + are supported by the Intel NEO OpenCL runtime that is provided by the `intel-compute-runtime` package. 69 + The previous generations (8,9 and 11), have been moved to the `intel-compute-runtime-legacy1` package. 70 + The proprietary Intel OpenCL runtime, in the `intel-ocl` package, is an alternative for Gen7 GPUs. 72 71 73 - The intel-compute-runtime or intel-ocl package can be added to 72 + Both `intel-compute-runtime` packages, as well as the `intel-ocl` package can be added to 74 73 [](#opt-hardware.graphics.extraPackages) 75 - to enable OpenCL support. For example, for Gen8 and later GPUs, the following 74 + to enable OpenCL support. For example, for Gen12 and later GPUs, the following 76 75 configuration can be used: 77 76 78 77 ```nix
+3
nixos/doc/manual/release-notes/rl-2411.section.md
··· 236 236 - The `intel` driver for the X server (`services.xserver.videoDrives = [ "intel" ]`) is no longer functional due to incompatibilities with the latest Mesa version. 237 237 All users are strongly encouraged to switch to the generic `modesetting` driver (the default one) whenever possible, for more information see the manual chapter on [Intel Graphics](#sec-x11--graphics-cards-intel) and issue [#342763](https://github.com/NixOS/nixpkgs/issues/342763). 238 238 239 + - The `intel-compute-runtime` package dropped support for older GPUs, and only supports 12th Gen and newer from now on. 240 + Intel GPUs from Gen 8,9 and 11 need to use the `intel-compute-runtime-legacy1` package in `hardware.graphics.extraPackages`. 241 + 239 242 - The `(buildPythonPackage { ... }).override` and `(buildPythonPackage { ... }).overrideDerivation` attributes is now deprecated and removed in favour of `overridePythonAttrs` and `lib.overrideDerivation`. 240 243 This change does not affect the override interface of most Python packages, as [`<pkg>.override`](https://nixos.org/manual/nixpkgs/unstable/#sec-pkg-override) provided by `callPackage` shadows such a locally-defined `override` attribute. 241 244 The `<pkg>.overrideDerivation` attribute of Python packages called with `callPackage` will also remain available after this change.
+15 -7
nixos/modules/services/home-automation/matter-server.nix
··· 58 58 serviceConfig = { 59 59 ExecStart = ( 60 60 lib.concatStringsSep " " [ 61 + # `python-matter-server` writes to /data even when a storage-path 62 + # is specified. This symlinks /data at the systemd-managed 63 + # /var/lib/matter-server, so all files get dropped into the state 64 + # directory. 65 + "${pkgs.bash}/bin/sh" 66 + "-c" 67 + "'" 68 + "${pkgs.coreutils}/bin/ln -s %S/matter-server/ %t/matter-server/root/data" 69 + "&&" 61 70 "${cfg.package}/bin/matter-server" 62 71 "--port" 63 72 (toString cfg.port) ··· 68 77 "--log-level" 69 78 "${cfg.logLevel}" 70 79 "${lib.escapeShellArgs cfg.extraArgs}" 80 + "'" 71 81 ] 72 82 ); 73 83 # Start with a clean root filesystem, and allowlist what the container 74 84 # is permitted to access. 75 - TemporaryFileSystem = "/"; 85 + # See https://discourse.nixos.org/t/hardening-systemd-services/17147/14. 86 + RuntimeDirectory = [ "matter-server/root" ]; 87 + RootDirectory = "%t/matter-server/root"; 88 + 76 89 # Allowlist /nix/store (to allow the binary to find its dependencies) 77 90 # and dbus. 78 - ReadOnlyPaths = "/nix/store /run/dbus"; 91 + BindReadOnlyPaths = "/nix/store /run/dbus"; 79 92 # Let systemd manage `/var/lib/matter-server` for us inside the 80 93 # ephemeral TemporaryFileSystem. 81 94 StateDirectory = storageDir; 82 - # `python-matter-server` writes to /data even when a storage-path is 83 - # specified. This bind-mount points /data at the systemd-managed 84 - # /var/lib/matter-server, so all files get dropped into the state 85 - # directory. 86 - BindPaths = "${storagePath}:/data"; 87 95 88 96 # Hardening bits 89 97 AmbientCapabilities = "";
+19 -17
nixos/tests/matter-server.nix
··· 8 8 { 9 9 name = "matter-server"; 10 10 meta.maintainers = with lib.maintainers; [ leonm1 ]; 11 + meta.timeout = 120; # Timeout after two minutes 11 12 12 13 nodes = { 13 14 machine = ··· 22 23 23 24 testScript = # python 24 25 '' 26 + @polling_condition 27 + def matter_server_running(): 28 + machine.succeed("systemctl status matter-server") 29 + 25 30 start_all() 26 31 27 - machine.wait_for_unit("matter-server.service") 28 - machine.wait_for_open_port(1234) 32 + machine.wait_for_unit("matter-server.service", timeout=20) 33 + machine.wait_for_open_port(1234, timeout=20) 29 34 30 - with subtest("Check websocket server initialized"): 31 - output = machine.succeed("echo \"\" | ${pkgs.websocat}/bin/websocat ws://localhost:1234/ws") 32 - machine.log(output) 33 - 34 - assert '"sdk_version": "${chipVersion}"' in output, ( 35 - 'CHIP version \"${chipVersion}\" not present in websocket message' 36 - ) 35 + with matter_server_running: # type: ignore[union-attr] 36 + with subtest("Check websocket server initialized"): 37 + output = machine.succeed("echo \"\" | ${pkgs.websocat}/bin/websocat ws://localhost:1234/ws") 38 + machine.log(output) 37 39 38 - assert '"fabric_id": 1' in output, ( 39 - "fabric_id not propagated to server" 40 - ) 40 + assert '"fabric_id": 1' in output, ( 41 + "fabric_id not propagated to server" 42 + ) 41 43 42 - with subtest("Check storage directory is created"): 43 - machine.succeed("ls /var/lib/matter-server/chip.json") 44 + with subtest("Check storage directory is created"): 45 + machine.succeed("ls /var/lib/matter-server/chip.json") 44 46 45 - with subtest("Check systemd hardening"): 46 - _, output = machine.execute("systemd-analyze security matter-server.service | grep -v '✓'") 47 - machine.log(output) 47 + with subtest("Check systemd hardening"): 48 + _, output = machine.execute("systemd-analyze security matter-server.service | grep -v '✓'") 49 + machine.log(output) 48 50 ''; 49 51 } 50 52 )
+1 -1
pkgs/applications/networking/browsers/chromium/common.nix
··· 626 626 '' 627 627 + '' 628 628 # Link to our own Node.js and Java (required during the build): 629 - mkdir -p third_party/node/linux/node-linux-x64/bin 629 + mkdir -p third_party/node/linux/node-linux-x64/bin${lib.optionalString ungoogled " third_party/jdk/current/bin/"} 630 630 ln -sf "${pkgsBuildHost.nodejs}/bin/node" third_party/node/linux/node-linux-x64/bin/node 631 631 ln -s "${pkgsBuildHost.jdk17_headless}/bin/java" third_party/jdk/current/bin/ 632 632
+155 -160
pkgs/applications/networking/browsers/chromium/info.json
··· 786 786 } 787 787 }, 788 788 "ungoogled-chromium": { 789 - "version": "133.0.6943.141", 789 + "version": "134.0.6998.35", 790 790 "deps": { 791 791 "depot_tools": { 792 - "rev": "423f1e1914ab4aa7b2bdf804e216d4c097853ba2", 793 - "hash": "sha256-R7cGQLM6yJgFL43UO+zAGbq+9XEbKbtJVFRwdIUB1F8=" 792 + "rev": "e42fac3e9c1726ab14a61a25e6291d9ccc49e688", 793 + "hash": "sha256-BvEkk15Rm4nSoV/uWiwmQW/+gg2vpLQ187TbBAHl9Rk=" 794 794 }, 795 795 "gn": { 796 - "rev": "c97a86a72105f3328a540f5a5ab17d11989ab7dd", 797 - "hash": "sha256-T2dcISln9WCODoI/LsE2ldkRfFdMwVOmqqjQinAmZss=" 796 + "rev": "ed1abc107815210dc66ec439542bee2f6cbabc00", 797 + "hash": "sha256-EqbwCLkseND1v3UqM+49N7GuoXJ3PlJjWOes4OijQ3U=" 798 798 }, 799 799 "ungoogled-patches": { 800 - "rev": "133.0.6943.141-1", 801 - "hash": "sha256-FqpRx73axclW8bXmsRO845c3NB3ZBxE4fL4n7gU1P5A=" 800 + "rev": "134.0.6998.35-1", 801 + "hash": "sha256-gwU3fNDrBGql5NSzkf+TBsQKxmk6zhQnFJ1Es2sHgl8=" 802 802 }, 803 803 "npmHash": "sha256-oVoTruhxTymYiGkELd2Oa1wOfjGLtChQZozP4GzOO1A=" 804 804 }, 805 805 "DEPS": { 806 806 "src": { 807 807 "url": "https://chromium.googlesource.com/chromium/src.git", 808 - "rev": "2a5d6da0d6165d7b107502095a937fe7704fcef6", 809 - "hash": "sha256-MJlCEe1WBh+7Pl3H4jnkMuSykTBSgh5x/ZPnNwYM4DE=", 808 + "rev": "ea6ef4c2ac15ae95d2cfd65682da62c093415099", 809 + "hash": "sha256-Y/3V1cmna7nSJkS05SYsDxtPTz8bF7Q8fWYxVhVSy/g=", 810 810 "recompress": true 811 811 }, 812 812 "src/third_party/clang-format/script": { ··· 816 816 }, 817 817 "src/third_party/libc++/src": { 818 818 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git", 819 - "rev": "1f7db7501cf902d5d3ad5fd9b31bea33bb8bf9da", 820 - "hash": "sha256-d1Am+7O7KYKEfs9HpAHlw6n6nWpd219gw2Cr5RaBl7w=" 819 + "rev": "2e25154d49c29fa9aa42c30ad4a027bd30123434", 820 + "hash": "sha256-QxEbtsEKCs2Xgulq7nVWtAeOGkIYFOy/L1ROfXa5u8U=" 821 821 }, 822 822 "src/third_party/libc++abi/src": { 823 823 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git", 824 - "rev": "83dfa1f5bfce32d5f75695542468e37ead8163b8", 825 - "hash": "sha256-SUpg+lGtjchvh2CejKEIADAo6ozvHYj2BxzMcMZODCw=" 824 + "rev": "634228a732a1d9ae1a6d459556e8fc58707cf961", 825 + "hash": "sha256-ln/DCNYJXVksbwdDBnxCfc4VwtjQlJXF7ktl/NxLupg=" 826 826 }, 827 827 "src/third_party/libunwind/src": { 828 828 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git", 829 - "rev": "d1e95b102f113ded38974cf06a65fe0457b6004b", 830 - "hash": "sha256-cRqctLgtiqODZf3B8ZIA2wJWCiEsuYTH24ppFtzDh3M=" 829 + "rev": "e55d8cf51c6db1fdd4bb56c158945ec59772c8ee", 830 + "hash": "sha256-JazjgI+ch9RgnsDgu6p4cT4UmCBor4x4sRi1ClLISAY=" 831 831 }, 832 832 "src/third_party/llvm-libc/src": { 833 833 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libc.git", 834 - "rev": "039fea2058d14b408637a931b36a717169617227", 835 - "hash": "sha256-Uf9DfH62xWzcOsvaekeqXiwsIaIJMFK7kXK82ReY66Y=" 834 + "rev": "6d0c8ee02e2fd44e69ac30e721e13be463035ee5", 835 + "hash": "sha256-bF4hV9fY0GLYAHUnxSXkCxdZLMKR3wYWaqYJaM9aQiE=" 836 836 }, 837 837 "src/chrome/test/data/perf/canvas_bench": { 838 838 "url": "https://chromium.googlesource.com/chromium/canvas_bench.git", ··· 851 851 }, 852 852 "src/docs/website": { 853 853 "url": "https://chromium.googlesource.com/website.git", 854 - "rev": "4d214097ba7305ec2b3f2dfcf0aa4fd2104c960a", 855 - "hash": "sha256-QvwWHVdLnDqJ6hz0Eli5AnM5gaXDya0En7BIm4vlm6c=" 854 + "rev": "600fc3a0b121d5007b4bb97b001e756625e6d418", 855 + "hash": "sha256-f3Tdz0ykxQ2FHbNweJwPdAZHA8eVpjPuxqRpxwhYtRM=" 856 856 }, 857 857 "src/media/cdm/api": { 858 858 "url": "https://chromium.googlesource.com/chromium/cdm.git", 859 - "rev": "06395a2863cb1ebdb47617a995b73f95c14fe120", 860 - "hash": "sha256-bx0zCgqgGPjm3wjo8Y3T5kWp14WW9uoDtvn5+QOAPw0=" 859 + "rev": "5a1675c86821a48f8983842d07f774df28dfb43c", 860 + "hash": "sha256-FgeuOsxToA4qx3H76czCPeO/WVtprRkllDMPancw3Ik=" 861 861 }, 862 862 "src/net/third_party/quiche/src": { 863 863 "url": "https://quiche.googlesource.com/quiche.git", 864 - "rev": "981c424462d9e5210dc843e92b325c93d3bee4e9", 865 - "hash": "sha256-O/3qN0pCHSzTURuqzk4schY+aRgRCHHbaTVzbQl3ur4=" 864 + "rev": "e7d001c82ee5bead5140481671828d5e156a525a", 865 + "hash": "sha256-5YFqWgkyQ/PUKTkk1j3mAFD8JMbI+E4XRdSq34HFMWA=" 866 866 }, 867 867 "src/testing/libfuzzer/fuzzers/wasm_corpus": { 868 868 "url": "https://chromium.googlesource.com/v8/fuzzer_wasm_corpus.git", ··· 876 876 }, 877 877 "src/third_party/angle": { 878 878 "url": "https://chromium.googlesource.com/angle/angle.git", 879 - "rev": "8304737811a7851e2bfdcf6f667b68dbac4e962a", 880 - "hash": "sha256-kjBkeTaZ0aCpMVyHOJLK5mbGBMB5xG1bnx7pr6d92jc=" 879 + "rev": "914c97c116e09ef01a99fbbbe9cd28cda56552c7", 880 + "hash": "sha256-Y4eX8YHwVXiXW4U8KGbFd4fTU/v/EAUpfwv6lB127Y4=" 881 881 }, 882 882 "src/third_party/angle/third_party/glmark2/src": { 883 883 "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2", 884 - "rev": "ca8de51fedb70bace5351c6b002eb952c747e889", 885 - "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=" 884 + "rev": "cb550a25c75a99ae0def91a02e16ae29d73e6d1e", 885 + "hash": "sha256-kqBpWHCxUl1ekmrbdPn6cL2y75nK4FxECJ5mo83Zgf4=" 886 886 }, 887 887 "src/third_party/angle/third_party/rapidjson/src": { 888 888 "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson", ··· 891 891 }, 892 892 "src/third_party/angle/third_party/VK-GL-CTS/src": { 893 893 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS", 894 - "rev": "9509eb274dfec320e970d4c85e17ecf15f27ebe3", 895 - "hash": "sha256-EZBAJP6puSn1vIO+JRPzZkp+uftneyga0zOXpf0W2os=" 894 + "rev": "48e7f3020f52ef9adc31aa0f5db01dc42cc487cd", 895 + "hash": "sha256-g59uC7feByGR1Ema8LqUCr5XWKpDMeXXvlS2thOo5Ks=" 896 896 }, 897 897 "src/third_party/anonymous_tokens/src": { 898 898 "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git", 899 - "rev": "6ea6ec78f9e4998d0a7a5677b2aec08f0ac858f8", 900 - "hash": "sha256-PMB49+zW9ewlS9ym+xi0xYQYLN0j5Urx6yBXWd8FjjI=" 899 + "rev": "2e328dd4eace9648adcc943cac6a1792b5dcdec5", 900 + "hash": "sha256-mh4s57NonFQzWNaPiKfe9kW4Ow7XAN+hW6Xpvgjvb0w=" 901 901 }, 902 902 "src/third_party/content_analysis_sdk/src": { 903 903 "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git", ··· 906 906 }, 907 907 "src/third_party/dav1d/libdav1d": { 908 908 "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git", 909 - "rev": "b129d9f2cb897cedba77a60bd5e3621c14ee5484", 910 - "hash": "sha256-79NsUzY9fxOXlzwutAF80salew+uVHsadj2BgtEQbfo=" 909 + "rev": "42b2b24fb8819f1ed3643aa9cf2a62f03868e3aa", 910 + "hash": "sha256-qcs9QoZ/uWEQ8l1ChZ8nYctZnnWJ0VvCw1q2rEktC9g=" 911 911 }, 912 912 "src/third_party/dawn": { 913 913 "url": "https://dawn.googlesource.com/dawn.git", 914 - "rev": "d4321eef8c5c94107783d903355c1cbbbb8a3776", 915 - "hash": "sha256-28I6Q/Ip6FhlZa2uFuMrW5YJFaDJrv/bc/wztpfO42g=" 914 + "rev": "7056f50fdefc6bc46aa442e720d0336e2855b570", 915 + "hash": "sha256-aYlcplXSGjFov9dqql6d+a1PxJWtZJNQaaezof0u9QQ=" 916 916 }, 917 917 "src/third_party/dawn/third_party/glfw": { 918 918 "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw", ··· 921 921 }, 922 922 "src/third_party/dawn/third_party/dxc": { 923 923 "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler", 924 - "rev": "a8a4e98a2367080af683c48feedd7f7481a31a96", 925 - "hash": "sha256-kc3s0LLYi3rNVTPzKQiX46JqnPkqV98tbVQr7OHuRvs=" 924 + "rev": "c2ed9ad4ee775f3de903ce757c994aecc59a5306", 925 + "hash": "sha256-jecGwARtdSr2OEC68749mpFUAHuYP/IzYUZyj23CwJE=" 926 926 }, 927 927 "src/third_party/dawn/third_party/dxheaders": { 928 928 "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers", 929 929 "rev": "980971e835876dc0cde415e8f9bc646e64667bf7", 930 930 "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=" 931 - }, 932 - "src/third_party/dawn/third_party/webgpu-headers": { 933 - "url": "https://chromium.googlesource.com/external/github.com/webgpu-native/webgpu-headers", 934 - "rev": "8049c324dc7b3c09dc96ea04cb02860f272c8686", 935 - "hash": "sha256-J3PcwYoO79HqrACFgk77BZLTCi7oi5k2J6v3wlcFVD4=" 936 931 }, 937 932 "src/third_party/dawn/third_party/khronos/OpenGL-Registry": { 938 933 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry", ··· 946 941 }, 947 942 "src/third_party/dawn/third_party/webgpu-cts": { 948 943 "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts", 949 - "rev": "ba2bd8ab91d41b60b879b134d850d326eb86ef12", 950 - "hash": "sha256-FOHgZOI7w7LzZZ14O72b7B/D/Gkvv/2KCf8+bZEPXNM=" 944 + "rev": "24d5dfa7725d6ece31941c3f3343ba6362986d6b", 945 + "hash": "sha256-AEGYE2rSsPcRzJSm97DGsrPVbhCH+lyVI61Z4qavKc8=" 951 946 }, 952 947 "src/third_party/highway/src": { 953 948 "url": "https://chromium.googlesource.com/external/github.com/google/highway.git", ··· 961 956 }, 962 957 "src/third_party/boringssl/src": { 963 958 "url": "https://boringssl.googlesource.com/boringssl.git", 964 - "rev": "d777ea2a7004ff7ef40ef983b41a5125f316f898", 965 - "hash": "sha256-GOzeQ6BOXSqpDtgYOIyQae+jCKkqzMsU5N2WE95UR6Q=" 959 + "rev": "ea42fe28775844ec8fe0444fc421398be42d51fe", 960 + "hash": "sha256-g9i5v11uZy/3Smn8zSCFmC27Gdp5VP2b0ROrj+VmP1k=" 966 961 }, 967 962 "src/third_party/breakpad/breakpad": { 968 963 "url": "https://chromium.googlesource.com/breakpad/breakpad.git", 969 - "rev": "02dd5c3ffbfed2bcbc93b553ed0e90a1ac951cb4", 970 - "hash": "sha256-1JL9QLMycOXvSrwuvqHxYjSxru6qOmrsJIKMAzPId2s=" 964 + "rev": "0dfd77492fdb0dcd06027c5842095e2e908adc90", 965 + "hash": "sha256-jOTRgF2WxsX5P0LgUI9zdCc0+NcqSnO310aq15msThY=" 971 966 }, 972 967 "src/third_party/cast_core/public/src": { 973 968 "url": "https://chromium.googlesource.com/cast_core/public", ··· 976 971 }, 977 972 "src/third_party/catapult": { 978 973 "url": "https://chromium.googlesource.com/catapult.git", 979 - "rev": "8e5d239c953a309d4bf8aa70481bafa921834cc3", 980 - "hash": "sha256-2sBXPPb9o/YKE9v9W+IxJ7o/6yOzP0q5GZWcWvohUM4=" 974 + "rev": "d5166861902b565df446e15181eba270fe168275", 975 + "hash": "sha256-xkvz743+w0xsI0w4reAo2rfC4J7opl1biA3eNYuRn+o=" 981 976 }, 982 977 "src/third_party/ced/src": { 983 978 "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git", ··· 986 981 }, 987 982 "src/third_party/chromium-variations": { 988 983 "url": "https://chromium.googlesource.com/chromium-variations.git", 989 - "rev": "0fcd7c5b11aca584c5c03b2af870c9f3af6c631c", 990 - "hash": "sha256-K9saSXK6fCRuRBdX2PPmotO2K3tatiDwuciCDK6O1MU=" 984 + "rev": "84c18c7a0205fbd0a27b0214b16ded7fc44dc062", 985 + "hash": "sha256-zXAmoKyj104BaIe4Rug18WbVKkyAsyWPCTPPEerinVo=" 991 986 }, 992 987 "src/third_party/cld_3/src": { 993 988 "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git", ··· 1006 1001 }, 1007 1002 "src/third_party/cpuinfo/src": { 1008 1003 "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git", 1009 - "rev": "ca156f7bc9109c552973414a63d310f76ef0cbf8", 1010 - "hash": "sha256-hIGizsl1NSGySXPI9Xx69xCfQLAMpYviYhBXX201N4o=" 1004 + "rev": "8a1772a0c5c447df2d18edf33ec4603a8c9c04a6", 1005 + "hash": "sha256-dKmZ5YXLhvVdxaJ4PefR+SWlh+MTFHNxOMeM6Vj7Gvo=" 1011 1006 }, 1012 1007 "src/third_party/crc32c/src": { 1013 1008 "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git", ··· 1016 1011 }, 1017 1012 "src/third_party/cros_system_api": { 1018 1013 "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git", 1019 - "rev": "497b90c6e283745f976d783ed2beaafeef42b1bf", 1020 - "hash": "sha256-s8ot4NvZfpUbLz/AMNX4F9e78AquKWk/YjguErBZCYE=" 1014 + "rev": "ea21b22629965105426f3df5e58190513e95a17e", 1015 + "hash": "sha256-xUaGf4MaEXg2RHgrGS1Uuz97vq5Vbt4HFV/AXYB4lCA=" 1021 1016 }, 1022 1017 "src/third_party/crossbench": { 1023 1018 "url": "https://chromium.googlesource.com/crossbench.git", 1024 - "rev": "1b41ed2574ef931f2d1157ebb153c9d552f69670", 1025 - "hash": "sha256-FgI0D1neQ/jrNaQxMsj2hOM6nF14ZYfGHuqUznRK4Rc=" 1019 + "rev": "0391f0d11cbf3cf3c5bcf82e19e9d9839b1936ed", 1020 + "hash": "sha256-EL+lOTe1Vzg4JW2q7t3UoXzHHiEmLjf7khH9fXdplbo=" 1026 1021 }, 1027 1022 "src/third_party/depot_tools": { 1028 1023 "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git", 1029 - "rev": "423f1e1914ab4aa7b2bdf804e216d4c097853ba2", 1030 - "hash": "sha256-R7cGQLM6yJgFL43UO+zAGbq+9XEbKbtJVFRwdIUB1F8=" 1024 + "rev": "e42fac3e9c1726ab14a61a25e6291d9ccc49e688", 1025 + "hash": "sha256-BvEkk15Rm4nSoV/uWiwmQW/+gg2vpLQ187TbBAHl9Rk=" 1031 1026 }, 1032 1027 "src/third_party/devtools-frontend/src": { 1033 1028 "url": "https://chromium.googlesource.com/devtools/devtools-frontend", 1034 - "rev": "41deafc3d1ae776a97d8fd1cfb457a06908e3a6d", 1035 - "hash": "sha256-8ev0h+/R1L8VXQqpKJ3zVIQ+kYHKWyNJYcGhPdVhSa4=" 1029 + "rev": "044764a564924c9aa0897ba8c50149acc7ddf364", 1030 + "hash": "sha256-T8BlvYNMF77BubiR4tMvW8iAhqS0ppPAESO48/mNX3w=" 1036 1031 }, 1037 1032 "src/third_party/dom_distiller_js/dist": { 1038 1033 "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git", ··· 1041 1036 }, 1042 1037 "src/third_party/eigen3/src": { 1043 1038 "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git", 1044 - "rev": "24e0c2a125d2b37b35719124d1f758777c150ca8", 1045 - "hash": "sha256-c0QHya0eDKQc5YvvxIoL722fPm3XD3PagJb+pEwSAGQ=" 1039 + "rev": "2a35a917be47766a895be610bedd66006980b7e6", 1040 + "hash": "sha256-WG7uiduuMnXrvEpXJNGksrYkBsim+l7eiu5N+mx0Yr0=" 1046 1041 }, 1047 1042 "src/third_party/farmhash/src": { 1048 1043 "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git", ··· 1051 1046 }, 1052 1047 "src/third_party/fast_float/src": { 1053 1048 "url": "https://chromium.googlesource.com/external/github.com/fastfloat/fast_float.git", 1054 - "rev": "3e57d8dcfb0a04b5a8a26b486b54490a2e9b310f", 1055 - "hash": "sha256-0eVovauN7SnO3nSIWBRWAJ4dR7q5beZrIGUZ18M2pao=" 1049 + "rev": "cb1d42aaa1e14b09e1452cfdef373d051b8c02a4", 1050 + "hash": "sha256-CG5je117WYyemTe5PTqznDP0bvY5TeXn8Vu1Xh5yUzQ=" 1056 1051 }, 1057 1052 "src/third_party/ffmpeg": { 1058 1053 "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git", ··· 1086 1081 }, 1087 1082 "src/third_party/grpc/src": { 1088 1083 "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git", 1089 - "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737", 1090 - "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=" 1084 + "rev": "a363b6c001139b9c8ffb7cd63f60a72f15349c3b", 1085 + "hash": "sha256-RKGZWtH2JmP2mXN+4ln/nCJvOyzynrYcfrxSY8k1vVg=" 1091 1086 }, 1092 1087 "src/third_party/freetype/src": { 1093 1088 "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git", 1094 - "rev": "afc7000cacb8cc90ae61036858c5306defa1236a", 1095 - "hash": "sha256-ZaAoUxqr3GZ05Zux2jDS4YCbFaeJ4Z+dc3gZCRL09NE=" 1089 + "rev": "b1f47850878d232eea372ab167e760ccac4c4e32", 1090 + "hash": "sha256-YxWz3O9see1dktqZnC551V12yU5jcOERTB1Hn1lwUNM=" 1096 1091 }, 1097 1092 "src/third_party/freetype-testing/src": { 1098 1093 "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git", 1099 - "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f", 1100 - "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=" 1094 + "rev": "04fa94191645af39750f5eff0a66c49c5cb2c2cc", 1095 + "hash": "sha256-cpzz5QDeAT3UgAZzwW7c0SgLDQsBwy/1Q+5hz2XW4lE=" 1101 1096 }, 1102 1097 "src/third_party/fxdiv/src": { 1103 1098 "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git", ··· 1106 1101 }, 1107 1102 "src/third_party/harfbuzz-ng/src": { 1108 1103 "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git", 1109 - "rev": "1c249be96e27eafd15eb86d832b67fbc3751634b", 1110 - "hash": "sha256-TStJvz3Txn4cvU1tCPPZn6RLslvM+VNUqt8l8g67JN4=" 1104 + "rev": "6d8035a99c279e32183ad063f0de201ef1b2f05c", 1105 + "hash": "sha256-isQvwaVdL4cM465A8Gs06VioAu8RvZFrwXDsXhfOoFo=" 1111 1106 }, 1112 1107 "src/third_party/ink/src": { 1113 1108 "url": "https://chromium.googlesource.com/external/github.com/google/ink.git", 1114 - "rev": "e5673a4ff2d82f29b22f7bec114161cbc1ff8cf8", 1115 - "hash": "sha256-/F4p2VRDWJ0bZRtSoWtgK8gnQDaOrHwoKwGvuSRq3a0=" 1109 + "rev": "bf387a71d7def4b48bf24c8e09d412dfb9962746", 1110 + "hash": "sha256-OcGUJxKEjeiYJgknpyb/KvDu76GMaddxWO0Lj7l9Eu8=" 1116 1111 }, 1117 1112 "src/third_party/ink_stroke_modeler/src": { 1118 1113 "url": "https://chromium.googlesource.com/external/github.com/google/ink-stroke-modeler.git", ··· 1136 1131 }, 1137 1132 "src/third_party/libgav1/src": { 1138 1133 "url": "https://chromium.googlesource.com/codecs/libgav1.git", 1139 - "rev": "a2f139e9123bdb5edf7707ac6f1b73b3aa5038dd", 1140 - "hash": "sha256-+ss9S5t+yoHzqbtX68+5OyyUbJVecYLwp+C3EXfAziE=" 1134 + "rev": "c05bf9be660cf170d7c26bd06bb42b3322180e58", 1135 + "hash": "sha256-BgTfWmbcMvJB1KewJpRcMtbOd2FVuJ+fi1zAXBXfkrg=" 1141 1136 }, 1142 1137 "src/third_party/googletest/src": { 1143 1138 "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git", 1144 - "rev": "7d76a231b0e29caf86e68d1df858308cd53b2a66", 1145 - "hash": "sha256-ssYxqE/NZJGTAbuWTXg150qlvMS3QNaonEk9dK8jJWI=" 1139 + "rev": "e235eb34c6c4fed790ccdad4b16394301360dcd4", 1140 + "hash": "sha256-jpXIcz5Uy6fDEvxTq8rTFx/M+0+SQ6TCDaqnp7nMtng=" 1146 1141 }, 1147 1142 "src/third_party/hunspell_dictionaries": { 1148 1143 "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git", ··· 1161 1156 }, 1162 1157 "src/third_party/leveldatabase/src": { 1163 1158 "url": "https://chromium.googlesource.com/external/leveldb.git", 1164 - "rev": "578eeb702ec0fbb6b9780f3d4147b1076630d633", 1165 - "hash": "sha256-tOSl9w9hEUnuQR+DxfZlHqEXXcpeyDlZrw2NWDUyXoY=" 1159 + "rev": "4ee78d7ea98330f7d7599c42576ca99e3c6ff9c5", 1160 + "hash": "sha256-ANtMVRZmW6iOjDVn2y15ak2fTagFTTaz1Se6flUHL8w=" 1166 1161 }, 1167 1162 "src/third_party/libFuzzer/src": { 1168 1163 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git", ··· 1171 1166 }, 1172 1167 "src/third_party/fuzztest/src": { 1173 1168 "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git", 1174 - "rev": "3b4a590f7fc75a77823580c4c4e19d1c7bd6da52", 1175 - "hash": "sha256-+m6F1rqfIQcxKZbAJgQfKbokYPZSR+PrEHxMiE9IVKA=" 1169 + "rev": "44ac6c2594a880edbb9cb1e4e197c2b53d078130", 1170 + "hash": "sha256-AKXKxXqOMUb3APf5r15NmIMyhJ4ZmW5+t7y5XdgdZkw=" 1176 1171 }, 1177 1172 "src/third_party/domato/src": { 1178 1173 "url": "https://chromium.googlesource.com/external/github.com/googleprojectzero/domato.git", ··· 1181 1176 }, 1182 1177 "src/third_party/libaddressinput/src": { 1183 1178 "url": "https://chromium.googlesource.com/external/libaddressinput.git", 1184 - "rev": "e8712e415627f22d0b00ebee8db99547077f39bd", 1185 - "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=" 1179 + "rev": "2610f7b1043d6784ada41392fc9392d1ea09ea07", 1180 + "hash": "sha256-6h4/DQUBoBtuGfbaTL5Te1Z+24qjTaBuIydcTV18j80=" 1186 1181 }, 1187 1182 "src/third_party/libaom/source/libaom": { 1188 1183 "url": "https://aomedia.googlesource.com/aom.git", 1189 - "rev": "0c13a5d54053f82bf8500b421b5cdefb1cc1b3ed", 1190 - "hash": "sha256-uGvdLJNzvd7WxRAjTxYVaX5Y7Oc54f8fLEtpErAdCdg=" 1191 - }, 1192 - "src/third_party/libavif/src": { 1193 - "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git", 1194 - "rev": "e9a27bc6a84f01b6670c05c301c445f33a464992", 1195 - "hash": "sha256-4slyN5V7UCDbGHK/xZfC5MuOGhctVF6r/1lSnOHJB5Y=" 1184 + "rev": "3990233fc06a35944d6d33797e63931802122a95", 1185 + "hash": "sha256-4NOQug0MlWZ18527V3IDuGcxGEJ4b+mZZbdzugWoBgQ=" 1196 1186 }, 1197 1187 "src/third_party/crabbyavif/src": { 1198 1188 "url": "https://chromium.googlesource.com/external/github.com/webmproject/CrabbyAvif.git", 1199 - "rev": "879ca873d6648a01de65e4cb0b86336b581aa513", 1200 - "hash": "sha256-JF1s3rDH0u5srtzyGQt/LU8iVlx1qPqE4RBE1AR8KPQ=" 1189 + "rev": "c5938b119ef52f9ff628436c1e66c9a5322ece83", 1190 + "hash": "sha256-+6339vcd0KJj5V11dvJvs0YpQpTxsLmDuBoYVzyn9Ec=" 1201 1191 }, 1202 1192 "src/third_party/nearby/src": { 1203 1193 "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git", 1204 - "rev": "1864b0b55506bfc1eafc3785502f085f41aa0921", 1205 - "hash": "sha256-tTJ9tJBiWbAurKvb8aPn0KLHd724CYk5wlVIVZPWB0o=" 1194 + "rev": "97690c6996f683a6f3e07d75fc4557958c55ac7b", 1195 + "hash": "sha256-d1D9/6d7a1+27nD8VijhzRMglE2PqvAMK8+GbMeesSQ=" 1206 1196 }, 1207 1197 "src/third_party/beto-core/src": { 1208 1198 "url": "https://beto-core.googlesource.com/beto-core.git", ··· 1216 1206 }, 1217 1207 "src/third_party/speedometer/main": { 1218 1208 "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", 1219 - "rev": "67bc21f1f44567a3ba41d7a3d8d0bec0e74f4a9e", 1220 - "hash": "sha256-mx4Z/co1mZcu//nlGIg5yH+XiTWB0sdiEK8Jvbi4THU=" 1209 + "rev": "d6b5ffea959ad31e231c203d7446bf8b39e987ce", 1210 + "hash": "sha256-lCwGk4Q+OXwO8vOlOQrkgygYqLrwpku/PkR03oEdX3Y=" 1221 1211 }, 1222 1212 "src/third_party/speedometer/v3.0": { 1223 1213 "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", ··· 1241 1231 }, 1242 1232 "src/third_party/cros-components/src": { 1243 1233 "url": "https://chromium.googlesource.com/external/google3/cros_components.git", 1244 - "rev": "59dd6e3d06e111c6a3d323a92e6478b9bbf15915", 1245 - "hash": "sha256-x9udwohR5jKPL6x2Hxu2FdS2aW3T8VIGZ4mLtgNQ5io=" 1234 + "rev": "1f1c782f06956a2deb5d33f09c466e4852099c71", 1235 + "hash": "sha256-80WqSMP5Vlc4OY+gfpU3SRGavs7fJbTQVW1AIhq6jmE=" 1246 1236 }, 1247 1237 "src/third_party/libdrm/src": { 1248 1238 "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git", ··· 1296 1286 }, 1297 1287 "src/third_party/libvpx/source/libvpx": { 1298 1288 "url": "https://chromium.googlesource.com/webm/libvpx.git", 1299 - "rev": "8058a0b54991257a0e1a2fcf08d993a8b70c1d3a", 1300 - "hash": "sha256-iwUQ7WI9ThluB2+a4T7FlE7gPyBxTt9PZJnG6k5PYew=" 1289 + "rev": "7b3fa8114cf8ef23cbf91e50c368c1ca768d95d5", 1290 + "hash": "sha256-2FgBb0HzgMihGsWbEtQqyN2EXZs/y5+ToWL1ZXG35W0=" 1301 1291 }, 1302 1292 "src/third_party/libwebm/source": { 1303 1293 "url": "https://chromium.googlesource.com/webm/libwebm.git", 1304 - "rev": "26d9f667170dc75e8d759a997bb61c64dec42dda", 1305 - "hash": "sha256-Mn3snC2g4BDKBJsS6cxT3BZL7LZknOWg77+60Nr4Hy0=" 1294 + "rev": "b4f01ea3ed6fd00923caa383bb2cf6f7a0b7f633", 1295 + "hash": "sha256-yQ5MIUKtuWQM5SfD74vPeqGEdLJNss2/RBUZfq5701A=" 1306 1296 }, 1307 1297 "src/third_party/libwebp/src": { 1308 1298 "url": "https://chromium.googlesource.com/webm/libwebp.git", ··· 1311 1301 }, 1312 1302 "src/third_party/libyuv": { 1313 1303 "url": "https://chromium.googlesource.com/libyuv/libyuv.git", 1314 - "rev": "47ddac2996378c34aab9318f0d218303b1d282e7", 1315 - "hash": "sha256-sB5iCuc3+Dp9uVm2mUt4XhQ3zazsueEVNNw6uTMGTuQ=" 1304 + "rev": "5a9a6ea936085310f3b9fbd4a774868e6a984ec4", 1305 + "hash": "sha256-E5ePVHrEXMM8mS1qaUwPTqYO0BdP7TYuUhfX+BCiq/0=" 1316 1306 }, 1317 1307 "src/third_party/lss": { 1318 1308 "url": "https://chromium.googlesource.com/linux-syscall-support.git", ··· 1341 1331 }, 1342 1332 "src/third_party/openh264/src": { 1343 1333 "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264", 1344 - "rev": "478e5ab3eca30e600006d5a0a08b176fd34d3bd1", 1345 - "hash": "sha256-S7dS2IZwt4p4ZrF6K7E5HnwKuI3owU2I7vwtu95uTkE=" 1334 + "rev": "33f7f48613258446decb33b3575fc0a3c9ed14e3", 1335 + "hash": "sha256-lZlZjX8GCJOc77VJ9i1fSWn63pfVOEcwwlzh0UpIgy4=" 1346 1336 }, 1347 1337 "src/third_party/openscreen/src": { 1348 1338 "url": "https://chromium.googlesource.com/openscreen", 1349 - "rev": "991678c7c3b66807cb40619e46ebb7de1bc45a18", 1350 - "hash": "sha256-ULAd+neG99IXGMOT4Ur4tDdV+jxMucwQFid2xhHqcMY=" 1339 + "rev": "38d1445b41d1eb597fcd100688dbaff98aa072ed", 1340 + "hash": "sha256-KGVFyGp7ItKeapub3Bd+htXH/gMaaBd+k8iC7hLtvl0=" 1351 1341 }, 1352 1342 "src/third_party/openscreen/src/buildtools": { 1353 1343 "url": "https://chromium.googlesource.com/chromium/src/buildtools", 1354 - "rev": "4e0e9c73a0f26735f034f09a9cab2a5c0178536b", 1355 - "hash": "sha256-suuxUL//BfAMmG8os8ChI7ic9EjGTi7y5kjxiAyrEQc=" 1344 + "rev": "56013b77b6c0a650d00bde40e750e7c3b7c6bc3d", 1345 + "hash": "sha256-Dz7wMYQHVR7sjCGaQe2nxIxZsAxsK6GGDNpDvypPefo=" 1356 1346 }, 1357 1347 "src/third_party/openscreen/src/third_party/tinycbor/src": { 1358 1348 "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git", ··· 1361 1351 }, 1362 1352 "src/third_party/pdfium": { 1363 1353 "url": "https://pdfium.googlesource.com/pdfium.git", 1364 - "rev": "a6637ded97c46aa4879769b1a6b0f2128e6ea257", 1365 - "hash": "sha256-Y2quVCJS62YFwxBSB42Wg03QQ10M8C1GTrRvhr73IN8=" 1354 + "rev": "12f7715a6390050c5cffb7e4c9b2be1c2f2956d0", 1355 + "hash": "sha256-/u+HYjmxSIX2GlriEWYZQJ8TDFNfzSufATGq1j9zx9w=" 1366 1356 }, 1367 1357 "src/third_party/perfetto": { 1368 1358 "url": "https://android.googlesource.com/platform/external/perfetto.git", 1369 - "rev": "2473cc95bc0d2d0c3c240be49ce4c2d0dc48edd4", 1370 - "hash": "sha256-OUnQ4XStZ0Olm/IvlaLzcRdHo/EMPlQ6ekVTSrG7HW0=" 1359 + "rev": "0d78d85c2bfb993ab8dd9a85b6fee6caa6a0f357", 1360 + "hash": "sha256-bjgSwq4LPz9qN9rVqIJUTHetRguCx67Uq5oe1ksPqGE=" 1371 1361 }, 1372 1362 "src/third_party/protobuf-javascript/src": { 1373 1363 "url": "https://chromium.googlesource.com/external/github.com/protocolbuffers/protobuf-javascript", ··· 1375 1365 "hash": "sha256-TmP6xftUVTD7yML7UEM/DB8bcsL5RFlKPyCpcboD86U=" 1376 1366 }, 1377 1367 "src/third_party/pthreadpool/src": { 1378 - "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git", 1379 - "rev": "560c60d342a76076f0557a3946924c6478470044", 1380 - "hash": "sha256-rGg6lgLkmbYo+a9CdaXz9ZUyrqJ1rxLcjLJeBEOPAlE=" 1368 + "url": "https://chromium.googlesource.com/external/github.com/google/pthreadpool.git", 1369 + "rev": "e1469417238e13eebaa001779fa031ed25c59def", 1370 + "hash": "sha256-cFRELaRtWspZaqtmdKmVPqM7HVskHlFMAny+Zv/Zflw=" 1381 1371 }, 1382 1372 "src/third_party/pyelftools": { 1383 1373 "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git", ··· 1401 1391 }, 1402 1392 "src/third_party/ruy/src": { 1403 1393 "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git", 1404 - "rev": "95484c3e02206f73309c08ee5ee23d2304ca092b", 1405 - "hash": "sha256-BaRyNHZLpXNsJltffV7T19QrMWkTcCq37JZiWjAdSHo=" 1394 + "rev": "83fd40d730feb0804fafbc2d8814bcc19a17b2e5", 1395 + "hash": "sha256-O3JEtXchCdIHdGvjD6kGMJzj7TWVczQCW2YUHK3cABA=" 1396 + }, 1397 + "src/third_party/search_engines_data/resources": { 1398 + "url": "https://chromium.googlesource.com/external/search_engines_data.git", 1399 + "rev": "6dc3b54b420e6e03a34ee7259fcd2b1978fac5f3", 1400 + "hash": "sha256-8RY3AU2V4iZKEmVwT7Z1Q3QlcTXDIdeyYwnQoyJcAUY=" 1406 1401 }, 1407 1402 "src/third_party/skia": { 1408 1403 "url": "https://skia.googlesource.com/skia.git", 1409 - "rev": "ecebe831881cdf52c65df518777210071f7970dd", 1410 - "hash": "sha256-9pq0MEWRlR6bOamQW+onZkhGH82FUYRn3P1ooDUqnPY=" 1404 + "rev": "fb519f2fe5d4409bc0033a4ae00ab9a7095fe566", 1405 + "hash": "sha256-Y0KtUKn6DxpxVLRM+jPvUPhPzekTAma1HYs27xlJlkw=" 1411 1406 }, 1412 1407 "src/third_party/smhasher/src": { 1413 1408 "url": "https://chromium.googlesource.com/external/smhasher.git", 1414 - "rev": "3e1f0d1d8340cfe136d33fd27c75eb7694148214", 1415 - "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=" 1409 + "rev": "0ff96f7835817a27d0487325b6c16033e2992eb5", 1410 + "hash": "sha256-OgZQwkQcVgRMf62ROGuY+3zQhBoWuUSP4naTmSKdq8s=" 1416 1411 }, 1417 1412 "src/third_party/snappy/src": { 1418 1413 "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git", ··· 1426 1421 }, 1427 1422 "src/third_party/swiftshader": { 1428 1423 "url": "https://swiftshader.googlesource.com/SwiftShader.git", 1429 - "rev": "52586b554f93e50bc67277c6031673ed23a8d903", 1430 - "hash": "sha256-WPTpjJK6qFzXJg5eYLpEb6hqGgNzAkQOlSeA5a78Vpk=" 1424 + "rev": "86cf34f50cbe5a9f35da7eedad0f4d4127fb8342", 1425 + "hash": "sha256-PSkIU8zC+4AVcYu0vaYo6I1SSykrHgcgGVMBJanux8o=" 1431 1426 }, 1432 1427 "src/third_party/text-fragments-polyfill/src": { 1433 1428 "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git", ··· 1436 1431 }, 1437 1432 "src/third_party/tflite/src": { 1438 1433 "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git", 1439 - "rev": "b25df276c8e912c22f57263ffcae6ca8f4c64342", 1440 - "hash": "sha256-Xl5dgjiKpkwf3Iv15Oj83AR1iJQ5qNzClCk24Y28TVw=" 1434 + "rev": "51c6eed226abcfeeb46864e837d01563cc5b907b", 1435 + "hash": "sha256-qXHENS/6NwHAr1/16eb079XzmwAnpLtVZuva8uGCf+8=" 1441 1436 }, 1442 1437 "src/third_party/vulkan-deps": { 1443 1438 "url": "https://chromium.googlesource.com/vulkan-deps", 1444 - "rev": "915d114daeb26a3dbdad1622f5a72c0aa255acbb", 1445 - "hash": "sha256-K7HND6c357xoDFAczG77RY4E7lGyEvt0J4NidSkRYTE=" 1439 + "rev": "2e4b45a53a0e2e66bcb6540ae384c53a517218d0", 1440 + "hash": "sha256-9ebWETg/fsS4MYZg74XHs/Nz3nX6BXBNVRN2PmyWXWM=" 1446 1441 }, 1447 1442 "src/third_party/glslang/src": { 1448 1443 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang", 1449 - "rev": "10fb91c403b2f5e2142c751884dd12ed3fb13952", 1450 - "hash": "sha256-MvX2ApY5EF/jVMCkSSLHkPVIyHPe+CIlKJnkURzmxLU=" 1444 + "rev": "0549c7127c2fbab2904892c9d6ff491fa1e93751", 1445 + "hash": "sha256-LwspMo771iaV5YeEJWgdb8xi37KMa0rsSdvO3uqMOAI=" 1451 1446 }, 1452 1447 "src/third_party/spirv-cross/src": { 1453 1448 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross", ··· 1456 1451 }, 1457 1452 "src/third_party/spirv-headers/src": { 1458 1453 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers", 1459 - "rev": "36d5e2ddaa54c70d2f29081510c66f4fc98e5e53", 1460 - "hash": "sha256-8hx8/1vaY4mRnfNaBsghWqpzyzY4hkVkNFbQEFZif9g=" 1454 + "rev": "e7294a8ebed84f8c5bd3686c68dbe12a4e65b644", 1455 + "hash": "sha256-/p7kBW7mwpG/Uz0goMM7L3zjpOMBzGiuN+0ZBEOpORo=" 1461 1456 }, 1462 1457 "src/third_party/spirv-tools/src": { 1463 1458 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools", 1464 - "rev": "f3c4a5053f1bd34056282e56659659873f9d47ad", 1465 - "hash": "sha256-1qIdXDDRDXT27O8o9gFNEQHQKJVAoqN3BDepL/iu1zQ=" 1459 + "rev": "ce37fd67f83cd1e8793b988d2e4126bbf72b19dd", 1460 + "hash": "sha256-SJcxmKdzOjg6lOJk/3m8qo7puvtci1YEU6dXKjthx0Q=" 1466 1461 }, 1467 1462 "src/third_party/vulkan-headers/src": { 1468 1463 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers", 1469 - "rev": "36872f9062b17b1a30b8ed1d81ca5ea6bb608a72", 1470 - "hash": "sha256-+29yOL4VBAR8QpsK/WcCiJkPQxSoReTXVSoAhzsPPKc=" 1464 + "rev": "39f924b810e561fd86b2558b6711ca68d4363f68", 1465 + "hash": "sha256-twJJVBfnZbH/8Wn273h45K3BOnlAicqL2zJl6OfLm2E=" 1471 1466 }, 1472 1467 "src/third_party/vulkan-loader/src": { 1473 1468 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader", 1474 - "rev": "081b529a37f43249225114c4c0dea12a29ce605f", 1475 - "hash": "sha256-QyWnBxTo5KcbEB1/Kcz2679KCsSTRDini4Ef9YRY+lw=" 1469 + "rev": "0508dee4ff864f5034ae6b7f68d34cb2822b827d", 1470 + "hash": "sha256-QqFC3Iyhw9Pq6TwBHxa0Ss7SW0bHo0Uz5N18oxl2ROg=" 1476 1471 }, 1477 1472 "src/third_party/vulkan-tools/src": { 1478 1473 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools", 1479 - "rev": "86d6be76350413def51e96ed98a25cc2c9d048c9", 1480 - "hash": "sha256-2LQGTmViNb4G19zcHyEpor2E0c1wD9+JDknLfeT1M2Y=" 1474 + "rev": "c52931f012cb7b48e42bbf2050a7fb2183b76406", 1475 + "hash": "sha256-nIzrishMMxWzOuD3aX8B6Iuq2kPsUF0Uuvz7GijTulY=" 1481 1476 }, 1482 1477 "src/third_party/vulkan-utility-libraries/src": { 1483 1478 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries", 1484 - "rev": "b538fb5b08513aa78346cd414ad5e576a2a3e920", 1485 - "hash": "sha256-XoMQ9VhyS4eJ8TLxNKZ1YygeOJp65AsFSk2galRM7BE=" 1479 + "rev": "fe7a09b13899c5c77d956fa310286f7a7eb2c4ed", 1480 + "hash": "sha256-zI3y5aoP4QcYp677Oxj5Ef7lJyJwOMdGsaRBe+X9vpI=" 1486 1481 }, 1487 1482 "src/third_party/vulkan-validation-layers/src": { 1488 1483 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers", 1489 - "rev": "24ad452082bfbf3eb749d7894266666a8aae4bbb", 1490 - "hash": "sha256-OUdlPRua+Ujn2rdzmg62OLqlsgByBNh4yUnL11oM5gE=" 1484 + "rev": "a30aa23cfaff4f28f039c025c159128a6c336a7e", 1485 + "hash": "sha256-foa5hzqf1hPwOj3k57CloCe/j0qXW3zCQ4mwCT4epF4=" 1491 1486 }, 1492 1487 "src/third_party/vulkan_memory_allocator": { 1493 1488 "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git", ··· 1496 1491 }, 1497 1492 "src/third_party/wasm_tts_engine/src": { 1498 1493 "url": "https://chromium.googlesource.com/chromium/wasm-tts-engine", 1499 - "rev": "6d5bc87a28e49361dac2964015957698b04a0df8", 1500 - "hash": "sha256-uqPCMa95uoLhf+cjmc5iz3m3qGy2BNrr8oipfDbColA=" 1494 + "rev": "7a91dbfddd93afa096a69fb7d292e22d4afecad2", 1495 + "hash": "sha256-bV+1YFEtCyTeZujsZtZiexT/aUTN3MaVerR2UdkUPBY=" 1501 1496 }, 1502 1497 "src/third_party/wayland/src": { 1503 1498 "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git", ··· 1531 1526 }, 1532 1527 "src/third_party/webgpu-cts/src": { 1533 1528 "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git", 1534 - "rev": "e99550b44ea9eedb364beb553d1a48549d0da115", 1535 - "hash": "sha256-uklVbu4Sgb9FmmKcaep8ncd5FNfdPGwdKMvzVr2qUBI=" 1529 + "rev": "fb2b951ac3c23e453335edf35c9b3bad431d9009", 1530 + "hash": "sha256-tjY5ADd5tMFsYHk6xT+TXwsDYV5eI2oOywmyTjjAxYc=" 1536 1531 }, 1537 1532 "src/third_party/webpagereplay": { 1538 1533 "url": "https://chromium.googlesource.com/webpagereplay.git", ··· 1541 1536 }, 1542 1537 "src/third_party/webrtc": { 1543 1538 "url": "https://webrtc.googlesource.com/src.git", 1544 - "rev": "cd3e2951ff0f36fa12bea747862c52533a2b39f3", 1545 - "hash": "sha256-5tdES3wILTC25Lvos5mWYlfT4ZnM2pBFy5LVACVMXEY=" 1539 + "rev": "8d78f5de6c27b2c793039989ea381f1428fb0100", 1540 + "hash": "sha256-IsjTrEnxIqINYYjWJmDp7rlubl5dJ2YMpJf/DrG/mRM=" 1546 1541 }, 1547 1542 "src/third_party/wuffs/src": { 1548 1543 "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git", ··· 1561 1556 }, 1562 1557 "src/third_party/xnnpack/src": { 1563 1558 "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git", 1564 - "rev": "7440eee88f66c4b81d4e7d31f6ae07af66e059ea", 1565 - "hash": "sha256-qC4hSubtlNKwRikKNYtiEnvCtV0/IGvQegnhrMCTKKs=" 1559 + "rev": "0824e2965f6edc2297e55c8dff5a8ac4cb12aaad", 1560 + "hash": "sha256-eb9B9lXPB2GiC4qehB/HOU36W1e9RZ0N2oEbIifyrHE=" 1566 1561 }, 1567 1562 "src/third_party/zstd/src": { 1568 1563 "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git", 1569 - "rev": "b0a179d469680276adbd4007435989a6b7fd8b4f", 1570 - "hash": "sha256-uFzzxbTxCUl69URMJdb9BL9cHkwwiuSHyXGSVo2xX6w=" 1564 + "rev": "ea0aa030cdf31f7897c5bfc153f0d36e92768095", 1565 + "hash": "sha256-UJsuaSzR4V8alLdtxzpla1v9WYHPKPp13YrgA4Y6/yA=" 1571 1566 }, 1572 1567 "src/v8": { 1573 1568 "url": "https://chromium.googlesource.com/v8/v8.git", 1574 - "rev": "93c6f1082c25ef7fdf60ee2e4a029d65808d9343", 1575 - "hash": "sha256-OV1WncJaYvx1bB5najkKDNC2iMTU+m2vDAi9S/AjCyw=" 1569 + "rev": "debba63b78f8791411bff379835982cb2e8cabfa", 1570 + "hash": "sha256-iOpnf4jq4bl0CJlHngJ1BV6b0VY1PigJIIjVXk4rqOE=" 1576 1571 } 1577 1572 } 1578 1573 }
+3 -3
pkgs/applications/networking/browsers/lagrange/default.nix
··· 22 22 23 23 stdenv.mkDerivation (finalAttrs: { 24 24 pname = "lagrange"; 25 - version = "1.18.4"; 25 + version = "1.18.5"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "skyjake"; 29 29 repo = "lagrange"; 30 - rev = "v${finalAttrs.version}"; 31 - hash = "sha256-Bty2TRL5blduhucYmI6x3RZVdgrY0/7Dtm5kgQ2N3ec="; 30 + tag = "v${finalAttrs.version}"; 31 + hash = "sha256-NlnT8dGh05dDjSMxjaBnW7x/KjLgf2Ma0nbaiR7MpiY="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+3 -3
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 1255 1255 "vendorHash": "sha256-YdWs2orKhbwAZSQYC73t4e/vvVxk8LrBPG9ZC38VcZE=" 1256 1256 }, 1257 1257 "sysdig": { 1258 - "hash": "sha256-KoqAx3l03Q6FNu6/9QiDJZqVYumlq4JW1uQHCePuqqM=", 1258 + "hash": "sha256-TzwrfI4P3C7jIm7LHk00IOrKXSfZ1MOTw/gq9vVtcHw=", 1259 1259 "homepage": "https://registry.terraform.io/providers/sysdiglabs/sysdig", 1260 1260 "owner": "sysdiglabs", 1261 1261 "repo": "terraform-provider-sysdig", 1262 - "rev": "v1.46.0", 1262 + "rev": "v1.47.0", 1263 1263 "spdx": "MPL-2.0", 1264 - "vendorHash": "sha256-eZl/UKvLG1Yi59oRl70CvrAIyLoyPW0ILWmFMzdUdDQ=" 1264 + "vendorHash": "sha256-L+XwC7c4ph4lM0+BhHB9oi1R/Av8jlDcqHewOmtPU1s=" 1265 1265 }, 1266 1266 "tailscale": { 1267 1267 "hash": "sha256-b2ZzXvlzlE+zv3Ufu4M5mcuLhyDkBbMznyM7NbiXAQs=",
+3 -3
pkgs/applications/version-management/lucky-commit/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "lucky-commit"; 13 - version = "2.2.3"; 13 + version = "2.2.4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "not-an-aardvark"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-jxcsTtQcSuL+2vwdxIVxqTpKh8Bfvna+hkGt+Rx21FE="; 19 + sha256 = "sha256-57eOhlOkRU1sz0y/sfEyEFXQJx165qehBTP8iWiEGx8="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-e3011CvoxoAeXrJqcjKSWbpkQBncFV5qgFLM8ByZOYI="; 23 + cargoHash = "sha256-8Z/bfSDjSrvGbPOVpvIYzOz5wxjkMsuwOWASnOA8ziM="; 24 24 25 25 buildInputs = lib.optional withOpenCL (if stdenv.hostPlatform.isDarwin then OpenCL else ocl-icd); 26 26
+7 -4
pkgs/applications/virtualization/podman-desktop/default.nix pkgs/by-name/po/podman-desktop/package.nix
··· 3 3 , fetchFromGitHub 4 4 , makeWrapper 5 5 , copyDesktopItems 6 - , electron 6 + , electron_34 7 7 , nodejs 8 8 , pnpm_9 9 9 , makeDesktopItem 10 - , autoSignDarwinBinariesHook 10 + , darwin 11 11 , nix-update-script 12 12 }: 13 13 14 + let 15 + electron = electron_34; 16 + in 14 17 stdenv.mkDerivation (finalAttrs: { 15 18 pname = "podman-desktop"; 16 19 version = "1.16.2"; ··· 31 34 32 35 patches = [ 33 36 # podman should be installed with nix; disable auto-installation 34 - ./patches/extension-no-download-podman.patch 37 + ./extension-no-download-podman.patch 35 38 ]; 36 39 37 40 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; ··· 43 46 copyDesktopItems 44 47 makeWrapper 45 48 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 46 - autoSignDarwinBinariesHook 49 + darwin.autoSignDarwinBinariesHook 47 50 ]; 48 51 49 52 buildPhase = ''
pkgs/applications/virtualization/podman-desktop/patches/extension-no-download-podman.patch pkgs/by-name/po/podman-desktop/extension-no-download-podman.patch
+3 -3
pkgs/by-name/ac/accerciser/package.nix
··· 19 19 20 20 python3.pkgs.buildPythonApplication rec { 21 21 pname = "accerciser"; 22 - version = "3.44.1"; 22 + version = "3.46.2"; 23 23 24 24 format = "other"; 25 25 26 26 src = fetchurl { 27 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 28 - hash = "sha256-tJz7DTIY+/Vf+kPH96N9a4URn+2VahBjCYBO2+mDkAM="; 27 + url = "mirror://gnome/sources/accerciser/${lib.versions.majorMinor version}/accerciser-${version}.tar.xz"; 28 + hash = "sha256-r/RpRR8k5YdpPE9/en+GpQU8ZrIDOndDrZ2DhHSWdw4="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+9 -10
pkgs/by-name/ai/aisleriot/package.nix
··· 1 1 { 2 2 stdenv, 3 3 lib, 4 - fetchFromGitLab, 5 - gitUpdater, 4 + fetchurl, 6 5 pkg-config, 7 6 itstool, 8 7 gtk3, ··· 15 14 libcanberra-gtk3, 16 15 ninja, 17 16 yelp-tools, 17 + gnome, 18 18 }: 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "aisleriot"; 22 - version = "3.22.34"; 22 + version = "3.22.35"; 23 23 24 - src = fetchFromGitLab { 25 - domain = "gitlab.gnome.org"; 26 - owner = "GNOME"; 27 - repo = "aisleriot"; 28 - rev = finalAttrs.version; 29 - hash = "sha256-XaEyh1ZXBvW/4tfuQyEFzvnE2Vv7+4lTUfeXoSCMnHM="; 24 + src = fetchurl { 25 + url = "mirror://gnome/sources/aisleriot/${lib.versions.majorMinor finalAttrs.version}/aisleriot-${finalAttrs.version}.tar.xz"; 26 + hash = "sha256-AeYEzXAJo2wMXxVCSpBORvg2LDBrpfa8cfrIpedGO/A="; 30 27 }; 31 28 32 29 nativeBuildInputs = [ ··· 57 54 mesonFlags = [ "-Dtheme_kde=false" ]; 58 55 59 56 passthru = { 60 - updateScript = gitUpdater { }; 57 + updateScript = gnome.updateScript { 58 + packageName = "aisleriot"; 59 + }; 61 60 }; 62 61 63 62 meta = with lib; {
+2 -2
pkgs/by-name/al/aldente/package.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 10 pname = "aldente"; 11 - version = "1.30"; 11 + version = "1.31.3"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/davidwernhart/aldente-charge-limiter/releases/download/${finalAttrs.version}/AlDente.dmg"; 15 - hash = "sha256-O3t8Vm1y/OcPzz9MgKA5TcaK43HhPrURvPeWeXvjsjo="; 15 + hash = "sha256-O1PGjq5W/BSnfHrmbd4FrtZ7+k+Be9l/5mmvOtlMXRo="; 16 16 }; 17 17 18 18 dontBuild = true;
+12 -4
pkgs/by-name/be/beecrypt/package.nix
··· 5 5 m4, 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 9 9 pname = "beecrypt"; 10 10 version = "4.2.1"; 11 11 12 12 src = fetchurl { 13 - url = "mirror://sourceforge/beecrypt/beecrypt-${version}.tar.gz"; 14 - sha256 = "0pf5k1c4nsj77jfq5ip0ra1gzx2q47xaa0s008fnn6hd11b1yvr8"; 13 + url = "mirror://sourceforge/beecrypt/beecrypt-${finalAttrs.version}.tar.gz"; 14 + hash = "sha256-KG8fVggNGmsdAkADpfohWPT/gsrgxoKdPEdqS1iYxV0="; 15 15 }; 16 + 17 + postPatch = '' 18 + sed -i '33i #include "beecrypt/endianness.h"' blockmode.c 19 + ''; 20 + 16 21 buildInputs = [ m4 ]; 22 + 17 23 configureFlags = [ 18 24 "--disable-optimized" 19 25 "--enable-static" 20 26 ]; 21 27 22 28 meta = { 29 + description = "Strong and fast cryptography toolkit library"; 23 30 platforms = lib.platforms.linux; 24 31 license = lib.licenses.lgpl2; 32 + maintainers = [ ]; 25 33 }; 26 - } 34 + })
+43
pkgs/by-name/be/bender/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + rustPlatform, 5 + fetchFromGitHub, 6 + gitMinimal, 7 + }: 8 + let 9 + target = stdenv.hostPlatform.rust.cargoShortTarget; 10 + in 11 + rustPlatform.buildRustPackage (finalAttrs: { 12 + pname = "bender"; 13 + version = "0.28.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "pulp-platform"; 17 + repo = "bender"; 18 + tag = "v${finalAttrs.version}"; 19 + hash = "sha256-eC4BY3ri73vgEtcXoPQ5NDknjZcPrKOzLo2vXWj4Adg="; 20 + }; 21 + 22 + useFetchCargoVendor = true; 23 + cargoHash = "sha256-fV4pWSRNlXCdnpeDgg3QW8s1Ixd1LEY8qP/Pb4t5xdc="; 24 + 25 + nativeCheckInputs = [ gitMinimal ]; 26 + postCheck = '' 27 + patchShebangs --build tests 28 + BENDER="target/${target}/$cargoBuildType/bender" tests/run_all.sh 29 + ''; 30 + 31 + meta = { 32 + description = "Dependency management tool for hardware projects"; 33 + homepage = "https://github.com/pulp-platform/bender"; 34 + changelog = "https://github.com/pulp-platform/bender/releases/tag/${finalAttrs.src.rev}"; 35 + license = with lib.licenses; [ 36 + asl20 37 + mit 38 + ]; 39 + maintainers = with lib.maintainers; [ Liamolucko ]; 40 + mainProgram = "bender"; 41 + platforms = lib.platforms.all; 42 + }; 43 + })
+84
pkgs/by-name/bl/blackvoxel/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + makeDesktopItem, 6 + imagemagick, 7 + glew110, 8 + SDL_compat, 9 + nix-update-script, 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "blackvoxel"; 14 + version = "2.5"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "Blackvoxel"; 18 + repo = "Blackvoxel"; 19 + tag = finalAttrs.version; 20 + hash = "sha256-Uj3TfxAsLddsPiWDcLKjpduqvgVjnESZM4YPHT90YYY="; 21 + }; 22 + 23 + nativeBuildInputs = [ imagemagick ]; 24 + 25 + buildInputs = [ 26 + glew110 27 + SDL_compat 28 + ]; 29 + 30 + enableParallelBuilding = true; 31 + 32 + postPatch = '' 33 + substituteInPlace src/sc_Squirrel3/sq/Makefile --replace-fail " -m64" "" 34 + substituteInPlace src/sc_Squirrel3/sqstdlib/Makefile --replace-fail " -m64" "" 35 + substituteInPlace src/sc_Squirrel3/squirrel/Makefile --replace-fail " -m64" "" 36 + ''; 37 + 38 + buildFlags = [ "BV_DATA_LOCATION_DIR=${placeholder "out"}/data" ]; 39 + 40 + # data/gui/gametype_back.bmp isn't exactly the official icon but since 41 + # there is no official icon we use that one 42 + postBuild = '' 43 + convert gui/gametype_back.bmp blackvoxel.png 44 + ''; 45 + 46 + installFlags = [ 47 + "doinstall=true" 48 + "BV_DATA_INSTALL_DIR=${placeholder "out"}/data" 49 + "BV_BINARY_INSTALL_DIR=${placeholder "out"}/bin" 50 + ]; 51 + 52 + postInstall = '' 53 + install -Dm644 blackvoxel.png $out/share/icons/hicolor/1024x1024/apps/blackvoxel.png 54 + ''; 55 + 56 + desktopItems = [ 57 + (makeDesktopItem { 58 + name = "blackvoxel"; 59 + desktopName = "Blackvoxel"; 60 + exec = "blackvoxel"; 61 + icon = "blackvoxel"; 62 + categories = [ "Game" ]; 63 + }) 64 + ]; 65 + 66 + passthru.updateScript = nix-update-script { }; 67 + 68 + meta = { 69 + description = "A Sci-Fi game with industry and automation"; 70 + homepage = "https://www.blackvoxel.com"; 71 + changelog = "https://github.com/Blackvoxel/Blackvoxel/releases/tag/${finalAttrs.version}"; 72 + license = with lib.licenses; [ 73 + # blackvoxel 74 + gpl3Plus 75 + # Squirrel 76 + mit 77 + ]; 78 + maintainers = with lib.maintainers; [ 79 + ethancedwards8 80 + marcin-serwin 81 + ]; 82 + platforms = lib.platforms.linux; 83 + }; 84 + })
+3 -3
pkgs/by-name/bp/bpftune/package.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "bpftune"; 17 - version = "0-unstable-2025-02-13"; 17 + version = "0-unstable-2025-03-07"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "oracle"; 21 21 repo = "bpftune"; 22 - rev = "2f73157b0e6f15034d898f3f92a376e89c3e3819"; 23 - hash = "sha256-0hgTJkGEU1xw2aCvTbhMVOz6EKtICrBqVPwIh5vxCOI="; 22 + rev = "744bd48eccb536d6e9c782f635130dbf322e8a32"; 23 + hash = "sha256-pjFqq5KeG1ptTEo8ENiqC/QkDPqQG4VPR2GDvcBPwH8="; 24 24 }; 25 25 26 26 postPatch = ''
+10 -12
pkgs/by-name/bv/bviplus/package.nix
··· 6 6 ncurses, 7 7 }: 8 8 9 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "bviplus"; 11 11 version = "1.0"; 12 12 13 13 src = fetchurl { 14 - url = "mirror://sourceforge/project/bviplus/bviplus/${version}/bviplus-${version}.tgz"; 15 - sha256 = "08q2fdyiirabbsp5qpn3v8jxp4gd85l776w6gqvrbjwqa29a8arg"; 14 + url = "mirror://sourceforge/project/bviplus/bviplus/${finalAttrs.version}/bviplus-${finalAttrs.version}.tgz"; 15 + hash = "sha256-LyukklCYy5U3foabc2hB7ZHbJdrDXlyuXkvlGH1zAiM="; 16 16 }; 17 17 18 18 patches = [ ··· 21 21 (fetchpatch { 22 22 name = "ncurses-6.3.patch"; 23 23 url = "https://sourceforge.net/p/bviplus/bugs/7/attachment/bviplus-ncurses-6.2.patch"; 24 - sha256 = "1g3s2fdly3qliy67f3dlb12a03a21zkjbya6gap4mqxhyyjbp46x"; 24 + hash = "sha256-3ZC7pPew40quekb5JecPQg2gRFi0DXeMjxQPT5sTerw="; 25 25 # svn patch, rely on prefix added by fetchpatch: 26 26 extraPrefix = ""; 27 27 }) 28 28 ]; 29 29 30 - buildInputs = [ 31 - ncurses 32 - ]; 30 + buildInputs = [ ncurses ]; 33 31 34 32 makeFlags = [ "PREFIX=$(out)" ]; 35 33 36 - buildFlags = [ "CFLAGS=-fgnu89-inline" ]; 34 + env.NIX_CFLAGS_COMPILE = "-Wno-implicit-int -fgnu89-inline"; 37 35 38 - meta = with lib; { 36 + meta = { 39 37 description = "Ncurses based hex editor with a vim-like interface"; 40 38 homepage = "https://bviplus.sourceforge.net"; 41 - license = licenses.gpl3; 42 - platforms = platforms.linux; 39 + license = lib.licenses.gpl3; 40 + platforms = lib.platforms.linux; 43 41 maintainers = [ ]; 44 42 mainProgram = "bviplus"; 45 43 }; 46 - } 44 + })
+2 -2
pkgs/by-name/ci/cider-2/package.nix
··· 7 7 8 8 appimageTools.wrapType2 rec { 9 9 pname = "cider-2"; 10 - version = "2.6.0"; 10 + version = "2.6.1"; 11 11 12 12 src = requireFile { 13 13 name = "cider-linux-x64.AppImage"; 14 14 url = "https://cidercollective.itch.io/cider"; 15 - sha256 = "18by764idifnjs5h2cydv4qjm7w95lzdlxjkscp289w3jdpbmd05"; 15 + sha256 = "0qjhsssccxiq92zs04zhi53bkaf2qwfq7ryic1w9sha59ffyxqbf"; 16 16 }; 17 17 18 18 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/ci/cirrus-cli/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "cirrus-cli"; 10 - version = "0.138.1"; 10 + version = "0.138.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cirruslabs"; 14 14 repo = "cirrus-cli"; 15 15 rev = "v${version}"; 16 - hash = "sha256-k9laBOhkor2jW7dMaVNXFK+FzSC/4DgJFM5k1NhX4V4="; 16 + hash = "sha256-Fc3f3hVHuwO0hhH5ZDoQBKPPfxnt3TOWMRgefZa7bJU="; 17 17 }; 18 18 19 19 vendorHash = "sha256-GjCwH0Xe9wyacfokI5EzF2TKUnSMKCdOljahChPBlso=";
+2 -2
pkgs/by-name/dp/dpp/package.nix
··· 11 11 }: 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "dpp"; 14 - version = "10.1.0"; 14 + version = "10.1.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "brainboxdotcc"; 18 18 repo = "DPP"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-YkMwHJMDRbv2Pne0exCP52188zWyu8ozWENaBmgzPvc="; 20 + hash = "sha256-DHsHmAvL22aC4g5MzY2x793IKB9XHCDrNabQwIbfZn8="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/by-name/du/dub/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "dub"; 13 - version = "1.38.1"; 13 + version = "1.39.0"; 14 14 15 15 enableParallelBuilding = true; 16 16 ··· 18 18 owner = "dlang"; 19 19 repo = "dub"; 20 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-8Lr/0sx4SKwU1aNOxZArta0RXpDM+EWl29ZsPDdPWFo="; 21 + hash = "sha256-73b15A9+hClD6IbuxTy9QZKpTKjUFYBuqGOclUyhrnM="; 22 22 }; 23 23 24 24 postPatch = ''
+2 -2
pkgs/by-name/fi/file-roller/package.nix
··· 24 24 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "file-roller"; 27 - version = "44.4"; 27 + version = "44.5"; 28 28 29 29 src = fetchurl { 30 30 url = "mirror://gnome/sources/file-roller/${lib.versions.major finalAttrs.version}/file-roller-${finalAttrs.version}.tar.xz"; 31 - hash = "sha256-uMMJ2jqnhMcZVYw0ZkAjePSj1sro7XfPaEmqzVbOuew="; 31 + hash = "sha256-369LuYnAuJhr6L2un//quNDzBmmuOmJ+jD35TyOIgzk="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -2
pkgs/by-name/fl/flips/package.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "flips"; 13 - version = "196"; 13 + version = "198"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Alcaro"; 17 17 repo = "Flips"; 18 18 tag = "v${version}"; 19 - hash = "sha256-lQ88Iz607AcVzvN/jLGhOn7qiRe9pau9oQcLMt7JIT8="; 19 + hash = "sha256-zYGDcUbtzstk1sTKgX2Mna0rzH7z6Dic+OvjZLI1umI="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/by-name/ga/gallery-dl/package.nix
··· 8 8 9 9 let 10 10 pname = "gallery-dl"; 11 - version = "1.29.0"; 11 + version = "1.29.1"; 12 12 in 13 13 python3Packages.buildPythonApplication { 14 14 inherit pname version; ··· 18 18 owner = "mikf"; 19 19 repo = "gallery-dl"; 20 20 tag = "v${version}"; 21 - hash = "sha256-d0yGhEeupvC3QFsVhfy4DPj1mClAdGbsBp8FYop+hUc="; 21 + hash = "sha256-NOKnR6+evDEYna+k7FdR5vJBtUwRnX9oaIDT4LkNLjg="; 22 22 }; 23 23 24 24 build-system = [ python3Packages.setuptools ];
+2 -2
pkgs/by-name/gl/glycin-loaders/package.nix
··· 23 23 24 24 stdenv.mkDerivation (finalAttrs: { 25 25 pname = "glycin-loaders"; 26 - version = "1.1.4"; 26 + version = "1.1.6"; 27 27 28 28 src = fetchurl { 29 29 url = "mirror://gnome/sources/glycin/${lib.versions.majorMinor finalAttrs.version}/glycin-${finalAttrs.version}.tar.xz"; 30 - hash = "sha256-0bbVkLaZtmgaZ9ARmKWBp/cQ2Mp0UJNN1/XbJB+hJQA="; 30 + hash = "sha256-2EzFaBTyKEEArTQ5pDCDe7IfD5jUbg0rWGifLBlwjwQ="; 31 31 }; 32 32 33 33 patches = [
+7
pkgs/by-name/gn/gnome-shell/package.nix
··· 190 190 rm data/theme/gnome-shell-{light,dark}.css 191 191 ''; 192 192 193 + preInstall = '' 194 + # gnome-shell contains GSettings schema overrides for Mutter. 195 + schemadir="$out/share/glib-2.0/schemas" 196 + mkdir -p "$schemadir" 197 + cp "${glib.getSchemaPath mutter}/org.gnome.mutter.gschema.xml" "$schemadir" 198 + ''; 199 + 193 200 postInstall = '' 194 201 # Pull in WebP and JXL support for gnome-backgrounds. 195 202 # In postInstall to run before gappsWrapperArgsHook.
+2 -2
pkgs/by-name/gn/gnome-terminal/package.nix
··· 30 30 31 31 stdenv.mkDerivation (finalAttrs: { 32 32 pname = "gnome-terminal"; 33 - version = "3.54.3"; 33 + version = "3.54.4"; 34 34 35 35 src = fetchurl { 36 36 url = "mirror://gnome/sources/gnome-terminal/${lib.versions.majorMinor finalAttrs.version}/gnome-terminal-${finalAttrs.version}.tar.xz"; 37 - hash = "sha256-Oa8AueYadNjN8oFSvq/uUTwyfhIjoHfRMcR5xQT0pHU="; 37 + hash = "sha256-RDqAaJM3EI5LGQOZlp5mq6BBzDxju5nFc4Ul1SixMrg="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+6 -6
pkgs/by-name/gn/gnumeric/package.nix
··· 22 22 let 23 23 inherit (python3Packages) python pygobject3; 24 24 in 25 - stdenv.mkDerivation rec { 25 + stdenv.mkDerivation (finalAttrs: { 26 26 pname = "gnumeric"; 27 - version = "1.12.57"; 27 + version = "1.12.59"; 28 28 29 29 src = fetchurl { 30 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 31 - sha256 = "r/ULG2I0DCT8z0U9X60+f7c/S8SzT340tsPS2a9qHk8="; 30 + url = "mirror://gnome/sources/gnumeric/${lib.versions.majorMinor finalAttrs.version}/gnumeric-${finalAttrs.version}.tar.xz"; 31 + sha256 = "yzdQsXbWQflCPfchuDFljIKVV1UviIf+34pT2Qfs61E="; 32 32 }; 33 33 34 34 configureFlags = [ "--disable-component" ]; ··· 70 70 71 71 passthru = { 72 72 updateScript = gnome.updateScript { 73 - packageName = pname; 73 + packageName = "gnumeric"; 74 74 versionPolicy = "odd-unstable"; 75 75 }; 76 76 }; ··· 82 82 platforms = platforms.unix; 83 83 maintainers = [ maintainers.vcunat ]; 84 84 }; 85 - } 85 + })
-13
pkgs/by-name/go/godot_4-export-templates/package.nix
··· 1 - # Export templates is necessary for setting up Godot engine, it's used when exporting projects. 2 - # Godot applications/games packages needs to reference export templates. 3 - # Export templates version should be kept in sync with Godot version. 4 - # https://docs.godotengine.org/en/stable/tutorials/export/exporting_projects.html#export-templates 5 - 6 - { fetchzip, godot_4, ... }: 7 - 8 - fetchzip { 9 - pname = "export_templates"; 10 - extension = "zip"; 11 - url = "https://github.com/godotengine/godot/releases/download/${godot_4.version}/Godot_v${godot_4.version}_export_templates.tpz"; 12 - hash = "sha256-XRnKii+eexIkbGf7bqc42SR0NBULFvgMdOpSRNNk6kg="; 13 - }
-6
pkgs/by-name/go/godot_4-mono/package.nix
··· 1 - { 2 - godot_4, 3 - }: 4 - godot_4.override { 5 - withMono = true; 6 - }
+10
pkgs/by-name/go/godot_4/deps.json pkgs/development/tools/godot/4.3/deps.json
··· 30 30 "hash": "sha256-7c5TRZ594tr1Fj5fNiXtPI0pcBuyX/3eU4x+it6Yzew=" 31 31 }, 32 32 { 33 + "pname": "Microsoft.AspNetCore.App.Ref", 34 + "version": "6.0.36", 35 + "hash": "sha256-9jDkWbjw/nd8yqdzVTagCuqr6owJ/DUMi4BlUZT4hWU=" 36 + }, 37 + { 33 38 "pname": "Microsoft.Bcl.AsyncInterfaces", 34 39 "version": "1.1.1", 35 40 "hash": "sha256-fAcX4sxE0veWM1CZBtXR/Unky+6sE33yrV7ohrWGKig=" ··· 223 228 "pname": "Microsoft.NET.Test.Sdk", 224 229 "version": "17.7.1", 225 230 "hash": "sha256-ySyNpRodd6R6qKnGrgwLYaiHZga2GL0fQARrYGIFa6k=" 231 + }, 232 + { 233 + "pname": "Microsoft.NETCore.App.Ref", 234 + "version": "6.0.36", 235 + "hash": "sha256-9LZgVoIFF8qNyUu8kdJrYGLutMF/cL2K82HN2ywwlx8=" 226 236 }, 227 237 { 228 238 "pname": "Microsoft.NETCore.Platforms",
-280
pkgs/by-name/go/godot_4/package.nix
··· 1 - { 2 - alsa-lib, 3 - autoPatchelfHook, 4 - buildPackages, 5 - dbus, 6 - dotnet-sdk_6, 7 - dotnetCorePackages, 8 - fetchFromGitHub, 9 - fontconfig, 10 - installShellFiles, 11 - lib, 12 - libdecor, 13 - libGL, 14 - libpulseaudio, 15 - libX11, 16 - libXcursor, 17 - libXext, 18 - libXfixes, 19 - libXi, 20 - libXinerama, 21 - libxkbcommon, 22 - libXrandr, 23 - libXrender, 24 - makeWrapper, 25 - pkg-config, 26 - scons, 27 - speechd-minimal, 28 - stdenv, 29 - testers, 30 - udev, 31 - vulkan-loader, 32 - wayland, 33 - wayland-scanner, 34 - withDbus ? true, 35 - withFontconfig ? true, 36 - withMono ? false, 37 - withPlatform ? "linuxbsd", 38 - withPrecision ? "single", 39 - withPulseaudio ? true, 40 - withSpeechd ? true, 41 - withTarget ? "editor", 42 - withTouch ? true, 43 - withUdev ? true, 44 - # Wayland in Godot requires X11 until upstream fix is merged 45 - # https://github.com/godotengine/godot/pull/73504 46 - withWayland ? true, 47 - withX11 ? true, 48 - }: 49 - assert lib.asserts.assertOneOf "withPrecision" withPrecision [ 50 - "single" 51 - "double" 52 - ]; 53 - let 54 - mkSconsFlagsFromAttrSet = lib.mapAttrsToList ( 55 - k: v: if builtins.isString v then "${k}=${v}" else "${k}=${builtins.toJSON v}" 56 - ); 57 - 58 - suffix = if withMono then "-mono" else ""; 59 - 60 - arch = stdenv.hostPlatform.linuxArch; 61 - 62 - dotnet-sdk = dotnetCorePackages.sdk_8_0-source; 63 - 64 - attrs = finalAttrs: rec { 65 - pname = "godot4${suffix}"; 66 - version = "4.3-stable"; 67 - commitHash = "77dcf97d82cbfe4e4615475fa52ca03da645dbd8"; 68 - 69 - src = fetchFromGitHub { 70 - owner = "godotengine"; 71 - repo = "godot"; 72 - rev = commitHash; 73 - hash = "sha256-v2lBD3GEL8CoIwBl3UoLam0dJxkLGX0oneH6DiWkEsM="; 74 - }; 75 - 76 - outputs = [ 77 - "out" 78 - "man" 79 - ]; 80 - separateDebugInfo = true; 81 - 82 - # Set the build name which is part of the version. In official downloads, this 83 - # is set to 'official'. When not specified explicitly, it is set to 84 - # 'custom_build'. Other platforms packaging Godot (Gentoo, Arch, Flatpack 85 - # etc.) usually set this to their name as well. 86 - # 87 - # See also 'methods.py' in the Godot repo and 'build' in 88 - # https://docs.godotengine.org/en/stable/classes/class_engine.html#class-engine-method-get-version-info 89 - BUILD_NAME = "nixpkgs"; 90 - 91 - # Required for the commit hash to be included in the version number. 92 - # 93 - # `methods.py` reads the commit hash from `.git/HEAD` and manually follows 94 - # refs. Since we just write the hash directly, there is no need to emulate any 95 - # other parts of the .git directory. 96 - # 97 - # See also 'hash' in 98 - # https://docs.godotengine.org/en/stable/classes/class_engine.html#class-engine-method-get-version-info 99 - preConfigure = 100 - '' 101 - mkdir -p .git 102 - echo ${commitHash} > .git/HEAD 103 - '' 104 - + lib.optionalString withMono '' 105 - # TODO: avoid pulling in dependencies of windows-only project 106 - dotnet sln modules/mono/editor/GodotTools/GodotTools.sln \ 107 - remove modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj 108 - 109 - dotnet restore modules/mono/glue/GodotSharp/GodotSharp.sln 110 - dotnet restore modules/mono/editor/GodotTools/GodotTools.sln 111 - dotnet restore modules/mono/editor/Godot.NET.Sdk/Godot.NET.Sdk.sln 112 - ''; 113 - 114 - # From: https://github.com/godotengine/godot/blob/4.2.2-stable/SConstruct 115 - sconsFlags = mkSconsFlagsFromAttrSet { 116 - # Options from 'SConstruct' 117 - precision = withPrecision; # Floating-point precision level 118 - production = true; # Set defaults to build Godot for use in production 119 - platform = withPlatform; 120 - target = withTarget; 121 - debug_symbols = true; 122 - 123 - # Options from 'platform/linuxbsd/detect.py' 124 - dbus = withDbus; # Use D-Bus to handle screensaver and portal desktop settings 125 - fontconfig = withFontconfig; # Use fontconfig for system fonts support 126 - pulseaudio = withPulseaudio; # Use PulseAudio 127 - speechd = withSpeechd; # Use Speech Dispatcher for Text-to-Speech support 128 - touch = withTouch; # Enable touch events 129 - udev = withUdev; # Use udev for gamepad connection callbacks 130 - wayland = withWayland; # Compile with Wayland support 131 - x11 = withX11; # Compile with X11 support 132 - 133 - module_mono_enabled = withMono; 134 - 135 - linkflags = "-Wl,--build-id"; 136 - }; 137 - 138 - enableParallelBuilding = true; 139 - 140 - strictDeps = true; 141 - 142 - depsBuildBuild = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ 143 - buildPackages.stdenv.cc 144 - pkg-config 145 - ]; 146 - 147 - buildInputs = lib.optionals withMono dotnet-sdk_6.packages; 148 - 149 - nativeBuildInputs = 150 - [ 151 - autoPatchelfHook 152 - installShellFiles 153 - pkg-config 154 - scons 155 - ] 156 - ++ lib.optionals withWayland [ wayland-scanner ] 157 - ++ lib.optionals withMono [ 158 - dotnet-sdk 159 - makeWrapper 160 - ]; 161 - 162 - postBuild = lib.optionalString withMono '' 163 - echo "Generating Glue" 164 - if [[ ${withPrecision} == *double* ]]; then 165 - bin/godot.${withPlatform}.${withTarget}.${withPrecision}.${arch}.mono --headless --generate-mono-glue modules/mono/glue 166 - else 167 - bin/godot.${withPlatform}.${withTarget}.${arch}.mono --headless --generate-mono-glue modules/mono/glue 168 - fi 169 - echo "Building C#/.NET Assemblies" 170 - python modules/mono/build_scripts/build_assemblies.py --godot-output-dir bin --precision=${withPrecision} 171 - ''; 172 - 173 - runtimeDependencies = 174 - [ 175 - alsa-lib 176 - libGL 177 - vulkan-loader 178 - ] 179 - ++ lib.optionals withX11 [ 180 - libX11 181 - libXcursor 182 - libXext 183 - libXfixes 184 - libXi 185 - libXinerama 186 - libxkbcommon 187 - libXrandr 188 - libXrender 189 - ] 190 - ++ lib.optionals withWayland [ 191 - libdecor 192 - wayland 193 - ] 194 - ++ lib.optionals withDbus [ 195 - dbus 196 - dbus.lib 197 - ] 198 - ++ lib.optionals withFontconfig [ 199 - fontconfig 200 - fontconfig.lib 201 - ] 202 - ++ lib.optionals withPulseaudio [ libpulseaudio ] 203 - ++ lib.optionals withSpeechd [ speechd-minimal ] 204 - ++ lib.optionals withUdev [ udev ]; 205 - 206 - installPhase = 207 - '' 208 - runHook preInstall 209 - 210 - mkdir -p "$out/bin" 211 - cp bin/godot.* $out/bin/godot4${suffix} 212 - 213 - installManPage misc/dist/linux/godot.6 214 - 215 - mkdir -p "$out"/share/{applications,icons/hicolor/scalable/apps} 216 - cp misc/dist/linux/org.godotengine.Godot.desktop "$out/share/applications/org.godotengine.Godot4${suffix}.desktop" 217 - substituteInPlace "$out/share/applications/org.godotengine.Godot4${suffix}.desktop" \ 218 - --replace "Exec=godot" "Exec=$out/bin/godot4${suffix}" \ 219 - --replace "Godot Engine" "Godot Engine 4" 220 - cp icon.svg "$out/share/icons/hicolor/scalable/apps/godot.svg" 221 - cp icon.png "$out/share/icons/godot.png" 222 - '' 223 - + lib.optionalString withMono '' 224 - cp -r bin/GodotSharp/ $out/bin/ 225 - wrapProgram $out/bin/godot4${suffix} \ 226 - --set DOTNET_ROOT ${dotnet-sdk} \ 227 - --prefix PATH : "${ 228 - lib.makeBinPath [ 229 - dotnet-sdk 230 - ] 231 - }" 232 - '' 233 - + '' 234 - runHook postInstall 235 - ''; 236 - 237 - passthru.tests = { 238 - version = testers.testVersion { 239 - package = finalAttrs.finalPackage; 240 - version = lib.replaceStrings [ "-" ] [ "." ] version; 241 - }; 242 - }; 243 - 244 - requiredSystemFeatures = [ 245 - # fixes: No space left on device 246 - "big-parallel" 247 - ]; 248 - 249 - meta = { 250 - changelog = "https://github.com/godotengine/godot/releases/tag/${version}"; 251 - description = "Free and Open Source 2D and 3D game engine"; 252 - homepage = "https://godotengine.org"; 253 - license = lib.licenses.mit; 254 - platforms = [ 255 - "x86_64-linux" 256 - "aarch64-linux" 257 - ] ++ lib.optional (!withMono) "i686-linux"; 258 - maintainers = with lib.maintainers; [ 259 - shiryel 260 - corngood 261 - ]; 262 - mainProgram = "godot4${suffix}"; 263 - }; 264 - }; 265 - 266 - in 267 - stdenv.mkDerivation ( 268 - if withMono then 269 - dotnetCorePackages.addNuGetDeps { 270 - nugetDeps = ./deps.json; 271 - overrideFetchAttrs = old: rec { 272 - runtimeIds = map (system: dotnetCorePackages.systemToDotnetRid system) old.meta.platforms; 273 - buildInputs = 274 - old.buildInputs 275 - ++ lib.concatLists (lib.attrValues (lib.getAttrs runtimeIds dotnet-sdk_6.targetPackages)); 276 - }; 277 - } attrs 278 - else 279 - attrs 280 - )
+11 -6
pkgs/by-name/go/goffice/package.nix
··· 16 16 gnome, 17 17 autoreconfHook, 18 18 gtk-doc, 19 + gnumeric, 19 20 }: 20 21 21 - stdenv.mkDerivation rec { 22 + stdenv.mkDerivation (finalAttrs: { 22 23 pname = "goffice"; 23 - version = "0.10.57"; 24 + version = "0.10.59"; 24 25 25 26 outputs = [ 26 27 "out" ··· 29 30 ]; 30 31 31 32 src = fetchurl { 32 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 33 - hash = "sha256-Zr/X4x0vZ1bVpiw2cDg8u6ArPLTBBClQGSqAG3Kjyas="; 33 + url = "mirror://gnome/sources/goffice/${lib.versions.majorMinor finalAttrs.version}/goffice-${finalAttrs.version}.tar.xz"; 34 + hash = "sha256-sI9xczJVlLcfu+pHajC1sxIMPa3/XAom0UDk5SSRZiI="; 34 35 }; 35 36 36 37 nativeBuildInputs = [ ··· 60 61 61 62 passthru = { 62 63 updateScript = gnome.updateScript { 63 - packageName = pname; 64 + packageName = "goffice"; 64 65 versionPolicy = "odd-unstable"; 66 + }; 67 + 68 + tests = { 69 + inherit gnumeric; 65 70 }; 66 71 }; 67 72 ··· 78 83 79 84 platforms = lib.platforms.unix; 80 85 }; 81 - } 86 + })
+6 -6
pkgs/by-name/gt/gthumb/package.nix
··· 36 36 webkitgtk_4_0, 37 37 }: 38 38 39 - stdenv.mkDerivation rec { 39 + stdenv.mkDerivation (finalAttrs: { 40 40 pname = "gthumb"; 41 - version = "3.12.6"; 41 + version = "3.12.7"; 42 42 43 43 src = fetchurl { 44 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 45 - sha256 = "sha256-YIdwxsjnMHOh1AS2W9G3YeGsXcJecBMP8HJIj6kvXDM="; 44 + url = "mirror://gnome/sources/gthumb/${lib.versions.majorMinor finalAttrs.version}/gthumb-${finalAttrs.version}.tar.xz"; 45 + sha256 = "sha256-7hLSTPIxAQJB91jWyVudU6c4Enj6dralGLPQmzce+uw="; 46 46 }; 47 47 48 48 nativeBuildInputs = [ ··· 104 104 105 105 passthru = { 106 106 updateScript = gnome.updateScript { 107 - packageName = pname; 107 + packageName = "gthumb"; 108 108 versionPolicy = "odd-unstable"; 109 109 }; 110 110 }; ··· 117 117 license = licenses.gpl2Plus; 118 118 maintainers = [ maintainers.mimame ]; 119 119 }; 120 - } 120 + })
+2 -2
pkgs/by-name/hr/hr/package.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "hr"; 9 - version = "1.4"; 9 + version = "1.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "LuRsT"; 13 13 repo = "hr"; 14 14 rev = version; 15 - sha256 = "sha256-Pcnkiq7ipLoz6MFWZkCIxneUuZ3w/d+iqiyTz55WZvs="; 15 + sha256 = "sha256-05num4v8C3n+uieKQJVLOzu9OOMBsUMPqq08Ou6gmYQ="; 16 16 }; 17 17 18 18 dontBuild = true;
+42
pkgs/by-name/hy/hydralauncher/package.nix
··· 1 + { 2 + lib, 3 + fetchurl, 4 + appimageTools, 5 + nix-update-script, 6 + }: 7 + let 8 + pname = "hydralauncher"; 9 + version = "3.2.3"; 10 + src = fetchurl { 11 + url = "https://github.com/hydralauncher/hydra/releases/download/v${version}/hydralauncher-${version}.AppImage"; 12 + hash = "sha256-iQL/xEyVgNfAeiz41sos8nbrGRxzQWR618EikPLS/Ig="; 13 + }; 14 + 15 + appimageContents = appimageTools.extractType2 { inherit pname src version; }; 16 + in 17 + appimageTools.wrapType2 { 18 + inherit pname src version; 19 + 20 + extraInstallCommands = '' 21 + install -Dm644 ${appimageContents}/usr/share/icons/hicolor/512x512/apps/hydralauncher.png \ 22 + $out/share/icons/hicolor/512x512/apps/hydralauncher.png 23 + 24 + install -Dm644 ${appimageContents}/hydralauncher.desktop \ 25 + $out/share/applications/hydralauncher.desktop 26 + substituteInPlace $out/share/applications/hydralauncher.desktop \ 27 + --replace-fail 'Exec=AppRun' 'Exec=${placeholder "out"}/bin/hydralauncher' 28 + ''; 29 + 30 + passthru.updateScript = nix-update-script { }; 31 + 32 + meta = { 33 + description = "Game launcher with its own embedded bittorrent client"; 34 + homepage = "https://github.com/hydralauncher/hydra"; 35 + changelog = "https://github.com/hydralauncher/hydra/releases/tag/v${version}"; 36 + license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ HeitorAugustoLN ]; 38 + mainProgram = "hydralauncher"; 39 + platforms = lib.platforms.linux; 40 + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 41 + }; 42 + }
+1 -1
pkgs/by-name/in/intel-compute-runtime-legacy1/package.nix
··· 80 80 }; 81 81 82 82 meta = with lib; { 83 - description = "Intel Graphics Compute Runtime for OpenCL with support for Gen8, Gen9 and Gen11 GPUs.d"; 83 + description = "Intel Graphics Compute Runtime oneAPI Level Zero and OpenCL with support for Gen8, Gen9 and Gen11 GPUs"; 84 84 mainProgram = "ocloc"; 85 85 homepage = "https://github.com/intel/compute-runtime"; 86 86 changelog = "https://github.com/intel/compute-runtime/releases/tag/${version}";
+1 -1
pkgs/by-name/in/intel-compute-runtime/package.nix
··· 70 70 ''; 71 71 72 72 meta = with lib; { 73 - description = "Intel Graphics Compute Runtime for OpenCL. Replaces Beignet for Gen8 (Broadwell) and beyond"; 73 + description = "Intel Graphics Compute Runtime oneAPI Level Zero and OpenCL, supporting 12th Gen and newer"; 74 74 mainProgram = "ocloc"; 75 75 homepage = "https://github.com/intel/compute-runtime"; 76 76 changelog = "https://github.com/intel/compute-runtime/releases/tag/${version}";
+15 -4
pkgs/by-name/in/interactive-html-bom/package.nix
··· 1 1 { 2 2 fetchFromGitHub, 3 - kicad-small, 4 3 lib, 4 + kicad, 5 5 python3Packages, 6 + xvfb-run, 6 7 }: 7 8 8 9 python3Packages.buildPythonApplication rec { ··· 22 23 dependencies = [ 23 24 python3Packages.jsonschema 24 25 python3Packages.wxpython 25 - kicad-small 26 + python3Packages.kicad 26 27 ]; 27 28 28 - # has no tests 29 - doCheck = false; 29 + nativeCheckInputs = [ 30 + xvfb-run 31 + ]; 32 + 33 + checkPhase = '' 34 + runHook preCheck 35 + 36 + cp ${kicad.base}/share/kicad/demos/stickhub/StickHub.kicad_pcb . 37 + HOME=$(mktemp -d) xvfb-run $out/bin/generate_interactive_bom --no-browser StickHub.kicad_pcb 38 + 39 + runHook postCheck 40 + ''; 30 41 31 42 meta = { 32 43 description = "Interactive HTML BOM generation for KiCad, EasyEDA, Eagle, Fusion360 and Allegro PCB designer";
-153
pkgs/by-name/li/libgit2-glib/libgit2-1.9.0.patch
··· 1 - From 46bad01581bca5bc64f6499eb1222ff067721a63 Mon Sep 17 00:00:00 2001 2 - From: Dominique Leuenberger <dimstar@opensuse.org> 3 - Date: Fri, 5 Apr 2024 10:28:16 +0200 4 - Subject: [PATCH 1/2] build: Fix build against, and require, libgit2 1.8.0 5 - 6 - --- 7 - libgit2-glib/ggit-clone-options.c | 1 + 8 - libgit2-glib/ggit-cred-ssh-interactive.c | 2 +- 9 - libgit2-glib/ggit-remote-callbacks.h | 1 + 10 - libgit2-glib/ggit-repository.c | 4 ++-- 11 - libgit2-glib/ggit-types.h | 3 ++- 12 - meson.build | 2 +- 13 - 6 files changed, 8 insertions(+), 5 deletions(-) 14 - 15 - diff --git a/libgit2-glib/ggit-clone-options.c b/libgit2-glib/ggit-clone-options.c 16 - index b47fdb1..30c7d86 100644 17 - --- a/libgit2-glib/ggit-clone-options.c 18 - +++ b/libgit2-glib/ggit-clone-options.c 19 - @@ -19,6 +19,7 @@ 20 - */ 21 - 22 - #include <git2.h> 23 - +#include <git2/sys/errors.h> 24 - #include <gio/gio.h> 25 - 26 - #include "ggit-clone-options.h" 27 - diff --git a/libgit2-glib/ggit-cred-ssh-interactive.c b/libgit2-glib/ggit-cred-ssh-interactive.c 28 - index 4f60f8b..0bdca95 100644 29 - --- a/libgit2-glib/ggit-cred-ssh-interactive.c 30 - +++ b/libgit2-glib/ggit-cred-ssh-interactive.c 31 - @@ -191,7 +191,7 @@ callback_wrapper (const char *name, 32 - { 33 - gchar *text; 34 - 35 - - text = g_strndup (prompts[i].text, prompts[i].length); 36 - + text = g_strndup ((const gchar *)prompts[i].text, prompts[i].length); 37 - 38 - wprompts[i] = ggit_cred_ssh_interactive_prompt_new (wname, 39 - winstruction, 40 - diff --git a/libgit2-glib/ggit-remote-callbacks.h b/libgit2-glib/ggit-remote-callbacks.h 41 - index 3005ff4..2340712 100644 42 - --- a/libgit2-glib/ggit-remote-callbacks.h 43 - +++ b/libgit2-glib/ggit-remote-callbacks.h 44 - @@ -24,6 +24,7 @@ 45 - 46 - #include <glib-object.h> 47 - #include <git2.h> 48 - +#include <git2/sys/errors.h> 49 - #include <libgit2-glib/ggit-cred.h> 50 - 51 - G_BEGIN_DECLS 52 - diff --git a/libgit2-glib/ggit-repository.c b/libgit2-glib/ggit-repository.c 53 - index bf099f6..936c6fc 100644 54 - --- a/libgit2-glib/ggit-repository.c 55 - +++ b/libgit2-glib/ggit-repository.c 56 - @@ -3182,7 +3182,7 @@ ggit_repository_create_commit (GgitRepository *repository, 57 - message, 58 - _ggit_native_get (tree), 59 - parent_count, 60 - - (const git_commit **)parents_native); 61 - + (gpointer)parents_native); 62 - 63 - g_free (parents_native); 64 - 65 - @@ -3323,7 +3323,7 @@ ggit_repository_create_commit_buffer(GgitRepository *repository, 66 - message, 67 - _ggit_tree_get_tree (tree), 68 - parent_count, 69 - - (git_commit const **)parents_native); 70 - + (gpointer)parents_native); 71 - 72 - g_free (parents_native); 73 - 74 - diff --git a/libgit2-glib/ggit-types.h b/libgit2-glib/ggit-types.h 75 - index 7e28975..2a2ed99 100644 76 - --- a/libgit2-glib/ggit-types.h 77 - +++ b/libgit2-glib/ggit-types.h 78 - @@ -355,7 +355,8 @@ typedef enum 79 - GGIT_CONFIG_LEVEL_XDG = 3, 80 - GGIT_CONFIG_LEVEL_GLOBAL = 4, 81 - GGIT_CONFIG_LEVEL_LOCAL = 5, 82 - - GGIT_CONFIG_LEVEL_APP = 6, 83 - + GGIT_CONFIG_LEVEL_WORKTREE = 6, 84 - + GGIT_CONFIG_LEVEL_APP = 7, 85 - GGIT_CONFIG_LEVEL_HIGHEST = -1 86 - } GgitConfigLevel; 87 - 88 - diff --git a/meson.build b/meson.build 89 - index e54a8b4..c21107d 100644 90 - --- a/meson.build 91 - +++ b/meson.build 92 - @@ -126,7 +126,7 @@ glib_dep = dependency('glib-2.0', version: '>=' + glib_req) 93 - gobject_dep = dependency('gobject-2.0', version: '>=' + glib_req) 94 - gio_dep = dependency('gio-2.0', version: '>=' + glib_req) 95 - 96 - -libgit2_dep = dependency('libgit2', version: '>= 0.25.0') 97 - +libgit2_dep = dependency('libgit2', version: '>= 1.8.0') 98 - 99 - # XXX: Not nice, but probably our best option 100 - enable_gir = get_option('introspection') and find_program('g-ir-scanner', required: false).found() 101 - -- 102 - GitLab 103 - 104 - 105 - From 93685d4297e425af67ac6888d6b66dfbcd4b95c8 Mon Sep 17 00:00:00 2001 106 - From: Rui Chen <rui@chenrui.dev> 107 - Date: Mon, 13 Jan 2025 21:23:50 -0500 108 - Subject: [PATCH 2/2] chore: support libgit2 1.9 109 - 110 - Signed-off-by: Rui Chen <rui@chenrui.dev> 111 - --- 112 - libgit2-glib/ggit-types.h | 4 ++-- 113 - meson.build | 2 +- 114 - 2 files changed, 3 insertions(+), 3 deletions(-) 115 - 116 - diff --git a/libgit2-glib/ggit-types.h b/libgit2-glib/ggit-types.h 117 - index 2a2ed99..184c3e6 100644 118 - --- a/libgit2-glib/ggit-types.h 119 - +++ b/libgit2-glib/ggit-types.h 120 - @@ -990,8 +990,7 @@ typedef enum 121 - 122 - typedef enum 123 - { 124 - - GGIT_CHECKOUT_NONE = 0, 125 - - GGIT_CHECKOUT_SAFE = (1u << 0), 126 - + GGIT_CHECKOUT_SAFE = 0, 127 - GGIT_CHECKOUT_FORCE = (1u << 1), 128 - GGIT_CHECKOUT_RECREATE_MISSING = (1u << 2), 129 - GGIT_CHECKOUT_ALLOW_CONFLICTS = (1u << 4), 130 - @@ -1010,6 +1009,7 @@ typedef enum 131 - GGIT_CHECKOUT_CONFLICT_STYLE_DIFF3 = (1u << 21), 132 - GGIT_CHECKOUT_DONT_REMOVE_EXISTING = (1u << 22), 133 - GGIT_CHECKOUT_DONT_WRITE_INDEX = (1u << 23), 134 - + GGIT_CHECKOUT_NONE = (1u << 30), 135 - GGIT_CHECKOUT_UPDATE_SUBMODULES = (1u << 16), 136 - GGIT_CHECKOUT_UPDATE_SUBMODULES_IF_CHANGED = (1u << 17) 137 - } GgitCheckoutStrategy; 138 - diff --git a/meson.build b/meson.build 139 - index c21107d..9cd26f8 100644 140 - --- a/meson.build 141 - +++ b/meson.build 142 - @@ -126,7 +126,7 @@ glib_dep = dependency('glib-2.0', version: '>=' + glib_req) 143 - gobject_dep = dependency('gobject-2.0', version: '>=' + glib_req) 144 - gio_dep = dependency('gio-2.0', version: '>=' + glib_req) 145 - 146 - -libgit2_dep = dependency('libgit2', version: '>= 1.8.0') 147 - +libgit2_dep = dependency('libgit2', version: '>= 1.9.0') 148 - 149 - # XXX: Not nice, but probably our best option 150 - enable_gir = get_option('introspection') and find_program('g-ir-scanner', required: false).found() 151 - -- 152 - GitLab 153 -
+6 -13
pkgs/by-name/li/libgit2-glib/package.nix
··· 17 17 fetchpatch, 18 18 }: 19 19 20 - stdenv.mkDerivation rec { 20 + stdenv.mkDerivation (finalAttrs: { 21 21 pname = "libgit2-glib"; 22 - version = "1.2.0"; 22 + version = "1.2.1"; 23 23 24 24 outputs = [ 25 25 "out" ··· 28 28 ]; 29 29 30 30 src = fetchurl { 31 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 32 - sha256 = "EzHa2oOPTh9ZGyZFnUQSajJd52LcPNJhU6Ma+9/hgZA="; 31 + url = "mirror://gnome/sources/libgit2-glib/${lib.versions.majorMinor finalAttrs.version}/libgit2-glib-${finalAttrs.version}.tar.xz"; 32 + sha256 = "l0I6d5ACs76HUcdfnXkEnfzMo2FqJhWfwWJIZ3K6eF8="; 33 33 }; 34 34 35 - patches = [ 36 - # See: 37 - # * <https://gitlab.gnome.org/GNOME/libgit2-glib/-/merge_requests/40> 38 - # * <https://gitlab.gnome.org/GNOME/libgit2-glib/-/merge_requests/46> 39 - ./libgit2-1.9.0.patch 40 - ]; 41 - 42 35 nativeBuildInputs = [ 43 36 meson 44 37 ninja ··· 71 64 72 65 passthru = { 73 66 updateScript = gnome.updateScript { 74 - packageName = pname; 67 + packageName = "libgit2-glib"; 75 68 versionPolicy = "none"; 76 69 }; 77 70 }; ··· 83 76 maintainers = teams.gnome.members; 84 77 platforms = platforms.linux; 85 78 }; 86 - } 79 + })
+8 -8
pkgs/by-name/li/libmediaart/package.nix
··· 8 8 pkg-config, 9 9 vala, 10 10 gtk-doc, 11 - docbook_xsl, 11 + docbook-xsl-nons, 12 12 docbook_xml_dtd_412, 13 13 glib, 14 14 gdk-pixbuf, ··· 16 16 gnome, 17 17 }: 18 18 19 - stdenv.mkDerivation rec { 19 + stdenv.mkDerivation (finalAttrs: { 20 20 pname = "libmediaart"; 21 - version = "1.9.6"; 21 + version = "1.9.7"; 22 22 23 23 outputs = [ 24 24 "out" ··· 27 27 ]; 28 28 29 29 src = fetchurl { 30 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 31 - sha256 = "w7xQJdfbOAWH+cjrgAxhH2taFta0t4/P+T9ih2pnfxc="; 30 + url = "mirror://gnome/sources/libmediaart/${lib.versions.majorMinor finalAttrs.version}/libmediaart-${finalAttrs.version}.tar.xz"; 31 + sha256 = "K0Pdn1Tw2NC4nirduDNBqwbXuYyxsucEODWEr5xWD2s="; 32 32 }; 33 33 34 34 nativeBuildInputs = ··· 38 38 pkg-config 39 39 vala 40 40 gtk-doc 41 - docbook_xsl 41 + docbook-xsl-nons 42 42 docbook_xml_dtd_412 43 43 gobject-introspection 44 44 ] ··· 57 57 58 58 passthru = { 59 59 updateScript = gnome.updateScript { 60 - packageName = pname; 60 + packageName = "libmediaart"; 61 61 versionPolicy = "none"; 62 62 }; 63 63 }; ··· 68 68 license = licenses.gpl2; 69 69 platforms = platforms.unix; 70 70 }; 71 - } 71 + })
+2 -2
pkgs/by-name/m8/m8c/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "m8c"; 12 - version = "1.7.9"; 12 + version = "1.7.10"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "laamaa"; 16 16 repo = "m8c"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-ijPRh/aurquh5JFngtoIBniopfVC67lL2X0M7AxT4SU="; 18 + hash = "sha256-8QkvvTtFxQmDIqpyhZi/ORcB7YwENu+YafYtCZw0faE="; 19 19 }; 20 20 21 21 makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
+2 -2
pkgs/by-name/ma/man-pages/package.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "man-pages"; 11 - version = "6.12"; 11 + version = "6.13"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://kernel/linux/docs/man-pages/man-pages-${finalAttrs.version}.tar.xz"; 15 - hash = "sha256-tstdZ+C7AKOz89G8s/4GwmsEW6Y5I+1655QSNQxeHLU="; 15 + hash = "sha256-osigwu/oqXjOUc6ABGHrnokx8SzHukt/qjCCtpun8Sw="; 16 16 }; 17 17 18 18 nativeInstallCheckInputs = [ man ];
+297 -297
pkgs/by-name/mo/mongosh/package-lock.json
··· 1 1 { 2 2 "name": "mongosh", 3 - "version": "2.4.0", 3 + "version": "2.4.2", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "mongosh", 9 - "version": "2.4.0", 9 + "version": "2.4.2", 10 10 "license": "Apache-2.0", 11 11 "dependencies": { 12 - "@mongosh/cli-repl": "2.4.0" 12 + "@mongosh/cli-repl": "2.4.2" 13 13 }, 14 14 "bin": { 15 15 "mongosh": "bin/mongosh.js" ··· 157 157 } 158 158 }, 159 159 "node_modules/@aws-sdk/client-cognito-identity": { 160 - "version": "3.750.0", 161 - "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.750.0.tgz", 162 - "integrity": "sha512-ia5+l7U1ludU/YqQAnEMj5DIp1kfMTu14lUOMG3uTIwTcj8OjkCvAe6BuM0OY6zd8enrJYWLqIqxuKPOWw4I7Q==", 160 + "version": "3.758.0", 161 + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.758.0.tgz", 162 + "integrity": "sha512-8bOXVYtf/0OUN0jXTIHLv3V0TAS6kvvCRAy7nmiL/fDde0O+ChW1WZU7CVPAOtFEpFCdKskDcxFspM7m1k6qyg==", 163 163 "license": "Apache-2.0", 164 164 "dependencies": { 165 165 "@aws-crypto/sha256-browser": "5.2.0", 166 166 "@aws-crypto/sha256-js": "5.2.0", 167 - "@aws-sdk/core": "3.750.0", 168 - "@aws-sdk/credential-provider-node": "3.750.0", 167 + "@aws-sdk/core": "3.758.0", 168 + "@aws-sdk/credential-provider-node": "3.758.0", 169 169 "@aws-sdk/middleware-host-header": "3.734.0", 170 170 "@aws-sdk/middleware-logger": "3.734.0", 171 171 "@aws-sdk/middleware-recursion-detection": "3.734.0", 172 - "@aws-sdk/middleware-user-agent": "3.750.0", 172 + "@aws-sdk/middleware-user-agent": "3.758.0", 173 173 "@aws-sdk/region-config-resolver": "3.734.0", 174 174 "@aws-sdk/types": "3.734.0", 175 175 "@aws-sdk/util-endpoints": "3.743.0", 176 176 "@aws-sdk/util-user-agent-browser": "3.734.0", 177 - "@aws-sdk/util-user-agent-node": "3.750.0", 177 + "@aws-sdk/util-user-agent-node": "3.758.0", 178 178 "@smithy/config-resolver": "^4.0.1", 179 - "@smithy/core": "^3.1.4", 179 + "@smithy/core": "^3.1.5", 180 180 "@smithy/fetch-http-handler": "^5.0.1", 181 181 "@smithy/hash-node": "^4.0.1", 182 182 "@smithy/invalid-dependency": "^4.0.1", 183 183 "@smithy/middleware-content-length": "^4.0.1", 184 - "@smithy/middleware-endpoint": "^4.0.5", 185 - "@smithy/middleware-retry": "^4.0.6", 184 + "@smithy/middleware-endpoint": "^4.0.6", 185 + "@smithy/middleware-retry": "^4.0.7", 186 186 "@smithy/middleware-serde": "^4.0.2", 187 187 "@smithy/middleware-stack": "^4.0.1", 188 188 "@smithy/node-config-provider": "^4.0.1", 189 - "@smithy/node-http-handler": "^4.0.2", 189 + "@smithy/node-http-handler": "^4.0.3", 190 190 "@smithy/protocol-http": "^5.0.1", 191 - "@smithy/smithy-client": "^4.1.5", 191 + "@smithy/smithy-client": "^4.1.6", 192 192 "@smithy/types": "^4.1.0", 193 193 "@smithy/url-parser": "^4.0.1", 194 194 "@smithy/util-base64": "^4.0.0", 195 195 "@smithy/util-body-length-browser": "^4.0.0", 196 196 "@smithy/util-body-length-node": "^4.0.0", 197 - "@smithy/util-defaults-mode-browser": "^4.0.6", 198 - "@smithy/util-defaults-mode-node": "^4.0.6", 197 + "@smithy/util-defaults-mode-browser": "^4.0.7", 198 + "@smithy/util-defaults-mode-node": "^4.0.7", 199 199 "@smithy/util-endpoints": "^3.0.1", 200 200 "@smithy/util-middleware": "^4.0.1", 201 201 "@smithy/util-retry": "^4.0.1", ··· 207 207 } 208 208 }, 209 209 "node_modules/@aws-sdk/client-sso": { 210 - "version": "3.750.0", 211 - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.750.0.tgz", 212 - "integrity": "sha512-y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg==", 210 + "version": "3.758.0", 211 + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.758.0.tgz", 212 + "integrity": "sha512-BoGO6IIWrLyLxQG6txJw6RT2urmbtlwfggapNCrNPyYjlXpzTSJhBYjndg7TpDATFd0SXL0zm8y/tXsUXNkdYQ==", 213 213 "license": "Apache-2.0", 214 214 "dependencies": { 215 215 "@aws-crypto/sha256-browser": "5.2.0", 216 216 "@aws-crypto/sha256-js": "5.2.0", 217 - "@aws-sdk/core": "3.750.0", 217 + "@aws-sdk/core": "3.758.0", 218 218 "@aws-sdk/middleware-host-header": "3.734.0", 219 219 "@aws-sdk/middleware-logger": "3.734.0", 220 220 "@aws-sdk/middleware-recursion-detection": "3.734.0", 221 - "@aws-sdk/middleware-user-agent": "3.750.0", 221 + "@aws-sdk/middleware-user-agent": "3.758.0", 222 222 "@aws-sdk/region-config-resolver": "3.734.0", 223 223 "@aws-sdk/types": "3.734.0", 224 224 "@aws-sdk/util-endpoints": "3.743.0", 225 225 "@aws-sdk/util-user-agent-browser": "3.734.0", 226 - "@aws-sdk/util-user-agent-node": "3.750.0", 226 + "@aws-sdk/util-user-agent-node": "3.758.0", 227 227 "@smithy/config-resolver": "^4.0.1", 228 - "@smithy/core": "^3.1.4", 228 + "@smithy/core": "^3.1.5", 229 229 "@smithy/fetch-http-handler": "^5.0.1", 230 230 "@smithy/hash-node": "^4.0.1", 231 231 "@smithy/invalid-dependency": "^4.0.1", 232 232 "@smithy/middleware-content-length": "^4.0.1", 233 - "@smithy/middleware-endpoint": "^4.0.5", 234 - "@smithy/middleware-retry": "^4.0.6", 233 + "@smithy/middleware-endpoint": "^4.0.6", 234 + "@smithy/middleware-retry": "^4.0.7", 235 235 "@smithy/middleware-serde": "^4.0.2", 236 236 "@smithy/middleware-stack": "^4.0.1", 237 237 "@smithy/node-config-provider": "^4.0.1", 238 - "@smithy/node-http-handler": "^4.0.2", 238 + "@smithy/node-http-handler": "^4.0.3", 239 239 "@smithy/protocol-http": "^5.0.1", 240 - "@smithy/smithy-client": "^4.1.5", 240 + "@smithy/smithy-client": "^4.1.6", 241 241 "@smithy/types": "^4.1.0", 242 242 "@smithy/url-parser": "^4.0.1", 243 243 "@smithy/util-base64": "^4.0.0", 244 244 "@smithy/util-body-length-browser": "^4.0.0", 245 245 "@smithy/util-body-length-node": "^4.0.0", 246 - "@smithy/util-defaults-mode-browser": "^4.0.6", 247 - "@smithy/util-defaults-mode-node": "^4.0.6", 246 + "@smithy/util-defaults-mode-browser": "^4.0.7", 247 + "@smithy/util-defaults-mode-node": "^4.0.7", 248 248 "@smithy/util-endpoints": "^3.0.1", 249 249 "@smithy/util-middleware": "^4.0.1", 250 250 "@smithy/util-retry": "^4.0.1", ··· 256 256 } 257 257 }, 258 258 "node_modules/@aws-sdk/core": { 259 - "version": "3.750.0", 260 - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.750.0.tgz", 261 - "integrity": "sha512-bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ==", 259 + "version": "3.758.0", 260 + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.758.0.tgz", 261 + "integrity": "sha512-0RswbdR9jt/XKemaLNuxi2gGr4xGlHyGxkTdhSQzCyUe9A9OPCoLl3rIESRguQEech+oJnbHk/wuiwHqTuP9sg==", 262 262 "license": "Apache-2.0", 263 263 "dependencies": { 264 264 "@aws-sdk/types": "3.734.0", 265 - "@smithy/core": "^3.1.4", 265 + "@smithy/core": "^3.1.5", 266 266 "@smithy/node-config-provider": "^4.0.1", 267 267 "@smithy/property-provider": "^4.0.1", 268 268 "@smithy/protocol-http": "^5.0.1", 269 269 "@smithy/signature-v4": "^5.0.1", 270 - "@smithy/smithy-client": "^4.1.5", 270 + "@smithy/smithy-client": "^4.1.6", 271 271 "@smithy/types": "^4.1.0", 272 272 "@smithy/util-middleware": "^4.0.1", 273 273 "fast-xml-parser": "4.4.1", ··· 278 278 } 279 279 }, 280 280 "node_modules/@aws-sdk/credential-provider-cognito-identity": { 281 - "version": "3.750.0", 282 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.750.0.tgz", 283 - "integrity": "sha512-TwBzrxgIWcQk846XFn0A9DHBHbfg4sHR3M2GL4E7NcffEkh7r642ILiLa58VvQjO2nB1tcOOFtRqbZvVOKexUw==", 281 + "version": "3.758.0", 282 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.758.0.tgz", 283 + "integrity": "sha512-y/rHZqyChlEkNRr59gn4hv0gjhJwGmdCdW0JI1K9p3P9p7EurWGjr2M6+goTn3ilOlcAwrl5oFKR5jLt27TkOA==", 284 284 "license": "Apache-2.0", 285 285 "dependencies": { 286 - "@aws-sdk/client-cognito-identity": "3.750.0", 286 + "@aws-sdk/client-cognito-identity": "3.758.0", 287 287 "@aws-sdk/types": "3.734.0", 288 288 "@smithy/property-provider": "^4.0.1", 289 289 "@smithy/types": "^4.1.0", ··· 294 294 } 295 295 }, 296 296 "node_modules/@aws-sdk/credential-provider-env": { 297 - "version": "3.750.0", 298 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.750.0.tgz", 299 - "integrity": "sha512-In6bsG0p/P31HcH4DBRKBbcDS/3SHvEPjfXV8ODPWZO/l3/p7IRoYBdQ07C9R+VMZU2D0+/Sc/DWK/TUNDk1+Q==", 297 + "version": "3.758.0", 298 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.758.0.tgz", 299 + "integrity": "sha512-N27eFoRrO6MeUNumtNHDW9WOiwfd59LPXPqDrIa3kWL/s+fOKFHb9xIcF++bAwtcZnAxKkgpDCUP+INNZskE+w==", 300 300 "license": "Apache-2.0", 301 301 "dependencies": { 302 - "@aws-sdk/core": "3.750.0", 302 + "@aws-sdk/core": "3.758.0", 303 303 "@aws-sdk/types": "3.734.0", 304 304 "@smithy/property-provider": "^4.0.1", 305 305 "@smithy/types": "^4.1.0", ··· 310 310 } 311 311 }, 312 312 "node_modules/@aws-sdk/credential-provider-http": { 313 - "version": "3.750.0", 314 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.750.0.tgz", 315 - "integrity": "sha512-wFB9qqfa20AB0dElsQz5ZlZT5o+a+XzpEpmg0erylmGYqEOvh8NQWfDUVpRmQuGq9VbvW/8cIbxPoNqEbPtuWQ==", 313 + "version": "3.758.0", 314 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.758.0.tgz", 315 + "integrity": "sha512-Xt9/U8qUCiw1hihztWkNeIR+arg6P+yda10OuCHX6kFVx3auTlU7+hCqs3UxqniGU4dguHuftf3mRpi5/GJ33Q==", 316 316 "license": "Apache-2.0", 317 317 "dependencies": { 318 - "@aws-sdk/core": "3.750.0", 318 + "@aws-sdk/core": "3.758.0", 319 319 "@aws-sdk/types": "3.734.0", 320 320 "@smithy/fetch-http-handler": "^5.0.1", 321 - "@smithy/node-http-handler": "^4.0.2", 321 + "@smithy/node-http-handler": "^4.0.3", 322 322 "@smithy/property-provider": "^4.0.1", 323 323 "@smithy/protocol-http": "^5.0.1", 324 - "@smithy/smithy-client": "^4.1.5", 324 + "@smithy/smithy-client": "^4.1.6", 325 325 "@smithy/types": "^4.1.0", 326 - "@smithy/util-stream": "^4.1.1", 326 + "@smithy/util-stream": "^4.1.2", 327 327 "tslib": "^2.6.2" 328 328 }, 329 329 "engines": { ··· 331 331 } 332 332 }, 333 333 "node_modules/@aws-sdk/credential-provider-ini": { 334 - "version": "3.750.0", 335 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.750.0.tgz", 336 - "integrity": "sha512-2YIZmyEr5RUd3uxXpxOLD9G67Bibm4I/65M6vKFP17jVMUT+R1nL7mKqmhEVO2p+BoeV+bwMyJ/jpTYG368PCg==", 334 + "version": "3.758.0", 335 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.758.0.tgz", 336 + "integrity": "sha512-cymSKMcP5d+OsgetoIZ5QCe1wnp2Q/tq+uIxVdh9MbfdBBEnl9Ecq6dH6VlYS89sp4QKuxHxkWXVnbXU3Q19Aw==", 337 337 "license": "Apache-2.0", 338 338 "dependencies": { 339 - "@aws-sdk/core": "3.750.0", 340 - "@aws-sdk/credential-provider-env": "3.750.0", 341 - "@aws-sdk/credential-provider-http": "3.750.0", 342 - "@aws-sdk/credential-provider-process": "3.750.0", 343 - "@aws-sdk/credential-provider-sso": "3.750.0", 344 - "@aws-sdk/credential-provider-web-identity": "3.750.0", 345 - "@aws-sdk/nested-clients": "3.750.0", 339 + "@aws-sdk/core": "3.758.0", 340 + "@aws-sdk/credential-provider-env": "3.758.0", 341 + "@aws-sdk/credential-provider-http": "3.758.0", 342 + "@aws-sdk/credential-provider-process": "3.758.0", 343 + "@aws-sdk/credential-provider-sso": "3.758.0", 344 + "@aws-sdk/credential-provider-web-identity": "3.758.0", 345 + "@aws-sdk/nested-clients": "3.758.0", 346 346 "@aws-sdk/types": "3.734.0", 347 347 "@smithy/credential-provider-imds": "^4.0.1", 348 348 "@smithy/property-provider": "^4.0.1", ··· 355 355 } 356 356 }, 357 357 "node_modules/@aws-sdk/credential-provider-node": { 358 - "version": "3.750.0", 359 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.750.0.tgz", 360 - "integrity": "sha512-THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw==", 358 + "version": "3.758.0", 359 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.758.0.tgz", 360 + "integrity": "sha512-+DaMv63wiq7pJrhIQzZYMn4hSarKiizDoJRvyR7WGhnn0oQ/getX9Z0VNCV3i7lIFoLNTb7WMmQ9k7+z/uD5EQ==", 361 361 "license": "Apache-2.0", 362 362 "dependencies": { 363 - "@aws-sdk/credential-provider-env": "3.750.0", 364 - "@aws-sdk/credential-provider-http": "3.750.0", 365 - "@aws-sdk/credential-provider-ini": "3.750.0", 366 - "@aws-sdk/credential-provider-process": "3.750.0", 367 - "@aws-sdk/credential-provider-sso": "3.750.0", 368 - "@aws-sdk/credential-provider-web-identity": "3.750.0", 363 + "@aws-sdk/credential-provider-env": "3.758.0", 364 + "@aws-sdk/credential-provider-http": "3.758.0", 365 + "@aws-sdk/credential-provider-ini": "3.758.0", 366 + "@aws-sdk/credential-provider-process": "3.758.0", 367 + "@aws-sdk/credential-provider-sso": "3.758.0", 368 + "@aws-sdk/credential-provider-web-identity": "3.758.0", 369 369 "@aws-sdk/types": "3.734.0", 370 370 "@smithy/credential-provider-imds": "^4.0.1", 371 371 "@smithy/property-provider": "^4.0.1", ··· 378 378 } 379 379 }, 380 380 "node_modules/@aws-sdk/credential-provider-process": { 381 - "version": "3.750.0", 382 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.750.0.tgz", 383 - "integrity": "sha512-Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ==", 381 + "version": "3.758.0", 382 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.758.0.tgz", 383 + "integrity": "sha512-AzcY74QTPqcbXWVgjpPZ3HOmxQZYPROIBz2YINF0OQk0MhezDWV/O7Xec+K1+MPGQO3qS6EDrUUlnPLjsqieHA==", 384 384 "license": "Apache-2.0", 385 385 "dependencies": { 386 - "@aws-sdk/core": "3.750.0", 386 + "@aws-sdk/core": "3.758.0", 387 387 "@aws-sdk/types": "3.734.0", 388 388 "@smithy/property-provider": "^4.0.1", 389 389 "@smithy/shared-ini-file-loader": "^4.0.1", ··· 395 395 } 396 396 }, 397 397 "node_modules/@aws-sdk/credential-provider-sso": { 398 - "version": "3.750.0", 399 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.750.0.tgz", 400 - "integrity": "sha512-FGYrDjXN/FOQVi/t8fHSv8zCk+NEvtFnuc4cZUj5OIbM4vrfFc5VaPyn41Uza3iv6Qq9rZg0QOwWnqK8lNrqUw==", 398 + "version": "3.758.0", 399 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.758.0.tgz", 400 + "integrity": "sha512-x0FYJqcOLUCv8GLLFDYMXRAQKGjoM+L0BG4BiHYZRDf24yQWFCAZsCQAYKo6XZYh2qznbsW6f//qpyJ5b0QVKQ==", 401 401 "license": "Apache-2.0", 402 402 "dependencies": { 403 - "@aws-sdk/client-sso": "3.750.0", 404 - "@aws-sdk/core": "3.750.0", 405 - "@aws-sdk/token-providers": "3.750.0", 403 + "@aws-sdk/client-sso": "3.758.0", 404 + "@aws-sdk/core": "3.758.0", 405 + "@aws-sdk/token-providers": "3.758.0", 406 406 "@aws-sdk/types": "3.734.0", 407 407 "@smithy/property-provider": "^4.0.1", 408 408 "@smithy/shared-ini-file-loader": "^4.0.1", ··· 414 414 } 415 415 }, 416 416 "node_modules/@aws-sdk/credential-provider-web-identity": { 417 - "version": "3.750.0", 418 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.750.0.tgz", 419 - "integrity": "sha512-Nz8zs3YJ+GOTSrq+LyzbbC1Ffpt7pK38gcOyNZv76pP5MswKTUKNYBJehqwa+i7FcFQHsCk3TdhR8MT1ZR23uA==", 417 + "version": "3.758.0", 418 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.758.0.tgz", 419 + "integrity": "sha512-XGguXhBqiCXMXRxcfCAVPlMbm3VyJTou79r/3mxWddHWF0XbhaQiBIbUz6vobVTD25YQRbWSmSch7VA8kI5Lrw==", 420 420 "license": "Apache-2.0", 421 421 "dependencies": { 422 - "@aws-sdk/core": "3.750.0", 423 - "@aws-sdk/nested-clients": "3.750.0", 422 + "@aws-sdk/core": "3.758.0", 423 + "@aws-sdk/nested-clients": "3.758.0", 424 424 "@aws-sdk/types": "3.734.0", 425 425 "@smithy/property-provider": "^4.0.1", 426 426 "@smithy/types": "^4.1.0", ··· 431 431 } 432 432 }, 433 433 "node_modules/@aws-sdk/credential-providers": { 434 - "version": "3.750.0", 435 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.750.0.tgz", 436 - "integrity": "sha512-HpJyLHAjcn/IcvsL4WhEIgbzEWfTnn29u8QFNa5Ii9pVtxdeP/DkSthP3SNxLK2jVNcqWL9xago02SiasNOKfw==", 434 + "version": "3.758.0", 435 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.758.0.tgz", 436 + "integrity": "sha512-BaGVBdm9ynsErIc/mLuUwJ1OQcL/pkhCuAm24jpsif3evZ5wgyZnEAZB2yRin+mQnQaQT3L+KvTbdKGfjL8+fQ==", 437 437 "license": "Apache-2.0", 438 438 "dependencies": { 439 - "@aws-sdk/client-cognito-identity": "3.750.0", 440 - "@aws-sdk/core": "3.750.0", 441 - "@aws-sdk/credential-provider-cognito-identity": "3.750.0", 442 - "@aws-sdk/credential-provider-env": "3.750.0", 443 - "@aws-sdk/credential-provider-http": "3.750.0", 444 - "@aws-sdk/credential-provider-ini": "3.750.0", 445 - "@aws-sdk/credential-provider-node": "3.750.0", 446 - "@aws-sdk/credential-provider-process": "3.750.0", 447 - "@aws-sdk/credential-provider-sso": "3.750.0", 448 - "@aws-sdk/credential-provider-web-identity": "3.750.0", 449 - "@aws-sdk/nested-clients": "3.750.0", 439 + "@aws-sdk/client-cognito-identity": "3.758.0", 440 + "@aws-sdk/core": "3.758.0", 441 + "@aws-sdk/credential-provider-cognito-identity": "3.758.0", 442 + "@aws-sdk/credential-provider-env": "3.758.0", 443 + "@aws-sdk/credential-provider-http": "3.758.0", 444 + "@aws-sdk/credential-provider-ini": "3.758.0", 445 + "@aws-sdk/credential-provider-node": "3.758.0", 446 + "@aws-sdk/credential-provider-process": "3.758.0", 447 + "@aws-sdk/credential-provider-sso": "3.758.0", 448 + "@aws-sdk/credential-provider-web-identity": "3.758.0", 449 + "@aws-sdk/nested-clients": "3.758.0", 450 450 "@aws-sdk/types": "3.734.0", 451 - "@smithy/core": "^3.1.4", 451 + "@smithy/core": "^3.1.5", 452 452 "@smithy/credential-provider-imds": "^4.0.1", 453 453 "@smithy/property-provider": "^4.0.1", 454 454 "@smithy/types": "^4.1.0", ··· 503 503 } 504 504 }, 505 505 "node_modules/@aws-sdk/middleware-user-agent": { 506 - "version": "3.750.0", 507 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.750.0.tgz", 508 - "integrity": "sha512-YYcslDsP5+2NZoN3UwuhZGkhAHPSli7HlJHBafBrvjGV/I9f8FuOO1d1ebxGdEP4HyRXUGyh+7Ur4q+Psk0ryw==", 506 + "version": "3.758.0", 507 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.758.0.tgz", 508 + "integrity": "sha512-iNyehQXtQlj69JCgfaOssgZD4HeYGOwxcaKeG6F+40cwBjTAi0+Ph1yfDwqk2qiBPIRWJ/9l2LodZbxiBqgrwg==", 509 509 "license": "Apache-2.0", 510 510 "dependencies": { 511 - "@aws-sdk/core": "3.750.0", 511 + "@aws-sdk/core": "3.758.0", 512 512 "@aws-sdk/types": "3.734.0", 513 513 "@aws-sdk/util-endpoints": "3.743.0", 514 - "@smithy/core": "^3.1.4", 514 + "@smithy/core": "^3.1.5", 515 515 "@smithy/protocol-http": "^5.0.1", 516 516 "@smithy/types": "^4.1.0", 517 517 "tslib": "^2.6.2" ··· 521 521 } 522 522 }, 523 523 "node_modules/@aws-sdk/nested-clients": { 524 - "version": "3.750.0", 525 - "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.750.0.tgz", 526 - "integrity": "sha512-OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg==", 524 + "version": "3.758.0", 525 + "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.758.0.tgz", 526 + "integrity": "sha512-YZ5s7PSvyF3Mt2h1EQulCG93uybprNGbBkPmVuy/HMMfbFTt4iL3SbKjxqvOZelm86epFfj7pvK7FliI2WOEcg==", 527 527 "license": "Apache-2.0", 528 528 "dependencies": { 529 529 "@aws-crypto/sha256-browser": "5.2.0", 530 530 "@aws-crypto/sha256-js": "5.2.0", 531 - "@aws-sdk/core": "3.750.0", 531 + "@aws-sdk/core": "3.758.0", 532 532 "@aws-sdk/middleware-host-header": "3.734.0", 533 533 "@aws-sdk/middleware-logger": "3.734.0", 534 534 "@aws-sdk/middleware-recursion-detection": "3.734.0", 535 - "@aws-sdk/middleware-user-agent": "3.750.0", 535 + "@aws-sdk/middleware-user-agent": "3.758.0", 536 536 "@aws-sdk/region-config-resolver": "3.734.0", 537 537 "@aws-sdk/types": "3.734.0", 538 538 "@aws-sdk/util-endpoints": "3.743.0", 539 539 "@aws-sdk/util-user-agent-browser": "3.734.0", 540 - "@aws-sdk/util-user-agent-node": "3.750.0", 540 + "@aws-sdk/util-user-agent-node": "3.758.0", 541 541 "@smithy/config-resolver": "^4.0.1", 542 - "@smithy/core": "^3.1.4", 542 + "@smithy/core": "^3.1.5", 543 543 "@smithy/fetch-http-handler": "^5.0.1", 544 544 "@smithy/hash-node": "^4.0.1", 545 545 "@smithy/invalid-dependency": "^4.0.1", 546 546 "@smithy/middleware-content-length": "^4.0.1", 547 - "@smithy/middleware-endpoint": "^4.0.5", 548 - "@smithy/middleware-retry": "^4.0.6", 547 + "@smithy/middleware-endpoint": "^4.0.6", 548 + "@smithy/middleware-retry": "^4.0.7", 549 549 "@smithy/middleware-serde": "^4.0.2", 550 550 "@smithy/middleware-stack": "^4.0.1", 551 551 "@smithy/node-config-provider": "^4.0.1", 552 - "@smithy/node-http-handler": "^4.0.2", 552 + "@smithy/node-http-handler": "^4.0.3", 553 553 "@smithy/protocol-http": "^5.0.1", 554 - "@smithy/smithy-client": "^4.1.5", 554 + "@smithy/smithy-client": "^4.1.6", 555 555 "@smithy/types": "^4.1.0", 556 556 "@smithy/url-parser": "^4.0.1", 557 557 "@smithy/util-base64": "^4.0.0", 558 558 "@smithy/util-body-length-browser": "^4.0.0", 559 559 "@smithy/util-body-length-node": "^4.0.0", 560 - "@smithy/util-defaults-mode-browser": "^4.0.6", 561 - "@smithy/util-defaults-mode-node": "^4.0.6", 560 + "@smithy/util-defaults-mode-browser": "^4.0.7", 561 + "@smithy/util-defaults-mode-node": "^4.0.7", 562 562 "@smithy/util-endpoints": "^3.0.1", 563 563 "@smithy/util-middleware": "^4.0.1", 564 564 "@smithy/util-retry": "^4.0.1", ··· 587 587 } 588 588 }, 589 589 "node_modules/@aws-sdk/token-providers": { 590 - "version": "3.750.0", 591 - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.750.0.tgz", 592 - "integrity": "sha512-X/KzqZw41iWolwNdc8e3RMcNSMR364viHv78u6AefXOO5eRM40c4/LuST1jDzq35/LpnqRhL7/MuixOetw+sFw==", 590 + "version": "3.758.0", 591 + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.758.0.tgz", 592 + "integrity": "sha512-ckptN1tNrIfQUaGWm/ayW1ddG+imbKN7HHhjFdS4VfItsP0QQOB0+Ov+tpgb4MoNR4JaUghMIVStjIeHN2ks1w==", 593 593 "license": "Apache-2.0", 594 594 "dependencies": { 595 - "@aws-sdk/nested-clients": "3.750.0", 595 + "@aws-sdk/nested-clients": "3.758.0", 596 596 "@aws-sdk/types": "3.734.0", 597 597 "@smithy/property-provider": "^4.0.1", 598 598 "@smithy/shared-ini-file-loader": "^4.0.1", ··· 656 656 } 657 657 }, 658 658 "node_modules/@aws-sdk/util-user-agent-node": { 659 - "version": "3.750.0", 660 - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.750.0.tgz", 661 - "integrity": "sha512-84HJj9G9zbrHX2opLk9eHfDceB+UIHVrmflMzWHpsmo9fDuro/flIBqaVDlE021Osj6qIM0SJJcnL6s23j7JEw==", 659 + "version": "3.758.0", 660 + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.758.0.tgz", 661 + "integrity": "sha512-A5EZw85V6WhoKMV2hbuFRvb9NPlxEErb4HPO6/SPXYY4QrjprIzScHxikqcWv1w4J3apB1wto9LPU3IMsYtfrw==", 662 662 "license": "Apache-2.0", 663 663 "dependencies": { 664 - "@aws-sdk/middleware-user-agent": "3.750.0", 664 + "@aws-sdk/middleware-user-agent": "3.758.0", 665 665 "@aws-sdk/types": "3.734.0", 666 666 "@smithy/node-config-provider": "^4.0.1", 667 667 "@smithy/types": "^4.1.0", ··· 1095 1095 } 1096 1096 }, 1097 1097 "node_modules/@mongodb-js/devtools-connect": { 1098 - "version": "3.6.4", 1099 - "resolved": "https://registry.npmjs.org/@mongodb-js/devtools-connect/-/devtools-connect-3.6.4.tgz", 1100 - "integrity": "sha512-HtMSMxxAXPsZImXCXJK7rvmiMKHrZG6wJC+j5OrikoPHst/dzrnd5TtbR7cZJziFscuS5hfOtuMg3SHJSE67Qw==", 1098 + "version": "3.7.0", 1099 + "resolved": "https://registry.npmjs.org/@mongodb-js/devtools-connect/-/devtools-connect-3.7.0.tgz", 1100 + "integrity": "sha512-j/8Wgfp7La/5Rz52Vyic8aK1GnMEGMVN3TCB+P6/QNFVYpWp81SEy8kW12oIFvNUKgpzV75o9Ixb2K44r15J0w==", 1101 1101 "license": "Apache-2.0", 1102 1102 "dependencies": { 1103 1103 "@mongodb-js/devtools-proxy-support": "^0.4.2", ··· 1115 1115 "peerDependencies": { 1116 1116 "@mongodb-js/oidc-plugin": "^1.1.0", 1117 1117 "mongodb": "^6.9.0", 1118 - "mongodb-log-writer": "^2.3.4" 1118 + "mongodb-log-writer": "^2.4.0" 1119 1119 } 1120 1120 }, 1121 1121 "node_modules/@mongodb-js/devtools-proxy-support": { ··· 1153 1153 "license": "Apache-2.0" 1154 1154 }, 1155 1155 "node_modules/@mongodb-js/oidc-plugin": { 1156 - "version": "1.1.5", 1157 - "resolved": "https://registry.npmjs.org/@mongodb-js/oidc-plugin/-/oidc-plugin-1.1.5.tgz", 1158 - "integrity": "sha512-K76ADgrDpL+lg6L/QsEBIGbSjTEUljYDGDX75Tq4+zIkx3JQgeQhS5J3qZNzKwJa4nj+EwhihaADLRgsMpAtrA==", 1156 + "version": "1.1.6", 1157 + "resolved": "https://registry.npmjs.org/@mongodb-js/oidc-plugin/-/oidc-plugin-1.1.6.tgz", 1158 + "integrity": "sha512-fuL4B9x1njcqdJqV+V3pt8s/9PX4uy9ojhcsP12BavDcg61ju6WEqCkDmUZCykDIvsDbb8tIhO97aCKDxcXROw==", 1159 1159 "license": "Apache-2.0", 1160 1160 "dependencies": { 1161 1161 "express": "^4.18.2", ··· 1188 1188 } 1189 1189 }, 1190 1190 "node_modules/@mongosh/arg-parser": { 1191 - "version": "3.4.0", 1192 - "resolved": "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-3.4.0.tgz", 1193 - "integrity": "sha512-eRJTLrwoA2M002YralaWt9dzO1ErtvkTcpnUFSrwHV/4VJk6oHUNRpIZNBPvRrKJTRZAWkAkvkJHk+GSPA8p+A==", 1191 + "version": "3.8.0", 1192 + "resolved": "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-3.8.0.tgz", 1193 + "integrity": "sha512-TJrJmcBsOmztSj7X0pe/lVsAz9gRaLN4YXTM3ynHCNxLVHKTyuk/cxIf3tEYweZPNfDXM4sSyMOO+Ervqn7dRg==", 1194 1194 "license": "Apache-2.0", 1195 1195 "dependencies": { 1196 1196 "@mongosh/errors": "2.4.0", 1197 - "@mongosh/i18n": "2.8.0", 1197 + "@mongosh/i18n": "^2.11.0", 1198 1198 "mongodb-connection-string-url": "^3.0.1" 1199 1199 }, 1200 1200 "engines": { ··· 1202 1202 } 1203 1203 }, 1204 1204 "node_modules/@mongosh/async-rewriter2": { 1205 - "version": "2.4.4", 1206 - "resolved": "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-2.4.4.tgz", 1207 - "integrity": "sha512-ATvCxKeIHPxevWhFWo+2bQy5yFFx22amoWzhf06cKUlUEvK9ipVptE14bjUEJHT5fjgJDpYuc8Dbr8cUq1LYSw==", 1205 + "version": "2.4.6", 1206 + "resolved": "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-2.4.6.tgz", 1207 + "integrity": "sha512-v5Oq7eZ4dla13hKMbtFLVr0CHSOSeKHWoFxAtU8aD30N2ES2tT6i8/iNUMVsdF3zzLyzFfH/B81epDFNjNiOUA==", 1208 1208 "license": "Apache-2.0", 1209 1209 "dependencies": { 1210 1210 "@babel/core": "^7.22.8", ··· 1221 1221 } 1222 1222 }, 1223 1223 "node_modules/@mongosh/autocomplete": { 1224 - "version": "3.4.0", 1225 - "resolved": "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-3.4.0.tgz", 1226 - "integrity": "sha512-I02pDPTaZsTA3XHclypOzOl1KheQkKaZZFNDlCyfSjBw7BlGDfZllWOqWegMUMcTfhvl0PjmE8eGG2xXid5C1Q==", 1224 + "version": "3.8.0", 1225 + "resolved": "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-3.8.0.tgz", 1226 + "integrity": "sha512-tw3g0J4JdY27HtM6l8+HEAYqUrVhCb1YxsotjF59mFnufBLlcskTvq3iP220YK3U4IOxQJZ3UkXv/XqLD+GExw==", 1227 1227 "license": "Apache-2.0", 1228 1228 "dependencies": { 1229 1229 "@mongodb-js/mongodb-constants": "^0.10.1", 1230 - "@mongosh/shell-api": "3.4.0", 1230 + "@mongosh/shell-api": "3.8.0", 1231 1231 "semver": "^7.5.4" 1232 1232 }, 1233 1233 "engines": { ··· 1235 1235 } 1236 1236 }, 1237 1237 "node_modules/@mongosh/cli-repl": { 1238 - "version": "2.4.0", 1239 - "resolved": "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.0.tgz", 1240 - "integrity": "sha512-3wnEfi+DWft6Y8aL4WnQIt8c2LfMCnhApSYdTbCjL9fQwOobiICU6ZMQ9e5cB4oINu3Wiga7Xz2QFh5W75DV5w==", 1238 + "version": "2.4.2", 1239 + "resolved": "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.2.tgz", 1240 + "integrity": "sha512-rpLL/SXCmwh8bTqwfAJ8x9JldQeUDPq2t70cu0GXNSMCg6/1Ixkd0V9dJ4A3IrZnk8mox3P9ftQrwlhs5jkw4g==", 1241 1241 "license": "Apache-2.0", 1242 1242 "dependencies": { 1243 1243 "@mongodb-js/devtools-proxy-support": "^0.4.2", 1244 - "@mongosh/arg-parser": "3.4.0", 1245 - "@mongosh/autocomplete": "3.4.0", 1246 - "@mongosh/editor": "3.4.0", 1244 + "@mongosh/arg-parser": "3.8.0", 1245 + "@mongosh/autocomplete": "3.8.0", 1246 + "@mongosh/editor": "3.8.0", 1247 1247 "@mongosh/errors": "2.4.0", 1248 - "@mongosh/history": "2.4.4", 1249 - "@mongosh/i18n": "2.8.0", 1250 - "@mongosh/js-multiline-to-singleline": "2.4.4", 1251 - "@mongosh/logging": "3.4.0", 1252 - "@mongosh/service-provider-core": "3.0.4", 1253 - "@mongosh/service-provider-node-driver": "3.4.0", 1254 - "@mongosh/shell-api": "3.4.0", 1255 - "@mongosh/shell-evaluator": "3.4.0", 1256 - "@mongosh/snippet-manager": "3.4.0", 1257 - "@mongosh/types": "3.4.0", 1248 + "@mongosh/history": "2.4.6", 1249 + "@mongosh/i18n": "^2.11.0", 1250 + "@mongosh/js-multiline-to-singleline": "2.4.6", 1251 + "@mongosh/logging": "3.6.0", 1252 + "@mongosh/service-provider-core": "3.1.0", 1253 + "@mongosh/service-provider-node-driver": "3.6.0", 1254 + "@mongosh/shell-api": "3.8.0", 1255 + "@mongosh/shell-evaluator": "3.8.0", 1256 + "@mongosh/snippet-manager": "3.8.0", 1257 + "@mongosh/types": "3.6.0", 1258 1258 "@segment/analytics-node": "^1.3.0", 1259 1259 "ansi-escape-sequences": "^5.1.2", 1260 1260 "askcharacter": "^2.0.4", ··· 1286 1286 } 1287 1287 }, 1288 1288 "node_modules/@mongosh/editor": { 1289 - "version": "3.4.0", 1290 - "resolved": "https://registry.npmjs.org/@mongosh/editor/-/editor-3.4.0.tgz", 1291 - "integrity": "sha512-lS9D1aP6XFAIQNjmTCxEugsaTWJXw9a2XIgFk3Km74VFVSLX1gnJI+6kGEX7QsS5by6wQwrqLxRjgWGMQ/HMrA==", 1289 + "version": "3.8.0", 1290 + "resolved": "https://registry.npmjs.org/@mongosh/editor/-/editor-3.8.0.tgz", 1291 + "integrity": "sha512-aEhGgzC8jpr0hN4aHpP/WR8uej8ZPPWX1yZduYLJia1oy6PvaPiVksfQRgtEAFjdOQXcwKfMal7+PYvhZoYD5w==", 1292 1292 "license": "Apache-2.0", 1293 1293 "dependencies": { 1294 - "@mongosh/js-multiline-to-singleline": "2.4.4", 1295 - "@mongosh/service-provider-core": "3.0.4", 1296 - "@mongosh/shell-api": "3.4.0", 1297 - "@mongosh/shell-evaluator": "3.4.0", 1298 - "@mongosh/types": "3.4.0", 1294 + "@mongosh/js-multiline-to-singleline": "2.4.6", 1295 + "@mongosh/service-provider-core": "3.1.0", 1296 + "@mongosh/shell-api": "3.8.0", 1297 + "@mongosh/shell-evaluator": "3.8.0", 1298 + "@mongosh/types": "3.6.0", 1299 1299 "js-beautify": "^1.15.1" 1300 1300 }, 1301 1301 "engines": { ··· 1312 1312 } 1313 1313 }, 1314 1314 "node_modules/@mongosh/history": { 1315 - "version": "2.4.4", 1316 - "resolved": "https://registry.npmjs.org/@mongosh/history/-/history-2.4.4.tgz", 1317 - "integrity": "sha512-MyXfvloJuv/FkGk2zeNpYdraxIqw2Uh9v983HKOh0sz+Y79CBLww/IpvV9eJWUe5FF1f7fHf2oQw+b9yUoTKow==", 1315 + "version": "2.4.6", 1316 + "resolved": "https://registry.npmjs.org/@mongosh/history/-/history-2.4.6.tgz", 1317 + "integrity": "sha512-vEPJ0Y1FUM9aSxw/OQiV6QfAy0AjwZn9tMvFY27m4786jEM3hpJIPwDIRe33i7/hankLz8umsFrSTAnrT3icQw==", 1318 1318 "license": "Apache-2.0", 1319 1319 "dependencies": { 1320 1320 "mongodb-connection-string-url": "^3.0.1", ··· 1325 1325 } 1326 1326 }, 1327 1327 "node_modules/@mongosh/i18n": { 1328 - "version": "2.8.0", 1329 - "resolved": "https://registry.npmjs.org/@mongosh/i18n/-/i18n-2.8.0.tgz", 1330 - "integrity": "sha512-YowX9nS/bXP+WaI+R1S/WdodB6uAFKALi1I8t9pK2ynkQu7aSHIkB4nzv6OB36icJS+XUO5Gx1IquC64HKoMew==", 1328 + "version": "2.11.0", 1329 + "resolved": "https://registry.npmjs.org/@mongosh/i18n/-/i18n-2.11.0.tgz", 1330 + "integrity": "sha512-juPSFP2+VMoC4Z6m9pVH/AChGSUtFA+LU3oIU6OlMNaCrVN2Hdz8hpL2mJn8prWdZdxTw+P0hBbqmqVusMKr8A==", 1331 1331 "license": "Apache-2.0", 1332 1332 "dependencies": { 1333 1333 "@mongosh/errors": "2.4.0" ··· 1337 1337 } 1338 1338 }, 1339 1339 "node_modules/@mongosh/js-multiline-to-singleline": { 1340 - "version": "2.4.4", 1341 - "resolved": "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.4.4.tgz", 1342 - "integrity": "sha512-mfPmw4CMMWI7YZiV/K7Kau2UqSPLuPha1YVUgpInLP7kHwCtZGj/IW9StQjWaMKWW/k5VOgTdHxeo9afyk+97w==", 1340 + "version": "2.4.6", 1341 + "resolved": "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.4.6.tgz", 1342 + "integrity": "sha512-ALaGE6CaXnGdbDK5Vgb9YOIQiVrnqwB6eDpmXBhYE6EEHUKMjy5s6ybvtAASzN3aHHzvt4nvqiAg8U58fYNjHQ==", 1343 1343 "license": "Apache-2.0", 1344 1344 "dependencies": { 1345 1345 "@babel/core": "^7.16.12", ··· 1350 1350 } 1351 1351 }, 1352 1352 "node_modules/@mongosh/logging": { 1353 - "version": "3.4.0", 1354 - "resolved": "https://registry.npmjs.org/@mongosh/logging/-/logging-3.4.0.tgz", 1355 - "integrity": "sha512-xb1fpIJ/HvHAAe+dWKA4axpQc++0kdy/wuQJu6QSFe6K3ooPfNNvHtzDGwhoIO4v2j3kes04CMKBO/YaPHpPBw==", 1353 + "version": "3.6.0", 1354 + "resolved": "https://registry.npmjs.org/@mongosh/logging/-/logging-3.6.0.tgz", 1355 + "integrity": "sha512-f0fkAVNzV9Ja90DPpeQv2KL9zoYauUQh+ejoong4X88sEw5n1bYVOvng9Ic3tJFioGlcuWVe1waDDMio5SWElA==", 1356 1356 "license": "Apache-2.0", 1357 1357 "dependencies": { 1358 1358 "@mongodb-js/devtools-connect": "^3.4.1", 1359 1359 "@mongosh/errors": "2.4.0", 1360 - "@mongosh/history": "2.4.4", 1361 - "@mongosh/types": "3.4.0", 1360 + "@mongosh/history": "2.4.6", 1361 + "@mongosh/types": "3.6.0", 1362 1362 "mongodb-log-writer": "^2.3.1", 1363 1363 "mongodb-redact": "^1.1.5" 1364 1364 }, ··· 1367 1367 } 1368 1368 }, 1369 1369 "node_modules/@mongosh/service-provider-core": { 1370 - "version": "3.0.4", 1371 - "resolved": "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-3.0.4.tgz", 1372 - "integrity": "sha512-wEt+UbnChid06TgscY64r99WRYVzD5z9OFsEQRA+cByuayx4Gvf7A1aqObjD5WGb75nLcX1RgV0Pu8Yvv3F+hQ==", 1370 + "version": "3.1.0", 1371 + "resolved": "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-3.1.0.tgz", 1372 + "integrity": "sha512-QSmTzmiD1Tlj9liWSqZJni12B8Afrqii3BoB96LMLHxPRkzTu+H9nWwYOF0d+IQaab7wW2HWDlpSJYhzgQdCKA==", 1373 1373 "license": "Apache-2.0", 1374 1374 "dependencies": { 1375 1375 "@aws-sdk/credential-providers": "^3.525.0", 1376 1376 "@mongosh/errors": "2.4.0", 1377 1377 "bson": "^6.10.3", 1378 - "mongodb": "^6.13.0", 1378 + "mongodb": "^6.14.2", 1379 1379 "mongodb-build-info": "^1.7.2", 1380 1380 "mongodb-connection-string-url": "^3.0.1" 1381 1381 }, ··· 1383 1383 "node": ">=14.15.1" 1384 1384 }, 1385 1385 "optionalDependencies": { 1386 - "mongodb-client-encryption": "^6.1.1" 1386 + "mongodb-client-encryption": "^6.3.0" 1387 1387 } 1388 1388 }, 1389 1389 "node_modules/@mongosh/service-provider-node-driver": { 1390 - "version": "3.4.0", 1391 - "resolved": "https://registry.npmjs.org/@mongosh/service-provider-node-driver/-/service-provider-node-driver-3.4.0.tgz", 1392 - "integrity": "sha512-8Wd0WQu8GkhjjsWIsydYveWtjPS5dXIRA5aXxayef/hTMpfpAV4kr6tY+WkhH4cNZg+dnrAzaajmhBOnz8TojQ==", 1390 + "version": "3.6.0", 1391 + "resolved": "https://registry.npmjs.org/@mongosh/service-provider-node-driver/-/service-provider-node-driver-3.6.0.tgz", 1392 + "integrity": "sha512-VOmOQ11qcz+nYjOyB/6nXuoZcLRSDLc+tVjt/ePtdC/5XQKSZB/Pwn9riBmnqOXleST8ATmmf6z9m44viSNpQg==", 1393 1393 "license": "Apache-2.0", 1394 1394 "dependencies": { 1395 1395 "@mongodb-js/devtools-connect": "^3.4.1", 1396 - "@mongodb-js/oidc-plugin": "^1.1.5", 1396 + "@mongodb-js/oidc-plugin": "^1.1.6", 1397 1397 "@mongosh/errors": "2.4.0", 1398 - "@mongosh/service-provider-core": "3.0.4", 1399 - "@mongosh/types": "3.4.0", 1398 + "@mongosh/service-provider-core": "3.1.0", 1399 + "@mongosh/types": "3.6.0", 1400 1400 "aws4": "^1.12.0", 1401 - "mongodb": "^6.13.0", 1401 + "mongodb": "^6.14.2", 1402 1402 "mongodb-connection-string-url": "^3.0.1", 1403 1403 "socks": "^2.8.3" 1404 1404 }, ··· 1468 1468 } 1469 1469 }, 1470 1470 "node_modules/@mongosh/shell-api": { 1471 - "version": "3.4.0", 1472 - "resolved": "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-3.4.0.tgz", 1473 - "integrity": "sha512-f33ZKjL2JEDfM+1wE9x3Wc/KExuiZgChv4SVJs0PgY8w6L3/dYUCFDPyxV43Wj7GttwSwxqNrxvW/fIpmjxzuQ==", 1471 + "version": "3.8.0", 1472 + "resolved": "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-3.8.0.tgz", 1473 + "integrity": "sha512-lZLa2ivb4EakGO5SQCvztQflLHoaF898crI8OuuFrWzGsrAcCyVFFXAFrphapufzx8mBCgmn2xip+xvsoLIrxA==", 1474 1474 "license": "Apache-2.0", 1475 1475 "dependencies": { 1476 - "@mongosh/arg-parser": "3.4.0", 1476 + "@mongosh/arg-parser": "3.8.0", 1477 1477 "@mongosh/errors": "2.4.0", 1478 - "@mongosh/history": "2.4.4", 1479 - "@mongosh/i18n": "2.8.0", 1480 - "@mongosh/service-provider-core": "3.0.4", 1478 + "@mongosh/history": "2.4.6", 1479 + "@mongosh/i18n": "^2.11.0", 1480 + "@mongosh/service-provider-core": "3.1.0", 1481 1481 "mongodb-redact": "^1.1.5" 1482 1482 }, 1483 1483 "engines": { ··· 1485 1485 } 1486 1486 }, 1487 1487 "node_modules/@mongosh/shell-evaluator": { 1488 - "version": "3.4.0", 1489 - "resolved": "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-3.4.0.tgz", 1490 - "integrity": "sha512-hyTySitzL6YoFkbKf4TbTEjx2nWVUZ7ZEL8w0YcBN4pU4fAelDj5SSk6f4Fpy+wdmgP039bqsulLMpzESLko0A==", 1488 + "version": "3.8.0", 1489 + "resolved": "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-3.8.0.tgz", 1490 + "integrity": "sha512-0ASfL5phYr12QGRzeiN+WUsTXwRbsnF8b6S5jrJ7k8YILLuTAPAEoT8lkRaC1ThjZraPVhuD84STf5eYk5JnPA==", 1491 1491 "license": "Apache-2.0", 1492 1492 "dependencies": { 1493 - "@mongosh/async-rewriter2": "2.4.4", 1494 - "@mongosh/history": "2.4.4", 1495 - "@mongosh/shell-api": "3.4.0" 1493 + "@mongosh/async-rewriter2": "2.4.6", 1494 + "@mongosh/history": "2.4.6", 1495 + "@mongosh/shell-api": "3.8.0" 1496 1496 }, 1497 1497 "engines": { 1498 1498 "node": ">=14.15.1" 1499 1499 } 1500 1500 }, 1501 1501 "node_modules/@mongosh/snippet-manager": { 1502 - "version": "3.4.0", 1503 - "resolved": "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-3.4.0.tgz", 1504 - "integrity": "sha512-VyIia+Swm7ZyaZFKO0ZGX2skTAH3i1gTZiTFT8up4IG4J/MrIi0fCRzz8Mb8XpHpZ4IpHsDhMDt5FmsxxX3Vmw==", 1502 + "version": "3.8.0", 1503 + "resolved": "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-3.8.0.tgz", 1504 + "integrity": "sha512-ziQAqD8zib/ISWMRvqMxsi/rs7sq1abu1zVueTQfF2DqUCm0rIj3tAyB4mjEn3gPw/oNN8P782M4dYtn/HB1tA==", 1505 1505 "license": "Apache-2.0", 1506 1506 "dependencies": { 1507 1507 "@mongodb-js/devtools-proxy-support": "^0.4.2", 1508 1508 "@mongosh/errors": "2.4.0", 1509 - "@mongosh/shell-api": "3.4.0", 1510 - "@mongosh/types": "3.4.0", 1509 + "@mongosh/shell-api": "3.8.0", 1510 + "@mongosh/types": "3.6.0", 1511 1511 "bson": "^6.10.3", 1512 1512 "cross-spawn": "^7.0.5", 1513 1513 "escape-string-regexp": "^4.0.0", ··· 1519 1519 } 1520 1520 }, 1521 1521 "node_modules/@mongosh/types": { 1522 - "version": "3.4.0", 1523 - "resolved": "https://registry.npmjs.org/@mongosh/types/-/types-3.4.0.tgz", 1524 - "integrity": "sha512-LEGt7Qijc8M/lYGd6Xx++2nlCfTb4NNNvL1D1TBqz3tPaiZHu4g/svV1sjwArsTTQrMAfNc7cDBXLHJQ5A6gRA==", 1522 + "version": "3.6.0", 1523 + "resolved": "https://registry.npmjs.org/@mongosh/types/-/types-3.6.0.tgz", 1524 + "integrity": "sha512-p6NXCTa4FjjTQAQJk9OehfXKFIE/vdQJOqcMbVR3Cxg2zVCnfV16NDnuxpFHYnLkgqL9Cz10BtUGSZPDMFJXew==", 1525 1525 "license": "Apache-2.0", 1526 1526 "dependencies": { 1527 1527 "@mongodb-js/devtools-connect": "^3.4.1" ··· 1656 1656 } 1657 1657 }, 1658 1658 "node_modules/@smithy/core": { 1659 - "version": "3.1.4", 1660 - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.1.4.tgz", 1661 - "integrity": "sha512-wFExFGK+7r2wYriOqe7RRIBNpvxwiS95ih09+GSLRBdoyK/O1uZA7K7pKesj5CBvwJuSBeXwLyR88WwIAY+DGA==", 1659 + "version": "3.1.5", 1660 + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.1.5.tgz", 1661 + "integrity": "sha512-HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA==", 1662 1662 "license": "Apache-2.0", 1663 1663 "dependencies": { 1664 1664 "@smithy/middleware-serde": "^4.0.2", ··· 1666 1666 "@smithy/types": "^4.1.0", 1667 1667 "@smithy/util-body-length-browser": "^4.0.0", 1668 1668 "@smithy/util-middleware": "^4.0.1", 1669 - "@smithy/util-stream": "^4.1.1", 1669 + "@smithy/util-stream": "^4.1.2", 1670 1670 "@smithy/util-utf8": "^4.0.0", 1671 1671 "tslib": "^2.6.2" 1672 1672 }, ··· 1761 1761 } 1762 1762 }, 1763 1763 "node_modules/@smithy/middleware-endpoint": { 1764 - "version": "4.0.5", 1765 - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.5.tgz", 1766 - "integrity": "sha512-cPzGZV7qStHwboFrm6GfrzQE+YDiCzWcTh4+7wKrP/ZQ4gkw+r7qDjV8GjM4N0UYsuUyLfpzLGg5hxsYTU11WA==", 1764 + "version": "4.0.6", 1765 + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz", 1766 + "integrity": "sha512-ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg==", 1767 1767 "license": "Apache-2.0", 1768 1768 "dependencies": { 1769 - "@smithy/core": "^3.1.4", 1769 + "@smithy/core": "^3.1.5", 1770 1770 "@smithy/middleware-serde": "^4.0.2", 1771 1771 "@smithy/node-config-provider": "^4.0.1", 1772 1772 "@smithy/shared-ini-file-loader": "^4.0.1", ··· 1780 1780 } 1781 1781 }, 1782 1782 "node_modules/@smithy/middleware-retry": { 1783 - "version": "4.0.6", 1784 - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.6.tgz", 1785 - "integrity": "sha512-s8QzuOQnbdvRymD9Gt9c9zMq10wUQAHQ3z72uirrBHCwZcLTrL5iCOuVTMdka2IXOYhQE890WD5t6G24+F+Qcg==", 1783 + "version": "4.0.7", 1784 + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz", 1785 + "integrity": "sha512-58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ==", 1786 1786 "license": "Apache-2.0", 1787 1787 "dependencies": { 1788 1788 "@smithy/node-config-provider": "^4.0.1", 1789 1789 "@smithy/protocol-http": "^5.0.1", 1790 1790 "@smithy/service-error-classification": "^4.0.1", 1791 - "@smithy/smithy-client": "^4.1.5", 1791 + "@smithy/smithy-client": "^4.1.6", 1792 1792 "@smithy/types": "^4.1.0", 1793 1793 "@smithy/util-middleware": "^4.0.1", 1794 1794 "@smithy/util-retry": "^4.0.1", ··· 1841 1841 } 1842 1842 }, 1843 1843 "node_modules/@smithy/node-http-handler": { 1844 - "version": "4.0.2", 1845 - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.2.tgz", 1846 - "integrity": "sha512-X66H9aah9hisLLSnGuzRYba6vckuFtGE+a5DcHLliI/YlqKrGoxhisD5XbX44KyoeRzoNlGr94eTsMVHFAzPOw==", 1844 + "version": "4.0.3", 1845 + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.3.tgz", 1846 + "integrity": "sha512-dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA==", 1847 1847 "license": "Apache-2.0", 1848 1848 "dependencies": { 1849 1849 "@smithy/abort-controller": "^4.0.1", ··· 1954 1954 } 1955 1955 }, 1956 1956 "node_modules/@smithy/smithy-client": { 1957 - "version": "4.1.5", 1958 - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.5.tgz", 1959 - "integrity": "sha512-DMXYoYeL4QkElr216n1yodTFeATbfb4jwYM9gKn71Rw/FNA1/Sm36tkTSCsZEs7mgpG3OINmkxL9vgVFzyGPaw==", 1957 + "version": "4.1.6", 1958 + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.6.tgz", 1959 + "integrity": "sha512-UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw==", 1960 1960 "license": "Apache-2.0", 1961 1961 "dependencies": { 1962 - "@smithy/core": "^3.1.4", 1963 - "@smithy/middleware-endpoint": "^4.0.5", 1962 + "@smithy/core": "^3.1.5", 1963 + "@smithy/middleware-endpoint": "^4.0.6", 1964 1964 "@smithy/middleware-stack": "^4.0.1", 1965 1965 "@smithy/protocol-http": "^5.0.1", 1966 1966 "@smithy/types": "^4.1.0", 1967 - "@smithy/util-stream": "^4.1.1", 1967 + "@smithy/util-stream": "^4.1.2", 1968 1968 "tslib": "^2.6.2" 1969 1969 }, 1970 1970 "engines": { ··· 2061 2061 } 2062 2062 }, 2063 2063 "node_modules/@smithy/util-defaults-mode-browser": { 2064 - "version": "4.0.6", 2065 - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.6.tgz", 2066 - "integrity": "sha512-N8+VCt+piupH1A7DgSVDNrVHqRLz8r6DvBkpS7EWHiIxsUk4jqGuQLjqC/gnCzmwGkVBdNruHoYAzzaSQ8e80w==", 2064 + "version": "4.0.7", 2065 + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz", 2066 + "integrity": "sha512-CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q==", 2067 2067 "license": "Apache-2.0", 2068 2068 "dependencies": { 2069 2069 "@smithy/property-provider": "^4.0.1", 2070 - "@smithy/smithy-client": "^4.1.5", 2070 + "@smithy/smithy-client": "^4.1.6", 2071 2071 "@smithy/types": "^4.1.0", 2072 2072 "bowser": "^2.11.0", 2073 2073 "tslib": "^2.6.2" ··· 2077 2077 } 2078 2078 }, 2079 2079 "node_modules/@smithy/util-defaults-mode-node": { 2080 - "version": "4.0.6", 2081 - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.6.tgz", 2082 - "integrity": "sha512-9zhx1shd1VwSSVvLZB8CM3qQ3RPD3le7A3h/UPuyh/PC7g4OaWDi2xUNzamsVoSmCGtmUBONl56lM2EU6LcH7A==", 2080 + "version": "4.0.7", 2081 + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz", 2082 + "integrity": "sha512-79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ==", 2083 2083 "license": "Apache-2.0", 2084 2084 "dependencies": { 2085 2085 "@smithy/config-resolver": "^4.0.1", 2086 2086 "@smithy/credential-provider-imds": "^4.0.1", 2087 2087 "@smithy/node-config-provider": "^4.0.1", 2088 2088 "@smithy/property-provider": "^4.0.1", 2089 - "@smithy/smithy-client": "^4.1.5", 2089 + "@smithy/smithy-client": "^4.1.6", 2090 2090 "@smithy/types": "^4.1.0", 2091 2091 "tslib": "^2.6.2" 2092 2092 }, ··· 2148 2148 } 2149 2149 }, 2150 2150 "node_modules/@smithy/util-stream": { 2151 - "version": "4.1.1", 2152 - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.1.tgz", 2153 - "integrity": "sha512-+Xvh8nhy0Wjv1y71rBVyV3eJU3356XsFQNI8dEZVNrQju7Eib8G31GWtO+zMa9kTCGd41Mflu+ZKfmQL/o2XzQ==", 2151 + "version": "4.1.2", 2152 + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.2.tgz", 2153 + "integrity": "sha512-44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw==", 2154 2154 "license": "Apache-2.0", 2155 2155 "dependencies": { 2156 2156 "@smithy/fetch-http-handler": "^5.0.1", 2157 - "@smithy/node-http-handler": "^4.0.2", 2157 + "@smithy/node-http-handler": "^4.0.3", 2158 2158 "@smithy/types": "^4.1.0", 2159 2159 "@smithy/util-base64": "^4.0.0", 2160 2160 "@smithy/util-buffer-from": "^4.0.0", ··· 2213 2213 } 2214 2214 }, 2215 2215 "node_modules/abbrev": { 2216 - "version": "3.0.0", 2217 - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz", 2218 - "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==", 2216 + "version": "2.0.0", 2217 + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", 2218 + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", 2219 2219 "license": "ISC", 2220 2220 "engines": { 2221 - "node": "^18.17.0 || >=20.5.0" 2221 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 2222 2222 } 2223 2223 }, 2224 2224 "node_modules/accepts": { ··· 2235 2235 } 2236 2236 }, 2237 2237 "node_modules/acorn": { 2238 - "version": "8.14.0", 2239 - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 2240 - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 2238 + "version": "8.14.1", 2239 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 2240 + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 2241 2241 "license": "MIT", 2242 2242 "bin": { 2243 2243 "acorn": "bin/acorn" ··· 2706 2706 } 2707 2707 }, 2708 2708 "node_modules/call-bound": { 2709 - "version": "1.0.3", 2710 - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", 2711 - "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", 2709 + "version": "1.0.4", 2710 + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 2711 + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 2712 2712 "license": "MIT", 2713 2713 "dependencies": { 2714 - "call-bind-apply-helpers": "^1.0.1", 2715 - "get-intrinsic": "^1.2.6" 2714 + "call-bind-apply-helpers": "^1.0.2", 2715 + "get-intrinsic": "^1.3.0" 2716 2716 }, 2717 2717 "engines": { 2718 2718 "node": ">= 0.4" ··· 2722 2722 } 2723 2723 }, 2724 2724 "node_modules/caniuse-lite": { 2725 - "version": "1.0.30001700", 2726 - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz", 2727 - "integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==", 2725 + "version": "1.0.30001702", 2726 + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz", 2727 + "integrity": "sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==", 2728 2728 "funding": [ 2729 2729 { 2730 2730 "type": "opencollective", ··· 3068 3068 "license": "MIT" 3069 3069 }, 3070 3070 "node_modules/electron-to-chromium": { 3071 - "version": "1.5.103", 3072 - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.103.tgz", 3073 - "integrity": "sha512-P6+XzIkfndgsrjROJWfSvVEgNHtPgbhVyTkwLjUM2HU/h7pZRORgaTlHqfAikqxKmdJMLW8fftrdGWbd/Ds0FA==", 3071 + "version": "1.5.113", 3072 + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.113.tgz", 3073 + "integrity": "sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==", 3074 3074 "license": "ISC" 3075 3075 }, 3076 3076 "node_modules/emoji-regex": { ··· 3430 3430 "license": "MIT" 3431 3431 }, 3432 3432 "node_modules/foreground-child": { 3433 - "version": "3.3.0", 3434 - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 3435 - "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 3433 + "version": "3.3.1", 3434 + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", 3435 + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", 3436 3436 "license": "ISC", 3437 3437 "dependencies": { 3438 - "cross-spawn": "^7.0.0", 3438 + "cross-spawn": "^7.0.6", 3439 3439 "signal-exit": "^4.0.1" 3440 3440 }, 3441 3441 "engines": { ··· 4019 4019 } 4020 4020 }, 4021 4021 "node_modules/js-beautify": { 4022 - "version": "1.15.3", 4023 - "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.3.tgz", 4024 - "integrity": "sha512-rKKGuyTxGNlyN4EQKWzNndzXpi0bOl8Gl8YQAW1as/oMz0XhD6sHJO1hTvoBDOSzKuJb9WkwoAb34FfdkKMv2A==", 4022 + "version": "1.15.4", 4023 + "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.4.tgz", 4024 + "integrity": "sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==", 4025 4025 "license": "MIT", 4026 4026 "dependencies": { 4027 4027 "config-chain": "^1.1.13", 4028 4028 "editorconfig": "^1.0.4", 4029 4029 "glob": "^10.4.2", 4030 4030 "js-cookie": "^3.0.5", 4031 - "nopt": "^8.0.0" 4031 + "nopt": "^7.2.1" 4032 4032 }, 4033 4033 "bin": { 4034 4034 "css-beautify": "js/bin/css-beautify.js", ··· 4347 4347 "optional": true 4348 4348 }, 4349 4349 "node_modules/mongodb": { 4350 - "version": "6.13.1", 4351 - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.13.1.tgz", 4352 - "integrity": "sha512-gdq40tX8StmhP6akMp1pPoEVv+9jTYFSrga/g23JxajPAQhH39ysZrHGzQCSd9PEOnuEQEdjIWqxO7ZSwC0w7Q==", 4350 + "version": "6.14.2", 4351 + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.14.2.tgz", 4352 + "integrity": "sha512-kMEHNo0F3P6QKDq17zcDuPeaywK/YaJVCEQRzPF3TOM/Bl9MFg64YE5Tu7ifj37qZJMhwU1tl2Ioivws5gRG5Q==", 4353 4353 "license": "Apache-2.0", 4354 4354 "dependencies": { 4355 4355 "@mongodb-js/saslprep": "^1.1.9", ··· 4360 4360 "node": ">=16.20.1" 4361 4361 }, 4362 4362 "peerDependencies": { 4363 - "@aws-sdk/credential-providers": "^3.632.0", 4363 + "@aws-sdk/credential-providers": "^3.188.0", 4364 4364 "@mongodb-js/zstd": "^1.1.0 || ^2.0.0", 4365 4365 "gcp-metadata": "^5.2.0", 4366 4366 "kerberos": "^2.0.1", ··· 4402 4402 } 4403 4403 }, 4404 4404 "node_modules/mongodb-client-encryption": { 4405 - "version": "6.2.0", 4406 - "resolved": "https://registry.npmjs.org/mongodb-client-encryption/-/mongodb-client-encryption-6.2.0.tgz", 4407 - "integrity": "sha512-jfOCthPH0jxd9RJCerNbf1aRAcUJFwiWikJ2j9oBPRc+Oets3aKUriyZe4n16sF3Ibc1xar1zNInAfHEcVtYRg==", 4405 + "version": "6.3.0", 4406 + "resolved": "https://registry.npmjs.org/mongodb-client-encryption/-/mongodb-client-encryption-6.3.0.tgz", 4407 + "integrity": "sha512-OaOg02vglPxxrfY01alC0ER0W4WMuNO2ZJR3ehAUcuGYreJaJ+aX+rUQiQkdQHiXvnVPDUx/4QDr2CR1/FvpcQ==", 4408 4408 "hasInstallScript": true, 4409 4409 "license": "Apache-2.0", 4410 4410 "optional": true, ··· 4442 4442 } 4443 4443 }, 4444 4444 "node_modules/mongodb-log-writer": { 4445 - "version": "2.3.4", 4446 - "resolved": "https://registry.npmjs.org/mongodb-log-writer/-/mongodb-log-writer-2.3.4.tgz", 4447 - "integrity": "sha512-Z2rXUotJX3DVBlRN8y2Dzv26/SnEYlD7gh3uzvxL2myFKfyB2zQjY8DeQWb11WEam9v9LF9VwhndapLOTkJ+yA==", 4445 + "version": "2.4.0", 4446 + "resolved": "https://registry.npmjs.org/mongodb-log-writer/-/mongodb-log-writer-2.4.0.tgz", 4447 + "integrity": "sha512-t/OcqDLl+JaVKnP7g3Zz3mCCowIAW5rp8AxD1IqVxy5rVApV332JHk5NkedtuHlRVIsN/qCujH4ezZZmoP16IQ==", 4448 4448 "license": "Apache-2.0", 4449 4449 "dependencies": { 4450 4450 "heap-js": "^2.3.0" ··· 4466 4466 "license": "MIT" 4467 4467 }, 4468 4468 "node_modules/nan": { 4469 - "version": "2.22.1", 4470 - "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.1.tgz", 4471 - "integrity": "sha512-pfRR4ZcNTSm2ZFHaztuvbICf+hyiG6ecA06SfAxoPmuHjvMu0KUIae7Y8GyVkbBqeEIidsmXeYooWIX9+qjfRQ==", 4469 + "version": "2.22.2", 4470 + "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz", 4471 + "integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==", 4472 4472 "license": "MIT", 4473 4473 "optional": true 4474 4474 }, ··· 4561 4561 "license": "MIT" 4562 4562 }, 4563 4563 "node_modules/nopt": { 4564 - "version": "8.1.0", 4565 - "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz", 4566 - "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==", 4564 + "version": "7.2.1", 4565 + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", 4566 + "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", 4567 4567 "license": "ISC", 4568 4568 "dependencies": { 4569 - "abbrev": "^3.0.0" 4569 + "abbrev": "^2.0.0" 4570 4570 }, 4571 4571 "bin": { 4572 4572 "nopt": "bin/nopt.js" 4573 4573 }, 4574 4574 "engines": { 4575 - "node": "^18.17.0 || >=20.5.0" 4575 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 4576 4576 } 4577 4577 }, 4578 4578 "node_modules/npm-run-path": { ··· 5572 5572 } 5573 5573 }, 5574 5574 "node_modules/strnum": { 5575 - "version": "1.1.1", 5576 - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.1.tgz", 5577 - "integrity": "sha512-O7aCHfYCamLCctjAiaucmE+fHf2DYHkus2OKCn4Wv03sykfFtgeECn505X6K4mPl8CRNd/qurC9guq+ynoN4pw==", 5575 + "version": "1.1.2", 5576 + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz", 5577 + "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==", 5578 5578 "funding": [ 5579 5579 { 5580 5580 "type": "github", ··· 5764 5764 } 5765 5765 }, 5766 5766 "node_modules/update-browserslist-db": { 5767 - "version": "1.1.2", 5768 - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", 5769 - "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", 5767 + "version": "1.1.3", 5768 + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 5769 + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 5770 5770 "funding": [ 5771 5771 { 5772 5772 "type": "opencollective",
+4 -4
pkgs/by-name/mo/mongosh/source.json
··· 1 1 { 2 - "version": "2.4.0", 3 - "integrity": "sha512-CFpdfmJTpPFhKCfpNHkif5iPs/xnBBrBqA3xnBIOcOj0RxjKJzraRxpQqS/z1xdKZvWivfHtj3OIHJkvx/pwxQ==", 4 - "filename": "mongosh-2.4.0.tgz", 5 - "deps": "sha256-KN2MRQ3pSQe8wdmkTO0dysiWdFVzk4rZ/VG6FFPrstE=" 2 + "version": "2.4.2", 3 + "integrity": "sha512-sNgCITVstYsOkHDH05//wGQ/FJnFfq5gHGoHpIMehX/r2vSm3LEcCW366JlLvRmFj/f4NRGjvFI9c1Ks30W+Zw==", 4 + "filename": "mongosh-2.4.2.tgz", 5 + "deps": "sha256-aXjK0cW48nih2nI/m2i25zRpmLQ/KHo0KMiNJSvb13g=" 6 6 }
+2 -2
pkgs/by-name/ne/nezha-theme-nazhua/package.nix
··· 12 12 13 13 stdenvNoCC.mkDerivation (finalAttrs: { 14 14 pname = "nezha-theme-nazhua"; 15 - version = "0.5.8"; 15 + version = "0.6.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "hi2shark"; 19 19 repo = "nazhua"; 20 20 tag = "v${finalAttrs.version}"; 21 - hash = "sha256-aRHMOyTWBYXgVBAXshQNHds+KZn4F8Gz9mzazIwT5TQ="; 21 + hash = "sha256-LxQkqLA2FUtuOMF7aRqUKZgRazqFEr3JrykJubMEUd0="; 22 22 }; 23 23 24 24 yarnOfflineCache = fetchYarnDeps {
+2 -2
pkgs/by-name/nw/nwg-look/package.nix
··· 13 13 14 14 buildGoModule rec { 15 15 pname = "nwg-look"; 16 - version = "1.0.2"; 16 + version = "1.0.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "nwg-piotr"; 20 20 repo = "nwg-look"; 21 21 rev = "v${version}"; 22 - hash = "sha256-fvL7AGplIGlSEXlV3lCrBogAu2rD2XZKYTfHKK6Ztjc="; 22 + hash = "sha256-02BzYhWWPPaNR0bt1cNn0H40hkLaSlcJHZx1eilluwI="; 23 23 }; 24 24 25 25 vendorHash = "sha256-J9Wc5MCgztzzYnjm3lAREmYLGPyuCX9Xr+qhAwf9Fzg=";
+13
pkgs/by-name/oa/oauth2-proxy/fix-tests-go-1.24.diff
··· 1 + diff --git a/pkg/apis/options/load_test.go b/pkg/apis/options/load_test.go 2 + index 32d52fb8..ef343fd1 100644 3 + --- a/pkg/apis/options/load_test.go 4 + +++ b/pkg/apis/options/load_test.go 5 + @@ -470,7 +470,7 @@ func(in loadYAMLTableInput) { 6 + configFile: []byte(`stringSliceOption: "a"`), 7 + input: &TestOptions{}, 8 + expectedOutput: &TestOptions{}, 9 + - expectedErr: errors.New("error unmarshalling config: error unmarshaling JSON: while decoding JSON: json: cannot unmarshal string into Go struct field TestOptions.StringSliceOption of type []string"), 10 + + expectedErr: errors.New("error unmarshalling config: error unmarshaling JSON: while decoding JSON: json: cannot unmarshal string into Go struct field TestOptions.TestOptionSubStruct.StringSliceOption of type []string"), 11 + }), 12 + Entry("with a config file containing environment variable references", loadYAMLTableInput{ 13 + configFile: []byte("stringOption: ${TESTUSER}"),
+6 -3
pkgs/by-name/oa/oauth2-proxy/package.nix
··· 1 1 { 2 2 lib, 3 - buildGo123Module, 3 + buildGoModule, 4 4 fetchFromGitHub, 5 5 }: 6 6 7 - # tests fail in a weird way on 1.24 8 - buildGo123Module rec { 7 + buildGoModule rec { 9 8 pname = "oauth2-proxy"; 10 9 version = "7.8.1"; 11 10 ··· 15 14 sha256 = "sha256-NU9/BLyTEWGqt9SJNbvF4kSG/op8TEpYV2A24/V29PM="; 16 15 rev = "v${version}"; 17 16 }; 17 + 18 + patches = [ 19 + ./fix-tests-go-1.24.diff 20 + ]; 18 21 19 22 vendorHash = "sha256-t/SJjh9bcsIevr3S0ysDlvtaIGzkks+qvfXF5/SEidE="; 20 23
+27 -16
pkgs/by-name/op/opendungeons/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 + ogre_13, 5 + cegui, 4 6 fetchFromGitHub, 7 + 8 + # nativeBuildInputs 5 9 cmake, 6 10 pkg-config, 7 - ogre_13, 8 - cegui, 9 - boost, 10 - sfml, 11 - openal, 11 + 12 + # buildInputs 13 + boost183, 12 14 ois, 15 + openal, 16 + sfml, 17 + 18 + # passthru 19 + unstableGitUpdater, 13 20 }: 14 21 15 22 let ··· 24 31 in 25 32 stdenv.mkDerivation { 26 33 pname = "opendungeons"; 27 - version = "unstable-2023-03-18"; 34 + version = "0-unstable-2024-07-27"; 28 35 29 36 src = fetchFromGitHub { 30 37 owner = "paroj"; 31 38 repo = "OpenDungeons"; 32 - rev = "974378d75591214dccbe0fb26e6ec8a40c2156e0"; 33 - hash = "sha256-vz9cT+rNcyKT3W9I9VRKcFol2SH1FhOhOALALjgKfIE="; 39 + rev = "2574db9fbe99aeb6a058b7a27bc191da37978c95"; 40 + hash = "sha256-EeyLwZmaVzzbxPA4PIooVbw12wYb131x+rnIB8n4fgg="; 34 41 }; 35 42 36 43 patches = [ ··· 51 58 ]; 52 59 53 60 buildInputs = [ 54 - ogre' 61 + boost183 55 62 cegui' 56 - boost 57 - sfml 58 - openal 63 + ogre' 59 64 ois 65 + openal 66 + sfml 60 67 ]; 61 68 62 69 cmakeFlags = [ 63 - "-DOD_TREAT_WARNINGS_AS_ERRORS=FALSE" 70 + (lib.cmakeBool "OD_TREAT_WARNINGS_AS_ERRORS" false) 64 71 ]; 65 72 66 - meta = with lib; { 73 + passthru = { 74 + updateScript = unstableGitUpdater { }; 75 + }; 76 + 77 + meta = { 67 78 description = "Open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius"; 68 79 mainProgram = "opendungeons"; 69 80 homepage = "https://opendungeons.github.io"; 70 - license = with licenses; [ 81 + license = with lib.licenses; [ 71 82 gpl3Plus 72 83 zlib 73 84 mit ··· 76 87 ofl 77 88 cc-by-30 78 89 ]; 79 - platforms = platforms.linux; 90 + platforms = lib.platforms.linux; 80 91 }; 81 92 }
+7 -8
pkgs/by-name/op/opengamepadui/package.nix
··· 5 5 dbus, 6 6 fetchFromGitHub, 7 7 gamescope, 8 - godot_4, 9 - godot_4-export-templates, 8 + godot_4_3, 10 9 hwdata, 11 10 lib, 12 11 libGL, ··· 46 45 nativeBuildInputs = [ 47 46 autoPatchelfHook 48 47 cargo 49 - godot_4 50 - godot_4-export-templates 48 + godot_4_3 49 + godot_4_3.export-templates-bin 51 50 pkg-config 52 51 rustPlatform.cargoSetupHook 53 52 ]; ··· 76 75 77 76 env = 78 77 let 79 - versionAndRelease = lib.splitString "-" godot_4.version; 78 + versionAndRelease = lib.splitString "-" godot_4_3.version; 80 79 in 81 80 { 82 - GODOT = lib.getExe godot_4; 81 + GODOT = lib.getExe godot_4_3; 83 82 GODOT_VERSION = lib.elemAt versionAndRelease 0; 84 83 GODOT_RELEASE = lib.elemAt versionAndRelease 1; 85 - EXPORT_TEMPLATE = "${godot_4-export-templates}"; 84 + EXPORT_TEMPLATE = "${godot_4_3.export-templates-bin}"; 86 85 BUILD_TYPE = "${finalAttrs.buildType}"; 87 86 }; 88 87 ··· 94 93 # Godot looks for export templates in HOME 95 94 export HOME=$(mktemp -d) 96 95 mkdir -p $HOME/.local/share/godot/export_templates 97 - ln -s "${godot_4-export-templates}" "$HOME/.local/share/godot/export_templates/$GODOT_VERSION.$GODOT_RELEASE" 96 + ln -s "${godot_4_3.export-templates-bin}" "$HOME/.local/share/godot/export_templates/$GODOT_VERSION.$GODOT_RELEASE" 98 97 ''; 99 98 100 99 postInstall = ''
+3 -3
pkgs/by-name/pa/pairdrop/package.nix
··· 7 7 8 8 buildNpmPackage rec { 9 9 pname = "pairdrop"; 10 - version = "1.11.1"; 10 + version = "1.11.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "schlagmichdoch"; 14 14 repo = "PairDrop"; 15 15 rev = "v${version}"; 16 - hash = "sha256-Ovro5vMf28Wz6srEmUYOMFZE746/mcEDcs+f8rG7X+g="; 16 + hash = "sha256-LvrBIdBjb4M2LidEJVCdK2uYydsJY+Cr5eXdfbS46dk="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-vxH0YmSS3CXOrMQ4Tue8jcwjTZNfiT2Lnhs0O6xrfpQ="; 19 + npmDepsHash = "sha256-Ovi5RzWPCVk6LkZ33Anb8abkyu+IrEaCXE/etBgsHYU="; 20 20 21 21 dontNpmBuild = true; 22 22
+5 -5
pkgs/by-name/pi/pixelorama/package.nix
··· 4 4 alsa-lib, 5 5 autoPatchelfHook, 6 6 fetchFromGitHub, 7 - godot_4, 8 - godot_4-export-templates, 7 + godot_4_3, 9 8 libGL, 10 9 libpulseaudio, 11 10 libX11, ··· 28 27 presets.${stdenv.hostPlatform.system} 29 28 or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 30 29 31 - godot_version_folder = lib.replaceStrings [ "-" ] [ "." ] godot_4.version; 30 + godot = godot_4_3; 31 + godot_version_folder = lib.replaceStrings [ "-" ] [ "." ] godot.version; 32 32 in 33 33 stdenv.mkDerivation (finalAttrs: { 34 34 pname = "pixelorama"; ··· 45 45 46 46 nativeBuildInputs = [ 47 47 autoPatchelfHook 48 - godot_4 48 + godot 49 49 ]; 50 50 51 51 runtimeDependencies = map lib.getLib [ ··· 66 66 67 67 export HOME=$(mktemp -d) 68 68 mkdir -p $HOME/.local/share/godot/export_templates 69 - ln -s "${godot_4-export-templates}" "$HOME/.local/share/godot/export_templates/${godot_version_folder}" 69 + ln -s "${godot.export-templates-bin}" "$HOME/.local/share/godot/export_templates/${godot_version_folder}" 70 70 mkdir -p build 71 71 godot4 --headless --export-release "${preset}" ./build/pixelorama 72 72
+5 -5
pkgs/by-name/q2/q2pro/package.nix
··· 30 30 31 31 stdenv.mkDerivation (finalAttrs: rec { 32 32 pname = "q2pro"; 33 - version = "0-unstable-2025-02-18"; 33 + version = "0-unstable-2025-03-08"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "skullernet"; 37 37 repo = "q2pro"; 38 - rev = "1b0ee4c04f5509246ae20a3e4a1a19aeacac0d14"; 39 - hash = "sha256-jJwJXQuyucOo7kS8MiYRiP30aOtTStv2GA+TsYOtouQ="; 38 + rev = "700559cd4669c1e2f899a4eae869395c33dd4933"; 39 + hash = "sha256-zJYEeVPyppVISjKC0L8zfjfoG0c8TjmSAML4gPryT0A="; 40 40 }; 41 41 42 42 # build date and rev number is displayed in the game's console 43 - revCount = "3674"; # git rev-list --count ${src.rev} 44 - SOURCE_DATE_EPOCH = "1739897801"; # git show -s --format=%ct ${src.rev} 43 + revCount = "3697"; # git rev-list --count ${src.rev} 44 + SOURCE_DATE_EPOCH = "1741434552"; # git show -s --format=%ct ${src.rev} 45 45 46 46 nativeBuildInputs = 47 47 [
+6 -6
pkgs/by-name/ra/ragenix/package.nix
··· 5 5 nix, 6 6 installShellFiles, 7 7 }: 8 - rustPlatform.buildRustPackage { 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 9 pname = "ragenix"; 10 - version = "0-unstable-2024-09-19"; 10 + version = "2025.03.09"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "yaxitech"; 14 14 repo = "ragenix"; 15 - rev = "687ee92114bce9c4724376cf6b21235abe880bfa"; 16 - hash = "sha256-03XIEjHeZEjHXctsXYUB+ZLQmM0WuhR6qWQjwekFk/M="; 15 + tag = finalAttrs.version; 16 + hash = "sha256-iQf1WdNxaApOFHIx4RLMRZ4f8g+8Xp0Z1/E/Mz2rLxY="; 17 17 }; 18 18 19 - cargoHash = "sha256-NO0VpLZTGjddh1aESulAx4pP4k1vdDm1+oCmf/ybuO4="; 19 + cargoHash = "sha256-aM7kjyJJ8h4Yd1k2FTE8Vk/ezAXcCbfdAPxuNewptNQ="; 20 20 useFetchCargoVendor = true; 21 21 22 22 RAGENIX_NIX_BIN_PATH = lib.getExe nix; ··· 54 54 platforms = lib.platforms.linux ++ lib.platforms.darwin; 55 55 mainProgram = "ragenix"; 56 56 }; 57 - } 57 + })
+3 -3
pkgs/by-name/ra/raycast/package.nix
··· 12 12 13 13 stdenvNoCC.mkDerivation (finalAttrs: { 14 14 pname = "raycast"; 15 - version = "1.93.0"; 15 + version = "1.93.2"; 16 16 17 17 src = 18 18 { 19 19 aarch64-darwin = fetchurl { 20 20 name = "Raycast.dmg"; 21 21 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=arm"; 22 - hash = "sha256-sfbpDBNj3ZhRbspTLIDQVU7CrBN1t7SRWFGd7ZeCkQE="; 22 + hash = "sha256-DSK42E11ZEfcTFXLY7dz54hqdRXzX8RUBv2YHKuOMMQ="; 23 23 }; 24 24 x86_64-darwin = fetchurl { 25 25 name = "Raycast.dmg"; 26 26 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=x86_64"; 27 - hash = "sha256-Tjce+R0Zw+gm80medbF6jeLOhM7d+3N3//qXeBj0b2w="; 27 + hash = "sha256-TMbgaENxPiM2UETNmpP5BmVHwdNs4+3FGssaOqNBzew="; 28 28 }; 29 29 } 30 30 .${stdenvNoCC.system} or (throw "raycast: ${stdenvNoCC.system} is unsupported.");
+3 -3
pkgs/by-name/ss/sshocker/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "sshocker"; 10 - version = "0.3.5"; 10 + version = "0.3.6"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "lima-vm"; 14 14 repo = "sshocker"; 15 15 tag = "v${version}"; 16 - hash = "sha256-Q+g48Mm3JsFz9zTsFFypgp7RtQL/03EbVGAwnXLE8fA="; 16 + hash = "sha256-ehsQ/Z1LCSpnvIvABLCIR2aLG4DK33VJ9gidoSEoeqw="; 17 17 }; 18 18 19 - vendorHash = "sha256-D4TJ8bIahv05cE6gvF6LmcU2RzV2krjtU8t8wD6R/lY="; 19 + vendorHash = "sha256-9le1ETAdMZ1s7Hl2STz76/9eU0YkI4yNM/PZVXOwndQ="; 20 20 21 21 nativeInstallCheckInputs = [ versionCheckHook ]; 22 22
-1959
pkgs/by-name/sw/swww/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 = "adler" 7 - version = "1.0.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 - 11 - [[package]] 12 - name = "aho-corasick" 13 - version = "1.1.3" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 16 - dependencies = [ 17 - "memchr", 18 - ] 19 - 20 - [[package]] 21 - name = "aligned-vec" 22 - version = "0.5.0" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" 25 - 26 - [[package]] 27 - name = "anes" 28 - version = "0.1.6" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 31 - 32 - [[package]] 33 - name = "anstream" 34 - version = "0.6.14" 35 - source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 37 - dependencies = [ 38 - "anstyle", 39 - "anstyle-parse", 40 - "anstyle-query", 41 - "anstyle-wincon", 42 - "colorchoice", 43 - "is_terminal_polyfill", 44 - "utf8parse", 45 - ] 46 - 47 - [[package]] 48 - name = "anstyle" 49 - version = "1.0.7" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 52 - 53 - [[package]] 54 - name = "anstyle-parse" 55 - version = "0.2.4" 56 - source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 58 - dependencies = [ 59 - "utf8parse", 60 - ] 61 - 62 - [[package]] 63 - name = "anstyle-query" 64 - version = "1.0.3" 65 - source = "registry+https://github.com/rust-lang/crates.io-index" 66 - checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" 67 - dependencies = [ 68 - "windows-sys 0.52.0", 69 - ] 70 - 71 - [[package]] 72 - name = "anstyle-wincon" 73 - version = "3.0.3" 74 - source = "registry+https://github.com/rust-lang/crates.io-index" 75 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 76 - dependencies = [ 77 - "anstyle", 78 - "windows-sys 0.52.0", 79 - ] 80 - 81 - [[package]] 82 - name = "anyhow" 83 - version = "1.0.82" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" 86 - 87 - [[package]] 88 - name = "arbitrary" 89 - version = "1.3.2" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 92 - 93 - [[package]] 94 - name = "arg_enum_proc_macro" 95 - version = "0.3.4" 96 - source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 98 - dependencies = [ 99 - "proc-macro2", 100 - "quote", 101 - "syn", 102 - ] 103 - 104 - [[package]] 105 - name = "arrayvec" 106 - version = "0.7.4" 107 - source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 109 - 110 - [[package]] 111 - name = "assert_cmd" 112 - version = "2.0.14" 113 - source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "ed72493ac66d5804837f480ab3766c72bdfab91a65e565fc54fa9e42db0073a8" 115 - dependencies = [ 116 - "anstyle", 117 - "bstr", 118 - "doc-comment", 119 - "predicates", 120 - "predicates-core", 121 - "predicates-tree", 122 - "wait-timeout", 123 - ] 124 - 125 - [[package]] 126 - name = "autocfg" 127 - version = "1.2.0" 128 - source = "registry+https://github.com/rust-lang/crates.io-index" 129 - checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 130 - 131 - [[package]] 132 - name = "av1-grain" 133 - version = "0.2.3" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" 136 - dependencies = [ 137 - "anyhow", 138 - "arrayvec", 139 - "log", 140 - "nom", 141 - "num-rational", 142 - "v_frame", 143 - ] 144 - 145 - [[package]] 146 - name = "avif-serialize" 147 - version = "0.8.1" 148 - source = "registry+https://github.com/rust-lang/crates.io-index" 149 - checksum = "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2" 150 - dependencies = [ 151 - "arrayvec", 152 - ] 153 - 154 - [[package]] 155 - name = "bit_field" 156 - version = "0.10.2" 157 - source = "registry+https://github.com/rust-lang/crates.io-index" 158 - checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 159 - 160 - [[package]] 161 - name = "bitcode" 162 - version = "0.6.0" 163 - source = "git+https://github.com/SoftbearStudios/bitcode.git?rev=5f25a59#5f25a59be3e66deef721e7eb2369deb1aa32d263" 164 - dependencies = [ 165 - "bitcode_derive", 166 - "bytemuck", 167 - ] 168 - 169 - [[package]] 170 - name = "bitcode_derive" 171 - version = "0.6.0" 172 - source = "git+https://github.com/SoftbearStudios/bitcode.git?rev=5f25a59#5f25a59be3e66deef721e7eb2369deb1aa32d263" 173 - dependencies = [ 174 - "proc-macro2", 175 - "quote", 176 - "syn", 177 - ] 178 - 179 - [[package]] 180 - name = "bitflags" 181 - version = "1.3.2" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 184 - 185 - [[package]] 186 - name = "bitflags" 187 - version = "2.5.0" 188 - source = "registry+https://github.com/rust-lang/crates.io-index" 189 - checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 190 - 191 - [[package]] 192 - name = "bitstream-io" 193 - version = "2.2.0" 194 - source = "registry+https://github.com/rust-lang/crates.io-index" 195 - checksum = "06c9989a51171e2e81038ab168b6ae22886fe9ded214430dbb4f41c28cf176da" 196 - 197 - [[package]] 198 - name = "bstr" 199 - version = "1.9.1" 200 - source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 202 - dependencies = [ 203 - "memchr", 204 - "regex-automata", 205 - "serde", 206 - ] 207 - 208 - [[package]] 209 - name = "built" 210 - version = "0.7.2" 211 - source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "41bfbdb21256b87a8b5e80fab81a8eed158178e812fd7ba451907518b2742f16" 213 - 214 - [[package]] 215 - name = "bumpalo" 216 - version = "3.16.0" 217 - source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 219 - 220 - [[package]] 221 - name = "bytemuck" 222 - version = "1.15.0" 223 - source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15" 225 - 226 - [[package]] 227 - name = "byteorder" 228 - version = "1.5.0" 229 - source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 231 - 232 - [[package]] 233 - name = "byteorder-lite" 234 - version = "0.1.0" 235 - source = "registry+https://github.com/rust-lang/crates.io-index" 236 - checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 237 - 238 - [[package]] 239 - name = "cast" 240 - version = "0.3.0" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 243 - 244 - [[package]] 245 - name = "cc" 246 - version = "1.0.96" 247 - source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd" 249 - dependencies = [ 250 - "jobserver", 251 - "libc", 252 - "once_cell", 253 - ] 254 - 255 - [[package]] 256 - name = "cfg-expr" 257 - version = "0.15.8" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 260 - dependencies = [ 261 - "smallvec", 262 - "target-lexicon", 263 - ] 264 - 265 - [[package]] 266 - name = "cfg-if" 267 - version = "1.0.0" 268 - source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 270 - 271 - [[package]] 272 - name = "ciborium" 273 - version = "0.2.2" 274 - source = "registry+https://github.com/rust-lang/crates.io-index" 275 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 276 - dependencies = [ 277 - "ciborium-io", 278 - "ciborium-ll", 279 - "serde", 280 - ] 281 - 282 - [[package]] 283 - name = "ciborium-io" 284 - version = "0.2.2" 285 - source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 287 - 288 - [[package]] 289 - name = "ciborium-ll" 290 - version = "0.2.2" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 293 - dependencies = [ 294 - "ciborium-io", 295 - "half", 296 - ] 297 - 298 - [[package]] 299 - name = "clap" 300 - version = "4.5.4" 301 - source = "registry+https://github.com/rust-lang/crates.io-index" 302 - checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 303 - dependencies = [ 304 - "clap_builder", 305 - "clap_derive", 306 - ] 307 - 308 - [[package]] 309 - name = "clap_builder" 310 - version = "4.5.2" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 313 - dependencies = [ 314 - "anstream", 315 - "anstyle", 316 - "clap_lex", 317 - "strsim", 318 - "terminal_size", 319 - ] 320 - 321 - [[package]] 322 - name = "clap_complete" 323 - version = "4.5.2" 324 - source = "registry+https://github.com/rust-lang/crates.io-index" 325 - checksum = "dd79504325bf38b10165b02e89b4347300f855f273c4cb30c4a3209e6583275e" 326 - dependencies = [ 327 - "clap", 328 - ] 329 - 330 - [[package]] 331 - name = "clap_derive" 332 - version = "4.5.4" 333 - source = "registry+https://github.com/rust-lang/crates.io-index" 334 - checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 335 - dependencies = [ 336 - "heck", 337 - "proc-macro2", 338 - "quote", 339 - "syn", 340 - ] 341 - 342 - [[package]] 343 - name = "clap_lex" 344 - version = "0.7.0" 345 - source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 347 - 348 - [[package]] 349 - name = "color_quant" 350 - version = "1.1.0" 351 - source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 353 - 354 - [[package]] 355 - name = "colorchoice" 356 - version = "1.0.1" 357 - source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 359 - 360 - [[package]] 361 - name = "crc32fast" 362 - version = "1.4.0" 363 - source = "registry+https://github.com/rust-lang/crates.io-index" 364 - checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" 365 - dependencies = [ 366 - "cfg-if", 367 - ] 368 - 369 - [[package]] 370 - name = "criterion" 371 - version = "0.5.1" 372 - source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 374 - dependencies = [ 375 - "anes", 376 - "cast", 377 - "ciborium", 378 - "clap", 379 - "criterion-plot", 380 - "is-terminal", 381 - "itertools 0.10.5", 382 - "num-traits", 383 - "once_cell", 384 - "oorandom", 385 - "plotters", 386 - "rayon", 387 - "regex", 388 - "serde", 389 - "serde_derive", 390 - "serde_json", 391 - "tinytemplate", 392 - "walkdir", 393 - ] 394 - 395 - [[package]] 396 - name = "criterion-plot" 397 - version = "0.5.0" 398 - source = "registry+https://github.com/rust-lang/crates.io-index" 399 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 400 - dependencies = [ 401 - "cast", 402 - "itertools 0.10.5", 403 - ] 404 - 405 - [[package]] 406 - name = "crossbeam-deque" 407 - version = "0.8.5" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 410 - dependencies = [ 411 - "crossbeam-epoch", 412 - "crossbeam-utils", 413 - ] 414 - 415 - [[package]] 416 - name = "crossbeam-epoch" 417 - version = "0.9.18" 418 - source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 420 - dependencies = [ 421 - "crossbeam-utils", 422 - ] 423 - 424 - [[package]] 425 - name = "crossbeam-utils" 426 - version = "0.8.19" 427 - source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 429 - 430 - [[package]] 431 - name = "crunchy" 432 - version = "0.2.2" 433 - source = "registry+https://github.com/rust-lang/crates.io-index" 434 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 435 - 436 - [[package]] 437 - name = "deranged" 438 - version = "0.3.11" 439 - source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 441 - dependencies = [ 442 - "powerfmt", 443 - ] 444 - 445 - [[package]] 446 - name = "difflib" 447 - version = "0.4.0" 448 - source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 450 - 451 - [[package]] 452 - name = "dlib" 453 - version = "0.5.2" 454 - source = "registry+https://github.com/rust-lang/crates.io-index" 455 - checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 456 - dependencies = [ 457 - "libloading", 458 - ] 459 - 460 - [[package]] 461 - name = "doc-comment" 462 - version = "0.3.3" 463 - source = "registry+https://github.com/rust-lang/crates.io-index" 464 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 465 - 466 - [[package]] 467 - name = "downcast-rs" 468 - version = "1.2.1" 469 - source = "registry+https://github.com/rust-lang/crates.io-index" 470 - checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 471 - 472 - [[package]] 473 - name = "either" 474 - version = "1.11.0" 475 - source = "registry+https://github.com/rust-lang/crates.io-index" 476 - checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" 477 - 478 - [[package]] 479 - name = "equivalent" 480 - version = "1.0.1" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 483 - 484 - [[package]] 485 - name = "errno" 486 - version = "0.3.8" 487 - source = "registry+https://github.com/rust-lang/crates.io-index" 488 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 489 - dependencies = [ 490 - "libc", 491 - "windows-sys 0.52.0", 492 - ] 493 - 494 - [[package]] 495 - name = "exr" 496 - version = "1.72.0" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 499 - dependencies = [ 500 - "bit_field", 501 - "flume", 502 - "half", 503 - "lebe", 504 - "miniz_oxide", 505 - "rayon-core", 506 - "smallvec", 507 - "zune-inflate", 508 - ] 509 - 510 - [[package]] 511 - name = "fast_image_resize" 512 - version = "3.0.4" 513 - source = "registry+https://github.com/rust-lang/crates.io-index" 514 - checksum = "c9d450fac8a334ad72825596173f0f7767ff04dd6e3d59c49c894c4bc2957e8b" 515 - dependencies = [ 516 - "cfg-if", 517 - "num-traits", 518 - "thiserror", 519 - ] 520 - 521 - [[package]] 522 - name = "fdeflate" 523 - version = "0.3.4" 524 - source = "registry+https://github.com/rust-lang/crates.io-index" 525 - checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 526 - dependencies = [ 527 - "simd-adler32", 528 - ] 529 - 530 - [[package]] 531 - name = "flate2" 532 - version = "1.0.30" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 535 - dependencies = [ 536 - "crc32fast", 537 - "miniz_oxide", 538 - ] 539 - 540 - [[package]] 541 - name = "flume" 542 - version = "0.11.0" 543 - source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 545 - dependencies = [ 546 - "spin", 547 - ] 548 - 549 - [[package]] 550 - name = "getrandom" 551 - version = "0.2.14" 552 - source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 554 - dependencies = [ 555 - "cfg-if", 556 - "libc", 557 - "wasi", 558 - ] 559 - 560 - [[package]] 561 - name = "gif" 562 - version = "0.13.1" 563 - source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 565 - dependencies = [ 566 - "color_quant", 567 - "weezl", 568 - ] 569 - 570 - [[package]] 571 - name = "half" 572 - version = "2.4.1" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 575 - dependencies = [ 576 - "cfg-if", 577 - "crunchy", 578 - ] 579 - 580 - [[package]] 581 - name = "hashbrown" 582 - version = "0.14.5" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 585 - 586 - [[package]] 587 - name = "heck" 588 - version = "0.5.0" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 591 - 592 - [[package]] 593 - name = "hermit-abi" 594 - version = "0.3.9" 595 - source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 597 - 598 - [[package]] 599 - name = "image" 600 - version = "0.25.1" 601 - source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11" 603 - dependencies = [ 604 - "bytemuck", 605 - "byteorder", 606 - "color_quant", 607 - "exr", 608 - "gif", 609 - "image-webp", 610 - "num-traits", 611 - "png", 612 - "qoi", 613 - "ravif", 614 - "rayon", 615 - "rgb", 616 - "tiff", 617 - "zune-core", 618 - "zune-jpeg", 619 - ] 620 - 621 - [[package]] 622 - name = "image-webp" 623 - version = "0.1.2" 624 - source = "registry+https://github.com/rust-lang/crates.io-index" 625 - checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d" 626 - dependencies = [ 627 - "byteorder-lite", 628 - "thiserror", 629 - ] 630 - 631 - [[package]] 632 - name = "imgref" 633 - version = "1.10.1" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126" 636 - 637 - [[package]] 638 - name = "indexmap" 639 - version = "2.2.6" 640 - source = "registry+https://github.com/rust-lang/crates.io-index" 641 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 642 - dependencies = [ 643 - "equivalent", 644 - "hashbrown", 645 - ] 646 - 647 - [[package]] 648 - name = "interpolate_name" 649 - version = "0.2.4" 650 - source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 652 - dependencies = [ 653 - "proc-macro2", 654 - "quote", 655 - "syn", 656 - ] 657 - 658 - [[package]] 659 - name = "is-terminal" 660 - version = "0.4.12" 661 - source = "registry+https://github.com/rust-lang/crates.io-index" 662 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 663 - dependencies = [ 664 - "hermit-abi", 665 - "libc", 666 - "windows-sys 0.52.0", 667 - ] 668 - 669 - [[package]] 670 - name = "is_terminal_polyfill" 671 - version = "1.70.0" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 674 - 675 - [[package]] 676 - name = "itertools" 677 - version = "0.10.5" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 680 - dependencies = [ 681 - "either", 682 - ] 683 - 684 - [[package]] 685 - name = "itertools" 686 - version = "0.12.1" 687 - source = "registry+https://github.com/rust-lang/crates.io-index" 688 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 689 - dependencies = [ 690 - "either", 691 - ] 692 - 693 - [[package]] 694 - name = "itoa" 695 - version = "1.0.11" 696 - source = "registry+https://github.com/rust-lang/crates.io-index" 697 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 698 - 699 - [[package]] 700 - name = "jobserver" 701 - version = "0.1.31" 702 - source = "registry+https://github.com/rust-lang/crates.io-index" 703 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 704 - dependencies = [ 705 - "libc", 706 - ] 707 - 708 - [[package]] 709 - name = "jpeg-decoder" 710 - version = "0.3.1" 711 - source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 713 - 714 - [[package]] 715 - name = "js-sys" 716 - version = "0.3.69" 717 - source = "registry+https://github.com/rust-lang/crates.io-index" 718 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 719 - dependencies = [ 720 - "wasm-bindgen", 721 - ] 722 - 723 - [[package]] 724 - name = "keyframe" 725 - version = "1.1.1" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "60708bf7981518d09095d6f5673ce5cf6a64f1e0d9708b554f670e6d9d2bd9a9" 728 - dependencies = [ 729 - "mint", 730 - "num-traits", 731 - ] 732 - 733 - [[package]] 734 - name = "lebe" 735 - version = "0.5.2" 736 - source = "registry+https://github.com/rust-lang/crates.io-index" 737 - checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 738 - 739 - [[package]] 740 - name = "libc" 741 - version = "0.2.154" 742 - source = "registry+https://github.com/rust-lang/crates.io-index" 743 - checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" 744 - 745 - [[package]] 746 - name = "libfuzzer-sys" 747 - version = "0.4.7" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" 750 - dependencies = [ 751 - "arbitrary", 752 - "cc", 753 - "once_cell", 754 - ] 755 - 756 - [[package]] 757 - name = "libloading" 758 - version = "0.8.3" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 761 - dependencies = [ 762 - "cfg-if", 763 - "windows-targets 0.52.5", 764 - ] 765 - 766 - [[package]] 767 - name = "libm" 768 - version = "0.2.8" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 771 - 772 - [[package]] 773 - name = "linux-raw-sys" 774 - version = "0.4.13" 775 - source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 777 - 778 - [[package]] 779 - name = "lock_api" 780 - version = "0.4.12" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 783 - dependencies = [ 784 - "autocfg", 785 - "scopeguard", 786 - ] 787 - 788 - [[package]] 789 - name = "log" 790 - version = "0.4.21" 791 - source = "registry+https://github.com/rust-lang/crates.io-index" 792 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 793 - 794 - [[package]] 795 - name = "loop9" 796 - version = "0.1.5" 797 - source = "registry+https://github.com/rust-lang/crates.io-index" 798 - checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 799 - dependencies = [ 800 - "imgref", 801 - ] 802 - 803 - [[package]] 804 - name = "maybe-rayon" 805 - version = "0.1.1" 806 - source = "registry+https://github.com/rust-lang/crates.io-index" 807 - checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 808 - dependencies = [ 809 - "cfg-if", 810 - "rayon", 811 - ] 812 - 813 - [[package]] 814 - name = "memchr" 815 - version = "2.7.2" 816 - source = "registry+https://github.com/rust-lang/crates.io-index" 817 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 818 - 819 - [[package]] 820 - name = "minimal-lexical" 821 - version = "0.2.1" 822 - source = "registry+https://github.com/rust-lang/crates.io-index" 823 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 824 - 825 - [[package]] 826 - name = "miniz_oxide" 827 - version = "0.7.2" 828 - source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 830 - dependencies = [ 831 - "adler", 832 - "simd-adler32", 833 - ] 834 - 835 - [[package]] 836 - name = "mint" 837 - version = "0.5.9" 838 - source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "e53debba6bda7a793e5f99b8dacf19e626084f525f7829104ba9898f367d85ff" 840 - 841 - [[package]] 842 - name = "new_debug_unreachable" 843 - version = "1.0.6" 844 - source = "registry+https://github.com/rust-lang/crates.io-index" 845 - checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 846 - 847 - [[package]] 848 - name = "nom" 849 - version = "7.1.3" 850 - source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 852 - dependencies = [ 853 - "memchr", 854 - "minimal-lexical", 855 - ] 856 - 857 - [[package]] 858 - name = "noop_proc_macro" 859 - version = "0.3.0" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 862 - 863 - [[package]] 864 - name = "num-bigint" 865 - version = "0.4.4" 866 - source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 868 - dependencies = [ 869 - "autocfg", 870 - "num-integer", 871 - "num-traits", 872 - ] 873 - 874 - [[package]] 875 - name = "num-conv" 876 - version = "0.1.0" 877 - source = "registry+https://github.com/rust-lang/crates.io-index" 878 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 879 - 880 - [[package]] 881 - name = "num-derive" 882 - version = "0.4.2" 883 - source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 885 - dependencies = [ 886 - "proc-macro2", 887 - "quote", 888 - "syn", 889 - ] 890 - 891 - [[package]] 892 - name = "num-integer" 893 - version = "0.1.46" 894 - source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 896 - dependencies = [ 897 - "num-traits", 898 - ] 899 - 900 - [[package]] 901 - name = "num-rational" 902 - version = "0.4.1" 903 - source = "registry+https://github.com/rust-lang/crates.io-index" 904 - checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 905 - dependencies = [ 906 - "autocfg", 907 - "num-bigint", 908 - "num-integer", 909 - "num-traits", 910 - ] 911 - 912 - [[package]] 913 - name = "num-traits" 914 - version = "0.2.18" 915 - source = "registry+https://github.com/rust-lang/crates.io-index" 916 - checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 917 - dependencies = [ 918 - "autocfg", 919 - "libm", 920 - ] 921 - 922 - [[package]] 923 - name = "num_threads" 924 - version = "0.1.7" 925 - source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 927 - dependencies = [ 928 - "libc", 929 - ] 930 - 931 - [[package]] 932 - name = "once_cell" 933 - version = "1.19.0" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 936 - 937 - [[package]] 938 - name = "oorandom" 939 - version = "11.1.3" 940 - source = "registry+https://github.com/rust-lang/crates.io-index" 941 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 942 - 943 - [[package]] 944 - name = "paste" 945 - version = "1.0.14" 946 - source = "registry+https://github.com/rust-lang/crates.io-index" 947 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 948 - 949 - [[package]] 950 - name = "pkg-config" 951 - version = "0.3.30" 952 - source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 954 - 955 - [[package]] 956 - name = "plotters" 957 - version = "0.3.5" 958 - source = "registry+https://github.com/rust-lang/crates.io-index" 959 - checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 960 - dependencies = [ 961 - "num-traits", 962 - "plotters-backend", 963 - "plotters-svg", 964 - "wasm-bindgen", 965 - "web-sys", 966 - ] 967 - 968 - [[package]] 969 - name = "plotters-backend" 970 - version = "0.3.5" 971 - source = "registry+https://github.com/rust-lang/crates.io-index" 972 - checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 973 - 974 - [[package]] 975 - name = "plotters-svg" 976 - version = "0.3.5" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 979 - dependencies = [ 980 - "plotters-backend", 981 - ] 982 - 983 - [[package]] 984 - name = "png" 985 - version = "0.17.13" 986 - source = "registry+https://github.com/rust-lang/crates.io-index" 987 - checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 988 - dependencies = [ 989 - "bitflags 1.3.2", 990 - "crc32fast", 991 - "fdeflate", 992 - "flate2", 993 - "miniz_oxide", 994 - ] 995 - 996 - [[package]] 997 - name = "powerfmt" 998 - version = "0.2.0" 999 - source = "registry+https://github.com/rust-lang/crates.io-index" 1000 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1001 - 1002 - [[package]] 1003 - name = "ppv-lite86" 1004 - version = "0.2.17" 1005 - source = "registry+https://github.com/rust-lang/crates.io-index" 1006 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1007 - 1008 - [[package]] 1009 - name = "predicates" 1010 - version = "3.1.0" 1011 - source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" 1013 - dependencies = [ 1014 - "anstyle", 1015 - "difflib", 1016 - "predicates-core", 1017 - ] 1018 - 1019 - [[package]] 1020 - name = "predicates-core" 1021 - version = "1.0.6" 1022 - source = "registry+https://github.com/rust-lang/crates.io-index" 1023 - checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 1024 - 1025 - [[package]] 1026 - name = "predicates-tree" 1027 - version = "1.0.9" 1028 - source = "registry+https://github.com/rust-lang/crates.io-index" 1029 - checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 1030 - dependencies = [ 1031 - "predicates-core", 1032 - "termtree", 1033 - ] 1034 - 1035 - [[package]] 1036 - name = "proc-macro2" 1037 - version = "1.0.81" 1038 - source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" 1040 - dependencies = [ 1041 - "unicode-ident", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "profiling" 1046 - version = "1.0.15" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58" 1049 - dependencies = [ 1050 - "profiling-procmacros", 1051 - ] 1052 - 1053 - [[package]] 1054 - name = "profiling-procmacros" 1055 - version = "1.0.15" 1056 - source = "registry+https://github.com/rust-lang/crates.io-index" 1057 - checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd" 1058 - dependencies = [ 1059 - "quote", 1060 - "syn", 1061 - ] 1062 - 1063 - [[package]] 1064 - name = "qoi" 1065 - version = "0.4.1" 1066 - source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 1068 - dependencies = [ 1069 - "bytemuck", 1070 - ] 1071 - 1072 - [[package]] 1073 - name = "quick-error" 1074 - version = "2.0.1" 1075 - source = "registry+https://github.com/rust-lang/crates.io-index" 1076 - checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 1077 - 1078 - [[package]] 1079 - name = "quick-xml" 1080 - version = "0.31.0" 1081 - source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 1083 - dependencies = [ 1084 - "memchr", 1085 - ] 1086 - 1087 - [[package]] 1088 - name = "quote" 1089 - version = "1.0.36" 1090 - source = "registry+https://github.com/rust-lang/crates.io-index" 1091 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1092 - dependencies = [ 1093 - "proc-macro2", 1094 - ] 1095 - 1096 - [[package]] 1097 - name = "rand" 1098 - version = "0.8.5" 1099 - source = "registry+https://github.com/rust-lang/crates.io-index" 1100 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1101 - dependencies = [ 1102 - "libc", 1103 - "rand_chacha", 1104 - "rand_core", 1105 - ] 1106 - 1107 - [[package]] 1108 - name = "rand_chacha" 1109 - version = "0.3.1" 1110 - source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1112 - dependencies = [ 1113 - "ppv-lite86", 1114 - "rand_core", 1115 - ] 1116 - 1117 - [[package]] 1118 - name = "rand_core" 1119 - version = "0.6.4" 1120 - source = "registry+https://github.com/rust-lang/crates.io-index" 1121 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1122 - dependencies = [ 1123 - "getrandom", 1124 - ] 1125 - 1126 - [[package]] 1127 - name = "rav1e" 1128 - version = "0.7.1" 1129 - source = "registry+https://github.com/rust-lang/crates.io-index" 1130 - checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" 1131 - dependencies = [ 1132 - "arbitrary", 1133 - "arg_enum_proc_macro", 1134 - "arrayvec", 1135 - "av1-grain", 1136 - "bitstream-io", 1137 - "built", 1138 - "cfg-if", 1139 - "interpolate_name", 1140 - "itertools 0.12.1", 1141 - "libc", 1142 - "libfuzzer-sys", 1143 - "log", 1144 - "maybe-rayon", 1145 - "new_debug_unreachable", 1146 - "noop_proc_macro", 1147 - "num-derive", 1148 - "num-traits", 1149 - "once_cell", 1150 - "paste", 1151 - "profiling", 1152 - "rand", 1153 - "rand_chacha", 1154 - "simd_helpers", 1155 - "system-deps", 1156 - "thiserror", 1157 - "v_frame", 1158 - "wasm-bindgen", 1159 - ] 1160 - 1161 - [[package]] 1162 - name = "ravif" 1163 - version = "0.11.5" 1164 - source = "registry+https://github.com/rust-lang/crates.io-index" 1165 - checksum = "bc13288f5ab39e6d7c9d501759712e6969fcc9734220846fc9ed26cae2cc4234" 1166 - dependencies = [ 1167 - "avif-serialize", 1168 - "imgref", 1169 - "loop9", 1170 - "quick-error", 1171 - "rav1e", 1172 - "rayon", 1173 - "rgb", 1174 - ] 1175 - 1176 - [[package]] 1177 - name = "rayon" 1178 - version = "1.10.0" 1179 - source = "registry+https://github.com/rust-lang/crates.io-index" 1180 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1181 - dependencies = [ 1182 - "either", 1183 - "rayon-core", 1184 - ] 1185 - 1186 - [[package]] 1187 - name = "rayon-core" 1188 - version = "1.12.1" 1189 - source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1191 - dependencies = [ 1192 - "crossbeam-deque", 1193 - "crossbeam-utils", 1194 - ] 1195 - 1196 - [[package]] 1197 - name = "regex" 1198 - version = "1.10.4" 1199 - source = "registry+https://github.com/rust-lang/crates.io-index" 1200 - checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1201 - dependencies = [ 1202 - "aho-corasick", 1203 - "memchr", 1204 - "regex-automata", 1205 - "regex-syntax", 1206 - ] 1207 - 1208 - [[package]] 1209 - name = "regex-automata" 1210 - version = "0.4.6" 1211 - source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 1213 - dependencies = [ 1214 - "aho-corasick", 1215 - "memchr", 1216 - "regex-syntax", 1217 - ] 1218 - 1219 - [[package]] 1220 - name = "regex-syntax" 1221 - version = "0.8.3" 1222 - source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 1224 - 1225 - [[package]] 1226 - name = "rgb" 1227 - version = "0.8.37" 1228 - source = "registry+https://github.com/rust-lang/crates.io-index" 1229 - checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8" 1230 - dependencies = [ 1231 - "bytemuck", 1232 - ] 1233 - 1234 - [[package]] 1235 - name = "rustix" 1236 - version = "0.38.34" 1237 - source = "registry+https://github.com/rust-lang/crates.io-index" 1238 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1239 - dependencies = [ 1240 - "bitflags 2.5.0", 1241 - "errno", 1242 - "libc", 1243 - "linux-raw-sys", 1244 - "windows-sys 0.52.0", 1245 - ] 1246 - 1247 - [[package]] 1248 - name = "ryu" 1249 - version = "1.0.17" 1250 - source = "registry+https://github.com/rust-lang/crates.io-index" 1251 - checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 1252 - 1253 - [[package]] 1254 - name = "same-file" 1255 - version = "1.0.6" 1256 - source = "registry+https://github.com/rust-lang/crates.io-index" 1257 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1258 - dependencies = [ 1259 - "winapi-util", 1260 - ] 1261 - 1262 - [[package]] 1263 - name = "scoped-tls" 1264 - version = "1.0.1" 1265 - source = "registry+https://github.com/rust-lang/crates.io-index" 1266 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1267 - 1268 - [[package]] 1269 - name = "scopeguard" 1270 - version = "1.2.0" 1271 - source = "registry+https://github.com/rust-lang/crates.io-index" 1272 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1273 - 1274 - [[package]] 1275 - name = "sd-notify" 1276 - version = "0.4.1" 1277 - source = "registry+https://github.com/rust-lang/crates.io-index" 1278 - checksum = "621e3680f3e07db4c9c2c3fb07c6223ab2fab2e54bd3c04c3ae037990f428c32" 1279 - 1280 - [[package]] 1281 - name = "serde" 1282 - version = "1.0.200" 1283 - source = "registry+https://github.com/rust-lang/crates.io-index" 1284 - checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f" 1285 - dependencies = [ 1286 - "serde_derive", 1287 - ] 1288 - 1289 - [[package]] 1290 - name = "serde_derive" 1291 - version = "1.0.200" 1292 - source = "registry+https://github.com/rust-lang/crates.io-index" 1293 - checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb" 1294 - dependencies = [ 1295 - "proc-macro2", 1296 - "quote", 1297 - "syn", 1298 - ] 1299 - 1300 - [[package]] 1301 - name = "serde_json" 1302 - version = "1.0.116" 1303 - source = "registry+https://github.com/rust-lang/crates.io-index" 1304 - checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 1305 - dependencies = [ 1306 - "itoa", 1307 - "ryu", 1308 - "serde", 1309 - ] 1310 - 1311 - [[package]] 1312 - name = "serde_spanned" 1313 - version = "0.6.5" 1314 - source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 1316 - dependencies = [ 1317 - "serde", 1318 - ] 1319 - 1320 - [[package]] 1321 - name = "simd-adler32" 1322 - version = "0.3.7" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 1325 - 1326 - [[package]] 1327 - name = "simd_helpers" 1328 - version = "0.1.0" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 1331 - dependencies = [ 1332 - "quote", 1333 - ] 1334 - 1335 - [[package]] 1336 - name = "simplelog" 1337 - version = "0.12.2" 1338 - source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0" 1340 - dependencies = [ 1341 - "log", 1342 - "termcolor", 1343 - "time", 1344 - ] 1345 - 1346 - [[package]] 1347 - name = "smallvec" 1348 - version = "1.13.2" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1351 - 1352 - [[package]] 1353 - name = "spin" 1354 - version = "0.9.8" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1357 - dependencies = [ 1358 - "lock_api", 1359 - ] 1360 - 1361 - [[package]] 1362 - name = "spin_sleep" 1363 - version = "1.2.0" 1364 - source = "registry+https://github.com/rust-lang/crates.io-index" 1365 - checksum = "368a978649eaf70006b082e79c832bd72556ac1393eaf564d686e919dca2347f" 1366 - dependencies = [ 1367 - "windows-sys 0.52.0", 1368 - ] 1369 - 1370 - [[package]] 1371 - name = "strsim" 1372 - version = "0.11.1" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1375 - 1376 - [[package]] 1377 - name = "swww" 1378 - version = "0.9.5" 1379 - dependencies = [ 1380 - "assert_cmd", 1381 - "clap", 1382 - "clap_complete", 1383 - "fast_image_resize", 1384 - "image", 1385 - "rand", 1386 - "utils", 1387 - ] 1388 - 1389 - [[package]] 1390 - name = "swww-daemon" 1391 - version = "0.9.5" 1392 - dependencies = [ 1393 - "bitcode", 1394 - "keyframe", 1395 - "libc", 1396 - "log", 1397 - "rand", 1398 - "rayon", 1399 - "rustix", 1400 - "sd-notify", 1401 - "simplelog", 1402 - "spin_sleep", 1403 - "utils", 1404 - "wayland-client", 1405 - "wayland-protocols", 1406 - "wayland-protocols-wlr", 1407 - ] 1408 - 1409 - [[package]] 1410 - name = "syn" 1411 - version = "2.0.60" 1412 - source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" 1414 - dependencies = [ 1415 - "proc-macro2", 1416 - "quote", 1417 - "unicode-ident", 1418 - ] 1419 - 1420 - [[package]] 1421 - name = "system-deps" 1422 - version = "6.2.2" 1423 - source = "registry+https://github.com/rust-lang/crates.io-index" 1424 - checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 1425 - dependencies = [ 1426 - "cfg-expr", 1427 - "heck", 1428 - "pkg-config", 1429 - "toml", 1430 - "version-compare", 1431 - ] 1432 - 1433 - [[package]] 1434 - name = "target-lexicon" 1435 - version = "0.12.14" 1436 - source = "registry+https://github.com/rust-lang/crates.io-index" 1437 - checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 1438 - 1439 - [[package]] 1440 - name = "termcolor" 1441 - version = "1.4.1" 1442 - source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 1444 - dependencies = [ 1445 - "winapi-util", 1446 - ] 1447 - 1448 - [[package]] 1449 - name = "terminal_size" 1450 - version = "0.3.0" 1451 - source = "registry+https://github.com/rust-lang/crates.io-index" 1452 - checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 1453 - dependencies = [ 1454 - "rustix", 1455 - "windows-sys 0.48.0", 1456 - ] 1457 - 1458 - [[package]] 1459 - name = "termtree" 1460 - version = "0.4.1" 1461 - source = "registry+https://github.com/rust-lang/crates.io-index" 1462 - checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 1463 - 1464 - [[package]] 1465 - name = "thiserror" 1466 - version = "1.0.59" 1467 - source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" 1469 - dependencies = [ 1470 - "thiserror-impl", 1471 - ] 1472 - 1473 - [[package]] 1474 - name = "thiserror-impl" 1475 - version = "1.0.59" 1476 - source = "registry+https://github.com/rust-lang/crates.io-index" 1477 - checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" 1478 - dependencies = [ 1479 - "proc-macro2", 1480 - "quote", 1481 - "syn", 1482 - ] 1483 - 1484 - [[package]] 1485 - name = "tiff" 1486 - version = "0.9.1" 1487 - source = "registry+https://github.com/rust-lang/crates.io-index" 1488 - checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 1489 - dependencies = [ 1490 - "flate2", 1491 - "jpeg-decoder", 1492 - "weezl", 1493 - ] 1494 - 1495 - [[package]] 1496 - name = "time" 1497 - version = "0.3.36" 1498 - source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1500 - dependencies = [ 1501 - "deranged", 1502 - "itoa", 1503 - "libc", 1504 - "num-conv", 1505 - "num_threads", 1506 - "powerfmt", 1507 - "serde", 1508 - "time-core", 1509 - "time-macros", 1510 - ] 1511 - 1512 - [[package]] 1513 - name = "time-core" 1514 - version = "0.1.2" 1515 - source = "registry+https://github.com/rust-lang/crates.io-index" 1516 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1517 - 1518 - [[package]] 1519 - name = "time-macros" 1520 - version = "0.2.18" 1521 - source = "registry+https://github.com/rust-lang/crates.io-index" 1522 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1523 - dependencies = [ 1524 - "num-conv", 1525 - "time-core", 1526 - ] 1527 - 1528 - [[package]] 1529 - name = "tinytemplate" 1530 - version = "1.2.1" 1531 - source = "registry+https://github.com/rust-lang/crates.io-index" 1532 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 1533 - dependencies = [ 1534 - "serde", 1535 - "serde_json", 1536 - ] 1537 - 1538 - [[package]] 1539 - name = "toml" 1540 - version = "0.8.12" 1541 - source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" 1543 - dependencies = [ 1544 - "serde", 1545 - "serde_spanned", 1546 - "toml_datetime", 1547 - "toml_edit", 1548 - ] 1549 - 1550 - [[package]] 1551 - name = "toml_datetime" 1552 - version = "0.6.5" 1553 - source = "registry+https://github.com/rust-lang/crates.io-index" 1554 - checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 1555 - dependencies = [ 1556 - "serde", 1557 - ] 1558 - 1559 - [[package]] 1560 - name = "toml_edit" 1561 - version = "0.22.12" 1562 - source = "registry+https://github.com/rust-lang/crates.io-index" 1563 - checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef" 1564 - dependencies = [ 1565 - "indexmap", 1566 - "serde", 1567 - "serde_spanned", 1568 - "toml_datetime", 1569 - "winnow", 1570 - ] 1571 - 1572 - [[package]] 1573 - name = "unicode-ident" 1574 - version = "1.0.12" 1575 - source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1577 - 1578 - [[package]] 1579 - name = "utf8parse" 1580 - version = "0.2.1" 1581 - source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 1583 - 1584 - [[package]] 1585 - name = "utils" 1586 - version = "0.9.5" 1587 - dependencies = [ 1588 - "bitcode", 1589 - "criterion", 1590 - "pkg-config", 1591 - "rand", 1592 - ] 1593 - 1594 - [[package]] 1595 - name = "v_frame" 1596 - version = "0.3.8" 1597 - source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" 1599 - dependencies = [ 1600 - "aligned-vec", 1601 - "num-traits", 1602 - "wasm-bindgen", 1603 - ] 1604 - 1605 - [[package]] 1606 - name = "version-compare" 1607 - version = "0.2.0" 1608 - source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 1610 - 1611 - [[package]] 1612 - name = "wait-timeout" 1613 - version = "0.2.0" 1614 - source = "registry+https://github.com/rust-lang/crates.io-index" 1615 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 1616 - dependencies = [ 1617 - "libc", 1618 - ] 1619 - 1620 - [[package]] 1621 - name = "walkdir" 1622 - version = "2.5.0" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1625 - dependencies = [ 1626 - "same-file", 1627 - "winapi-util", 1628 - ] 1629 - 1630 - [[package]] 1631 - name = "wasi" 1632 - version = "0.11.0+wasi-snapshot-preview1" 1633 - source = "registry+https://github.com/rust-lang/crates.io-index" 1634 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1635 - 1636 - [[package]] 1637 - name = "wasm-bindgen" 1638 - version = "0.2.92" 1639 - source = "registry+https://github.com/rust-lang/crates.io-index" 1640 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 1641 - dependencies = [ 1642 - "cfg-if", 1643 - "wasm-bindgen-macro", 1644 - ] 1645 - 1646 - [[package]] 1647 - name = "wasm-bindgen-backend" 1648 - version = "0.2.92" 1649 - source = "registry+https://github.com/rust-lang/crates.io-index" 1650 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 1651 - dependencies = [ 1652 - "bumpalo", 1653 - "log", 1654 - "once_cell", 1655 - "proc-macro2", 1656 - "quote", 1657 - "syn", 1658 - "wasm-bindgen-shared", 1659 - ] 1660 - 1661 - [[package]] 1662 - name = "wasm-bindgen-macro" 1663 - version = "0.2.92" 1664 - source = "registry+https://github.com/rust-lang/crates.io-index" 1665 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 1666 - dependencies = [ 1667 - "quote", 1668 - "wasm-bindgen-macro-support", 1669 - ] 1670 - 1671 - [[package]] 1672 - name = "wasm-bindgen-macro-support" 1673 - version = "0.2.92" 1674 - source = "registry+https://github.com/rust-lang/crates.io-index" 1675 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 1676 - dependencies = [ 1677 - "proc-macro2", 1678 - "quote", 1679 - "syn", 1680 - "wasm-bindgen-backend", 1681 - "wasm-bindgen-shared", 1682 - ] 1683 - 1684 - [[package]] 1685 - name = "wasm-bindgen-shared" 1686 - version = "0.2.92" 1687 - source = "registry+https://github.com/rust-lang/crates.io-index" 1688 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 1689 - 1690 - [[package]] 1691 - name = "wayland-backend" 1692 - version = "0.3.3" 1693 - source = "registry+https://github.com/rust-lang/crates.io-index" 1694 - checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40" 1695 - dependencies = [ 1696 - "cc", 1697 - "downcast-rs", 1698 - "rustix", 1699 - "scoped-tls", 1700 - "smallvec", 1701 - "wayland-sys", 1702 - ] 1703 - 1704 - [[package]] 1705 - name = "wayland-client" 1706 - version = "0.31.2" 1707 - source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f" 1709 - dependencies = [ 1710 - "bitflags 2.5.0", 1711 - "log", 1712 - "rustix", 1713 - "wayland-backend", 1714 - "wayland-scanner", 1715 - ] 1716 - 1717 - [[package]] 1718 - name = "wayland-protocols" 1719 - version = "0.31.2" 1720 - source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4" 1722 - dependencies = [ 1723 - "bitflags 2.5.0", 1724 - "wayland-backend", 1725 - "wayland-client", 1726 - "wayland-scanner", 1727 - ] 1728 - 1729 - [[package]] 1730 - name = "wayland-protocols-wlr" 1731 - version = "0.2.0" 1732 - source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6" 1734 - dependencies = [ 1735 - "bitflags 2.5.0", 1736 - "wayland-backend", 1737 - "wayland-client", 1738 - "wayland-protocols", 1739 - "wayland-scanner", 1740 - ] 1741 - 1742 - [[package]] 1743 - name = "wayland-scanner" 1744 - version = "0.31.1" 1745 - source = "registry+https://github.com/rust-lang/crates.io-index" 1746 - checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283" 1747 - dependencies = [ 1748 - "proc-macro2", 1749 - "quick-xml", 1750 - "quote", 1751 - ] 1752 - 1753 - [[package]] 1754 - name = "wayland-sys" 1755 - version = "0.31.1" 1756 - source = "registry+https://github.com/rust-lang/crates.io-index" 1757 - checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af" 1758 - dependencies = [ 1759 - "dlib", 1760 - "log", 1761 - "pkg-config", 1762 - ] 1763 - 1764 - [[package]] 1765 - name = "web-sys" 1766 - version = "0.3.69" 1767 - source = "registry+https://github.com/rust-lang/crates.io-index" 1768 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 1769 - dependencies = [ 1770 - "js-sys", 1771 - "wasm-bindgen", 1772 - ] 1773 - 1774 - [[package]] 1775 - name = "weezl" 1776 - version = "0.1.8" 1777 - source = "registry+https://github.com/rust-lang/crates.io-index" 1778 - checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 1779 - 1780 - [[package]] 1781 - name = "winapi-util" 1782 - version = "0.1.8" 1783 - source = "registry+https://github.com/rust-lang/crates.io-index" 1784 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 1785 - dependencies = [ 1786 - "windows-sys 0.52.0", 1787 - ] 1788 - 1789 - [[package]] 1790 - name = "windows-sys" 1791 - version = "0.48.0" 1792 - source = "registry+https://github.com/rust-lang/crates.io-index" 1793 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1794 - dependencies = [ 1795 - "windows-targets 0.48.5", 1796 - ] 1797 - 1798 - [[package]] 1799 - name = "windows-sys" 1800 - version = "0.52.0" 1801 - source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1803 - dependencies = [ 1804 - "windows-targets 0.52.5", 1805 - ] 1806 - 1807 - [[package]] 1808 - name = "windows-targets" 1809 - version = "0.48.5" 1810 - source = "registry+https://github.com/rust-lang/crates.io-index" 1811 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1812 - dependencies = [ 1813 - "windows_aarch64_gnullvm 0.48.5", 1814 - "windows_aarch64_msvc 0.48.5", 1815 - "windows_i686_gnu 0.48.5", 1816 - "windows_i686_msvc 0.48.5", 1817 - "windows_x86_64_gnu 0.48.5", 1818 - "windows_x86_64_gnullvm 0.48.5", 1819 - "windows_x86_64_msvc 0.48.5", 1820 - ] 1821 - 1822 - [[package]] 1823 - name = "windows-targets" 1824 - version = "0.52.5" 1825 - source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 1827 - dependencies = [ 1828 - "windows_aarch64_gnullvm 0.52.5", 1829 - "windows_aarch64_msvc 0.52.5", 1830 - "windows_i686_gnu 0.52.5", 1831 - "windows_i686_gnullvm", 1832 - "windows_i686_msvc 0.52.5", 1833 - "windows_x86_64_gnu 0.52.5", 1834 - "windows_x86_64_gnullvm 0.52.5", 1835 - "windows_x86_64_msvc 0.52.5", 1836 - ] 1837 - 1838 - [[package]] 1839 - name = "windows_aarch64_gnullvm" 1840 - version = "0.48.5" 1841 - source = "registry+https://github.com/rust-lang/crates.io-index" 1842 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1843 - 1844 - [[package]] 1845 - name = "windows_aarch64_gnullvm" 1846 - version = "0.52.5" 1847 - source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 1849 - 1850 - [[package]] 1851 - name = "windows_aarch64_msvc" 1852 - version = "0.48.5" 1853 - source = "registry+https://github.com/rust-lang/crates.io-index" 1854 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1855 - 1856 - [[package]] 1857 - name = "windows_aarch64_msvc" 1858 - version = "0.52.5" 1859 - source = "registry+https://github.com/rust-lang/crates.io-index" 1860 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 1861 - 1862 - [[package]] 1863 - name = "windows_i686_gnu" 1864 - version = "0.48.5" 1865 - source = "registry+https://github.com/rust-lang/crates.io-index" 1866 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1867 - 1868 - [[package]] 1869 - name = "windows_i686_gnu" 1870 - version = "0.52.5" 1871 - source = "registry+https://github.com/rust-lang/crates.io-index" 1872 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 1873 - 1874 - [[package]] 1875 - name = "windows_i686_gnullvm" 1876 - version = "0.52.5" 1877 - source = "registry+https://github.com/rust-lang/crates.io-index" 1878 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 1879 - 1880 - [[package]] 1881 - name = "windows_i686_msvc" 1882 - version = "0.48.5" 1883 - source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1885 - 1886 - [[package]] 1887 - name = "windows_i686_msvc" 1888 - version = "0.52.5" 1889 - source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 1891 - 1892 - [[package]] 1893 - name = "windows_x86_64_gnu" 1894 - version = "0.48.5" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1897 - 1898 - [[package]] 1899 - name = "windows_x86_64_gnu" 1900 - version = "0.52.5" 1901 - source = "registry+https://github.com/rust-lang/crates.io-index" 1902 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 1903 - 1904 - [[package]] 1905 - name = "windows_x86_64_gnullvm" 1906 - version = "0.48.5" 1907 - source = "registry+https://github.com/rust-lang/crates.io-index" 1908 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1909 - 1910 - [[package]] 1911 - name = "windows_x86_64_gnullvm" 1912 - version = "0.52.5" 1913 - source = "registry+https://github.com/rust-lang/crates.io-index" 1914 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 1915 - 1916 - [[package]] 1917 - name = "windows_x86_64_msvc" 1918 - version = "0.48.5" 1919 - source = "registry+https://github.com/rust-lang/crates.io-index" 1920 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1921 - 1922 - [[package]] 1923 - name = "windows_x86_64_msvc" 1924 - version = "0.52.5" 1925 - source = "registry+https://github.com/rust-lang/crates.io-index" 1926 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 1927 - 1928 - [[package]] 1929 - name = "winnow" 1930 - version = "0.6.7" 1931 - source = "registry+https://github.com/rust-lang/crates.io-index" 1932 - checksum = "14b9415ee827af173ebb3f15f9083df5a122eb93572ec28741fb153356ea2578" 1933 - dependencies = [ 1934 - "memchr", 1935 - ] 1936 - 1937 - [[package]] 1938 - name = "zune-core" 1939 - version = "0.4.12" 1940 - source = "registry+https://github.com/rust-lang/crates.io-index" 1941 - checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 1942 - 1943 - [[package]] 1944 - name = "zune-inflate" 1945 - version = "0.2.54" 1946 - source = "registry+https://github.com/rust-lang/crates.io-index" 1947 - checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 1948 - dependencies = [ 1949 - "simd-adler32", 1950 - ] 1951 - 1952 - [[package]] 1953 - name = "zune-jpeg" 1954 - version = "0.4.11" 1955 - source = "registry+https://github.com/rust-lang/crates.io-index" 1956 - checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448" 1957 - dependencies = [ 1958 - "zune-core", 1959 - ]
+5 -9
pkgs/by-name/sw/swww/package.nix
··· 9 9 scdoc, 10 10 }: 11 11 12 - rustPlatform.buildRustPackage rec { 12 + rustPlatform.buildRustPackage (finalAttrs: { 13 13 pname = "swww"; 14 14 version = "0.9.5"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "LGFae"; 18 18 repo = "swww"; 19 - tag = "v${version}"; 19 + tag = "v${finalAttrs.version}"; 20 20 hash = "sha256-ldy9HhIsWdtTdvtRLV3qDT80oX646BI4Q+YX5wJXbsc="; 21 21 }; 22 22 23 - cargoLock = { 24 - lockFile = ./Cargo.lock; 25 - outputHashes = { 26 - "bitcode-0.6.0" = "sha256-D1Jv9k9m6m7dXjU8s4YMEMC39FOUN7Ix9SvLKhM1yh0="; 27 - }; 28 - }; 23 + useFetchCargoVendor = true; 24 + cargoHash = "sha256-K1ww0bOD747EDtqYkA0Dlu7cwbjYcPwSXPSqQDbTwZo="; 29 25 30 26 buildInputs = [ 31 27 lz4 ··· 64 60 platforms = lib.platforms.linux; 65 61 mainProgram = "swww"; 66 62 }; 67 - } 63 + })
-1801
pkgs/by-name/sy/system76-power/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.24.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler2" 16 - version = "2.0.0" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 - 20 - [[package]] 21 - name = "aho-corasick" 22 - version = "1.1.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25 - dependencies = [ 26 - "memchr", 27 - ] 28 - 29 - [[package]] 30 - name = "anstream" 31 - version = "0.6.15" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 34 - dependencies = [ 35 - "anstyle", 36 - "anstyle-parse", 37 - "anstyle-query", 38 - "anstyle-wincon", 39 - "colorchoice", 40 - "is_terminal_polyfill", 41 - "utf8parse", 42 - ] 43 - 44 - [[package]] 45 - name = "anstyle" 46 - version = "1.0.8" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 49 - 50 - [[package]] 51 - name = "anstyle-parse" 52 - version = "0.2.5" 53 - source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 55 - dependencies = [ 56 - "utf8parse", 57 - ] 58 - 59 - [[package]] 60 - name = "anstyle-query" 61 - version = "1.1.1" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 64 - dependencies = [ 65 - "windows-sys 0.52.0", 66 - ] 67 - 68 - [[package]] 69 - name = "anstyle-wincon" 70 - version = "3.0.4" 71 - source = "registry+https://github.com/rust-lang/crates.io-index" 72 - checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 73 - dependencies = [ 74 - "anstyle", 75 - "windows-sys 0.52.0", 76 - ] 77 - 78 - [[package]] 79 - name = "anyhow" 80 - version = "1.0.91" 81 - source = "registry+https://github.com/rust-lang/crates.io-index" 82 - checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" 83 - 84 - [[package]] 85 - name = "async-broadcast" 86 - version = "0.5.1" 87 - source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 89 - dependencies = [ 90 - "event-listener 2.5.3", 91 - "futures-core", 92 - ] 93 - 94 - [[package]] 95 - name = "async-channel" 96 - version = "2.3.1" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 99 - dependencies = [ 100 - "concurrent-queue", 101 - "event-listener-strategy", 102 - "futures-core", 103 - "pin-project-lite", 104 - ] 105 - 106 - [[package]] 107 - name = "async-executor" 108 - version = "1.13.1" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" 111 - dependencies = [ 112 - "async-task", 113 - "concurrent-queue", 114 - "fastrand 2.1.1", 115 - "futures-lite 2.3.0", 116 - "slab", 117 - ] 118 - 119 - [[package]] 120 - name = "async-fs" 121 - version = "1.6.0" 122 - source = "registry+https://github.com/rust-lang/crates.io-index" 123 - checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 124 - dependencies = [ 125 - "async-lock 2.8.0", 126 - "autocfg", 127 - "blocking", 128 - "futures-lite 1.13.0", 129 - ] 130 - 131 - [[package]] 132 - name = "async-io" 133 - version = "1.13.0" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 136 - dependencies = [ 137 - "async-lock 2.8.0", 138 - "autocfg", 139 - "cfg-if", 140 - "concurrent-queue", 141 - "futures-lite 1.13.0", 142 - "log", 143 - "parking", 144 - "polling 2.8.0", 145 - "rustix 0.37.27", 146 - "slab", 147 - "socket2 0.4.10", 148 - "waker-fn", 149 - ] 150 - 151 - [[package]] 152 - name = "async-io" 153 - version = "2.3.4" 154 - source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" 156 - dependencies = [ 157 - "async-lock 3.4.0", 158 - "cfg-if", 159 - "concurrent-queue", 160 - "futures-io", 161 - "futures-lite 2.3.0", 162 - "parking", 163 - "polling 3.7.3", 164 - "rustix 0.38.37", 165 - "slab", 166 - "tracing", 167 - "windows-sys 0.59.0", 168 - ] 169 - 170 - [[package]] 171 - name = "async-lock" 172 - version = "2.8.0" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 175 - dependencies = [ 176 - "event-listener 2.5.3", 177 - ] 178 - 179 - [[package]] 180 - name = "async-lock" 181 - version = "3.4.0" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 184 - dependencies = [ 185 - "event-listener 5.3.1", 186 - "event-listener-strategy", 187 - "pin-project-lite", 188 - ] 189 - 190 - [[package]] 191 - name = "async-process" 192 - version = "1.8.1" 193 - source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" 195 - dependencies = [ 196 - "async-io 1.13.0", 197 - "async-lock 2.8.0", 198 - "async-signal", 199 - "blocking", 200 - "cfg-if", 201 - "event-listener 3.1.0", 202 - "futures-lite 1.13.0", 203 - "rustix 0.38.37", 204 - "windows-sys 0.48.0", 205 - ] 206 - 207 - [[package]] 208 - name = "async-recursion" 209 - version = "1.1.1" 210 - source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 212 - dependencies = [ 213 - "proc-macro2", 214 - "quote", 215 - "syn 2.0.82", 216 - ] 217 - 218 - [[package]] 219 - name = "async-signal" 220 - version = "0.2.10" 221 - source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" 223 - dependencies = [ 224 - "async-io 2.3.4", 225 - "async-lock 3.4.0", 226 - "atomic-waker", 227 - "cfg-if", 228 - "futures-core", 229 - "futures-io", 230 - "rustix 0.38.37", 231 - "signal-hook-registry", 232 - "slab", 233 - "windows-sys 0.59.0", 234 - ] 235 - 236 - [[package]] 237 - name = "async-task" 238 - version = "4.7.1" 239 - source = "registry+https://github.com/rust-lang/crates.io-index" 240 - checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 241 - 242 - [[package]] 243 - name = "async-trait" 244 - version = "0.1.83" 245 - source = "registry+https://github.com/rust-lang/crates.io-index" 246 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 247 - dependencies = [ 248 - "proc-macro2", 249 - "quote", 250 - "syn 2.0.82", 251 - ] 252 - 253 - [[package]] 254 - name = "atomic-waker" 255 - version = "1.1.2" 256 - source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 258 - 259 - [[package]] 260 - name = "autocfg" 261 - version = "1.4.0" 262 - source = "registry+https://github.com/rust-lang/crates.io-index" 263 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 264 - 265 - [[package]] 266 - name = "backtrace" 267 - version = "0.3.74" 268 - source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 270 - dependencies = [ 271 - "addr2line", 272 - "cfg-if", 273 - "libc", 274 - "miniz_oxide", 275 - "object", 276 - "rustc-demangle", 277 - "windows-targets 0.52.6", 278 - ] 279 - 280 - [[package]] 281 - name = "bitflags" 282 - version = "1.3.2" 283 - source = "registry+https://github.com/rust-lang/crates.io-index" 284 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 285 - 286 - [[package]] 287 - name = "bitflags" 288 - version = "2.6.0" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 291 - 292 - [[package]] 293 - name = "block-buffer" 294 - version = "0.10.4" 295 - source = "registry+https://github.com/rust-lang/crates.io-index" 296 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 297 - dependencies = [ 298 - "generic-array", 299 - ] 300 - 301 - [[package]] 302 - name = "blocking" 303 - version = "1.6.1" 304 - source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 306 - dependencies = [ 307 - "async-channel", 308 - "async-task", 309 - "futures-io", 310 - "futures-lite 2.3.0", 311 - "piper", 312 - ] 313 - 314 - [[package]] 315 - name = "byteorder" 316 - version = "1.5.0" 317 - source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 319 - 320 - [[package]] 321 - name = "bytes" 322 - version = "1.8.0" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 325 - 326 - [[package]] 327 - name = "cc" 328 - version = "1.1.31" 329 - source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" 331 - dependencies = [ 332 - "shlex", 333 - ] 334 - 335 - [[package]] 336 - name = "cfg-if" 337 - version = "1.0.0" 338 - source = "registry+https://github.com/rust-lang/crates.io-index" 339 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 340 - 341 - [[package]] 342 - name = "clap" 343 - version = "4.5.20" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" 346 - dependencies = [ 347 - "clap_builder", 348 - "clap_derive", 349 - ] 350 - 351 - [[package]] 352 - name = "clap_builder" 353 - version = "4.5.20" 354 - source = "registry+https://github.com/rust-lang/crates.io-index" 355 - checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" 356 - dependencies = [ 357 - "anstream", 358 - "anstyle", 359 - "clap_lex", 360 - "strsim", 361 - ] 362 - 363 - [[package]] 364 - name = "clap_derive" 365 - version = "4.5.18" 366 - source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 368 - dependencies = [ 369 - "heck", 370 - "proc-macro2", 371 - "quote", 372 - "syn 2.0.82", 373 - ] 374 - 375 - [[package]] 376 - name = "clap_lex" 377 - version = "0.7.2" 378 - source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 380 - 381 - [[package]] 382 - name = "colorchoice" 383 - version = "1.0.2" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 386 - 387 - [[package]] 388 - name = "concat-in-place" 389 - version = "1.1.0" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "c5b80dba65d26e0c4b692ad0312b837f1177e8175031af57fd1de4f3bc36b430" 392 - 393 - [[package]] 394 - name = "concurrent-queue" 395 - version = "2.5.0" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 398 - dependencies = [ 399 - "crossbeam-utils", 400 - ] 401 - 402 - [[package]] 403 - name = "cpufeatures" 404 - version = "0.2.14" 405 - source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 407 - dependencies = [ 408 - "libc", 409 - ] 410 - 411 - [[package]] 412 - name = "crossbeam-utils" 413 - version = "0.8.20" 414 - source = "registry+https://github.com/rust-lang/crates.io-index" 415 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 416 - 417 - [[package]] 418 - name = "crypto-common" 419 - version = "0.1.6" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 422 - dependencies = [ 423 - "generic-array", 424 - "typenum", 425 - ] 426 - 427 - [[package]] 428 - name = "darling" 429 - version = "0.20.10" 430 - source = "registry+https://github.com/rust-lang/crates.io-index" 431 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 432 - dependencies = [ 433 - "darling_core", 434 - "darling_macro", 435 - ] 436 - 437 - [[package]] 438 - name = "darling_core" 439 - version = "0.20.10" 440 - source = "registry+https://github.com/rust-lang/crates.io-index" 441 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 442 - dependencies = [ 443 - "fnv", 444 - "ident_case", 445 - "proc-macro2", 446 - "quote", 447 - "strsim", 448 - "syn 2.0.82", 449 - ] 450 - 451 - [[package]] 452 - name = "darling_macro" 453 - version = "0.20.10" 454 - source = "registry+https://github.com/rust-lang/crates.io-index" 455 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 456 - dependencies = [ 457 - "darling_core", 458 - "quote", 459 - "syn 2.0.82", 460 - ] 461 - 462 - [[package]] 463 - name = "derivative" 464 - version = "2.2.0" 465 - source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 467 - dependencies = [ 468 - "proc-macro2", 469 - "quote", 470 - "syn 1.0.109", 471 - ] 472 - 473 - [[package]] 474 - name = "derive_setters" 475 - version = "0.1.6" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "4e8ef033054e131169b8f0f9a7af8f5533a9436fadf3c500ed547f730f07090d" 478 - dependencies = [ 479 - "darling", 480 - "proc-macro2", 481 - "quote", 482 - "syn 2.0.82", 483 - ] 484 - 485 - [[package]] 486 - name = "digest" 487 - version = "0.10.7" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 490 - dependencies = [ 491 - "block-buffer", 492 - "crypto-common", 493 - ] 494 - 495 - [[package]] 496 - name = "enumflags2" 497 - version = "0.7.10" 498 - source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" 500 - dependencies = [ 501 - "enumflags2_derive", 502 - "serde", 503 - ] 504 - 505 - [[package]] 506 - name = "enumflags2_derive" 507 - version = "0.7.10" 508 - source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" 510 - dependencies = [ 511 - "proc-macro2", 512 - "quote", 513 - "syn 2.0.82", 514 - ] 515 - 516 - [[package]] 517 - name = "equivalent" 518 - version = "1.0.1" 519 - source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 521 - 522 - [[package]] 523 - name = "errno" 524 - version = "0.3.9" 525 - source = "registry+https://github.com/rust-lang/crates.io-index" 526 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 527 - dependencies = [ 528 - "libc", 529 - "windows-sys 0.52.0", 530 - ] 531 - 532 - [[package]] 533 - name = "event-listener" 534 - version = "2.5.3" 535 - source = "registry+https://github.com/rust-lang/crates.io-index" 536 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 537 - 538 - [[package]] 539 - name = "event-listener" 540 - version = "3.1.0" 541 - source = "registry+https://github.com/rust-lang/crates.io-index" 542 - checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" 543 - dependencies = [ 544 - "concurrent-queue", 545 - "parking", 546 - "pin-project-lite", 547 - ] 548 - 549 - [[package]] 550 - name = "event-listener" 551 - version = "5.3.1" 552 - source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 554 - dependencies = [ 555 - "concurrent-queue", 556 - "parking", 557 - "pin-project-lite", 558 - ] 559 - 560 - [[package]] 561 - name = "event-listener-strategy" 562 - version = "0.5.2" 563 - source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 565 - dependencies = [ 566 - "event-listener 5.3.1", 567 - "pin-project-lite", 568 - ] 569 - 570 - [[package]] 571 - name = "fastrand" 572 - version = "1.9.0" 573 - source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 575 - dependencies = [ 576 - "instant", 577 - ] 578 - 579 - [[package]] 580 - name = "fastrand" 581 - version = "2.1.1" 582 - source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 584 - 585 - [[package]] 586 - name = "fern" 587 - version = "0.6.2" 588 - source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee" 590 - dependencies = [ 591 - "log", 592 - ] 593 - 594 - [[package]] 595 - name = "fnv" 596 - version = "1.0.7" 597 - source = "registry+https://github.com/rust-lang/crates.io-index" 598 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 599 - 600 - [[package]] 601 - name = "futures-core" 602 - version = "0.3.31" 603 - source = "registry+https://github.com/rust-lang/crates.io-index" 604 - checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 605 - 606 - [[package]] 607 - name = "futures-io" 608 - version = "0.3.31" 609 - source = "registry+https://github.com/rust-lang/crates.io-index" 610 - checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 611 - 612 - [[package]] 613 - name = "futures-lite" 614 - version = "1.13.0" 615 - source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 617 - dependencies = [ 618 - "fastrand 1.9.0", 619 - "futures-core", 620 - "futures-io", 621 - "memchr", 622 - "parking", 623 - "pin-project-lite", 624 - "waker-fn", 625 - ] 626 - 627 - [[package]] 628 - name = "futures-lite" 629 - version = "2.3.0" 630 - source = "registry+https://github.com/rust-lang/crates.io-index" 631 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 632 - dependencies = [ 633 - "fastrand 2.1.1", 634 - "futures-core", 635 - "futures-io", 636 - "parking", 637 - "pin-project-lite", 638 - ] 639 - 640 - [[package]] 641 - name = "futures-sink" 642 - version = "0.3.31" 643 - source = "registry+https://github.com/rust-lang/crates.io-index" 644 - checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 645 - 646 - [[package]] 647 - name = "futures-task" 648 - version = "0.3.31" 649 - source = "registry+https://github.com/rust-lang/crates.io-index" 650 - checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 651 - 652 - [[package]] 653 - name = "futures-util" 654 - version = "0.3.31" 655 - source = "registry+https://github.com/rust-lang/crates.io-index" 656 - checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 657 - dependencies = [ 658 - "futures-core", 659 - "futures-io", 660 - "futures-sink", 661 - "futures-task", 662 - "memchr", 663 - "pin-project-lite", 664 - "pin-utils", 665 - "slab", 666 - ] 667 - 668 - [[package]] 669 - name = "generic-array" 670 - version = "0.14.7" 671 - source = "registry+https://github.com/rust-lang/crates.io-index" 672 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 673 - dependencies = [ 674 - "typenum", 675 - "version_check", 676 - ] 677 - 678 - [[package]] 679 - name = "getrandom" 680 - version = "0.2.15" 681 - source = "registry+https://github.com/rust-lang/crates.io-index" 682 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 683 - dependencies = [ 684 - "cfg-if", 685 - "libc", 686 - "wasi", 687 - ] 688 - 689 - [[package]] 690 - name = "gimli" 691 - version = "0.31.1" 692 - source = "registry+https://github.com/rust-lang/crates.io-index" 693 - checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 694 - 695 - [[package]] 696 - name = "hashbrown" 697 - version = "0.15.0" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 700 - 701 - [[package]] 702 - name = "heck" 703 - version = "0.5.0" 704 - source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 706 - 707 - [[package]] 708 - name = "hermit-abi" 709 - version = "0.3.9" 710 - source = "registry+https://github.com/rust-lang/crates.io-index" 711 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 712 - 713 - [[package]] 714 - name = "hermit-abi" 715 - version = "0.4.0" 716 - source = "registry+https://github.com/rust-lang/crates.io-index" 717 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 718 - 719 - [[package]] 720 - name = "hex" 721 - version = "0.4.3" 722 - source = "registry+https://github.com/rust-lang/crates.io-index" 723 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 724 - 725 - [[package]] 726 - name = "hidapi" 727 - version = "1.5.0" 728 - source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "798154e4b6570af74899d71155fb0072d5b17e6aa12f39c8ef22c60fb8ec99e7" 730 - dependencies = [ 731 - "cc", 732 - "libc", 733 - "pkg-config", 734 - "winapi", 735 - ] 736 - 737 - [[package]] 738 - name = "ident_case" 739 - version = "1.0.1" 740 - source = "registry+https://github.com/rust-lang/crates.io-index" 741 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 742 - 743 - [[package]] 744 - name = "indexmap" 745 - version = "2.6.0" 746 - source = "registry+https://github.com/rust-lang/crates.io-index" 747 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 748 - dependencies = [ 749 - "equivalent", 750 - "hashbrown", 751 - ] 752 - 753 - [[package]] 754 - name = "inotify" 755 - version = "0.10.2" 756 - source = "registry+https://github.com/rust-lang/crates.io-index" 757 - checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc" 758 - dependencies = [ 759 - "bitflags 1.3.2", 760 - "futures-core", 761 - "inotify-sys", 762 - "libc", 763 - "tokio", 764 - ] 765 - 766 - [[package]] 767 - name = "inotify-sys" 768 - version = "0.1.5" 769 - source = "registry+https://github.com/rust-lang/crates.io-index" 770 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 771 - dependencies = [ 772 - "libc", 773 - ] 774 - 775 - [[package]] 776 - name = "instant" 777 - version = "0.1.13" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 780 - dependencies = [ 781 - "cfg-if", 782 - ] 783 - 784 - [[package]] 785 - name = "intel-pstate" 786 - version = "1.0.1" 787 - source = "registry+https://github.com/rust-lang/crates.io-index" 788 - checksum = "1c22b01d00d25089087e403d1d2533cce061f90ca9cc460d0049be94a3e1d563" 789 - dependencies = [ 790 - "derive_setters", 791 - "smart-default", 792 - "thiserror", 793 - ] 794 - 795 - [[package]] 796 - name = "io-lifetimes" 797 - version = "1.0.11" 798 - source = "registry+https://github.com/rust-lang/crates.io-index" 799 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 800 - dependencies = [ 801 - "hermit-abi 0.3.9", 802 - "libc", 803 - "windows-sys 0.48.0", 804 - ] 805 - 806 - [[package]] 807 - name = "is_terminal_polyfill" 808 - version = "1.70.1" 809 - source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 811 - 812 - [[package]] 813 - name = "itoa" 814 - version = "1.0.11" 815 - source = "registry+https://github.com/rust-lang/crates.io-index" 816 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 817 - 818 - [[package]] 819 - name = "libc" 820 - version = "0.2.161" 821 - source = "registry+https://github.com/rust-lang/crates.io-index" 822 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 823 - 824 - [[package]] 825 - name = "linux-raw-sys" 826 - version = "0.3.8" 827 - source = "registry+https://github.com/rust-lang/crates.io-index" 828 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 829 - 830 - [[package]] 831 - name = "linux-raw-sys" 832 - version = "0.4.14" 833 - source = "registry+https://github.com/rust-lang/crates.io-index" 834 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 835 - 836 - [[package]] 837 - name = "log" 838 - version = "0.4.22" 839 - source = "registry+https://github.com/rust-lang/crates.io-index" 840 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 841 - 842 - [[package]] 843 - name = "memchr" 844 - version = "2.7.4" 845 - source = "registry+https://github.com/rust-lang/crates.io-index" 846 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 847 - 848 - [[package]] 849 - name = "memoffset" 850 - version = "0.7.1" 851 - source = "registry+https://github.com/rust-lang/crates.io-index" 852 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 853 - dependencies = [ 854 - "autocfg", 855 - ] 856 - 857 - [[package]] 858 - name = "memoffset" 859 - version = "0.9.1" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 862 - dependencies = [ 863 - "autocfg", 864 - ] 865 - 866 - [[package]] 867 - name = "miniz_oxide" 868 - version = "0.8.0" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 871 - dependencies = [ 872 - "adler2", 873 - ] 874 - 875 - [[package]] 876 - name = "mio" 877 - version = "1.0.2" 878 - source = "registry+https://github.com/rust-lang/crates.io-index" 879 - checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 880 - dependencies = [ 881 - "hermit-abi 0.3.9", 882 - "libc", 883 - "wasi", 884 - "windows-sys 0.52.0", 885 - ] 886 - 887 - [[package]] 888 - name = "nix" 889 - version = "0.26.4" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 892 - dependencies = [ 893 - "bitflags 1.3.2", 894 - "cfg-if", 895 - "libc", 896 - "memoffset 0.7.1", 897 - ] 898 - 899 - [[package]] 900 - name = "numtoa" 901 - version = "0.2.4" 902 - source = "registry+https://github.com/rust-lang/crates.io-index" 903 - checksum = "6aa2c4e539b869820a2b82e1aef6ff40aa85e65decdd5185e83fb4b1249cd00f" 904 - 905 - [[package]] 906 - name = "object" 907 - version = "0.36.5" 908 - source = "registry+https://github.com/rust-lang/crates.io-index" 909 - checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 910 - dependencies = [ 911 - "memchr", 912 - ] 913 - 914 - [[package]] 915 - name = "once_cell" 916 - version = "1.20.2" 917 - source = "registry+https://github.com/rust-lang/crates.io-index" 918 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 919 - 920 - [[package]] 921 - name = "ordered-stream" 922 - version = "0.2.0" 923 - source = "registry+https://github.com/rust-lang/crates.io-index" 924 - checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 925 - dependencies = [ 926 - "futures-core", 927 - "pin-project-lite", 928 - ] 929 - 930 - [[package]] 931 - name = "parking" 932 - version = "2.2.1" 933 - source = "registry+https://github.com/rust-lang/crates.io-index" 934 - checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 935 - 936 - [[package]] 937 - name = "pin-project-lite" 938 - version = "0.2.14" 939 - source = "registry+https://github.com/rust-lang/crates.io-index" 940 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 941 - 942 - [[package]] 943 - name = "pin-utils" 944 - version = "0.1.0" 945 - source = "registry+https://github.com/rust-lang/crates.io-index" 946 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 947 - 948 - [[package]] 949 - name = "piper" 950 - version = "0.2.4" 951 - source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 953 - dependencies = [ 954 - "atomic-waker", 955 - "fastrand 2.1.1", 956 - "futures-io", 957 - ] 958 - 959 - [[package]] 960 - name = "pkg-config" 961 - version = "0.3.31" 962 - source = "registry+https://github.com/rust-lang/crates.io-index" 963 - checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 964 - 965 - [[package]] 966 - name = "polling" 967 - version = "2.8.0" 968 - source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 970 - dependencies = [ 971 - "autocfg", 972 - "bitflags 1.3.2", 973 - "cfg-if", 974 - "concurrent-queue", 975 - "libc", 976 - "log", 977 - "pin-project-lite", 978 - "windows-sys 0.48.0", 979 - ] 980 - 981 - [[package]] 982 - name = "polling" 983 - version = "3.7.3" 984 - source = "registry+https://github.com/rust-lang/crates.io-index" 985 - checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" 986 - dependencies = [ 987 - "cfg-if", 988 - "concurrent-queue", 989 - "hermit-abi 0.4.0", 990 - "pin-project-lite", 991 - "rustix 0.38.37", 992 - "tracing", 993 - "windows-sys 0.59.0", 994 - ] 995 - 996 - [[package]] 997 - name = "ppv-lite86" 998 - version = "0.2.20" 999 - source = "registry+https://github.com/rust-lang/crates.io-index" 1000 - checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 1001 - dependencies = [ 1002 - "zerocopy", 1003 - ] 1004 - 1005 - [[package]] 1006 - name = "proc-macro-crate" 1007 - version = "1.3.1" 1008 - source = "registry+https://github.com/rust-lang/crates.io-index" 1009 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1010 - dependencies = [ 1011 - "once_cell", 1012 - "toml_edit", 1013 - ] 1014 - 1015 - [[package]] 1016 - name = "proc-macro2" 1017 - version = "1.0.89" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" 1020 - dependencies = [ 1021 - "unicode-ident", 1022 - ] 1023 - 1024 - [[package]] 1025 - name = "quote" 1026 - version = "1.0.37" 1027 - source = "registry+https://github.com/rust-lang/crates.io-index" 1028 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 1029 - dependencies = [ 1030 - "proc-macro2", 1031 - ] 1032 - 1033 - [[package]] 1034 - name = "rand" 1035 - version = "0.8.5" 1036 - source = "registry+https://github.com/rust-lang/crates.io-index" 1037 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1038 - dependencies = [ 1039 - "libc", 1040 - "rand_chacha", 1041 - "rand_core", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "rand_chacha" 1046 - version = "0.3.1" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1049 - dependencies = [ 1050 - "ppv-lite86", 1051 - "rand_core", 1052 - ] 1053 - 1054 - [[package]] 1055 - name = "rand_core" 1056 - version = "0.6.4" 1057 - source = "registry+https://github.com/rust-lang/crates.io-index" 1058 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1059 - dependencies = [ 1060 - "getrandom", 1061 - ] 1062 - 1063 - [[package]] 1064 - name = "regex" 1065 - version = "1.11.0" 1066 - source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 1068 - dependencies = [ 1069 - "aho-corasick", 1070 - "memchr", 1071 - "regex-automata", 1072 - "regex-syntax", 1073 - ] 1074 - 1075 - [[package]] 1076 - name = "regex-automata" 1077 - version = "0.4.8" 1078 - source = "registry+https://github.com/rust-lang/crates.io-index" 1079 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 1080 - dependencies = [ 1081 - "aho-corasick", 1082 - "memchr", 1083 - "regex-syntax", 1084 - ] 1085 - 1086 - [[package]] 1087 - name = "regex-syntax" 1088 - version = "0.8.5" 1089 - source = "registry+https://github.com/rust-lang/crates.io-index" 1090 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1091 - 1092 - [[package]] 1093 - name = "rustc-demangle" 1094 - version = "0.1.24" 1095 - source = "registry+https://github.com/rust-lang/crates.io-index" 1096 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1097 - 1098 - [[package]] 1099 - name = "rustix" 1100 - version = "0.37.27" 1101 - source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 1103 - dependencies = [ 1104 - "bitflags 1.3.2", 1105 - "errno", 1106 - "io-lifetimes", 1107 - "libc", 1108 - "linux-raw-sys 0.3.8", 1109 - "windows-sys 0.48.0", 1110 - ] 1111 - 1112 - [[package]] 1113 - name = "rustix" 1114 - version = "0.38.37" 1115 - source = "registry+https://github.com/rust-lang/crates.io-index" 1116 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 1117 - dependencies = [ 1118 - "bitflags 2.6.0", 1119 - "errno", 1120 - "libc", 1121 - "linux-raw-sys 0.4.14", 1122 - "windows-sys 0.52.0", 1123 - ] 1124 - 1125 - [[package]] 1126 - name = "ryu" 1127 - version = "1.0.18" 1128 - source = "registry+https://github.com/rust-lang/crates.io-index" 1129 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1130 - 1131 - [[package]] 1132 - name = "serde" 1133 - version = "1.0.213" 1134 - source = "registry+https://github.com/rust-lang/crates.io-index" 1135 - checksum = "3ea7893ff5e2466df8d720bb615088341b295f849602c6956047f8f80f0e9bc1" 1136 - dependencies = [ 1137 - "serde_derive", 1138 - ] 1139 - 1140 - [[package]] 1141 - name = "serde_derive" 1142 - version = "1.0.213" 1143 - source = "registry+https://github.com/rust-lang/crates.io-index" 1144 - checksum = "7e85ad2009c50b58e87caa8cd6dac16bdf511bbfb7af6c33df902396aa480fa5" 1145 - dependencies = [ 1146 - "proc-macro2", 1147 - "quote", 1148 - "syn 2.0.82", 1149 - ] 1150 - 1151 - [[package]] 1152 - name = "serde_json" 1153 - version = "1.0.132" 1154 - source = "registry+https://github.com/rust-lang/crates.io-index" 1155 - checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" 1156 - dependencies = [ 1157 - "itoa", 1158 - "memchr", 1159 - "ryu", 1160 - "serde", 1161 - ] 1162 - 1163 - [[package]] 1164 - name = "serde_repr" 1165 - version = "0.1.19" 1166 - source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 1168 - dependencies = [ 1169 - "proc-macro2", 1170 - "quote", 1171 - "syn 2.0.82", 1172 - ] 1173 - 1174 - [[package]] 1175 - name = "sha1" 1176 - version = "0.10.6" 1177 - source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1179 - dependencies = [ 1180 - "cfg-if", 1181 - "cpufeatures", 1182 - "digest", 1183 - ] 1184 - 1185 - [[package]] 1186 - name = "shlex" 1187 - version = "1.3.0" 1188 - source = "registry+https://github.com/rust-lang/crates.io-index" 1189 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1190 - 1191 - [[package]] 1192 - name = "signal-hook-registry" 1193 - version = "1.4.2" 1194 - source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 1196 - dependencies = [ 1197 - "libc", 1198 - ] 1199 - 1200 - [[package]] 1201 - name = "slab" 1202 - version = "0.4.9" 1203 - source = "registry+https://github.com/rust-lang/crates.io-index" 1204 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1205 - dependencies = [ 1206 - "autocfg", 1207 - ] 1208 - 1209 - [[package]] 1210 - name = "smart-default" 1211 - version = "0.6.0" 1212 - source = "registry+https://github.com/rust-lang/crates.io-index" 1213 - checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6" 1214 - dependencies = [ 1215 - "proc-macro2", 1216 - "quote", 1217 - "syn 1.0.109", 1218 - ] 1219 - 1220 - [[package]] 1221 - name = "socket2" 1222 - version = "0.4.10" 1223 - source = "registry+https://github.com/rust-lang/crates.io-index" 1224 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 1225 - dependencies = [ 1226 - "libc", 1227 - "winapi", 1228 - ] 1229 - 1230 - [[package]] 1231 - name = "socket2" 1232 - version = "0.5.7" 1233 - source = "registry+https://github.com/rust-lang/crates.io-index" 1234 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1235 - dependencies = [ 1236 - "libc", 1237 - "windows-sys 0.52.0", 1238 - ] 1239 - 1240 - [[package]] 1241 - name = "static_assertions" 1242 - version = "1.1.0" 1243 - source = "registry+https://github.com/rust-lang/crates.io-index" 1244 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1245 - 1246 - [[package]] 1247 - name = "strsim" 1248 - version = "0.11.1" 1249 - source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1251 - 1252 - [[package]] 1253 - name = "syn" 1254 - version = "1.0.109" 1255 - source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1257 - dependencies = [ 1258 - "proc-macro2", 1259 - "quote", 1260 - "unicode-ident", 1261 - ] 1262 - 1263 - [[package]] 1264 - name = "syn" 1265 - version = "2.0.82" 1266 - source = "registry+https://github.com/rust-lang/crates.io-index" 1267 - checksum = "83540f837a8afc019423a8edb95b52a8effe46957ee402287f4292fae35be021" 1268 - dependencies = [ 1269 - "proc-macro2", 1270 - "quote", 1271 - "unicode-ident", 1272 - ] 1273 - 1274 - [[package]] 1275 - name = "sysfs-class" 1276 - version = "0.1.3" 1277 - source = "git+https://github.com/pop-os/sysfs-class#ab63e7f638aadfaf896a02e53cf330343d331337" 1278 - dependencies = [ 1279 - "numtoa", 1280 - ] 1281 - 1282 - [[package]] 1283 - name = "system76-power" 1284 - version = "1.2.2" 1285 - dependencies = [ 1286 - "anyhow", 1287 - "clap", 1288 - "concat-in-place", 1289 - "fern", 1290 - "futures-lite 2.3.0", 1291 - "hidapi", 1292 - "inotify", 1293 - "intel-pstate", 1294 - "libc", 1295 - "log", 1296 - "once_cell", 1297 - "serde", 1298 - "serde_json", 1299 - "sysfs-class", 1300 - "system76-power-zbus", 1301 - "thiserror", 1302 - "tokio", 1303 - "zbus", 1304 - "zbus_polkit", 1305 - "zvariant", 1306 - ] 1307 - 1308 - [[package]] 1309 - name = "system76-power-zbus" 1310 - version = "1.2.1" 1311 - dependencies = [ 1312 - "serde", 1313 - "zbus", 1314 - "zvariant", 1315 - ] 1316 - 1317 - [[package]] 1318 - name = "tempfile" 1319 - version = "3.13.0" 1320 - source = "registry+https://github.com/rust-lang/crates.io-index" 1321 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 1322 - dependencies = [ 1323 - "cfg-if", 1324 - "fastrand 2.1.1", 1325 - "once_cell", 1326 - "rustix 0.38.37", 1327 - "windows-sys 0.59.0", 1328 - ] 1329 - 1330 - [[package]] 1331 - name = "thiserror" 1332 - version = "1.0.65" 1333 - source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5" 1335 - dependencies = [ 1336 - "thiserror-impl", 1337 - ] 1338 - 1339 - [[package]] 1340 - name = "thiserror-impl" 1341 - version = "1.0.65" 1342 - source = "registry+https://github.com/rust-lang/crates.io-index" 1343 - checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602" 1344 - dependencies = [ 1345 - "proc-macro2", 1346 - "quote", 1347 - "syn 2.0.82", 1348 - ] 1349 - 1350 - [[package]] 1351 - name = "tokio" 1352 - version = "1.41.0" 1353 - source = "registry+https://github.com/rust-lang/crates.io-index" 1354 - checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" 1355 - dependencies = [ 1356 - "backtrace", 1357 - "bytes", 1358 - "libc", 1359 - "mio", 1360 - "pin-project-lite", 1361 - "signal-hook-registry", 1362 - "socket2 0.5.7", 1363 - "tokio-macros", 1364 - "tracing", 1365 - "windows-sys 0.52.0", 1366 - ] 1367 - 1368 - [[package]] 1369 - name = "tokio-macros" 1370 - version = "2.4.0" 1371 - source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 1373 - dependencies = [ 1374 - "proc-macro2", 1375 - "quote", 1376 - "syn 2.0.82", 1377 - ] 1378 - 1379 - [[package]] 1380 - name = "toml_datetime" 1381 - version = "0.6.8" 1382 - source = "registry+https://github.com/rust-lang/crates.io-index" 1383 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 1384 - 1385 - [[package]] 1386 - name = "toml_edit" 1387 - version = "0.19.15" 1388 - source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 1390 - dependencies = [ 1391 - "indexmap", 1392 - "toml_datetime", 1393 - "winnow", 1394 - ] 1395 - 1396 - [[package]] 1397 - name = "tracing" 1398 - version = "0.1.40" 1399 - source = "registry+https://github.com/rust-lang/crates.io-index" 1400 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1401 - dependencies = [ 1402 - "pin-project-lite", 1403 - "tracing-attributes", 1404 - "tracing-core", 1405 - ] 1406 - 1407 - [[package]] 1408 - name = "tracing-attributes" 1409 - version = "0.1.27" 1410 - source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 1412 - dependencies = [ 1413 - "proc-macro2", 1414 - "quote", 1415 - "syn 2.0.82", 1416 - ] 1417 - 1418 - [[package]] 1419 - name = "tracing-core" 1420 - version = "0.1.32" 1421 - source = "registry+https://github.com/rust-lang/crates.io-index" 1422 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1423 - dependencies = [ 1424 - "once_cell", 1425 - ] 1426 - 1427 - [[package]] 1428 - name = "typenum" 1429 - version = "1.17.0" 1430 - source = "registry+https://github.com/rust-lang/crates.io-index" 1431 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 1432 - 1433 - [[package]] 1434 - name = "uds_windows" 1435 - version = "1.1.0" 1436 - source = "registry+https://github.com/rust-lang/crates.io-index" 1437 - checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 1438 - dependencies = [ 1439 - "memoffset 0.9.1", 1440 - "tempfile", 1441 - "winapi", 1442 - ] 1443 - 1444 - [[package]] 1445 - name = "unicode-ident" 1446 - version = "1.0.13" 1447 - source = "registry+https://github.com/rust-lang/crates.io-index" 1448 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 1449 - 1450 - [[package]] 1451 - name = "utf8parse" 1452 - version = "0.2.2" 1453 - source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1455 - 1456 - [[package]] 1457 - name = "version_check" 1458 - version = "0.9.5" 1459 - source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1461 - 1462 - [[package]] 1463 - name = "waker-fn" 1464 - version = "1.2.0" 1465 - source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 1467 - 1468 - [[package]] 1469 - name = "wasi" 1470 - version = "0.11.0+wasi-snapshot-preview1" 1471 - source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1473 - 1474 - [[package]] 1475 - name = "winapi" 1476 - version = "0.3.9" 1477 - source = "registry+https://github.com/rust-lang/crates.io-index" 1478 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1479 - dependencies = [ 1480 - "winapi-i686-pc-windows-gnu", 1481 - "winapi-x86_64-pc-windows-gnu", 1482 - ] 1483 - 1484 - [[package]] 1485 - name = "winapi-i686-pc-windows-gnu" 1486 - version = "0.4.0" 1487 - source = "registry+https://github.com/rust-lang/crates.io-index" 1488 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1489 - 1490 - [[package]] 1491 - name = "winapi-x86_64-pc-windows-gnu" 1492 - version = "0.4.0" 1493 - source = "registry+https://github.com/rust-lang/crates.io-index" 1494 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1495 - 1496 - [[package]] 1497 - name = "windows-sys" 1498 - version = "0.48.0" 1499 - source = "registry+https://github.com/rust-lang/crates.io-index" 1500 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1501 - dependencies = [ 1502 - "windows-targets 0.48.5", 1503 - ] 1504 - 1505 - [[package]] 1506 - name = "windows-sys" 1507 - version = "0.52.0" 1508 - source = "registry+https://github.com/rust-lang/crates.io-index" 1509 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1510 - dependencies = [ 1511 - "windows-targets 0.52.6", 1512 - ] 1513 - 1514 - [[package]] 1515 - name = "windows-sys" 1516 - version = "0.59.0" 1517 - source = "registry+https://github.com/rust-lang/crates.io-index" 1518 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1519 - dependencies = [ 1520 - "windows-targets 0.52.6", 1521 - ] 1522 - 1523 - [[package]] 1524 - name = "windows-targets" 1525 - version = "0.48.5" 1526 - source = "registry+https://github.com/rust-lang/crates.io-index" 1527 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1528 - dependencies = [ 1529 - "windows_aarch64_gnullvm 0.48.5", 1530 - "windows_aarch64_msvc 0.48.5", 1531 - "windows_i686_gnu 0.48.5", 1532 - "windows_i686_msvc 0.48.5", 1533 - "windows_x86_64_gnu 0.48.5", 1534 - "windows_x86_64_gnullvm 0.48.5", 1535 - "windows_x86_64_msvc 0.48.5", 1536 - ] 1537 - 1538 - [[package]] 1539 - name = "windows-targets" 1540 - version = "0.52.6" 1541 - source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1543 - dependencies = [ 1544 - "windows_aarch64_gnullvm 0.52.6", 1545 - "windows_aarch64_msvc 0.52.6", 1546 - "windows_i686_gnu 0.52.6", 1547 - "windows_i686_gnullvm", 1548 - "windows_i686_msvc 0.52.6", 1549 - "windows_x86_64_gnu 0.52.6", 1550 - "windows_x86_64_gnullvm 0.52.6", 1551 - "windows_x86_64_msvc 0.52.6", 1552 - ] 1553 - 1554 - [[package]] 1555 - name = "windows_aarch64_gnullvm" 1556 - version = "0.48.5" 1557 - source = "registry+https://github.com/rust-lang/crates.io-index" 1558 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1559 - 1560 - [[package]] 1561 - name = "windows_aarch64_gnullvm" 1562 - version = "0.52.6" 1563 - source = "registry+https://github.com/rust-lang/crates.io-index" 1564 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1565 - 1566 - [[package]] 1567 - name = "windows_aarch64_msvc" 1568 - version = "0.48.5" 1569 - source = "registry+https://github.com/rust-lang/crates.io-index" 1570 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1571 - 1572 - [[package]] 1573 - name = "windows_aarch64_msvc" 1574 - version = "0.52.6" 1575 - source = "registry+https://github.com/rust-lang/crates.io-index" 1576 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1577 - 1578 - [[package]] 1579 - name = "windows_i686_gnu" 1580 - version = "0.48.5" 1581 - source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1583 - 1584 - [[package]] 1585 - name = "windows_i686_gnu" 1586 - version = "0.52.6" 1587 - source = "registry+https://github.com/rust-lang/crates.io-index" 1588 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1589 - 1590 - [[package]] 1591 - name = "windows_i686_gnullvm" 1592 - version = "0.52.6" 1593 - source = "registry+https://github.com/rust-lang/crates.io-index" 1594 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1595 - 1596 - [[package]] 1597 - name = "windows_i686_msvc" 1598 - version = "0.48.5" 1599 - source = "registry+https://github.com/rust-lang/crates.io-index" 1600 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1601 - 1602 - [[package]] 1603 - name = "windows_i686_msvc" 1604 - version = "0.52.6" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1607 - 1608 - [[package]] 1609 - name = "windows_x86_64_gnu" 1610 - version = "0.48.5" 1611 - source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1613 - 1614 - [[package]] 1615 - name = "windows_x86_64_gnu" 1616 - version = "0.52.6" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1619 - 1620 - [[package]] 1621 - name = "windows_x86_64_gnullvm" 1622 - version = "0.48.5" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1625 - 1626 - [[package]] 1627 - name = "windows_x86_64_gnullvm" 1628 - version = "0.52.6" 1629 - source = "registry+https://github.com/rust-lang/crates.io-index" 1630 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1631 - 1632 - [[package]] 1633 - name = "windows_x86_64_msvc" 1634 - version = "0.48.5" 1635 - source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1637 - 1638 - [[package]] 1639 - name = "windows_x86_64_msvc" 1640 - version = "0.52.6" 1641 - source = "registry+https://github.com/rust-lang/crates.io-index" 1642 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1643 - 1644 - [[package]] 1645 - name = "winnow" 1646 - version = "0.5.40" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 1649 - dependencies = [ 1650 - "memchr", 1651 - ] 1652 - 1653 - [[package]] 1654 - name = "xdg-home" 1655 - version = "1.3.0" 1656 - source = "registry+https://github.com/rust-lang/crates.io-index" 1657 - checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" 1658 - dependencies = [ 1659 - "libc", 1660 - "windows-sys 0.59.0", 1661 - ] 1662 - 1663 - [[package]] 1664 - name = "zbus" 1665 - version = "3.15.2" 1666 - source = "registry+https://github.com/rust-lang/crates.io-index" 1667 - checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6" 1668 - dependencies = [ 1669 - "async-broadcast", 1670 - "async-executor", 1671 - "async-fs", 1672 - "async-io 1.13.0", 1673 - "async-lock 2.8.0", 1674 - "async-process", 1675 - "async-recursion", 1676 - "async-task", 1677 - "async-trait", 1678 - "blocking", 1679 - "byteorder", 1680 - "derivative", 1681 - "enumflags2", 1682 - "event-listener 2.5.3", 1683 - "futures-core", 1684 - "futures-sink", 1685 - "futures-util", 1686 - "hex", 1687 - "nix", 1688 - "once_cell", 1689 - "ordered-stream", 1690 - "rand", 1691 - "serde", 1692 - "serde_repr", 1693 - "sha1", 1694 - "static_assertions", 1695 - "tokio", 1696 - "tracing", 1697 - "uds_windows", 1698 - "winapi", 1699 - "xdg-home", 1700 - "zbus_macros", 1701 - "zbus_names", 1702 - "zvariant", 1703 - ] 1704 - 1705 - [[package]] 1706 - name = "zbus_macros" 1707 - version = "3.15.2" 1708 - source = "registry+https://github.com/rust-lang/crates.io-index" 1709 - checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5" 1710 - dependencies = [ 1711 - "proc-macro-crate", 1712 - "proc-macro2", 1713 - "quote", 1714 - "regex", 1715 - "syn 1.0.109", 1716 - "zvariant_utils", 1717 - ] 1718 - 1719 - [[package]] 1720 - name = "zbus_names" 1721 - version = "2.6.1" 1722 - source = "registry+https://github.com/rust-lang/crates.io-index" 1723 - checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d" 1724 - dependencies = [ 1725 - "serde", 1726 - "static_assertions", 1727 - "zvariant", 1728 - ] 1729 - 1730 - [[package]] 1731 - name = "zbus_polkit" 1732 - version = "3.0.1" 1733 - source = "registry+https://github.com/rust-lang/crates.io-index" 1734 - checksum = "07eb69d4b17d69f78632d4f9b03500f057e80764df8e17ed327f74ac67447813" 1735 - dependencies = [ 1736 - "enumflags2", 1737 - "serde", 1738 - "serde_repr", 1739 - "static_assertions", 1740 - "zbus", 1741 - "zvariant", 1742 - ] 1743 - 1744 - [[package]] 1745 - name = "zerocopy" 1746 - version = "0.7.35" 1747 - source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 1749 - dependencies = [ 1750 - "byteorder", 1751 - "zerocopy-derive", 1752 - ] 1753 - 1754 - [[package]] 1755 - name = "zerocopy-derive" 1756 - version = "0.7.35" 1757 - source = "registry+https://github.com/rust-lang/crates.io-index" 1758 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 1759 - dependencies = [ 1760 - "proc-macro2", 1761 - "quote", 1762 - "syn 2.0.82", 1763 - ] 1764 - 1765 - [[package]] 1766 - name = "zvariant" 1767 - version = "3.15.2" 1768 - source = "registry+https://github.com/rust-lang/crates.io-index" 1769 - checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db" 1770 - dependencies = [ 1771 - "byteorder", 1772 - "enumflags2", 1773 - "libc", 1774 - "serde", 1775 - "static_assertions", 1776 - "zvariant_derive", 1777 - ] 1778 - 1779 - [[package]] 1780 - name = "zvariant_derive" 1781 - version = "3.15.2" 1782 - source = "registry+https://github.com/rust-lang/crates.io-index" 1783 - checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9" 1784 - dependencies = [ 1785 - "proc-macro-crate", 1786 - "proc-macro2", 1787 - "quote", 1788 - "syn 1.0.109", 1789 - "zvariant_utils", 1790 - ] 1791 - 1792 - [[package]] 1793 - name = "zvariant_utils" 1794 - version = "1.0.1" 1795 - source = "registry+https://github.com/rust-lang/crates.io-index" 1796 - checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 1797 - dependencies = [ 1798 - "proc-macro2", 1799 - "quote", 1800 - "syn 1.0.109", 1801 - ]
+5 -9
pkgs/by-name/sy/system76-power/package.nix
··· 7 7 fetchFromGitHub, 8 8 }: 9 9 10 - rustPlatform.buildRustPackage rec { 10 + rustPlatform.buildRustPackage (finalAttrs: { 11 11 pname = "system76-power"; 12 12 version = "1.2.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "pop-os"; 16 16 repo = "system76-power"; 17 - rev = version; 17 + tag = finalAttrs.version; 18 18 hash = "sha256-fyatAoWw/4ORojayA90er+H5weRykg+2ZzTsGThpW5g="; 19 19 }; 20 20 ··· 24 24 libusb1 25 25 ]; 26 26 27 - cargoLock = { 28 - lockFile = ./Cargo.lock; 29 - outputHashes = { 30 - "sysfs-class-0.1.3" = "sha256-ztfwfCRAkxUd/LLNG5fpVuFdgX+tCKL3F35qYJ2GDm8="; 31 - }; 32 - }; 27 + useFetchCargoVendor = true; 28 + cargoHash = "sha256-/dhuWgHysJ2oWgJ6jc9u4tsUOxlFt/awlK/9Jk1GHCM="; 33 29 34 30 postInstall = '' 35 31 install -D -m 0644 data/com.system76.PowerDaemon.conf $out/etc/dbus-1/system.d/com.system76.PowerDaemon.conf ··· 52 48 ahoneybun 53 49 ]; 54 50 }; 55 - } 51 + })
+21 -6
pkgs/by-name/ti/tigerjython/package.nix
··· 3 3 lib, 4 4 fetchurl, 5 5 makeWrapper, 6 + writeText, 6 7 makeDesktopItem, 7 8 copyDesktopItems, 8 9 jre, ··· 23 24 # We cache potentially unstable upstream input (.tar.gz file) via https://web.archive.org - this is a common procedure in Nixpkgs. 24 25 # 25 26 # - Open https://tigerjython.ch/en/products/download and identify the new version string for "TigerJython IDE for Linux" 26 - version = "2.39"; 27 + version = "2.40"; 27 28 28 - # - and copy download link (most likely https://tigerjython.ch/user/pages/download/TigerJython.tar.gz) to clipboard. 29 + # - and copy download link (most likely https://tjgroup.ch/user/pages/download/TigerJython.tar.gz) to clipboard. 29 30 # - Open http://web.archive.org and paste download link from clipboard into "Save Page Now" field and hit the "Save Page" button. 30 31 # - Unselect "Save Error Pages" and hit "Save Page" again. 31 32 # - Wait for the archive link to be generated and copy it to the url field - adjust hash accordingly. 32 33 src = fetchurl { 33 - url = "http://web.archive.org/web/20240119124245/https://tigerjython.ch/user/pages/download/TigerJython.tar.gz"; 34 - hash = "sha256-PdoAOjr19aLmXYrLtMCq/tZ2Fqq7pINTuhFyMMiC0yM="; 34 + url = "http://web.archive.org/web/20250104142121/https://tjgroup.ch/download/TigerJython.tar.gz"; 35 + hash = "sha256-V/POFftRs/jjgNaHOrKcW2AdlQY2yjO+xiwJi63oECo="; 35 36 }; 36 37 37 38 nativeBuildInputs = [ ··· 57 58 dontConfigure = true; 58 59 dontBuild = true; 59 60 61 + # https://tobiaskohn.ch/jython/faq.html 62 + # Q: Can I install TigerJython for multiple users? 63 + # A: Yes, create a config file. 64 + # This file must be named tigerjython2.cfg and located 65 + # in the same folder as tigerjython2.jar 66 + tjconfig = writeText "tjconfig" '' 67 + configfile = sys.userpath + ".tjython.cfg" 68 + jython.cachedir = sys.userpath + ".jython.cache" 69 + ''; 70 + 60 71 installPhase = '' 61 72 runHook preInstall 62 73 63 74 export CUSTOM_LIBS=$out/share/java 64 75 export JAR=$CUSTOM_LIBS/tigerjython2.jar 65 - export EXAMPLES_DIR=$CUSTOM_LIBS/Examples 76 + export CFG=$CUSTOM_LIBS/tigerjython2.cfg 77 + export ADDITIONAL_LIBS_DIR=$CUSTOM_LIBS/Lib 78 + export EXAMPLES_DIR=$CUSTOM_LIBS/TestSamples 66 79 67 80 install -Dm444 bin/tigerjython2.jar $JAR 68 - install -Dm444 bin/Lib/* --target-directory=$CUSTOM_LIBS 81 + install -Dm444 bin/Lib/* --target-directory=$ADDITIONAL_LIBS_DIR 69 82 install -Dm444 bin/TestSamples/* --target-directory=$EXAMPLES_DIR 83 + 84 + install -Dm444 $tjconfig $CFG 70 85 71 86 makeWrapper ${jre}/bin/java $out/bin/tigerjython \ 72 87 --add-flags "-Duser.dir=$CUSTOM_LIBS/" \
+9 -5
pkgs/by-name/ty/typora/package.nix
··· 22 22 23 23 let 24 24 pname = "typora"; 25 - version = "1.9.3"; 25 + version = "1.10.8"; 26 26 src = fetchurl { 27 27 url = "https://download.typora.io/linux/typora_${version}_amd64.deb"; 28 - hash = "sha256-3rR/CvFFjRPkz27mm1Wt5hwgRUnLL7lpLFKA2moILx8="; 28 + hash = "sha256-7auxTtdVafvM2fIpQVvEey1Q6eLVG3mLdjdZXcqSE/Q="; 29 29 }; 30 30 31 31 typoraBase = stdenv.mkDerivation { ··· 38 38 39 39 installPhase = '' 40 40 runHook preInstall 41 + 41 42 mkdir -p $out/bin $out/share 42 43 mv usr/share $out 43 44 ln -s $out/share/typora/Typora $out/bin/Typora 45 + 44 46 runHook postInstall 45 47 ''; 46 48 }; ··· 119 121 120 122 installPhase = '' 121 123 runHook preInstall 124 + 122 125 mkdir -p $out/bin 123 126 ln -s ${launchScript} $out/bin/typora 124 127 ln -s ${typoraBase}/share/ $out 128 + 125 129 runHook postInstall 126 130 ''; 127 131 128 - meta = with lib; { 132 + meta = { 129 133 description = "Markdown editor, a markdown reader"; 130 134 homepage = "https://typora.io/"; 131 - license = licenses.unfree; 132 - maintainers = with maintainers; [ npulidomateo ]; 135 + license = lib.licenses.unfree; 136 + maintainers = with lib.maintainers; [ npulidomateo ]; 133 137 platforms = [ "x86_64-linux" ]; 134 138 mainProgram = "typora"; 135 139 };
+10 -10
pkgs/by-name/uu/uutils-coreutils/package.nix
··· 12 12 buildMulticallBinary ? true, 13 13 }: 14 14 15 - stdenv.mkDerivation rec { 15 + stdenv.mkDerivation (finalAttrs: { 16 16 pname = "uutils-coreutils"; 17 - version = "0.0.29"; 17 + version = "0.0.30"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "uutils"; 21 21 repo = "coreutils"; 22 - tag = version; 23 - hash = "sha256-B6lz75uxROo7npiZNCdTt0NCxVvsaIgtWnuGOKevDQQ="; 22 + tag = finalAttrs.version; 23 + hash = "sha256-OZ9AsCJmQmn271OzEmqSZtt1OPn7zHTScQiiqvPhqB0="; 24 24 }; 25 25 26 26 cargoDeps = rustPlatform.fetchCargoVendor { 27 - inherit src; 28 - name = "uutils-coreutils-${version}"; 29 - hash = "sha256-Z5A1Tyf7SbvIBVGG3YPxh4q/SLU+yNlVv2jBRNumNwM="; 27 + inherit (finalAttrs) src; 28 + name = "uutils-coreutils-${finalAttrs.version}"; 29 + hash = "sha256-DsVLp2Y15k+KQI7S6A4hylOhJN016MEdEWx9VQIQEgQ="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ ··· 55 55 prefix' = lib.optionalString (prefix != null) prefix; 56 56 in 57 57 "${placeholder "out"}/bin/${prefix'}ls"; 58 - versionCheckProgramArg = [ "--version" ]; 58 + versionCheckProgramArg = "--version"; 59 59 doInstallCheck = true; 60 60 61 61 passthru = { ··· 69 69 CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites. 70 70 ''; 71 71 homepage = "https://github.com/uutils/coreutils"; 72 - changelog = "https://github.com/uutils/coreutils/releases/tag/${version}"; 72 + changelog = "https://github.com/uutils/coreutils/releases/tag/${finalAttrs.version}"; 73 73 maintainers = with lib.maintainers; [ siraben ]; 74 74 license = lib.licenses.mit; 75 75 platforms = lib.platforms.unix; 76 76 }; 77 - } 77 + })
+9 -3
pkgs/by-name/ve/ventoy/package.nix
··· 55 55 .${stdenv.hostPlatform.system} or (throw "Unsupported platform: ${stdenv.hostPlatform.system}"); 56 56 in 57 57 stdenv.mkDerivation (finalAttrs: { 58 - pname = "ventoy"; 58 + pname = 59 + "ventoy" 60 + + optionalString (defaultGuiType == "gtk3") "-gtk3" 61 + + optionalString (defaultGuiType == "qt5") "-qt5"; 59 62 version = "1.1.05"; 60 63 61 64 src = fetchurl { ··· 194 197 195 198 meta = { 196 199 homepage = "https://www.ventoy.net"; 197 - description = "New Bootable USB Solution"; 200 + description = 201 + "New Bootable USB Solution" + optionalString (defaultGuiType != "") " with GUI support"; 198 202 longDescription = '' 199 203 Ventoy is an open source tool to create bootable USB drive for 200 204 ISO/WIM/IMG/VHD(x)/EFI files. With ventoy, you don't need to format the ··· 211 215 changelog = "https://www.ventoy.net/doc_news.html"; 212 216 license = lib.licenses.gpl3Plus; 213 217 mainProgram = "ventoy"; 214 - maintainers = with lib.maintainers; [ ]; 218 + maintainers = with lib.maintainers; [ 219 + johnrtitor 220 + ]; 215 221 platforms = [ 216 222 "x86_64-linux" 217 223 "i686-linux"
+7 -7
pkgs/by-name/vi/viennarna/package.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "viennarna"; 13 - version = "2.5.1"; 13 + version = "2.7.0"; 14 14 15 15 src = fetchurl { 16 - url = "https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_5_x/ViennaRNA-${version}.tar.gz"; 17 - sha256 = "sha256-BUAEN88VWV4QsaJd9snEiFbzVhMPnR44D6iGa20n9Fc="; 16 + url = "https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_7_x/ViennaRNA-${version}.tar.gz"; 17 + hash = "sha256-mpn9aO04CJTe+01eaooocWKScAKM338W8KBdpujHFHM="; 18 18 }; 19 19 20 20 buildInputs = [ ··· 29 29 "--with-kinwalker" 30 30 ]; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Prediction and comparison of RNA secondary structures"; 34 34 homepage = "https://www.tbi.univie.ac.at/RNA/"; 35 - license = licenses.unfree; 36 - maintainers = with maintainers; [ prusnak ]; 37 - platforms = platforms.unix; 35 + license = lib.licenses.unfree; 36 + maintainers = with lib.maintainers; [ prusnak ]; 37 + platforms = lib.platforms.unix; 38 38 }; 39 39 }
+3 -3
pkgs/by-name/vo/volanta/package.nix
··· 6 6 }: 7 7 let 8 8 pname = "volanta"; 9 - version = "1.10.10"; 9 + version = "1.10.11"; 10 10 src = fetchurl { 11 - url = "https://cdn.volanta.app/software/volanta-app/${version}-a7ebf1c7/volanta-${version}.AppImage"; 12 - hash = "sha256-pdMPC3flJzguRYmS+xKiAXWQ4BKsD3N48S27djXDtuo="; 11 + url = "https://cdn.volanta.app/software/volanta-app/${version}-5495eec5/volanta-${version}.AppImage"; 12 + hash = "sha256-DvAtgLe8eWG9sqxPaZGsk0CZWZci124bu2IFDU5Y1BQ="; 13 13 }; 14 14 appImageContents = appimageTools.extract { inherit pname version src; }; 15 15 in
+2 -2
pkgs/by-name/vt/vte/package.nix
··· 34 34 35 35 stdenv.mkDerivation (finalAttrs: { 36 36 pname = "vte"; 37 - version = "0.78.3"; 37 + version = "0.78.4"; 38 38 39 39 outputs = [ 40 40 "out" ··· 43 43 44 44 src = fetchurl { 45 45 url = "mirror://gnome/sources/vte/${lib.versions.majorMinor finalAttrs.version}/vte-${finalAttrs.version}.tar.xz"; 46 - hash = "sha256-l+KsOie8V1U1iiI/VfWiUYZUqgNhv8YaGWwcLgh5jv8="; 46 + hash = "sha256-LepOQSJmWStkYKP+RIj149UHEvE5gVeQwOy0RxD34X4="; 47 47 }; 48 48 49 49 patches = [
-1439
pkgs/by-name/wa/wasmi/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 = "aho-corasick" 7 - version = "1.0.5" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" 10 - dependencies = [ 11 - "memchr", 12 - ] 13 - 14 - [[package]] 15 - name = "ambient-authority" 16 - version = "0.0.1" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "ec8ad6edb4840b78c5c3d88de606b22252d552b55f3a4699fbb10fc070ec3049" 19 - 20 - [[package]] 21 - name = "anes" 22 - version = "0.1.6" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 25 - 26 - [[package]] 27 - name = "anstream" 28 - version = "0.5.0" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" 31 - dependencies = [ 32 - "anstyle", 33 - "anstyle-parse", 34 - "anstyle-query", 35 - "anstyle-wincon", 36 - "colorchoice", 37 - "utf8parse", 38 - ] 39 - 40 - [[package]] 41 - name = "anstyle" 42 - version = "1.0.2" 43 - source = "registry+https://github.com/rust-lang/crates.io-index" 44 - checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea" 45 - 46 - [[package]] 47 - name = "anstyle-parse" 48 - version = "0.2.1" 49 - source = "registry+https://github.com/rust-lang/crates.io-index" 50 - checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 51 - dependencies = [ 52 - "utf8parse", 53 - ] 54 - 55 - [[package]] 56 - name = "anstyle-query" 57 - version = "1.0.0" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 60 - dependencies = [ 61 - "windows-sys 0.48.0", 62 - ] 63 - 64 - [[package]] 65 - name = "anstyle-wincon" 66 - version = "2.1.0" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" 69 - dependencies = [ 70 - "anstyle", 71 - "windows-sys 0.48.0", 72 - ] 73 - 74 - [[package]] 75 - name = "anyhow" 76 - version = "1.0.75" 77 - source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 79 - 80 - [[package]] 81 - name = "assert_cmd" 82 - version = "2.0.12" 83 - source = "registry+https://github.com/rust-lang/crates.io-index" 84 - checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6" 85 - dependencies = [ 86 - "anstyle", 87 - "bstr", 88 - "doc-comment", 89 - "predicates", 90 - "predicates-core", 91 - "predicates-tree", 92 - "wait-timeout", 93 - ] 94 - 95 - [[package]] 96 - name = "assert_matches" 97 - version = "1.5.0" 98 - source = "registry+https://github.com/rust-lang/crates.io-index" 99 - checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 100 - 101 - [[package]] 102 - name = "async-trait" 103 - version = "0.1.73" 104 - source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 106 - dependencies = [ 107 - "proc-macro2", 108 - "quote", 109 - "syn 2.0.29", 110 - ] 111 - 112 - [[package]] 113 - name = "atty" 114 - version = "0.2.14" 115 - source = "registry+https://github.com/rust-lang/crates.io-index" 116 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 117 - dependencies = [ 118 - "hermit-abi 0.1.19", 119 - "libc", 120 - "winapi", 121 - ] 122 - 123 - [[package]] 124 - name = "autocfg" 125 - version = "1.1.0" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 128 - 129 - [[package]] 130 - name = "bitflags" 131 - version = "1.3.2" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 134 - 135 - [[package]] 136 - name = "bitflags" 137 - version = "2.4.0" 138 - source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 140 - 141 - [[package]] 142 - name = "bstr" 143 - version = "1.6.2" 144 - source = "registry+https://github.com/rust-lang/crates.io-index" 145 - checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" 146 - dependencies = [ 147 - "memchr", 148 - "regex-automata", 149 - "serde", 150 - ] 151 - 152 - [[package]] 153 - name = "cap-fs-ext" 154 - version = "0.26.1" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - checksum = "0b0e103ce36d217d568903ad27b14ec2238ecb5d65bad2e756a8f3c0d651506e" 157 - dependencies = [ 158 - "cap-primitives", 159 - "cap-std", 160 - "io-lifetimes", 161 - "windows-sys 0.36.1", 162 - ] 163 - 164 - [[package]] 165 - name = "cap-primitives" 166 - version = "0.26.1" 167 - source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "af3f336aa91cce16033ed3c94ac91d98956c49b420e6d6cd0dd7d0e386a57085" 169 - dependencies = [ 170 - "ambient-authority", 171 - "fs-set-times", 172 - "io-extras", 173 - "io-lifetimes", 174 - "ipnet", 175 - "maybe-owned", 176 - "rustix 0.35.14", 177 - "winapi-util", 178 - "windows-sys 0.36.1", 179 - "winx", 180 - ] 181 - 182 - [[package]] 183 - name = "cap-rand" 184 - version = "0.26.1" 185 - source = "registry+https://github.com/rust-lang/crates.io-index" 186 - checksum = "d14b9606aa9550d34651bc481443203bc014237bdb992d201d2afa62d2ec6dea" 187 - dependencies = [ 188 - "ambient-authority", 189 - "rand", 190 - ] 191 - 192 - [[package]] 193 - name = "cap-std" 194 - version = "0.26.1" 195 - source = "registry+https://github.com/rust-lang/crates.io-index" 196 - checksum = "c9d6e70b626eceac9d6fc790fe2d72cc3f2f7bc3c35f467690c54a526b0f56db" 197 - dependencies = [ 198 - "cap-primitives", 199 - "io-extras", 200 - "io-lifetimes", 201 - "ipnet", 202 - "rustix 0.35.14", 203 - ] 204 - 205 - [[package]] 206 - name = "cap-time-ext" 207 - version = "0.26.1" 208 - source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "c3a0524f7c4cff2ea547ae2b652bf7a348fd3e48f76556dc928d8b45ab2f1d50" 210 - dependencies = [ 211 - "cap-primitives", 212 - "once_cell", 213 - "rustix 0.35.14", 214 - "winx", 215 - ] 216 - 217 - [[package]] 218 - name = "cast" 219 - version = "0.3.0" 220 - source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 222 - 223 - [[package]] 224 - name = "cc" 225 - version = "1.0.83" 226 - source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 228 - dependencies = [ 229 - "libc", 230 - ] 231 - 232 - [[package]] 233 - name = "cfg-if" 234 - version = "1.0.0" 235 - source = "registry+https://github.com/rust-lang/crates.io-index" 236 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 237 - 238 - [[package]] 239 - name = "ciborium" 240 - version = "0.2.1" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 243 - dependencies = [ 244 - "ciborium-io", 245 - "ciborium-ll", 246 - "serde", 247 - ] 248 - 249 - [[package]] 250 - name = "ciborium-io" 251 - version = "0.2.1" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 254 - 255 - [[package]] 256 - name = "ciborium-ll" 257 - version = "0.2.1" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 260 - dependencies = [ 261 - "ciborium-io", 262 - "half", 263 - ] 264 - 265 - [[package]] 266 - name = "clap" 267 - version = "4.4.1" 268 - source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "7c8d502cbaec4595d2e7d5f61e318f05417bd2b66fdc3809498f0d3fdf0bea27" 270 - dependencies = [ 271 - "clap_builder", 272 - "clap_derive", 273 - "once_cell", 274 - ] 275 - 276 - [[package]] 277 - name = "clap_builder" 278 - version = "4.4.1" 279 - source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "5891c7bc0edb3e1c2204fc5e94009affabeb1821c9e5fdc3959536c5c0bb984d" 281 - dependencies = [ 282 - "anstream", 283 - "anstyle", 284 - "clap_lex", 285 - "strsim", 286 - ] 287 - 288 - [[package]] 289 - name = "clap_derive" 290 - version = "4.4.0" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "c9fd1a5729c4548118d7d70ff234a44868d00489a4b6597b0b020918a0e91a1a" 293 - dependencies = [ 294 - "heck", 295 - "proc-macro2", 296 - "quote", 297 - "syn 2.0.29", 298 - ] 299 - 300 - [[package]] 301 - name = "clap_lex" 302 - version = "0.5.1" 303 - source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" 305 - 306 - [[package]] 307 - name = "colorchoice" 308 - version = "1.0.0" 309 - source = "registry+https://github.com/rust-lang/crates.io-index" 310 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 311 - 312 - [[package]] 313 - name = "criterion" 314 - version = "0.5.1" 315 - source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 317 - dependencies = [ 318 - "anes", 319 - "cast", 320 - "ciborium", 321 - "clap", 322 - "criterion-plot", 323 - "is-terminal 0.4.9", 324 - "itertools", 325 - "num-traits", 326 - "once_cell", 327 - "oorandom", 328 - "regex", 329 - "serde", 330 - "serde_derive", 331 - "serde_json", 332 - "tinytemplate", 333 - "walkdir", 334 - ] 335 - 336 - [[package]] 337 - name = "criterion-plot" 338 - version = "0.5.0" 339 - source = "registry+https://github.com/rust-lang/crates.io-index" 340 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 341 - dependencies = [ 342 - "cast", 343 - "itertools", 344 - ] 345 - 346 - [[package]] 347 - name = "difflib" 348 - version = "0.4.0" 349 - source = "registry+https://github.com/rust-lang/crates.io-index" 350 - checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 351 - 352 - [[package]] 353 - name = "dirs" 354 - version = "4.0.0" 355 - source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 357 - dependencies = [ 358 - "dirs-sys", 359 - ] 360 - 361 - [[package]] 362 - name = "dirs-sys" 363 - version = "0.3.7" 364 - source = "registry+https://github.com/rust-lang/crates.io-index" 365 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 366 - dependencies = [ 367 - "libc", 368 - "redox_users", 369 - "winapi", 370 - ] 371 - 372 - [[package]] 373 - name = "doc-comment" 374 - version = "0.3.3" 375 - source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 377 - 378 - [[package]] 379 - name = "downcast-rs" 380 - version = "1.2.0" 381 - source = "registry+https://github.com/rust-lang/crates.io-index" 382 - checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 383 - 384 - [[package]] 385 - name = "either" 386 - version = "1.9.0" 387 - source = "registry+https://github.com/rust-lang/crates.io-index" 388 - checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 389 - 390 - [[package]] 391 - name = "errno" 392 - version = "0.2.8" 393 - source = "registry+https://github.com/rust-lang/crates.io-index" 394 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 395 - dependencies = [ 396 - "errno-dragonfly", 397 - "libc", 398 - "winapi", 399 - ] 400 - 401 - [[package]] 402 - name = "errno" 403 - version = "0.3.3" 404 - source = "registry+https://github.com/rust-lang/crates.io-index" 405 - checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 406 - dependencies = [ 407 - "errno-dragonfly", 408 - "libc", 409 - "windows-sys 0.48.0", 410 - ] 411 - 412 - [[package]] 413 - name = "errno-dragonfly" 414 - version = "0.1.2" 415 - source = "registry+https://github.com/rust-lang/crates.io-index" 416 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 417 - dependencies = [ 418 - "cc", 419 - "libc", 420 - ] 421 - 422 - [[package]] 423 - name = "fs-set-times" 424 - version = "0.17.1" 425 - source = "registry+https://github.com/rust-lang/crates.io-index" 426 - checksum = "a267b6a9304912e018610d53fe07115d8b530b160e85db4d2d3a59f3ddde1aec" 427 - dependencies = [ 428 - "io-lifetimes", 429 - "rustix 0.35.14", 430 - "windows-sys 0.36.1", 431 - ] 432 - 433 - [[package]] 434 - name = "getrandom" 435 - version = "0.2.10" 436 - source = "registry+https://github.com/rust-lang/crates.io-index" 437 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 438 - dependencies = [ 439 - "cfg-if", 440 - "libc", 441 - "wasi", 442 - ] 443 - 444 - [[package]] 445 - name = "half" 446 - version = "1.8.2" 447 - source = "registry+https://github.com/rust-lang/crates.io-index" 448 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 449 - 450 - [[package]] 451 - name = "heck" 452 - version = "0.4.1" 453 - source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 455 - 456 - [[package]] 457 - name = "hermit-abi" 458 - version = "0.1.19" 459 - source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 461 - dependencies = [ 462 - "libc", 463 - ] 464 - 465 - [[package]] 466 - name = "hermit-abi" 467 - version = "0.2.6" 468 - source = "registry+https://github.com/rust-lang/crates.io-index" 469 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 470 - dependencies = [ 471 - "libc", 472 - ] 473 - 474 - [[package]] 475 - name = "hermit-abi" 476 - version = "0.3.2" 477 - source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 479 - 480 - [[package]] 481 - name = "indexmap-nostd" 482 - version = "0.4.0" 483 - source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" 485 - 486 - [[package]] 487 - name = "io-extras" 488 - version = "0.15.0" 489 - source = "registry+https://github.com/rust-lang/crates.io-index" 490 - checksum = "4a5d8c2ab5becd8720e30fd25f8fa5500d8dc3fceadd8378f05859bd7b46fc49" 491 - dependencies = [ 492 - "io-lifetimes", 493 - "windows-sys 0.36.1", 494 - ] 495 - 496 - [[package]] 497 - name = "io-lifetimes" 498 - version = "0.7.5" 499 - source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074" 501 - dependencies = [ 502 - "libc", 503 - "windows-sys 0.42.0", 504 - ] 505 - 506 - [[package]] 507 - name = "ipnet" 508 - version = "2.8.0" 509 - source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 511 - 512 - [[package]] 513 - name = "is-terminal" 514 - version = "0.3.0" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "0d508111813f9af3afd2f92758f77e4ed2cc9371b642112c6a48d22eb73105c5" 517 - dependencies = [ 518 - "hermit-abi 0.2.6", 519 - "io-lifetimes", 520 - "rustix 0.35.14", 521 - "windows-sys 0.36.1", 522 - ] 523 - 524 - [[package]] 525 - name = "is-terminal" 526 - version = "0.4.9" 527 - source = "registry+https://github.com/rust-lang/crates.io-index" 528 - checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 529 - dependencies = [ 530 - "hermit-abi 0.3.2", 531 - "rustix 0.38.10", 532 - "windows-sys 0.48.0", 533 - ] 534 - 535 - [[package]] 536 - name = "itertools" 537 - version = "0.10.5" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 540 - dependencies = [ 541 - "either", 542 - ] 543 - 544 - [[package]] 545 - name = "itoa" 546 - version = "1.0.9" 547 - source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 549 - 550 - [[package]] 551 - name = "leb128" 552 - version = "0.2.5" 553 - source = "registry+https://github.com/rust-lang/crates.io-index" 554 - checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" 555 - 556 - [[package]] 557 - name = "libc" 558 - version = "0.2.147" 559 - source = "registry+https://github.com/rust-lang/crates.io-index" 560 - checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 561 - 562 - [[package]] 563 - name = "libm" 564 - version = "0.2.7" 565 - source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" 567 - 568 - [[package]] 569 - name = "linux-raw-sys" 570 - version = "0.0.46" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d" 573 - 574 - [[package]] 575 - name = "linux-raw-sys" 576 - version = "0.4.5" 577 - source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 579 - 580 - [[package]] 581 - name = "log" 582 - version = "0.4.20" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 585 - 586 - [[package]] 587 - name = "maybe-owned" 588 - version = "0.3.4" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" 591 - 592 - [[package]] 593 - name = "memchr" 594 - version = "2.6.2" 595 - source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" 597 - 598 - [[package]] 599 - name = "num-traits" 600 - version = "0.2.16" 601 - source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 603 - dependencies = [ 604 - "autocfg", 605 - ] 606 - 607 - [[package]] 608 - name = "once_cell" 609 - version = "1.18.0" 610 - source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 612 - 613 - [[package]] 614 - name = "oorandom" 615 - version = "11.1.3" 616 - source = "registry+https://github.com/rust-lang/crates.io-index" 617 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 618 - 619 - [[package]] 620 - name = "paste" 621 - version = "1.0.14" 622 - source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 624 - 625 - [[package]] 626 - name = "pin-project-lite" 627 - version = "0.2.13" 628 - source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 630 - 631 - [[package]] 632 - name = "ppv-lite86" 633 - version = "0.2.17" 634 - source = "registry+https://github.com/rust-lang/crates.io-index" 635 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 636 - 637 - [[package]] 638 - name = "predicates" 639 - version = "3.0.3" 640 - source = "registry+https://github.com/rust-lang/crates.io-index" 641 - checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" 642 - dependencies = [ 643 - "anstyle", 644 - "difflib", 645 - "itertools", 646 - "predicates-core", 647 - ] 648 - 649 - [[package]] 650 - name = "predicates-core" 651 - version = "1.0.6" 652 - source = "registry+https://github.com/rust-lang/crates.io-index" 653 - checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 654 - 655 - [[package]] 656 - name = "predicates-tree" 657 - version = "1.0.9" 658 - source = "registry+https://github.com/rust-lang/crates.io-index" 659 - checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" 660 - dependencies = [ 661 - "predicates-core", 662 - "termtree", 663 - ] 664 - 665 - [[package]] 666 - name = "proc-macro2" 667 - version = "1.0.66" 668 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 670 - dependencies = [ 671 - "unicode-ident", 672 - ] 673 - 674 - [[package]] 675 - name = "quote" 676 - version = "1.0.33" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 679 - dependencies = [ 680 - "proc-macro2", 681 - ] 682 - 683 - [[package]] 684 - name = "rand" 685 - version = "0.8.5" 686 - source = "registry+https://github.com/rust-lang/crates.io-index" 687 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 688 - dependencies = [ 689 - "libc", 690 - "rand_chacha", 691 - "rand_core", 692 - ] 693 - 694 - [[package]] 695 - name = "rand_chacha" 696 - version = "0.3.1" 697 - source = "registry+https://github.com/rust-lang/crates.io-index" 698 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 699 - dependencies = [ 700 - "ppv-lite86", 701 - "rand_core", 702 - ] 703 - 704 - [[package]] 705 - name = "rand_core" 706 - version = "0.6.4" 707 - source = "registry+https://github.com/rust-lang/crates.io-index" 708 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 709 - dependencies = [ 710 - "getrandom", 711 - ] 712 - 713 - [[package]] 714 - name = "redox_syscall" 715 - version = "0.2.16" 716 - source = "registry+https://github.com/rust-lang/crates.io-index" 717 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 718 - dependencies = [ 719 - "bitflags 1.3.2", 720 - ] 721 - 722 - [[package]] 723 - name = "redox_users" 724 - version = "0.4.3" 725 - source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 727 - dependencies = [ 728 - "getrandom", 729 - "redox_syscall", 730 - "thiserror", 731 - ] 732 - 733 - [[package]] 734 - name = "regex" 735 - version = "1.9.4" 736 - source = "registry+https://github.com/rust-lang/crates.io-index" 737 - checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29" 738 - dependencies = [ 739 - "aho-corasick", 740 - "memchr", 741 - "regex-automata", 742 - "regex-syntax", 743 - ] 744 - 745 - [[package]] 746 - name = "regex-automata" 747 - version = "0.3.7" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629" 750 - dependencies = [ 751 - "aho-corasick", 752 - "memchr", 753 - "regex-syntax", 754 - ] 755 - 756 - [[package]] 757 - name = "regex-syntax" 758 - version = "0.7.5" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 761 - 762 - [[package]] 763 - name = "rustix" 764 - version = "0.35.14" 765 - source = "registry+https://github.com/rust-lang/crates.io-index" 766 - checksum = "6380889b07a03b5ecf1d44dc9ede6fd2145d84b502a2a9ca0b03c48e0cc3220f" 767 - dependencies = [ 768 - "bitflags 1.3.2", 769 - "errno 0.2.8", 770 - "io-lifetimes", 771 - "itoa", 772 - "libc", 773 - "linux-raw-sys 0.0.46", 774 - "once_cell", 775 - "windows-sys 0.42.0", 776 - ] 777 - 778 - [[package]] 779 - name = "rustix" 780 - version = "0.38.10" 781 - source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "ed6248e1caa625eb708e266e06159f135e8c26f2bb7ceb72dc4b2766d0340964" 783 - dependencies = [ 784 - "bitflags 2.4.0", 785 - "errno 0.3.3", 786 - "libc", 787 - "linux-raw-sys 0.4.5", 788 - "windows-sys 0.48.0", 789 - ] 790 - 791 - [[package]] 792 - name = "ryu" 793 - version = "1.0.15" 794 - source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 796 - 797 - [[package]] 798 - name = "same-file" 799 - version = "1.0.6" 800 - source = "registry+https://github.com/rust-lang/crates.io-index" 801 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 802 - dependencies = [ 803 - "winapi-util", 804 - ] 805 - 806 - [[package]] 807 - name = "serde" 808 - version = "1.0.188" 809 - source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 811 - dependencies = [ 812 - "serde_derive", 813 - ] 814 - 815 - [[package]] 816 - name = "serde_derive" 817 - version = "1.0.188" 818 - source = "registry+https://github.com/rust-lang/crates.io-index" 819 - checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 820 - dependencies = [ 821 - "proc-macro2", 822 - "quote", 823 - "syn 2.0.29", 824 - ] 825 - 826 - [[package]] 827 - name = "serde_json" 828 - version = "1.0.105" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 831 - dependencies = [ 832 - "itoa", 833 - "ryu", 834 - "serde", 835 - ] 836 - 837 - [[package]] 838 - name = "shellexpand" 839 - version = "2.1.2" 840 - source = "registry+https://github.com/rust-lang/crates.io-index" 841 - checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4" 842 - dependencies = [ 843 - "dirs", 844 - ] 845 - 846 - [[package]] 847 - name = "smallvec" 848 - version = "1.11.0" 849 - source = "registry+https://github.com/rust-lang/crates.io-index" 850 - checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 851 - 852 - [[package]] 853 - name = "spin" 854 - version = "0.9.8" 855 - source = "registry+https://github.com/rust-lang/crates.io-index" 856 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 857 - 858 - [[package]] 859 - name = "strsim" 860 - version = "0.10.0" 861 - source = "registry+https://github.com/rust-lang/crates.io-index" 862 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 863 - 864 - [[package]] 865 - name = "syn" 866 - version = "1.0.109" 867 - source = "registry+https://github.com/rust-lang/crates.io-index" 868 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 869 - dependencies = [ 870 - "proc-macro2", 871 - "quote", 872 - "unicode-ident", 873 - ] 874 - 875 - [[package]] 876 - name = "syn" 877 - version = "2.0.29" 878 - source = "registry+https://github.com/rust-lang/crates.io-index" 879 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 880 - dependencies = [ 881 - "proc-macro2", 882 - "quote", 883 - "unicode-ident", 884 - ] 885 - 886 - [[package]] 887 - name = "system-interface" 888 - version = "0.23.0" 889 - source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "92adbaf536f5aff6986e1e62ba36cee72b1718c5153eee08b9e728ddde3f6029" 891 - dependencies = [ 892 - "atty", 893 - "bitflags 1.3.2", 894 - "cap-fs-ext", 895 - "cap-std", 896 - "io-lifetimes", 897 - "rustix 0.35.14", 898 - "windows-sys 0.36.1", 899 - "winx", 900 - ] 901 - 902 - [[package]] 903 - name = "termtree" 904 - version = "0.4.1" 905 - source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" 907 - 908 - [[package]] 909 - name = "thiserror" 910 - version = "1.0.47" 911 - source = "registry+https://github.com/rust-lang/crates.io-index" 912 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 913 - dependencies = [ 914 - "thiserror-impl", 915 - ] 916 - 917 - [[package]] 918 - name = "thiserror-impl" 919 - version = "1.0.47" 920 - source = "registry+https://github.com/rust-lang/crates.io-index" 921 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 922 - dependencies = [ 923 - "proc-macro2", 924 - "quote", 925 - "syn 2.0.29", 926 - ] 927 - 928 - [[package]] 929 - name = "tinytemplate" 930 - version = "1.2.1" 931 - source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 933 - dependencies = [ 934 - "serde", 935 - "serde_json", 936 - ] 937 - 938 - [[package]] 939 - name = "tracing" 940 - version = "0.1.37" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 943 - dependencies = [ 944 - "cfg-if", 945 - "log", 946 - "pin-project-lite", 947 - "tracing-attributes", 948 - "tracing-core", 949 - ] 950 - 951 - [[package]] 952 - name = "tracing-attributes" 953 - version = "0.1.26" 954 - source = "registry+https://github.com/rust-lang/crates.io-index" 955 - checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 956 - dependencies = [ 957 - "proc-macro2", 958 - "quote", 959 - "syn 2.0.29", 960 - ] 961 - 962 - [[package]] 963 - name = "tracing-core" 964 - version = "0.1.31" 965 - source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 967 - dependencies = [ 968 - "once_cell", 969 - ] 970 - 971 - [[package]] 972 - name = "unicode-ident" 973 - version = "1.0.11" 974 - source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 976 - 977 - [[package]] 978 - name = "unicode-width" 979 - version = "0.1.10" 980 - source = "registry+https://github.com/rust-lang/crates.io-index" 981 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 982 - 983 - [[package]] 984 - name = "utf8parse" 985 - version = "0.2.1" 986 - source = "registry+https://github.com/rust-lang/crates.io-index" 987 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 988 - 989 - [[package]] 990 - name = "wait-timeout" 991 - version = "0.2.0" 992 - source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 994 - dependencies = [ 995 - "libc", 996 - ] 997 - 998 - [[package]] 999 - name = "walkdir" 1000 - version = "2.3.3" 1001 - source = "registry+https://github.com/rust-lang/crates.io-index" 1002 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 1003 - dependencies = [ 1004 - "same-file", 1005 - "winapi-util", 1006 - ] 1007 - 1008 - [[package]] 1009 - name = "wasi" 1010 - version = "0.11.0+wasi-snapshot-preview1" 1011 - source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1013 - 1014 - [[package]] 1015 - name = "wasi-cap-std-sync" 1016 - version = "2.0.2" 1017 - source = "registry+https://github.com/rust-lang/crates.io-index" 1018 - checksum = "c4b4953999c746173c263b81e9e5e3e335ff47face7187ba2a5ecc91c716e6f3" 1019 - dependencies = [ 1020 - "anyhow", 1021 - "async-trait", 1022 - "cap-fs-ext", 1023 - "cap-rand", 1024 - "cap-std", 1025 - "cap-time-ext", 1026 - "fs-set-times", 1027 - "io-extras", 1028 - "io-lifetimes", 1029 - "is-terminal 0.3.0", 1030 - "once_cell", 1031 - "rustix 0.35.14", 1032 - "system-interface", 1033 - "tracing", 1034 - "wasi-common", 1035 - "windows-sys 0.36.1", 1036 - ] 1037 - 1038 - [[package]] 1039 - name = "wasi-common" 1040 - version = "2.0.2" 1041 - source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "d47faf4f76ebfdeb1f3346a949c6fbf2f2471afc68280b00c76d6c02221d80ad" 1043 - dependencies = [ 1044 - "anyhow", 1045 - "bitflags 1.3.2", 1046 - "cap-rand", 1047 - "cap-std", 1048 - "io-extras", 1049 - "rustix 0.35.14", 1050 - "thiserror", 1051 - "tracing", 1052 - "wiggle", 1053 - "windows-sys 0.36.1", 1054 - ] 1055 - 1056 - [[package]] 1057 - name = "wasm-encoder" 1058 - version = "0.31.1" 1059 - source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "41763f20eafed1399fff1afb466496d3a959f58241436cfdc17e3f5ca954de16" 1061 - dependencies = [ 1062 - "leb128", 1063 - ] 1064 - 1065 - [[package]] 1066 - name = "wasm-encoder" 1067 - version = "0.32.0" 1068 - source = "registry+https://github.com/rust-lang/crates.io-index" 1069 - checksum = "1ba64e81215916eaeb48fee292f29401d69235d62d8b8fd92a7b2844ec5ae5f7" 1070 - dependencies = [ 1071 - "leb128", 1072 - ] 1073 - 1074 - [[package]] 1075 - name = "wasmi" 1076 - version = "0.31.0" 1077 - dependencies = [ 1078 - "anyhow", 1079 - "assert_matches", 1080 - "criterion", 1081 - "smallvec", 1082 - "spin", 1083 - "wasmi_arena", 1084 - "wasmi_core", 1085 - "wasmparser-nostd", 1086 - "wast 62.0.1", 1087 - "wat", 1088 - ] 1089 - 1090 - [[package]] 1091 - name = "wasmi_arena" 1092 - version = "0.4.0" 1093 - 1094 - [[package]] 1095 - name = "wasmi_cli" 1096 - version = "0.31.0" 1097 - dependencies = [ 1098 - "anyhow", 1099 - "assert_cmd", 1100 - "clap", 1101 - "wasmi", 1102 - "wasmi_wasi", 1103 - "wat", 1104 - ] 1105 - 1106 - [[package]] 1107 - name = "wasmi_core" 1108 - version = "0.13.0" 1109 - dependencies = [ 1110 - "downcast-rs", 1111 - "libm", 1112 - "num-traits", 1113 - "paste", 1114 - "rand", 1115 - ] 1116 - 1117 - [[package]] 1118 - name = "wasmi_wasi" 1119 - version = "0.31.0" 1120 - dependencies = [ 1121 - "wasi-cap-std-sync", 1122 - "wasi-common", 1123 - "wasmi", 1124 - "wat", 1125 - "wiggle", 1126 - ] 1127 - 1128 - [[package]] 1129 - name = "wasmparser-nostd" 1130 - version = "0.100.1" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724" 1133 - dependencies = [ 1134 - "indexmap-nostd", 1135 - ] 1136 - 1137 - [[package]] 1138 - name = "wast" 1139 - version = "35.0.2" 1140 - source = "registry+https://github.com/rust-lang/crates.io-index" 1141 - checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68" 1142 - dependencies = [ 1143 - "leb128", 1144 - ] 1145 - 1146 - [[package]] 1147 - name = "wast" 1148 - version = "62.0.1" 1149 - source = "registry+https://github.com/rust-lang/crates.io-index" 1150 - checksum = "b8ae06f09dbe377b889fbd620ff8fa21e1d49d1d9d364983c0cdbf9870cb9f1f" 1151 - dependencies = [ 1152 - "leb128", 1153 - "memchr", 1154 - "unicode-width", 1155 - "wasm-encoder 0.31.1", 1156 - ] 1157 - 1158 - [[package]] 1159 - name = "wast" 1160 - version = "64.0.0" 1161 - source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "a259b226fd6910225aa7baeba82f9d9933b6d00f2ce1b49b80fa4214328237cc" 1163 - dependencies = [ 1164 - "leb128", 1165 - "memchr", 1166 - "unicode-width", 1167 - "wasm-encoder 0.32.0", 1168 - ] 1169 - 1170 - [[package]] 1171 - name = "wat" 1172 - version = "1.0.71" 1173 - source = "registry+https://github.com/rust-lang/crates.io-index" 1174 - checksum = "53253d920ab413fca1c7dc2161d601c79b4fdf631d0ba51dd4343bf9b556c3f6" 1175 - dependencies = [ 1176 - "wast 64.0.0", 1177 - ] 1178 - 1179 - [[package]] 1180 - name = "wiggle" 1181 - version = "2.0.2" 1182 - source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "211ef4d238fd83bbe6f1bc57f3e2e20dc8b1f999188be252e7a535b696c6f84f" 1184 - dependencies = [ 1185 - "anyhow", 1186 - "async-trait", 1187 - "bitflags 1.3.2", 1188 - "thiserror", 1189 - "tracing", 1190 - "wiggle-macro", 1191 - "witx", 1192 - ] 1193 - 1194 - [[package]] 1195 - name = "wiggle-generate" 1196 - version = "2.0.2" 1197 - source = "registry+https://github.com/rust-lang/crates.io-index" 1198 - checksum = "63feec26b2fc3708c7a63316949ca75dd96988f03a17e4cb8d533dc62587ada4" 1199 - dependencies = [ 1200 - "anyhow", 1201 - "heck", 1202 - "proc-macro2", 1203 - "quote", 1204 - "shellexpand", 1205 - "syn 1.0.109", 1206 - "witx", 1207 - ] 1208 - 1209 - [[package]] 1210 - name = "wiggle-macro" 1211 - version = "2.0.2" 1212 - source = "registry+https://github.com/rust-lang/crates.io-index" 1213 - checksum = "494dc2646618c2b7fb0ec5e1d27dbac5ca31194c00a64698a4b5b35a83d80c21" 1214 - dependencies = [ 1215 - "proc-macro2", 1216 - "quote", 1217 - "syn 1.0.109", 1218 - "wiggle-generate", 1219 - ] 1220 - 1221 - [[package]] 1222 - name = "winapi" 1223 - version = "0.3.9" 1224 - source = "registry+https://github.com/rust-lang/crates.io-index" 1225 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1226 - dependencies = [ 1227 - "winapi-i686-pc-windows-gnu", 1228 - "winapi-x86_64-pc-windows-gnu", 1229 - ] 1230 - 1231 - [[package]] 1232 - name = "winapi-i686-pc-windows-gnu" 1233 - version = "0.4.0" 1234 - source = "registry+https://github.com/rust-lang/crates.io-index" 1235 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1236 - 1237 - [[package]] 1238 - name = "winapi-util" 1239 - version = "0.1.5" 1240 - source = "registry+https://github.com/rust-lang/crates.io-index" 1241 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1242 - dependencies = [ 1243 - "winapi", 1244 - ] 1245 - 1246 - [[package]] 1247 - name = "winapi-x86_64-pc-windows-gnu" 1248 - version = "0.4.0" 1249 - source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1251 - 1252 - [[package]] 1253 - name = "windows-sys" 1254 - version = "0.36.1" 1255 - source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 1257 - dependencies = [ 1258 - "windows_aarch64_msvc 0.36.1", 1259 - "windows_i686_gnu 0.36.1", 1260 - "windows_i686_msvc 0.36.1", 1261 - "windows_x86_64_gnu 0.36.1", 1262 - "windows_x86_64_msvc 0.36.1", 1263 - ] 1264 - 1265 - [[package]] 1266 - name = "windows-sys" 1267 - version = "0.42.0" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1270 - dependencies = [ 1271 - "windows_aarch64_gnullvm 0.42.2", 1272 - "windows_aarch64_msvc 0.42.2", 1273 - "windows_i686_gnu 0.42.2", 1274 - "windows_i686_msvc 0.42.2", 1275 - "windows_x86_64_gnu 0.42.2", 1276 - "windows_x86_64_gnullvm 0.42.2", 1277 - "windows_x86_64_msvc 0.42.2", 1278 - ] 1279 - 1280 - [[package]] 1281 - name = "windows-sys" 1282 - version = "0.48.0" 1283 - source = "registry+https://github.com/rust-lang/crates.io-index" 1284 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1285 - dependencies = [ 1286 - "windows-targets", 1287 - ] 1288 - 1289 - [[package]] 1290 - name = "windows-targets" 1291 - version = "0.48.5" 1292 - source = "registry+https://github.com/rust-lang/crates.io-index" 1293 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1294 - dependencies = [ 1295 - "windows_aarch64_gnullvm 0.48.5", 1296 - "windows_aarch64_msvc 0.48.5", 1297 - "windows_i686_gnu 0.48.5", 1298 - "windows_i686_msvc 0.48.5", 1299 - "windows_x86_64_gnu 0.48.5", 1300 - "windows_x86_64_gnullvm 0.48.5", 1301 - "windows_x86_64_msvc 0.48.5", 1302 - ] 1303 - 1304 - [[package]] 1305 - name = "windows_aarch64_gnullvm" 1306 - version = "0.42.2" 1307 - source = "registry+https://github.com/rust-lang/crates.io-index" 1308 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1309 - 1310 - [[package]] 1311 - name = "windows_aarch64_gnullvm" 1312 - version = "0.48.5" 1313 - source = "registry+https://github.com/rust-lang/crates.io-index" 1314 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1315 - 1316 - [[package]] 1317 - name = "windows_aarch64_msvc" 1318 - version = "0.36.1" 1319 - source = "registry+https://github.com/rust-lang/crates.io-index" 1320 - checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 1321 - 1322 - [[package]] 1323 - name = "windows_aarch64_msvc" 1324 - version = "0.42.2" 1325 - source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1327 - 1328 - [[package]] 1329 - name = "windows_aarch64_msvc" 1330 - version = "0.48.5" 1331 - source = "registry+https://github.com/rust-lang/crates.io-index" 1332 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1333 - 1334 - [[package]] 1335 - name = "windows_i686_gnu" 1336 - version = "0.36.1" 1337 - source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 1339 - 1340 - [[package]] 1341 - name = "windows_i686_gnu" 1342 - version = "0.42.2" 1343 - source = "registry+https://github.com/rust-lang/crates.io-index" 1344 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1345 - 1346 - [[package]] 1347 - name = "windows_i686_gnu" 1348 - version = "0.48.5" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1351 - 1352 - [[package]] 1353 - name = "windows_i686_msvc" 1354 - version = "0.36.1" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 1357 - 1358 - [[package]] 1359 - name = "windows_i686_msvc" 1360 - version = "0.42.2" 1361 - source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1363 - 1364 - [[package]] 1365 - name = "windows_i686_msvc" 1366 - version = "0.48.5" 1367 - source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1369 - 1370 - [[package]] 1371 - name = "windows_x86_64_gnu" 1372 - version = "0.36.1" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 1375 - 1376 - [[package]] 1377 - name = "windows_x86_64_gnu" 1378 - version = "0.42.2" 1379 - source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1381 - 1382 - [[package]] 1383 - name = "windows_x86_64_gnu" 1384 - version = "0.48.5" 1385 - source = "registry+https://github.com/rust-lang/crates.io-index" 1386 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1387 - 1388 - [[package]] 1389 - name = "windows_x86_64_gnullvm" 1390 - version = "0.42.2" 1391 - source = "registry+https://github.com/rust-lang/crates.io-index" 1392 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1393 - 1394 - [[package]] 1395 - name = "windows_x86_64_gnullvm" 1396 - version = "0.48.5" 1397 - source = "registry+https://github.com/rust-lang/crates.io-index" 1398 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1399 - 1400 - [[package]] 1401 - name = "windows_x86_64_msvc" 1402 - version = "0.36.1" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 1405 - 1406 - [[package]] 1407 - name = "windows_x86_64_msvc" 1408 - version = "0.42.2" 1409 - source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1411 - 1412 - [[package]] 1413 - name = "windows_x86_64_msvc" 1414 - version = "0.48.5" 1415 - source = "registry+https://github.com/rust-lang/crates.io-index" 1416 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1417 - 1418 - [[package]] 1419 - name = "winx" 1420 - version = "0.33.0" 1421 - source = "registry+https://github.com/rust-lang/crates.io-index" 1422 - checksum = "b7b01e010390eb263a4518c8cebf86cb67469d1511c00b749a47b64c39e8054d" 1423 - dependencies = [ 1424 - "bitflags 1.3.2", 1425 - "io-lifetimes", 1426 - "windows-sys 0.36.1", 1427 - ] 1428 - 1429 - [[package]] 1430 - name = "witx" 1431 - version = "0.9.1" 1432 - source = "registry+https://github.com/rust-lang/crates.io-index" 1433 - checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b" 1434 - dependencies = [ 1435 - "anyhow", 1436 - "log", 1437 - "thiserror", 1438 - "wast 35.0.2", 1439 - ]
+7 -10
pkgs/by-name/wa/wasmi/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 + nix-update-script, 5 6 }: 6 7 7 8 rustPlatform.buildRustPackage rec { 8 9 pname = "wasmi"; 9 - version = "0.31.0"; 10 + version = "0.40.0"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "paritytech"; 13 14 repo = "wasmi"; 14 - rev = "v${version}"; 15 - hash = "sha256-chLWrZ+OLUTSFmTu+qKpjApXDmJFhS68N2RKjaql75U="; 15 + tag = "v${version}"; 16 + hash = "sha256-O+8qBYxmiDQtmL2ThkQYenIXSf2wCoYFqLMJOtLP3Ic="; 16 17 fetchSubmodules = true; 17 18 }; 18 19 19 - cargoLock = { 20 - lockFile = ./Cargo.lock; 21 - }; 22 - 23 - postPatch = '' 24 - ln -s ${./Cargo.lock} Cargo.lock 25 - ''; 20 + useFetchCargoVendor = true; 21 + cargoHash = "sha256-b3mjGjOfIBHcQTIpA2obdCsjC1p0gjfatKmYI01vYME="; 22 + passthru.updateScript = nix-update-script { }; 26 23 27 24 meta = with lib; { 28 25 description = "Efficient WebAssembly interpreter";
+3
pkgs/by-name/xc/xcftools/package.nix
··· 39 39 40 40 # xcfview needs mailcap and isn't that useful anyway 41 41 sed -i -e '/BINARIES/s/xcfview//' Makefile.in 42 + 43 + # add missing header 44 + sed -e '1i#include <stdlib.h>' -i xcf-general.c 42 45 ''; 43 46 44 47 meta = {
+2 -2
pkgs/by-name/xd/xdg-desktop-portal-gnome/package.nix
··· 22 22 23 23 stdenv.mkDerivation (finalAttrs: { 24 24 pname = "xdg-desktop-portal-gnome"; 25 - version = "47.2"; 25 + version = "47.3"; 26 26 27 27 src = fetchurl { 28 28 url = "mirror://gnome/sources/xdg-desktop-portal-gnome/${lib.versions.major finalAttrs.version}/xdg-desktop-portal-gnome-${finalAttrs.version}.tar.xz"; 29 - hash = "sha256-S1NoqhncCqYsioTkgciiZJC013x5ALjlydQyzpHxJ0w="; 29 + hash = "sha256-n25LFLWDNnyRXpSUdk8ny4SSf6o/nm4Bi5O7vPM2HkQ="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+7 -1
pkgs/by-name/zs/zssh/package.nix
··· 3 3 stdenv, 4 4 fetchurl, 5 5 readline, 6 + autoreconfHook, 6 7 }: 7 8 8 9 let ··· 17 18 sha256 = "06z73iq59lz8ibjrgs7d3xl39vh9yld1988yx8khssch4pw41s52"; 18 19 }; 19 20 21 + nativeBuildInputs = [ autoreconfHook ]; 20 22 buildInputs = [ readline ]; 21 23 22 24 patches = [ ··· 30 32 31 33 patchFlags = [ "-p0" ]; 32 34 35 + postPatch = '' 36 + sed -i 1i'#include <pty.h>' openpty.c 37 + ''; 38 + 33 39 # The makefile does not create the directories 34 40 postBuild = '' 35 - install -dm755 "$out"/{bin,man/man1} 41 + install -dm755 "$out"/{bin,share/man/man1} 36 42 ''; 37 43 38 44 meta = {
+6 -6
pkgs/development/compilers/dart/sources.nix
··· 1 1 let 2 - version = "3.6.0"; 2 + version = "3.7.1"; 3 3 in 4 4 { fetchurl }: 5 5 { 6 6 versionUsed = version; 7 7 "${version}-x86_64-darwin" = fetchurl { 8 8 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-macos-x64-release.zip"; 9 - sha256 = "0avky36jmknnp3jwz4p0yz5yv8wqwl0v7rhv0s4v75r9v6mv2ndq"; 9 + sha256 = "0bldcn4j99cv2a6g3s263929r7wqhjaxylwm26nd2jdfnqbmjxm2"; 10 10 }; 11 11 "${version}-aarch64-darwin" = fetchurl { 12 12 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-macos-arm64-release.zip"; 13 - sha256 = "1802lx2ijpi4lkbbnvlkk1swn579rpbnmxmvghz6flxa99acdnqv"; 13 + sha256 = "191jig17mnk0gjys2xd0qr267idjv2h50qnaz0cciflj60b2az7m"; 14 14 }; 15 15 "${version}-aarch64-linux" = fetchurl { 16 16 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-arm64-release.zip"; 17 - sha256 = "1gz7ai977ynl554rplfjnd585q5m429ax51js3806w4ch07z30hg"; 17 + sha256 = "1zj7k2bczb9yy63vjj8xm3ljd9sx9z77awf4wdvv6y02gnzxv4ga"; 18 18 }; 19 19 "${version}-x86_64-linux" = fetchurl { 20 20 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-x64-release.zip"; 21 - sha256 = "18smc4nj77dvsg99mk69d0h1y9cp3914zjdbimhp5v0ydr1zy54f"; 21 + sha256 = "0wgfl118j7s7xjz4i0m4gyzxzsjv7x9wq9xr2m036l4ngng9a4r8"; 22 22 }; 23 23 "${version}-i686-linux" = fetchurl { 24 24 url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-ia32-release.zip"; 25 - sha256 = "0k8ikz0rwhbgx6gdnxysikm8zcv3k6gf8d3a47wb5xx9dhgyk3vw"; 25 + sha256 = "1zj60jqpnv1apl4439vvxxrgfvg3azwaaizdmq8chfmrg97vr85x"; 26 26 }; 27 27 }
+2 -2
pkgs/development/libraries/g2o/default.nix
··· 16 16 17 17 mkDerivation rec { 18 18 pname = "g2o"; 19 - version = "20230806"; 19 + version = "20241228"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "RainerKuemmerle"; 23 23 repo = pname; 24 24 rev = "${version}_git"; 25 - hash = "sha256-9u1FFRWe7qvDhzSKdGTduuGBXmmgzcSriGFb/oCJjNA="; 25 + hash = "sha256-MW1IO1P2e3KgurOW5ZfHlxK0m5sF0JhdLmvQNEHWEtI="; 26 26 }; 27 27 28 28 # Removes a reference to gcc that is only used in a debug message
+3 -1
pkgs/development/libraries/gegl/default.nix
··· 129 129 doCheck = !stdenv.hostPlatform.isDarwin; 130 130 131 131 passthru = { 132 - inherit gimp; 132 + tests = { 133 + inherit gimp; 134 + }; 133 135 }; 134 136 135 137 meta = with lib; {
+2 -2
pkgs/development/libraries/quarto/default.nix
··· 18 18 }: 19 19 stdenv.mkDerivation (final: { 20 20 pname = "quarto"; 21 - version = "1.6.41"; 21 + version = "1.6.42"; 22 22 23 23 src = fetchurl { 24 24 url = "https://github.com/quarto-dev/quarto-cli/releases/download/v${final.version}/quarto-${final.version}-linux-amd64.tar.gz"; 25 - hash = "sha256-+OsTnNxb/67sy3SOV0wHmR7Nm+hpgy5k2Jn28J6RNmw="; 25 + hash = "sha256-9mf1YfcfCWMZaYFlYyJN9WKlRHk8U2sq2ESb4mqz3sY="; 26 26 }; 27 27 28 28 patches = [
+2 -2
pkgs/development/libraries/wt/default.nix
··· 46 46 }; 47 47 in { 48 48 wt4 = generic { 49 - version = "4.11.1"; 50 - sha256 = "sha256-Vp5vALQqI84NiYnK8amXSyOwX0Fq6VkodBHAf25wAfM="; 49 + version = "4.11.3"; 50 + sha256 = "sha256-YEzuif+8DACSVu2U4uaLncvE1WaVonJVnCf2rAc/sUc="; 51 51 }; 52 52 }
+2 -2
pkgs/development/ocaml-modules/pcre/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "pcre"; 5 - version = "7.5.0"; 5 + version = "8.0.3"; 6 6 7 7 useDune2 = true; 8 8 ··· 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mmottl/pcre-ocaml/releases/download/${version}/pcre-${version}.tbz"; 13 - sha256 = "sha256-ZxFC9AtthhccvAZyU/qt+QMBkWHVdIi9D7bFRWwsvRo="; 13 + sha256 = "sha256-FIgCeBEAHKz7/6bNsUoqbH2c3eMq62gphVdEa+kNf3k="; 14 14 }; 15 15 16 16 buildInputs = [ dune-configurator ];
+2 -2
pkgs/development/python-modules/aiosseclient/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "aiosseclient"; 11 - version = "0.1.7"; 11 + version = "0.1.8"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "ebraminio"; 16 16 repo = "aiosseclient"; 17 17 tag = version; 18 - hash = "sha256-Z14Wl/M1FFq9HcLgzhsC/wfqamdwBcqHcOketFg5f+U="; 18 + hash = "sha256-ynWqRQsCuog8myNleJDdp+omyujmNB1Ys7O6gU2AaUc="; 19 19 }; 20 20 21 21 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/celery-types/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "celery-types"; 12 - version = "0.22.0"; 12 + version = "0.23.0"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.10"; ··· 17 17 src = fetchPypi { 18 18 pname = "celery_types"; 19 19 inherit version; 20 - hash = "sha256-DsrS+lpu3tCh+Rnl4eOBzC/wY1/ksh21O0ZhtodtWzA="; 20 + hash = "sha256-QC7QVVrqPNXh5iSPRjLk8Y7sjtskNRc/nm3AhEn6EB4="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ poetry-core ];
+2 -2
pkgs/development/python-modules/cssbeautifier/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "cssbeautifier"; 14 - version = "1.15.2"; 14 + version = "1.15.4"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-AtQv+mrvqofxhFK0N9u3P2uY9C6ahHWYENxY96a/wmw="; 21 + hash = "sha256-m7CNw/ZMEBoBZ38Sis8BkFkUz0Brr4dDTc3gW3TArPU="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/databricks-sdk/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "databricks-sdk"; 25 - version = "0.44.1"; 25 + version = "0.45.0"; 26 26 pyproject = true; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "databricks"; 30 30 repo = "databricks-sdk-py"; 31 31 tag = "v${version}"; 32 - hash = "sha256-+zRsw+nQjkee7AGg0xW7HHbROUAz6cVO91XDlgGtJfs="; 32 + hash = "sha256-SoE8MgwOhm82ymjaZQZCzw7hd5DMWxSvgaAwIGlm9cQ="; 33 33 }; 34 34 35 35 build-system = [
+42 -22
pkgs/development/python-modules/hydra-core/default.nix
··· 1 1 { 2 2 lib, 3 - antlr4, 4 - antlr4-python3-runtime, 5 3 buildPythonPackage, 6 4 fetchFromGitHub, 5 + 6 + # build-system 7 + setuptools, 8 + 9 + # patches 10 + replaceVars, 11 + antlr4, 7 12 fetchpatch, 8 - importlib-resources, 13 + 14 + # nativeBuildInputs 9 15 jre_headless, 16 + 17 + # dependencies 18 + antlr4-python3-runtime, 10 19 omegaconf, 11 20 packaging, 21 + 22 + # tests 12 23 pytestCheckHook, 13 - pythonOlder, 14 - replaceVars, 24 + pythonAtLeast, 15 25 }: 16 26 17 27 buildPythonPackage rec { 18 28 pname = "hydra-core"; 19 29 version = "1.3.2"; 20 - format = "setuptools"; 21 - 22 - disabled = pythonOlder "3.6"; 30 + pyproject = true; 23 31 24 32 src = fetchFromGitHub { 25 33 owner = "facebookresearch"; ··· 44 52 # We substitute the path to the jar with the one from our antlr4 45 53 # package, so this file becomes unused 46 54 rm -v build_helpers/bin/antlr*-complete.jar 47 - 48 - sed -i 's/antlr4-python3-runtime==.*/antlr4-python3-runtime/' requirements/requirements.txt 49 55 ''; 50 56 57 + build-system = [ 58 + setuptools 59 + ]; 60 + 51 61 nativeBuildInputs = [ jre_headless ]; 52 62 53 - propagatedBuildInputs = [ 63 + pythonRelaxDeps = [ 64 + "antlr4-python3-runtime" 65 + ]; 66 + 67 + dependencies = [ 54 68 antlr4-python3-runtime 55 69 omegaconf 56 70 packaging 57 - ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ]; 71 + ]; 58 72 59 73 nativeCheckInputs = [ pytestCheckHook ]; 60 74 ··· 64 78 ]; 65 79 66 80 # Test environment setup broken under Nix for a few tests: 67 - disabledTests = [ 68 - "test_bash_completion_with_dot_in_path" 69 - "test_install_uninstall" 70 - "test_config_search_path" 71 - # does not raise UserWarning 72 - "test_initialize_compat_version_base" 73 - ]; 81 + disabledTests = 82 + [ 83 + "test_bash_completion_with_dot_in_path" 84 + "test_install_uninstall" 85 + "test_config_search_path" 86 + # does not raise UserWarning 87 + "test_initialize_compat_version_base" 88 + ] 89 + ++ lib.optionals (pythonAtLeast "3.13") [ 90 + # AssertionError: Regex pattern did not match 91 + "test_failure" 92 + ]; 74 93 75 94 disabledTestPaths = [ "tests/test_hydra.py" ]; 76 95 ··· 80 99 "hydra.version" 81 100 ]; 82 101 83 - meta = with lib; { 102 + meta = { 84 103 description = "Framework for configuring complex applications"; 85 104 homepage = "https://hydra.cc"; 86 - license = licenses.mit; 87 - maintainers = with maintainers; [ bcdarwin ]; 105 + changelog = "https://github.com/facebookresearch/hydra/blob/v${version}/NEWS.md"; 106 + license = lib.licenses.mit; 107 + maintainers = with lib.maintainers; [ bcdarwin ]; 88 108 }; 89 109 }
+2 -2
pkgs/development/python-modules/identify/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "identify"; 14 - version = "2.6.8"; 14 + version = "2.6.9"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.9"; ··· 20 20 owner = "pre-commit"; 21 21 repo = "identify"; 22 22 tag = "v${version}"; 23 - hash = "sha256-5TAGRYr5ilUBhQjUMI4Z/bW24HOYS757Wld6H+fFSAU="; 23 + hash = "sha256-5MirPDgV5+dq+2Hr1sxpbDiQ2h+BxO5axtf2ntbFsMg="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/ipyparallel/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "ipyparallel"; 22 - version = "9.0.0"; 22 + version = "9.0.1"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-cGAcuvmhadNQ/+IsgtW73+bf5MTfAoNtmZDpxVm1vLY="; 29 + hash = "sha256-LlksrSIAxalPu/9jm/825uyRIvNLNrL8a01njZ6Y8pw="; 30 30 }; 31 31 32 32 # We do not need the jupyterlab build dependency, because we do not need to
+7 -4
pkgs/development/python-modules/jh2/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "jh2"; 15 - version = "5.0.5"; 15 + version = "5.0.8"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.10"; ··· 21 21 owner = "jawah"; 22 22 repo = "h2"; 23 23 tag = "v${version}"; 24 - hash = "sha256-H1i2lolctispLtQc+uqeE+NUeKr/dtgDq1zdTJH5gyU="; 24 + hash = "sha256-dQ0FqiX9IqgF8fz0JDWQSHQrr9H3UwG9+mkZI3DwWSU="; 25 25 fetchSubmodules = true; 26 26 }; 27 27 28 28 cargoDeps = rustPlatform.fetchCargoVendor { 29 29 inherit src; 30 30 name = "${pname}-${version}"; 31 - hash = "sha256-nzLU6QhoJGNCqFF6pzzMr7FHbrLnNq7PvPC42VOrYo8="; 31 + hash = "sha256-P27BIsloNsHHej8qE8EDtXLVvnUmWcbb/6LhP2w7wrw="; 32 32 }; 33 33 34 34 build-system = [ ··· 50 50 homepage = "https://github.com/jawah/h2"; 51 51 changelog = "https://github.com/jawah/h2/blob/${src.rev}/CHANGELOG.rst"; 52 52 license = lib.licenses.mit; 53 - maintainers = with lib.maintainers; [ fab ]; 53 + maintainers = with lib.maintainers; [ 54 + fab 55 + techknowlogick 56 + ]; 54 57 }; 55 58 }
+2 -2
pkgs/development/python-modules/matplotlib-venn/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "matplotlib-venn"; 16 - version = "1.1.1"; 16 + version = "1.1.2"; 17 17 18 18 pyproject = true; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-2IW8AV9QkaS4qBOP8gp+0WbDO1w228BIn5Wly8dqKuU="; 22 + hash = "sha256-bysHoD6btaYt4vMvllIWc54XUXb51lTdGeevLCLsNuM="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/nbsphinx/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "nbsphinx"; 17 - version = "0.9.6"; 17 + version = "0.9.7"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-wrKKLXAvEVmpW4Q4MXmOhuYKF/xke5v/m6FYU1XeVOM="; 24 + hash = "sha256-q9KYpobVX6iU72l8UdRPJOU6oxLa2uOOgpIPJQpUVv4="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+21 -16
pkgs/development/python-modules/nocturne/default.nix
··· 1 1 { 2 + lib, 2 3 buildPythonPackage, 3 - cmake, 4 4 fetchFromGitHub, 5 + nlohmann_json, 6 + pybind11, 7 + replaceVars, 5 8 gtest, 9 + setuptools, 10 + cmake, 11 + sfml, 6 12 hydra-core, 7 - lib, 8 - nlohmann_json, 9 - pybind11, 10 13 pyvirtualdisplay, 11 - sfml, 12 - replaceVars, 13 14 }: 14 15 15 - buildPythonPackage rec { 16 + buildPythonPackage { 16 17 pname = "nocturne"; 17 - version = "unstable-2022-10-15"; 18 - format = "setuptools"; 18 + version = "0-unstable-2024-06-19"; 19 + pyproject = true; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "facebookresearch"; 22 - repo = pname; 23 - rev = "ae0a4e361457caf6b7e397675cc86f46161405ed"; 24 - hash = "sha256-pFVbl4m7qX1mJgleNabRboS9klDDsbzUa4PYL5+Jupc="; 23 + repo = "nocturne"; 24 + rev = "6d1e0f329f7acbed01c934842b269333540af6d2"; 25 + hash = "sha256-Ufhvc+IZUrn8i6Fmu6o81LPjY1Jo0vzsso+eLbI1F2s="; 25 26 }; 26 27 27 28 # Simulate the git submodules but with nixpkgs dependencies ··· 37 38 }) 38 39 ]; 39 40 41 + build-system = [ 42 + setuptools 43 + ]; 44 + 40 45 nativeBuildInputs = [ cmake ]; 41 46 dontUseCmakeConfigure = true; 42 47 43 48 buildInputs = [ sfml ]; 44 49 45 50 # hydra-core and pyvirtualdisplay are not declared as dependences but they are requirements 46 - propagatedBuildInputs = [ 51 + dependencies = [ 47 52 hydra-core 48 53 pyvirtualdisplay 49 54 ]; ··· 53 58 54 59 pythonImportsCheck = [ "nocturne" ]; 55 60 56 - meta = with lib; { 61 + meta = { 57 62 description = "Data-driven, fast driving simulator for multi-agent coordination under partial observability"; 58 63 homepage = "https://github.com/facebookresearch/nocturne"; 59 - license = licenses.mit; 60 - maintainers = with maintainers; [ samuela ]; 64 + license = lib.licenses.mit; 65 + maintainers = with lib.maintainers; [ samuela ]; 61 66 }; 62 67 }
+2 -2
pkgs/development/python-modules/pcffont/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pcffont"; 14 - version = "0.0.16"; 14 + version = "0.0.17"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.10"; ··· 19 19 src = fetchPypi { 20 20 pname = "pcffont"; 21 21 inherit version; 22 - hash = "sha256-erZ9zcXZqBg71subC8U7QA7nwwoh2lQeIzRAkmxBxzg="; 22 + hash = "sha256-rno4zgK3mdlkAGC76HkcNo+O8G+FW0oqdg0uuYqdJm4="; 23 23 }; 24 24 25 25 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/pyexploitdb/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyexploitdb"; 13 - version = "0.2.70"; 13 + version = "0.2.71"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 18 18 src = fetchPypi { 19 19 pname = "pyExploitDb"; 20 20 inherit version; 21 - hash = "sha256-Y/iAQPCVhKdGLuABuANJahDhIBKjWf3M2aREaZ5wF3Y="; 21 + hash = "sha256-AE9fD7OKrpi74rXQibtmyQoAeMAO2QCagpCT3HaUGaQ="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+3 -8
pkgs/development/python-modules/pylance/default.nix
··· 27 27 polars, 28 28 pytestCheckHook, 29 29 tqdm, 30 - 31 - # passthru 32 - nix-update-script, 33 30 }: 34 31 35 32 buildPythonPackage rec { 36 33 pname = "pylance"; 37 - version = "0.23.2"; 34 + version = "0.24.0"; 38 35 pyproject = true; 39 36 40 37 src = fetchFromGitHub { 41 38 owner = "lancedb"; 42 39 repo = "lance"; 43 40 tag = "v${version}"; 44 - hash = "sha256-HVT/39zhcviVkF6dKM+ZIy7vGW6tOWEBUXTEIuFaVno="; 41 + hash = "sha256-tzz+Zww6/owkcFhHBt8+2cvouCeqdspuv6Gy7HpZTP0="; 45 42 }; 46 43 47 44 sourceRoot = "${src.name}/python"; ··· 53 50 src 54 51 sourceRoot 55 52 ; 56 - hash = "sha256-H5Z6YgaSfRrRPGZVbgNWxcFboS1I65p+08c1VgaL+lE="; 53 + hash = "sha256-7GN4iAQMvqZkK5kjBMrNa8Q6fETW0HDZklSQGye+Huc="; 57 54 }; 58 55 59 56 nativeBuildInputs = [ ··· 121 118 "test_iter_over_dataset_fixed_shape_tensor" 122 119 "test_iter_over_dataset_fixed_size_lists" 123 120 ]; 124 - 125 - passthru.updateScript = nix-update-script { }; 126 121 127 122 meta = { 128 123 description = "Python wrapper for Lance columnar format";
-2861
pkgs/development/python-modules/ruff-api/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 = "Inflector" 7 - version = "0.11.4" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 - 11 - [[package]] 12 - name = "aho-corasick" 13 - version = "1.1.3" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 16 - dependencies = [ 17 - "memchr", 18 - ] 19 - 20 - [[package]] 21 - name = "android-tzdata" 22 - version = "0.1.1" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 25 - 26 - [[package]] 27 - name = "android_system_properties" 28 - version = "0.1.5" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 31 - dependencies = [ 32 - "libc", 33 - ] 34 - 35 - [[package]] 36 - name = "annotate-snippets" 37 - version = "0.6.1" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "c7021ce4924a3f25f802b2cccd1af585e39ea1a363a1aa2e72afe54b67a3a7a7" 40 - 41 - [[package]] 42 - name = "annotate-snippets" 43 - version = "0.9.2" 44 - source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "ccaf7e9dfbb6ab22c82e473cd1a8a7bd313c19a5b7e40970f3d89ef5a5c9e81e" 46 - dependencies = [ 47 - "unicode-width", 48 - "yansi-term", 49 - ] 50 - 51 - [[package]] 52 - name = "anstream" 53 - version = "0.6.15" 54 - source = "registry+https://github.com/rust-lang/crates.io-index" 55 - checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 56 - dependencies = [ 57 - "anstyle", 58 - "anstyle-parse", 59 - "anstyle-query", 60 - "anstyle-wincon", 61 - "colorchoice", 62 - "is_terminal_polyfill", 63 - "utf8parse", 64 - ] 65 - 66 - [[package]] 67 - name = "anstyle" 68 - version = "1.0.8" 69 - source = "registry+https://github.com/rust-lang/crates.io-index" 70 - checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 71 - 72 - [[package]] 73 - name = "anstyle-parse" 74 - version = "0.2.5" 75 - source = "registry+https://github.com/rust-lang/crates.io-index" 76 - checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 77 - dependencies = [ 78 - "utf8parse", 79 - ] 80 - 81 - [[package]] 82 - name = "anstyle-query" 83 - version = "1.1.1" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 86 - dependencies = [ 87 - "windows-sys 0.52.0", 88 - ] 89 - 90 - [[package]] 91 - name = "anstyle-wincon" 92 - version = "3.0.4" 93 - source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 95 - dependencies = [ 96 - "anstyle", 97 - "windows-sys 0.52.0", 98 - ] 99 - 100 - [[package]] 101 - name = "anyhow" 102 - version = "1.0.86" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 105 - 106 - [[package]] 107 - name = "argfile" 108 - version = "0.2.1" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "0a1cc0ba69de57db40674c66f7cf2caee3981ddef084388482c95c0e2133e5e8" 111 - dependencies = [ 112 - "fs-err", 113 - "os_str_bytes", 114 - ] 115 - 116 - [[package]] 117 - name = "autocfg" 118 - version = "1.3.0" 119 - source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 121 - 122 - [[package]] 123 - name = "bincode" 124 - version = "1.3.3" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 127 - dependencies = [ 128 - "serde", 129 - ] 130 - 131 - [[package]] 132 - name = "bitflags" 133 - version = "1.3.2" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 136 - 137 - [[package]] 138 - name = "bitflags" 139 - version = "2.6.0" 140 - source = "registry+https://github.com/rust-lang/crates.io-index" 141 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 142 - 143 - [[package]] 144 - name = "bstr" 145 - version = "1.10.0" 146 - source = "registry+https://github.com/rust-lang/crates.io-index" 147 - checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" 148 - dependencies = [ 149 - "memchr", 150 - "regex-automata 0.4.7", 151 - "serde", 152 - ] 153 - 154 - [[package]] 155 - name = "bumpalo" 156 - version = "3.16.0" 157 - source = "registry+https://github.com/rust-lang/crates.io-index" 158 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 159 - 160 - [[package]] 161 - name = "byteorder" 162 - version = "1.5.0" 163 - source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 165 - 166 - [[package]] 167 - name = "cachedir" 168 - version = "0.3.1" 169 - source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "4703f3937077db8fa35bee3c8789343c1aec2585f0146f09d658d4ccc0e8d873" 171 - dependencies = [ 172 - "tempfile", 173 - ] 174 - 175 - [[package]] 176 - name = "cc" 177 - version = "1.1.7" 178 - source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" 180 - 181 - [[package]] 182 - name = "cfg-if" 183 - version = "1.0.0" 184 - source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 186 - 187 - [[package]] 188 - name = "cfg_aliases" 189 - version = "0.1.1" 190 - source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 192 - 193 - [[package]] 194 - name = "chic" 195 - version = "1.2.2" 196 - source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "a5b5db619f3556839cb2223ae86ff3f9a09da2c5013be42bc9af08c9589bf70c" 198 - dependencies = [ 199 - "annotate-snippets 0.6.1", 200 - ] 201 - 202 - [[package]] 203 - name = "chrono" 204 - version = "0.4.38" 205 - source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 207 - dependencies = [ 208 - "android-tzdata", 209 - "iana-time-zone", 210 - "num-traits", 211 - "windows-targets 0.52.6", 212 - ] 213 - 214 - [[package]] 215 - name = "clap" 216 - version = "4.5.13" 217 - source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc" 219 - dependencies = [ 220 - "clap_builder", 221 - "clap_derive", 222 - ] 223 - 224 - [[package]] 225 - name = "clap_builder" 226 - version = "4.5.13" 227 - source = "registry+https://github.com/rust-lang/crates.io-index" 228 - checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99" 229 - dependencies = [ 230 - "anstream", 231 - "anstyle", 232 - "clap_lex", 233 - "strsim", 234 - "terminal_size", 235 - ] 236 - 237 - [[package]] 238 - name = "clap_complete" 239 - version = "4.5.12" 240 - source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "a8670053e87c316345e384ca1f3eba3006fc6355ed8b8a1140d104e109e3df34" 242 - dependencies = [ 243 - "clap", 244 - ] 245 - 246 - [[package]] 247 - name = "clap_complete_command" 248 - version = "0.5.1" 249 - source = "registry+https://github.com/rust-lang/crates.io-index" 250 - checksum = "183495371ea78d4c9ff638bfc6497d46fed2396e4f9c50aebc1278a4a9919a3d" 251 - dependencies = [ 252 - "clap", 253 - "clap_complete", 254 - "clap_complete_fig", 255 - "clap_complete_nushell", 256 - ] 257 - 258 - [[package]] 259 - name = "clap_complete_fig" 260 - version = "4.5.2" 261 - source = "registry+https://github.com/rust-lang/crates.io-index" 262 - checksum = "d494102c8ff3951810c72baf96910b980fb065ca5d3101243e6a8dc19747c86b" 263 - dependencies = [ 264 - "clap", 265 - "clap_complete", 266 - ] 267 - 268 - [[package]] 269 - name = "clap_complete_nushell" 270 - version = "0.1.11" 271 - source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "5d02bc8b1a18ee47c4d2eec3fb5ac034dc68ebea6125b1509e9ccdffcddce66e" 273 - dependencies = [ 274 - "clap", 275 - "clap_complete", 276 - ] 277 - 278 - [[package]] 279 - name = "clap_derive" 280 - version = "4.5.13" 281 - source = "registry+https://github.com/rust-lang/crates.io-index" 282 - checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" 283 - dependencies = [ 284 - "heck", 285 - "proc-macro2", 286 - "quote", 287 - "syn 2.0.72", 288 - ] 289 - 290 - [[package]] 291 - name = "clap_lex" 292 - version = "0.7.2" 293 - source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 295 - 296 - [[package]] 297 - name = "clearscreen" 298 - version = "3.0.0" 299 - source = "registry+https://github.com/rust-lang/crates.io-index" 300 - checksum = "2f8c93eb5f77c9050c7750e14f13ef1033a40a0aac70c6371535b6763a01438c" 301 - dependencies = [ 302 - "nix", 303 - "terminfo", 304 - "thiserror", 305 - "which", 306 - "winapi", 307 - ] 308 - 309 - [[package]] 310 - name = "colorchoice" 311 - version = "1.0.2" 312 - source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 314 - 315 - [[package]] 316 - name = "colored" 317 - version = "2.1.0" 318 - source = "registry+https://github.com/rust-lang/crates.io-index" 319 - checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" 320 - dependencies = [ 321 - "lazy_static", 322 - "windows-sys 0.48.0", 323 - ] 324 - 325 - [[package]] 326 - name = "core-foundation-sys" 327 - version = "0.8.6" 328 - source = "registry+https://github.com/rust-lang/crates.io-index" 329 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 330 - 331 - [[package]] 332 - name = "countme" 333 - version = "3.0.1" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636" 336 - 337 - [[package]] 338 - name = "crossbeam" 339 - version = "0.8.4" 340 - source = "registry+https://github.com/rust-lang/crates.io-index" 341 - checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 342 - dependencies = [ 343 - "crossbeam-channel", 344 - "crossbeam-deque", 345 - "crossbeam-epoch", 346 - "crossbeam-queue", 347 - "crossbeam-utils", 348 - ] 349 - 350 - [[package]] 351 - name = "crossbeam-channel" 352 - version = "0.5.13" 353 - source = "registry+https://github.com/rust-lang/crates.io-index" 354 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 355 - dependencies = [ 356 - "crossbeam-utils", 357 - ] 358 - 359 - [[package]] 360 - name = "crossbeam-deque" 361 - version = "0.8.5" 362 - source = "registry+https://github.com/rust-lang/crates.io-index" 363 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 364 - dependencies = [ 365 - "crossbeam-epoch", 366 - "crossbeam-utils", 367 - ] 368 - 369 - [[package]] 370 - name = "crossbeam-epoch" 371 - version = "0.9.18" 372 - source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 374 - dependencies = [ 375 - "crossbeam-utils", 376 - ] 377 - 378 - [[package]] 379 - name = "crossbeam-queue" 380 - version = "0.3.11" 381 - source = "registry+https://github.com/rust-lang/crates.io-index" 382 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 383 - dependencies = [ 384 - "crossbeam-utils", 385 - ] 386 - 387 - [[package]] 388 - name = "crossbeam-utils" 389 - version = "0.8.20" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 392 - 393 - [[package]] 394 - name = "darling" 395 - version = "0.20.10" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 398 - dependencies = [ 399 - "darling_core", 400 - "darling_macro", 401 - ] 402 - 403 - [[package]] 404 - name = "darling_core" 405 - version = "0.20.10" 406 - source = "registry+https://github.com/rust-lang/crates.io-index" 407 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 408 - dependencies = [ 409 - "fnv", 410 - "ident_case", 411 - "proc-macro2", 412 - "quote", 413 - "strsim", 414 - "syn 2.0.72", 415 - ] 416 - 417 - [[package]] 418 - name = "darling_macro" 419 - version = "0.20.10" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 422 - dependencies = [ 423 - "darling_core", 424 - "quote", 425 - "syn 2.0.72", 426 - ] 427 - 428 - [[package]] 429 - name = "dirs" 430 - version = "4.0.0" 431 - source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 433 - dependencies = [ 434 - "dirs-sys 0.3.7", 435 - ] 436 - 437 - [[package]] 438 - name = "dirs" 439 - version = "5.0.1" 440 - source = "registry+https://github.com/rust-lang/crates.io-index" 441 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 442 - dependencies = [ 443 - "dirs-sys 0.4.1", 444 - ] 445 - 446 - [[package]] 447 - name = "dirs-sys" 448 - version = "0.3.7" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 451 - dependencies = [ 452 - "libc", 453 - "redox_users", 454 - "winapi", 455 - ] 456 - 457 - [[package]] 458 - name = "dirs-sys" 459 - version = "0.4.1" 460 - source = "registry+https://github.com/rust-lang/crates.io-index" 461 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 462 - dependencies = [ 463 - "libc", 464 - "option-ext", 465 - "redox_users", 466 - "windows-sys 0.48.0", 467 - ] 468 - 469 - [[package]] 470 - name = "drop_bomb" 471 - version = "0.1.5" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1" 474 - 475 - [[package]] 476 - name = "either" 477 - version = "1.13.0" 478 - source = "registry+https://github.com/rust-lang/crates.io-index" 479 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 480 - 481 - [[package]] 482 - name = "equivalent" 483 - version = "1.0.1" 484 - source = "registry+https://github.com/rust-lang/crates.io-index" 485 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 486 - 487 - [[package]] 488 - name = "errno" 489 - version = "0.3.9" 490 - source = "registry+https://github.com/rust-lang/crates.io-index" 491 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 492 - dependencies = [ 493 - "libc", 494 - "windows-sys 0.52.0", 495 - ] 496 - 497 - [[package]] 498 - name = "fastrand" 499 - version = "2.1.0" 500 - source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 502 - 503 - [[package]] 504 - name = "fern" 505 - version = "0.6.2" 506 - source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee" 508 - dependencies = [ 509 - "log", 510 - ] 511 - 512 - [[package]] 513 - name = "filetime" 514 - version = "0.2.23" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 517 - dependencies = [ 518 - "cfg-if", 519 - "libc", 520 - "redox_syscall 0.4.1", 521 - "windows-sys 0.52.0", 522 - ] 523 - 524 - [[package]] 525 - name = "fnv" 526 - version = "1.0.7" 527 - source = "registry+https://github.com/rust-lang/crates.io-index" 528 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 529 - 530 - [[package]] 531 - name = "form_urlencoded" 532 - version = "1.2.1" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 535 - dependencies = [ 536 - "percent-encoding", 537 - ] 538 - 539 - [[package]] 540 - name = "fs-err" 541 - version = "2.11.0" 542 - source = "registry+https://github.com/rust-lang/crates.io-index" 543 - checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 544 - dependencies = [ 545 - "autocfg", 546 - ] 547 - 548 - [[package]] 549 - name = "fsevent-sys" 550 - version = "4.1.0" 551 - source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 553 - dependencies = [ 554 - "libc", 555 - ] 556 - 557 - [[package]] 558 - name = "getopts" 559 - version = "0.2.21" 560 - source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 562 - dependencies = [ 563 - "unicode-width", 564 - ] 565 - 566 - [[package]] 567 - name = "getrandom" 568 - version = "0.2.15" 569 - source = "registry+https://github.com/rust-lang/crates.io-index" 570 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 571 - dependencies = [ 572 - "cfg-if", 573 - "js-sys", 574 - "libc", 575 - "wasi", 576 - "wasm-bindgen", 577 - ] 578 - 579 - [[package]] 580 - name = "glob" 581 - version = "0.3.1" 582 - source = "registry+https://github.com/rust-lang/crates.io-index" 583 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 584 - 585 - [[package]] 586 - name = "globset" 587 - version = "0.4.14" 588 - source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 590 - dependencies = [ 591 - "aho-corasick", 592 - "bstr", 593 - "log", 594 - "regex-automata 0.4.7", 595 - "regex-syntax 0.8.4", 596 - ] 597 - 598 - [[package]] 599 - name = "hashbrown" 600 - version = "0.14.5" 601 - source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 603 - 604 - [[package]] 605 - name = "heck" 606 - version = "0.5.0" 607 - source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 609 - 610 - [[package]] 611 - name = "home" 612 - version = "0.5.9" 613 - source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 615 - dependencies = [ 616 - "windows-sys 0.52.0", 617 - ] 618 - 619 - [[package]] 620 - name = "iana-time-zone" 621 - version = "0.1.60" 622 - source = "registry+https://github.com/rust-lang/crates.io-index" 623 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 624 - dependencies = [ 625 - "android_system_properties", 626 - "core-foundation-sys", 627 - "iana-time-zone-haiku", 628 - "js-sys", 629 - "wasm-bindgen", 630 - "windows-core", 631 - ] 632 - 633 - [[package]] 634 - name = "iana-time-zone-haiku" 635 - version = "0.1.2" 636 - source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 638 - dependencies = [ 639 - "cc", 640 - ] 641 - 642 - [[package]] 643 - name = "ident_case" 644 - version = "1.0.1" 645 - source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 647 - 648 - [[package]] 649 - name = "idna" 650 - version = "0.5.0" 651 - source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 653 - dependencies = [ 654 - "unicode-bidi", 655 - "unicode-normalization", 656 - ] 657 - 658 - [[package]] 659 - name = "ignore" 660 - version = "0.4.22" 661 - source = "registry+https://github.com/rust-lang/crates.io-index" 662 - checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1" 663 - dependencies = [ 664 - "crossbeam-deque", 665 - "globset", 666 - "log", 667 - "memchr", 668 - "regex-automata 0.4.7", 669 - "same-file", 670 - "walkdir", 671 - "winapi-util", 672 - ] 673 - 674 - [[package]] 675 - name = "imperative" 676 - version = "1.0.6" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "29a1f6526af721f9aec9ceed7ab8ebfca47f3399d08b80056c2acca3fcb694a9" 679 - dependencies = [ 680 - "phf", 681 - "rust-stemmers", 682 - ] 683 - 684 - [[package]] 685 - name = "indexmap" 686 - version = "2.3.0" 687 - source = "registry+https://github.com/rust-lang/crates.io-index" 688 - checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0" 689 - dependencies = [ 690 - "equivalent", 691 - "hashbrown", 692 - "serde", 693 - ] 694 - 695 - [[package]] 696 - name = "indoc" 697 - version = "1.0.9" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 700 - 701 - [[package]] 702 - name = "inotify" 703 - version = "0.9.6" 704 - source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 706 - dependencies = [ 707 - "bitflags 1.3.2", 708 - "inotify-sys", 709 - "libc", 710 - ] 711 - 712 - [[package]] 713 - name = "inotify-sys" 714 - version = "0.1.5" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 717 - dependencies = [ 718 - "libc", 719 - ] 720 - 721 - [[package]] 722 - name = "is-docker" 723 - version = "0.2.0" 724 - source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 726 - dependencies = [ 727 - "once_cell", 728 - ] 729 - 730 - [[package]] 731 - name = "is-macro" 732 - version = "0.3.5" 733 - source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "59a85abdc13717906baccb5a1e435556ce0df215f242892f721dff62bf25288f" 735 - dependencies = [ 736 - "Inflector", 737 - "proc-macro2", 738 - "quote", 739 - "syn 2.0.72", 740 - ] 741 - 742 - [[package]] 743 - name = "is-wsl" 744 - version = "0.4.0" 745 - source = "registry+https://github.com/rust-lang/crates.io-index" 746 - checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 747 - dependencies = [ 748 - "is-docker", 749 - "once_cell", 750 - ] 751 - 752 - [[package]] 753 - name = "is_terminal_polyfill" 754 - version = "1.70.1" 755 - source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 757 - 758 - [[package]] 759 - name = "itertools" 760 - version = "0.13.0" 761 - source = "registry+https://github.com/rust-lang/crates.io-index" 762 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 763 - dependencies = [ 764 - "either", 765 - ] 766 - 767 - [[package]] 768 - name = "itoa" 769 - version = "1.0.11" 770 - source = "registry+https://github.com/rust-lang/crates.io-index" 771 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 772 - 773 - [[package]] 774 - name = "jod-thread" 775 - version = "0.1.2" 776 - source = "registry+https://github.com/rust-lang/crates.io-index" 777 - checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae" 778 - 779 - [[package]] 780 - name = "js-sys" 781 - version = "0.3.69" 782 - source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 784 - dependencies = [ 785 - "wasm-bindgen", 786 - ] 787 - 788 - [[package]] 789 - name = "kqueue" 790 - version = "1.0.8" 791 - source = "registry+https://github.com/rust-lang/crates.io-index" 792 - checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 793 - dependencies = [ 794 - "kqueue-sys", 795 - "libc", 796 - ] 797 - 798 - [[package]] 799 - name = "kqueue-sys" 800 - version = "1.0.4" 801 - source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 803 - dependencies = [ 804 - "bitflags 1.3.2", 805 - "libc", 806 - ] 807 - 808 - [[package]] 809 - name = "lazy_static" 810 - version = "1.5.0" 811 - source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 813 - 814 - [[package]] 815 - name = "libc" 816 - version = "0.2.155" 817 - source = "registry+https://github.com/rust-lang/crates.io-index" 818 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 819 - 820 - [[package]] 821 - name = "libcst" 822 - version = "1.4.0" 823 - source = "registry+https://github.com/rust-lang/crates.io-index" 824 - checksum = "10293a04a48e8b0cb2cc825a93b83090e527bffd3c897a0255ad7bc96079e920" 825 - dependencies = [ 826 - "chic", 827 - "libcst_derive", 828 - "memchr", 829 - "paste", 830 - "peg", 831 - "regex", 832 - "thiserror", 833 - ] 834 - 835 - [[package]] 836 - name = "libcst_derive" 837 - version = "1.4.0" 838 - source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "a2ae40017ac09cd2c6a53504cb3c871c7f2b41466eac5bc66ba63f39073b467b" 840 - dependencies = [ 841 - "quote", 842 - "syn 2.0.72", 843 - ] 844 - 845 - [[package]] 846 - name = "libmimalloc-sys" 847 - version = "0.1.39" 848 - source = "registry+https://github.com/rust-lang/crates.io-index" 849 - checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44" 850 - dependencies = [ 851 - "cc", 852 - "libc", 853 - ] 854 - 855 - [[package]] 856 - name = "libredox" 857 - version = "0.1.3" 858 - source = "registry+https://github.com/rust-lang/crates.io-index" 859 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 860 - dependencies = [ 861 - "bitflags 2.6.0", 862 - "libc", 863 - ] 864 - 865 - [[package]] 866 - name = "linux-raw-sys" 867 - version = "0.4.14" 868 - source = "registry+https://github.com/rust-lang/crates.io-index" 869 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 870 - 871 - [[package]] 872 - name = "lock_api" 873 - version = "0.4.12" 874 - source = "registry+https://github.com/rust-lang/crates.io-index" 875 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 876 - dependencies = [ 877 - "autocfg", 878 - "scopeguard", 879 - ] 880 - 881 - [[package]] 882 - name = "log" 883 - version = "0.4.22" 884 - source = "registry+https://github.com/rust-lang/crates.io-index" 885 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 886 - 887 - [[package]] 888 - name = "lsp-server" 889 - version = "0.7.6" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "248f65b78f6db5d8e1b1604b4098a28b43d21a8eb1deeca22b1c421b276c7095" 892 - dependencies = [ 893 - "crossbeam-channel", 894 - "log", 895 - "serde", 896 - "serde_json", 897 - ] 898 - 899 - [[package]] 900 - name = "lsp-types" 901 - version = "0.95.1" 902 - source = "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#3512a9f33eadc5402cfab1b8f7340824c8ca1439" 903 - dependencies = [ 904 - "bitflags 1.3.2", 905 - "serde", 906 - "serde_json", 907 - "serde_repr", 908 - "url", 909 - ] 910 - 911 - [[package]] 912 - name = "matchers" 913 - version = "0.1.0" 914 - source = "registry+https://github.com/rust-lang/crates.io-index" 915 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 916 - dependencies = [ 917 - "regex-automata 0.1.10", 918 - ] 919 - 920 - [[package]] 921 - name = "matches" 922 - version = "0.1.10" 923 - source = "registry+https://github.com/rust-lang/crates.io-index" 924 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 925 - 926 - [[package]] 927 - name = "matchit" 928 - version = "0.8.4" 929 - source = "registry+https://github.com/rust-lang/crates.io-index" 930 - checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 931 - 932 - [[package]] 933 - name = "memchr" 934 - version = "2.7.4" 935 - source = "registry+https://github.com/rust-lang/crates.io-index" 936 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 937 - 938 - [[package]] 939 - name = "memoffset" 940 - version = "0.9.1" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 943 - dependencies = [ 944 - "autocfg", 945 - ] 946 - 947 - [[package]] 948 - name = "mimalloc" 949 - version = "0.1.43" 950 - source = "registry+https://github.com/rust-lang/crates.io-index" 951 - checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633" 952 - dependencies = [ 953 - "libmimalloc-sys", 954 - ] 955 - 956 - [[package]] 957 - name = "minimal-lexical" 958 - version = "0.2.1" 959 - source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 961 - 962 - [[package]] 963 - name = "mio" 964 - version = "0.8.11" 965 - source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 967 - dependencies = [ 968 - "libc", 969 - "log", 970 - "wasi", 971 - "windows-sys 0.48.0", 972 - ] 973 - 974 - [[package]] 975 - name = "natord" 976 - version = "1.0.9" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c" 979 - 980 - [[package]] 981 - name = "newtype-uuid" 982 - version = "1.1.0" 983 - source = "registry+https://github.com/rust-lang/crates.io-index" 984 - checksum = "3526cb7c660872e401beaf3297f95f548ce3b4b4bdd8121b7c0713771d7c4a6e" 985 - dependencies = [ 986 - "uuid", 987 - ] 988 - 989 - [[package]] 990 - name = "nix" 991 - version = "0.28.0" 992 - source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 994 - dependencies = [ 995 - "bitflags 2.6.0", 996 - "cfg-if", 997 - "cfg_aliases", 998 - "libc", 999 - ] 1000 - 1001 - [[package]] 1002 - name = "nom" 1003 - version = "7.1.3" 1004 - source = "registry+https://github.com/rust-lang/crates.io-index" 1005 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1006 - dependencies = [ 1007 - "memchr", 1008 - "minimal-lexical", 1009 - ] 1010 - 1011 - [[package]] 1012 - name = "notify" 1013 - version = "6.1.1" 1014 - source = "registry+https://github.com/rust-lang/crates.io-index" 1015 - checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 1016 - dependencies = [ 1017 - "bitflags 2.6.0", 1018 - "crossbeam-channel", 1019 - "filetime", 1020 - "fsevent-sys", 1021 - "inotify", 1022 - "kqueue", 1023 - "libc", 1024 - "log", 1025 - "mio", 1026 - "walkdir", 1027 - "windows-sys 0.48.0", 1028 - ] 1029 - 1030 - [[package]] 1031 - name = "nu-ansi-term" 1032 - version = "0.46.0" 1033 - source = "registry+https://github.com/rust-lang/crates.io-index" 1034 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1035 - dependencies = [ 1036 - "overload", 1037 - "winapi", 1038 - ] 1039 - 1040 - [[package]] 1041 - name = "num-traits" 1042 - version = "0.2.19" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1045 - dependencies = [ 1046 - "autocfg", 1047 - ] 1048 - 1049 - [[package]] 1050 - name = "once_cell" 1051 - version = "1.19.0" 1052 - source = "registry+https://github.com/rust-lang/crates.io-index" 1053 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1054 - 1055 - [[package]] 1056 - name = "option-ext" 1057 - version = "0.2.0" 1058 - source = "registry+https://github.com/rust-lang/crates.io-index" 1059 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1060 - 1061 - [[package]] 1062 - name = "os_str_bytes" 1063 - version = "7.0.0" 1064 - source = "registry+https://github.com/rust-lang/crates.io-index" 1065 - checksum = "7ac44c994af577c799b1b4bd80dc214701e349873ad894d6cdf96f4f7526e0b9" 1066 - dependencies = [ 1067 - "memchr", 1068 - ] 1069 - 1070 - [[package]] 1071 - name = "overload" 1072 - version = "0.1.1" 1073 - source = "registry+https://github.com/rust-lang/crates.io-index" 1074 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1075 - 1076 - [[package]] 1077 - name = "parking_lot" 1078 - version = "0.12.3" 1079 - source = "registry+https://github.com/rust-lang/crates.io-index" 1080 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 1081 - dependencies = [ 1082 - "lock_api", 1083 - "parking_lot_core", 1084 - ] 1085 - 1086 - [[package]] 1087 - name = "parking_lot_core" 1088 - version = "0.9.10" 1089 - source = "registry+https://github.com/rust-lang/crates.io-index" 1090 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1091 - dependencies = [ 1092 - "cfg-if", 1093 - "libc", 1094 - "redox_syscall 0.5.3", 1095 - "smallvec", 1096 - "windows-targets 0.52.6", 1097 - ] 1098 - 1099 - [[package]] 1100 - name = "paste" 1101 - version = "1.0.15" 1102 - source = "registry+https://github.com/rust-lang/crates.io-index" 1103 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 1104 - 1105 - [[package]] 1106 - name = "path-absolutize" 1107 - version = "3.1.1" 1108 - source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" 1110 - dependencies = [ 1111 - "path-dedot", 1112 - ] 1113 - 1114 - [[package]] 1115 - name = "path-dedot" 1116 - version = "3.1.1" 1117 - source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" 1119 - dependencies = [ 1120 - "once_cell", 1121 - ] 1122 - 1123 - [[package]] 1124 - name = "path-slash" 1125 - version = "0.2.1" 1126 - source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42" 1128 - 1129 - [[package]] 1130 - name = "pathdiff" 1131 - version = "0.2.1" 1132 - source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1134 - 1135 - [[package]] 1136 - name = "peg" 1137 - version = "0.8.4" 1138 - source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "295283b02df346d1ef66052a757869b2876ac29a6bb0ac3f5f7cd44aebe40e8f" 1140 - dependencies = [ 1141 - "peg-macros", 1142 - "peg-runtime", 1143 - ] 1144 - 1145 - [[package]] 1146 - name = "peg-macros" 1147 - version = "0.8.4" 1148 - source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "bdad6a1d9cf116a059582ce415d5f5566aabcd4008646779dab7fdc2a9a9d426" 1150 - dependencies = [ 1151 - "peg-runtime", 1152 - "proc-macro2", 1153 - "quote", 1154 - ] 1155 - 1156 - [[package]] 1157 - name = "peg-runtime" 1158 - version = "0.8.3" 1159 - source = "registry+https://github.com/rust-lang/crates.io-index" 1160 - checksum = "e3aeb8f54c078314c2065ee649a7241f46b9d8e418e1a9581ba0546657d7aa3a" 1161 - 1162 - [[package]] 1163 - name = "pep440_rs" 1164 - version = "0.4.0" 1165 - source = "registry+https://github.com/rust-lang/crates.io-index" 1166 - checksum = "e0c29f9c43de378b4e4e0cd7dbcce0e5cfb80443de8c05620368b2948bc936a1" 1167 - dependencies = [ 1168 - "once_cell", 1169 - "regex", 1170 - "serde", 1171 - "unicode-width", 1172 - ] 1173 - 1174 - [[package]] 1175 - name = "pep440_rs" 1176 - version = "0.6.6" 1177 - source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "466eada3179c2e069ca897b99006cbb33f816290eaeec62464eea907e22ae385" 1179 - dependencies = [ 1180 - "once_cell", 1181 - "serde", 1182 - "unicode-width", 1183 - "unscanny", 1184 - ] 1185 - 1186 - [[package]] 1187 - name = "pep508_rs" 1188 - version = "0.3.0" 1189 - source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - checksum = "910c513bea0f4f833122321c0f20e8c704e01de98692f6989c2ec21f43d88b1e" 1191 - dependencies = [ 1192 - "once_cell", 1193 - "pep440_rs 0.4.0", 1194 - "regex", 1195 - "serde", 1196 - "thiserror", 1197 - "tracing", 1198 - "unicode-width", 1199 - "url", 1200 - ] 1201 - 1202 - [[package]] 1203 - name = "percent-encoding" 1204 - version = "2.3.1" 1205 - source = "registry+https://github.com/rust-lang/crates.io-index" 1206 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1207 - 1208 - [[package]] 1209 - name = "phf" 1210 - version = "0.11.2" 1211 - source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 1213 - dependencies = [ 1214 - "phf_shared", 1215 - ] 1216 - 1217 - [[package]] 1218 - name = "phf_codegen" 1219 - version = "0.11.2" 1220 - source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 1222 - dependencies = [ 1223 - "phf_generator", 1224 - "phf_shared", 1225 - ] 1226 - 1227 - [[package]] 1228 - name = "phf_generator" 1229 - version = "0.11.2" 1230 - source = "registry+https://github.com/rust-lang/crates.io-index" 1231 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 1232 - dependencies = [ 1233 - "phf_shared", 1234 - "rand", 1235 - ] 1236 - 1237 - [[package]] 1238 - name = "phf_shared" 1239 - version = "0.11.2" 1240 - source = "registry+https://github.com/rust-lang/crates.io-index" 1241 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 1242 - dependencies = [ 1243 - "siphasher", 1244 - ] 1245 - 1246 - [[package]] 1247 - name = "pin-project-lite" 1248 - version = "0.2.14" 1249 - source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1251 - 1252 - [[package]] 1253 - name = "ppv-lite86" 1254 - version = "0.2.20" 1255 - source = "registry+https://github.com/rust-lang/crates.io-index" 1256 - checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 1257 - dependencies = [ 1258 - "zerocopy", 1259 - ] 1260 - 1261 - [[package]] 1262 - name = "proc-macro2" 1263 - version = "1.0.86" 1264 - source = "registry+https://github.com/rust-lang/crates.io-index" 1265 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 1266 - dependencies = [ 1267 - "unicode-ident", 1268 - ] 1269 - 1270 - [[package]] 1271 - name = "pyo3" 1272 - version = "0.19.2" 1273 - source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38" 1275 - dependencies = [ 1276 - "cfg-if", 1277 - "indoc", 1278 - "libc", 1279 - "memoffset", 1280 - "parking_lot", 1281 - "pyo3-build-config", 1282 - "pyo3-ffi", 1283 - "pyo3-macros", 1284 - "unindent", 1285 - ] 1286 - 1287 - [[package]] 1288 - name = "pyo3-build-config" 1289 - version = "0.19.2" 1290 - source = "registry+https://github.com/rust-lang/crates.io-index" 1291 - checksum = "076c73d0bc438f7a4ef6fdd0c3bb4732149136abd952b110ac93e4edb13a6ba5" 1292 - dependencies = [ 1293 - "once_cell", 1294 - "target-lexicon", 1295 - ] 1296 - 1297 - [[package]] 1298 - name = "pyo3-ffi" 1299 - version = "0.19.2" 1300 - source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9" 1302 - dependencies = [ 1303 - "libc", 1304 - "pyo3-build-config", 1305 - ] 1306 - 1307 - [[package]] 1308 - name = "pyo3-macros" 1309 - version = "0.19.2" 1310 - source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "dfeb4c99597e136528c6dd7d5e3de5434d1ceaf487436a3f03b2d56b6fc9efd1" 1312 - dependencies = [ 1313 - "proc-macro2", 1314 - "pyo3-macros-backend", 1315 - "quote", 1316 - "syn 1.0.109", 1317 - ] 1318 - 1319 - [[package]] 1320 - name = "pyo3-macros-backend" 1321 - version = "0.19.2" 1322 - source = "registry+https://github.com/rust-lang/crates.io-index" 1323 - checksum = "947dc12175c254889edc0c02e399476c2f652b4b9ebd123aa655c224de259536" 1324 - dependencies = [ 1325 - "proc-macro2", 1326 - "quote", 1327 - "syn 1.0.109", 1328 - ] 1329 - 1330 - [[package]] 1331 - name = "pyproject-toml" 1332 - version = "0.9.0" 1333 - source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - checksum = "95c3dd745f99aa3c554b7bb00859f7d18c2f1d6afd749ccc86d60b61e702abd9" 1335 - dependencies = [ 1336 - "indexmap", 1337 - "pep440_rs 0.4.0", 1338 - "pep508_rs", 1339 - "serde", 1340 - "toml", 1341 - ] 1342 - 1343 - [[package]] 1344 - name = "quick-junit" 1345 - version = "0.4.0" 1346 - source = "registry+https://github.com/rust-lang/crates.io-index" 1347 - checksum = "cfc1a6a5406a114913df2df8507998c755311b55b78584bed5f6e88f6417c4d4" 1348 - dependencies = [ 1349 - "chrono", 1350 - "indexmap", 1351 - "newtype-uuid", 1352 - "quick-xml", 1353 - "strip-ansi-escapes", 1354 - "thiserror", 1355 - "uuid", 1356 - ] 1357 - 1358 - [[package]] 1359 - name = "quick-xml" 1360 - version = "0.31.0" 1361 - source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 1363 - dependencies = [ 1364 - "memchr", 1365 - ] 1366 - 1367 - [[package]] 1368 - name = "quote" 1369 - version = "1.0.36" 1370 - source = "registry+https://github.com/rust-lang/crates.io-index" 1371 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1372 - dependencies = [ 1373 - "proc-macro2", 1374 - ] 1375 - 1376 - [[package]] 1377 - name = "rand" 1378 - version = "0.8.5" 1379 - source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1381 - dependencies = [ 1382 - "libc", 1383 - "rand_chacha", 1384 - "rand_core", 1385 - ] 1386 - 1387 - [[package]] 1388 - name = "rand_chacha" 1389 - version = "0.3.1" 1390 - source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1392 - dependencies = [ 1393 - "ppv-lite86", 1394 - "rand_core", 1395 - ] 1396 - 1397 - [[package]] 1398 - name = "rand_core" 1399 - version = "0.6.4" 1400 - source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1402 - dependencies = [ 1403 - "getrandom", 1404 - ] 1405 - 1406 - [[package]] 1407 - name = "rayon" 1408 - version = "1.10.0" 1409 - source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1411 - dependencies = [ 1412 - "either", 1413 - "rayon-core", 1414 - ] 1415 - 1416 - [[package]] 1417 - name = "rayon-core" 1418 - version = "1.12.1" 1419 - source = "registry+https://github.com/rust-lang/crates.io-index" 1420 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1421 - dependencies = [ 1422 - "crossbeam-deque", 1423 - "crossbeam-utils", 1424 - ] 1425 - 1426 - [[package]] 1427 - name = "redox_syscall" 1428 - version = "0.4.1" 1429 - source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 1431 - dependencies = [ 1432 - "bitflags 1.3.2", 1433 - ] 1434 - 1435 - [[package]] 1436 - name = "redox_syscall" 1437 - version = "0.5.3" 1438 - source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" 1440 - dependencies = [ 1441 - "bitflags 2.6.0", 1442 - ] 1443 - 1444 - [[package]] 1445 - name = "redox_users" 1446 - version = "0.4.5" 1447 - source = "registry+https://github.com/rust-lang/crates.io-index" 1448 - checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 1449 - dependencies = [ 1450 - "getrandom", 1451 - "libredox", 1452 - "thiserror", 1453 - ] 1454 - 1455 - [[package]] 1456 - name = "regex" 1457 - version = "1.10.6" 1458 - source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" 1460 - dependencies = [ 1461 - "aho-corasick", 1462 - "memchr", 1463 - "regex-automata 0.4.7", 1464 - "regex-syntax 0.8.4", 1465 - ] 1466 - 1467 - [[package]] 1468 - name = "regex-automata" 1469 - version = "0.1.10" 1470 - source = "registry+https://github.com/rust-lang/crates.io-index" 1471 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1472 - dependencies = [ 1473 - "regex-syntax 0.6.29", 1474 - ] 1475 - 1476 - [[package]] 1477 - name = "regex-automata" 1478 - version = "0.4.7" 1479 - source = "registry+https://github.com/rust-lang/crates.io-index" 1480 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 1481 - dependencies = [ 1482 - "aho-corasick", 1483 - "memchr", 1484 - "regex-syntax 0.8.4", 1485 - ] 1486 - 1487 - [[package]] 1488 - name = "regex-syntax" 1489 - version = "0.6.29" 1490 - source = "registry+https://github.com/rust-lang/crates.io-index" 1491 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1492 - 1493 - [[package]] 1494 - name = "regex-syntax" 1495 - version = "0.8.4" 1496 - source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 1498 - 1499 - [[package]] 1500 - name = "ruff" 1501 - version = "0.4.10" 1502 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1503 - dependencies = [ 1504 - "anyhow", 1505 - "argfile", 1506 - "bincode", 1507 - "bitflags 2.6.0", 1508 - "cachedir", 1509 - "chrono", 1510 - "clap", 1511 - "clap_complete_command", 1512 - "clearscreen", 1513 - "colored", 1514 - "filetime", 1515 - "ignore", 1516 - "is-macro", 1517 - "itertools", 1518 - "log", 1519 - "mimalloc", 1520 - "notify", 1521 - "path-absolutize", 1522 - "rayon", 1523 - "regex", 1524 - "ruff_cache", 1525 - "ruff_diagnostics", 1526 - "ruff_linter", 1527 - "ruff_macros", 1528 - "ruff_notebook", 1529 - "ruff_python_ast", 1530 - "ruff_python_formatter", 1531 - "ruff_server", 1532 - "ruff_source_file", 1533 - "ruff_text_size", 1534 - "ruff_workspace", 1535 - "rustc-hash", 1536 - "serde", 1537 - "serde_json", 1538 - "shellexpand", 1539 - "strum", 1540 - "tempfile", 1541 - "thiserror", 1542 - "tikv-jemallocator", 1543 - "toml", 1544 - "tracing", 1545 - "walkdir", 1546 - "wild", 1547 - ] 1548 - 1549 - [[package]] 1550 - name = "ruff-api" 1551 - version = "0.1.0" 1552 - dependencies = [ 1553 - "glob", 1554 - "pyo3", 1555 - "ruff", 1556 - "ruff_formatter", 1557 - "ruff_linter", 1558 - "ruff_python_ast", 1559 - "ruff_python_formatter", 1560 - "ruff_workspace", 1561 - "rustc-hash", 1562 - ] 1563 - 1564 - [[package]] 1565 - name = "ruff_cache" 1566 - version = "0.0.0" 1567 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1568 - dependencies = [ 1569 - "filetime", 1570 - "glob", 1571 - "globset", 1572 - "itertools", 1573 - "regex", 1574 - "seahash", 1575 - ] 1576 - 1577 - [[package]] 1578 - name = "ruff_diagnostics" 1579 - version = "0.0.0" 1580 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1581 - dependencies = [ 1582 - "anyhow", 1583 - "is-macro", 1584 - "log", 1585 - "ruff_text_size", 1586 - "serde", 1587 - ] 1588 - 1589 - [[package]] 1590 - name = "ruff_formatter" 1591 - version = "0.0.0" 1592 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1593 - dependencies = [ 1594 - "drop_bomb", 1595 - "ruff_cache", 1596 - "ruff_macros", 1597 - "ruff_text_size", 1598 - "rustc-hash", 1599 - "serde", 1600 - "static_assertions", 1601 - "tracing", 1602 - "unicode-width", 1603 - ] 1604 - 1605 - [[package]] 1606 - name = "ruff_index" 1607 - version = "0.0.0" 1608 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1609 - dependencies = [ 1610 - "ruff_macros", 1611 - ] 1612 - 1613 - [[package]] 1614 - name = "ruff_linter" 1615 - version = "0.4.10" 1616 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1617 - dependencies = [ 1618 - "aho-corasick", 1619 - "annotate-snippets 0.9.2", 1620 - "anyhow", 1621 - "bitflags 2.6.0", 1622 - "chrono", 1623 - "clap", 1624 - "colored", 1625 - "fern", 1626 - "glob", 1627 - "globset", 1628 - "imperative", 1629 - "is-macro", 1630 - "is-wsl", 1631 - "itertools", 1632 - "libcst", 1633 - "log", 1634 - "memchr", 1635 - "natord", 1636 - "once_cell", 1637 - "path-absolutize", 1638 - "pathdiff", 1639 - "pep440_rs 0.6.6", 1640 - "pyproject-toml", 1641 - "quick-junit", 1642 - "regex", 1643 - "ruff_cache", 1644 - "ruff_diagnostics", 1645 - "ruff_macros", 1646 - "ruff_notebook", 1647 - "ruff_python_ast", 1648 - "ruff_python_codegen", 1649 - "ruff_python_index", 1650 - "ruff_python_literal", 1651 - "ruff_python_parser", 1652 - "ruff_python_semantic", 1653 - "ruff_python_stdlib", 1654 - "ruff_python_trivia", 1655 - "ruff_source_file", 1656 - "ruff_text_size", 1657 - "rustc-hash", 1658 - "serde", 1659 - "serde_json", 1660 - "similar", 1661 - "smallvec", 1662 - "strum", 1663 - "strum_macros", 1664 - "thiserror", 1665 - "toml", 1666 - "typed-arena", 1667 - "unicode-width", 1668 - "unicode_names2", 1669 - "url", 1670 - ] 1671 - 1672 - [[package]] 1673 - name = "ruff_macros" 1674 - version = "0.0.0" 1675 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1676 - dependencies = [ 1677 - "itertools", 1678 - "proc-macro2", 1679 - "quote", 1680 - "ruff_python_trivia", 1681 - "syn 2.0.72", 1682 - ] 1683 - 1684 - [[package]] 1685 - name = "ruff_notebook" 1686 - version = "0.0.0" 1687 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1688 - dependencies = [ 1689 - "anyhow", 1690 - "itertools", 1691 - "once_cell", 1692 - "rand", 1693 - "ruff_diagnostics", 1694 - "ruff_source_file", 1695 - "ruff_text_size", 1696 - "serde", 1697 - "serde_json", 1698 - "serde_with", 1699 - "thiserror", 1700 - "uuid", 1701 - ] 1702 - 1703 - [[package]] 1704 - name = "ruff_python_ast" 1705 - version = "0.0.0" 1706 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1707 - dependencies = [ 1708 - "aho-corasick", 1709 - "bitflags 2.6.0", 1710 - "is-macro", 1711 - "itertools", 1712 - "once_cell", 1713 - "ruff_python_trivia", 1714 - "ruff_source_file", 1715 - "ruff_text_size", 1716 - "rustc-hash", 1717 - "serde", 1718 - ] 1719 - 1720 - [[package]] 1721 - name = "ruff_python_codegen" 1722 - version = "0.0.0" 1723 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1724 - dependencies = [ 1725 - "once_cell", 1726 - "ruff_python_ast", 1727 - "ruff_python_literal", 1728 - "ruff_python_parser", 1729 - "ruff_source_file", 1730 - "ruff_text_size", 1731 - ] 1732 - 1733 - [[package]] 1734 - name = "ruff_python_formatter" 1735 - version = "0.0.0" 1736 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1737 - dependencies = [ 1738 - "anyhow", 1739 - "clap", 1740 - "countme", 1741 - "itertools", 1742 - "memchr", 1743 - "once_cell", 1744 - "regex", 1745 - "ruff_cache", 1746 - "ruff_formatter", 1747 - "ruff_macros", 1748 - "ruff_python_ast", 1749 - "ruff_python_parser", 1750 - "ruff_python_trivia", 1751 - "ruff_source_file", 1752 - "ruff_text_size", 1753 - "rustc-hash", 1754 - "serde", 1755 - "smallvec", 1756 - "static_assertions", 1757 - "thiserror", 1758 - "tracing", 1759 - ] 1760 - 1761 - [[package]] 1762 - name = "ruff_python_index" 1763 - version = "0.0.0" 1764 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1765 - dependencies = [ 1766 - "ruff_python_ast", 1767 - "ruff_python_parser", 1768 - "ruff_python_trivia", 1769 - "ruff_source_file", 1770 - "ruff_text_size", 1771 - ] 1772 - 1773 - [[package]] 1774 - name = "ruff_python_literal" 1775 - version = "0.0.0" 1776 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1777 - dependencies = [ 1778 - "bitflags 2.6.0", 1779 - "itertools", 1780 - "ruff_python_ast", 1781 - "unic-ucd-category", 1782 - ] 1783 - 1784 - [[package]] 1785 - name = "ruff_python_parser" 1786 - version = "0.0.0" 1787 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1788 - dependencies = [ 1789 - "bitflags 2.6.0", 1790 - "bstr", 1791 - "memchr", 1792 - "ruff_python_ast", 1793 - "ruff_python_trivia", 1794 - "ruff_text_size", 1795 - "rustc-hash", 1796 - "static_assertions", 1797 - "unicode-ident", 1798 - "unicode-normalization", 1799 - "unicode_names2", 1800 - ] 1801 - 1802 - [[package]] 1803 - name = "ruff_python_semantic" 1804 - version = "0.0.0" 1805 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1806 - dependencies = [ 1807 - "bitflags 2.6.0", 1808 - "is-macro", 1809 - "ruff_index", 1810 - "ruff_python_ast", 1811 - "ruff_python_stdlib", 1812 - "ruff_source_file", 1813 - "ruff_text_size", 1814 - "rustc-hash", 1815 - ] 1816 - 1817 - [[package]] 1818 - name = "ruff_python_stdlib" 1819 - version = "0.0.0" 1820 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1821 - dependencies = [ 1822 - "unicode-ident", 1823 - ] 1824 - 1825 - [[package]] 1826 - name = "ruff_python_trivia" 1827 - version = "0.0.0" 1828 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1829 - dependencies = [ 1830 - "itertools", 1831 - "ruff_source_file", 1832 - "ruff_text_size", 1833 - "unicode-ident", 1834 - ] 1835 - 1836 - [[package]] 1837 - name = "ruff_server" 1838 - version = "0.2.2" 1839 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1840 - dependencies = [ 1841 - "anyhow", 1842 - "crossbeam", 1843 - "globset", 1844 - "jod-thread", 1845 - "libc", 1846 - "lsp-server", 1847 - "lsp-types", 1848 - "regex", 1849 - "ruff_diagnostics", 1850 - "ruff_formatter", 1851 - "ruff_linter", 1852 - "ruff_notebook", 1853 - "ruff_python_ast", 1854 - "ruff_python_codegen", 1855 - "ruff_python_formatter", 1856 - "ruff_python_index", 1857 - "ruff_python_parser", 1858 - "ruff_source_file", 1859 - "ruff_text_size", 1860 - "ruff_workspace", 1861 - "rustc-hash", 1862 - "serde", 1863 - "serde_json", 1864 - "shellexpand", 1865 - "tracing", 1866 - "tracing-subscriber", 1867 - "walkdir", 1868 - ] 1869 - 1870 - [[package]] 1871 - name = "ruff_source_file" 1872 - version = "0.0.0" 1873 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1874 - dependencies = [ 1875 - "memchr", 1876 - "once_cell", 1877 - "ruff_text_size", 1878 - "serde", 1879 - ] 1880 - 1881 - [[package]] 1882 - name = "ruff_text_size" 1883 - version = "0.0.0" 1884 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1885 - dependencies = [ 1886 - "serde", 1887 - ] 1888 - 1889 - [[package]] 1890 - name = "ruff_workspace" 1891 - version = "0.0.0" 1892 - source = "git+https://github.com/astral-sh/ruff.git?tag=v0.4.10#b54922fd7394c36cdc390fd21aaee99206ebc361" 1893 - dependencies = [ 1894 - "anyhow", 1895 - "colored", 1896 - "dirs 5.0.1", 1897 - "glob", 1898 - "globset", 1899 - "ignore", 1900 - "is-macro", 1901 - "itertools", 1902 - "log", 1903 - "matchit", 1904 - "path-absolutize", 1905 - "path-slash", 1906 - "pep440_rs 0.6.6", 1907 - "regex", 1908 - "ruff_cache", 1909 - "ruff_formatter", 1910 - "ruff_linter", 1911 - "ruff_macros", 1912 - "ruff_python_ast", 1913 - "ruff_python_formatter", 1914 - "ruff_source_file", 1915 - "rustc-hash", 1916 - "serde", 1917 - "shellexpand", 1918 - "strum", 1919 - "toml", 1920 - ] 1921 - 1922 - [[package]] 1923 - name = "rust-stemmers" 1924 - version = "1.2.0" 1925 - source = "registry+https://github.com/rust-lang/crates.io-index" 1926 - checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" 1927 - dependencies = [ 1928 - "serde", 1929 - "serde_derive", 1930 - ] 1931 - 1932 - [[package]] 1933 - name = "rustc-hash" 1934 - version = "1.1.0" 1935 - source = "registry+https://github.com/rust-lang/crates.io-index" 1936 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1937 - 1938 - [[package]] 1939 - name = "rustix" 1940 - version = "0.38.34" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1943 - dependencies = [ 1944 - "bitflags 2.6.0", 1945 - "errno", 1946 - "libc", 1947 - "linux-raw-sys", 1948 - "windows-sys 0.52.0", 1949 - ] 1950 - 1951 - [[package]] 1952 - name = "rustversion" 1953 - version = "1.0.17" 1954 - source = "registry+https://github.com/rust-lang/crates.io-index" 1955 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1956 - 1957 - [[package]] 1958 - name = "ryu" 1959 - version = "1.0.18" 1960 - source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1962 - 1963 - [[package]] 1964 - name = "same-file" 1965 - version = "1.0.6" 1966 - source = "registry+https://github.com/rust-lang/crates.io-index" 1967 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1968 - dependencies = [ 1969 - "winapi-util", 1970 - ] 1971 - 1972 - [[package]] 1973 - name = "scopeguard" 1974 - version = "1.2.0" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1977 - 1978 - [[package]] 1979 - name = "seahash" 1980 - version = "4.1.0" 1981 - source = "registry+https://github.com/rust-lang/crates.io-index" 1982 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 1983 - 1984 - [[package]] 1985 - name = "serde" 1986 - version = "1.0.204" 1987 - source = "registry+https://github.com/rust-lang/crates.io-index" 1988 - checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" 1989 - dependencies = [ 1990 - "serde_derive", 1991 - ] 1992 - 1993 - [[package]] 1994 - name = "serde_derive" 1995 - version = "1.0.204" 1996 - source = "registry+https://github.com/rust-lang/crates.io-index" 1997 - checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" 1998 - dependencies = [ 1999 - "proc-macro2", 2000 - "quote", 2001 - "syn 2.0.72", 2002 - ] 2003 - 2004 - [[package]] 2005 - name = "serde_json" 2006 - version = "1.0.122" 2007 - source = "registry+https://github.com/rust-lang/crates.io-index" 2008 - checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" 2009 - dependencies = [ 2010 - "itoa", 2011 - "memchr", 2012 - "ryu", 2013 - "serde", 2014 - ] 2015 - 2016 - [[package]] 2017 - name = "serde_repr" 2018 - version = "0.1.19" 2019 - source = "registry+https://github.com/rust-lang/crates.io-index" 2020 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 2021 - dependencies = [ 2022 - "proc-macro2", 2023 - "quote", 2024 - "syn 2.0.72", 2025 - ] 2026 - 2027 - [[package]] 2028 - name = "serde_spanned" 2029 - version = "0.6.7" 2030 - source = "registry+https://github.com/rust-lang/crates.io-index" 2031 - checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d" 2032 - dependencies = [ 2033 - "serde", 2034 - ] 2035 - 2036 - [[package]] 2037 - name = "serde_with" 2038 - version = "3.9.0" 2039 - source = "registry+https://github.com/rust-lang/crates.io-index" 2040 - checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" 2041 - dependencies = [ 2042 - "serde", 2043 - "serde_derive", 2044 - "serde_with_macros", 2045 - ] 2046 - 2047 - [[package]] 2048 - name = "serde_with_macros" 2049 - version = "3.9.0" 2050 - source = "registry+https://github.com/rust-lang/crates.io-index" 2051 - checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350" 2052 - dependencies = [ 2053 - "darling", 2054 - "proc-macro2", 2055 - "quote", 2056 - "syn 2.0.72", 2057 - ] 2058 - 2059 - [[package]] 2060 - name = "sharded-slab" 2061 - version = "0.1.7" 2062 - source = "registry+https://github.com/rust-lang/crates.io-index" 2063 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2064 - dependencies = [ 2065 - "lazy_static", 2066 - ] 2067 - 2068 - [[package]] 2069 - name = "shellexpand" 2070 - version = "3.1.0" 2071 - source = "registry+https://github.com/rust-lang/crates.io-index" 2072 - checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b" 2073 - dependencies = [ 2074 - "dirs 5.0.1", 2075 - ] 2076 - 2077 - [[package]] 2078 - name = "similar" 2079 - version = "2.6.0" 2080 - source = "registry+https://github.com/rust-lang/crates.io-index" 2081 - checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" 2082 - 2083 - [[package]] 2084 - name = "siphasher" 2085 - version = "0.3.11" 2086 - source = "registry+https://github.com/rust-lang/crates.io-index" 2087 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 2088 - 2089 - [[package]] 2090 - name = "smallvec" 2091 - version = "1.13.2" 2092 - source = "registry+https://github.com/rust-lang/crates.io-index" 2093 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2094 - 2095 - [[package]] 2096 - name = "static_assertions" 2097 - version = "1.1.0" 2098 - source = "registry+https://github.com/rust-lang/crates.io-index" 2099 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2100 - 2101 - [[package]] 2102 - name = "strip-ansi-escapes" 2103 - version = "0.2.0" 2104 - source = "registry+https://github.com/rust-lang/crates.io-index" 2105 - checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa" 2106 - dependencies = [ 2107 - "vte", 2108 - ] 2109 - 2110 - [[package]] 2111 - name = "strsim" 2112 - version = "0.11.1" 2113 - source = "registry+https://github.com/rust-lang/crates.io-index" 2114 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2115 - 2116 - [[package]] 2117 - name = "strum" 2118 - version = "0.26.3" 2119 - source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 2121 - dependencies = [ 2122 - "strum_macros", 2123 - ] 2124 - 2125 - [[package]] 2126 - name = "strum_macros" 2127 - version = "0.26.4" 2128 - source = "registry+https://github.com/rust-lang/crates.io-index" 2129 - checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 2130 - dependencies = [ 2131 - "heck", 2132 - "proc-macro2", 2133 - "quote", 2134 - "rustversion", 2135 - "syn 2.0.72", 2136 - ] 2137 - 2138 - [[package]] 2139 - name = "syn" 2140 - version = "1.0.109" 2141 - source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2143 - dependencies = [ 2144 - "proc-macro2", 2145 - "quote", 2146 - "unicode-ident", 2147 - ] 2148 - 2149 - [[package]] 2150 - name = "syn" 2151 - version = "2.0.72" 2152 - source = "registry+https://github.com/rust-lang/crates.io-index" 2153 - checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" 2154 - dependencies = [ 2155 - "proc-macro2", 2156 - "quote", 2157 - "unicode-ident", 2158 - ] 2159 - 2160 - [[package]] 2161 - name = "target-lexicon" 2162 - version = "0.12.16" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 2165 - 2166 - [[package]] 2167 - name = "tempfile" 2168 - version = "3.11.0" 2169 - source = "registry+https://github.com/rust-lang/crates.io-index" 2170 - checksum = "b8fcd239983515c23a32fb82099f97d0b11b8c72f654ed659363a95c3dad7a53" 2171 - dependencies = [ 2172 - "cfg-if", 2173 - "fastrand", 2174 - "once_cell", 2175 - "rustix", 2176 - "windows-sys 0.52.0", 2177 - ] 2178 - 2179 - [[package]] 2180 - name = "terminal_size" 2181 - version = "0.3.0" 2182 - source = "registry+https://github.com/rust-lang/crates.io-index" 2183 - checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 2184 - dependencies = [ 2185 - "rustix", 2186 - "windows-sys 0.48.0", 2187 - ] 2188 - 2189 - [[package]] 2190 - name = "terminfo" 2191 - version = "0.8.0" 2192 - source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - checksum = "666cd3a6681775d22b200409aad3b089c5b99fb11ecdd8a204d9d62f8148498f" 2194 - dependencies = [ 2195 - "dirs 4.0.0", 2196 - "fnv", 2197 - "nom", 2198 - "phf", 2199 - "phf_codegen", 2200 - ] 2201 - 2202 - [[package]] 2203 - name = "thiserror" 2204 - version = "1.0.63" 2205 - source = "registry+https://github.com/rust-lang/crates.io-index" 2206 - checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 2207 - dependencies = [ 2208 - "thiserror-impl", 2209 - ] 2210 - 2211 - [[package]] 2212 - name = "thiserror-impl" 2213 - version = "1.0.63" 2214 - source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 2216 - dependencies = [ 2217 - "proc-macro2", 2218 - "quote", 2219 - "syn 2.0.72", 2220 - ] 2221 - 2222 - [[package]] 2223 - name = "thread_local" 2224 - version = "1.1.8" 2225 - source = "registry+https://github.com/rust-lang/crates.io-index" 2226 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2227 - dependencies = [ 2228 - "cfg-if", 2229 - "once_cell", 2230 - ] 2231 - 2232 - [[package]] 2233 - name = "tikv-jemalloc-sys" 2234 - version = "0.5.4+5.3.0-patched" 2235 - source = "registry+https://github.com/rust-lang/crates.io-index" 2236 - checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" 2237 - dependencies = [ 2238 - "cc", 2239 - "libc", 2240 - ] 2241 - 2242 - [[package]] 2243 - name = "tikv-jemallocator" 2244 - version = "0.5.4" 2245 - source = "registry+https://github.com/rust-lang/crates.io-index" 2246 - checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca" 2247 - dependencies = [ 2248 - "libc", 2249 - "tikv-jemalloc-sys", 2250 - ] 2251 - 2252 - [[package]] 2253 - name = "tinyvec" 2254 - version = "1.8.0" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 2257 - dependencies = [ 2258 - "tinyvec_macros", 2259 - ] 2260 - 2261 - [[package]] 2262 - name = "tinyvec_macros" 2263 - version = "0.1.1" 2264 - source = "registry+https://github.com/rust-lang/crates.io-index" 2265 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2266 - 2267 - [[package]] 2268 - name = "toml" 2269 - version = "0.8.19" 2270 - source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 2272 - dependencies = [ 2273 - "serde", 2274 - "serde_spanned", 2275 - "toml_datetime", 2276 - "toml_edit", 2277 - ] 2278 - 2279 - [[package]] 2280 - name = "toml_datetime" 2281 - version = "0.6.8" 2282 - source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 2284 - dependencies = [ 2285 - "serde", 2286 - ] 2287 - 2288 - [[package]] 2289 - name = "toml_edit" 2290 - version = "0.22.20" 2291 - source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" 2293 - dependencies = [ 2294 - "indexmap", 2295 - "serde", 2296 - "serde_spanned", 2297 - "toml_datetime", 2298 - "winnow", 2299 - ] 2300 - 2301 - [[package]] 2302 - name = "tracing" 2303 - version = "0.1.40" 2304 - source = "registry+https://github.com/rust-lang/crates.io-index" 2305 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2306 - dependencies = [ 2307 - "log", 2308 - "pin-project-lite", 2309 - "tracing-attributes", 2310 - "tracing-core", 2311 - ] 2312 - 2313 - [[package]] 2314 - name = "tracing-attributes" 2315 - version = "0.1.27" 2316 - source = "registry+https://github.com/rust-lang/crates.io-index" 2317 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2318 - dependencies = [ 2319 - "proc-macro2", 2320 - "quote", 2321 - "syn 2.0.72", 2322 - ] 2323 - 2324 - [[package]] 2325 - name = "tracing-core" 2326 - version = "0.1.32" 2327 - source = "registry+https://github.com/rust-lang/crates.io-index" 2328 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2329 - dependencies = [ 2330 - "once_cell", 2331 - "valuable", 2332 - ] 2333 - 2334 - [[package]] 2335 - name = "tracing-log" 2336 - version = "0.2.0" 2337 - source = "registry+https://github.com/rust-lang/crates.io-index" 2338 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2339 - dependencies = [ 2340 - "log", 2341 - "once_cell", 2342 - "tracing-core", 2343 - ] 2344 - 2345 - [[package]] 2346 - name = "tracing-subscriber" 2347 - version = "0.3.18" 2348 - source = "registry+https://github.com/rust-lang/crates.io-index" 2349 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 2350 - dependencies = [ 2351 - "matchers", 2352 - "nu-ansi-term", 2353 - "once_cell", 2354 - "regex", 2355 - "sharded-slab", 2356 - "smallvec", 2357 - "thread_local", 2358 - "tracing", 2359 - "tracing-core", 2360 - "tracing-log", 2361 - ] 2362 - 2363 - [[package]] 2364 - name = "typed-arena" 2365 - version = "2.0.2" 2366 - source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 2368 - 2369 - [[package]] 2370 - name = "unic-char-property" 2371 - version = "0.9.0" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 2374 - dependencies = [ 2375 - "unic-char-range", 2376 - ] 2377 - 2378 - [[package]] 2379 - name = "unic-char-range" 2380 - version = "0.9.0" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 2383 - 2384 - [[package]] 2385 - name = "unic-common" 2386 - version = "0.9.0" 2387 - source = "registry+https://github.com/rust-lang/crates.io-index" 2388 - checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 2389 - 2390 - [[package]] 2391 - name = "unic-ucd-category" 2392 - version = "0.9.0" 2393 - source = "registry+https://github.com/rust-lang/crates.io-index" 2394 - checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0" 2395 - dependencies = [ 2396 - "matches", 2397 - "unic-char-property", 2398 - "unic-char-range", 2399 - "unic-ucd-version", 2400 - ] 2401 - 2402 - [[package]] 2403 - name = "unic-ucd-version" 2404 - version = "0.9.0" 2405 - source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 2407 - dependencies = [ 2408 - "unic-common", 2409 - ] 2410 - 2411 - [[package]] 2412 - name = "unicode-bidi" 2413 - version = "0.3.15" 2414 - source = "registry+https://github.com/rust-lang/crates.io-index" 2415 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2416 - 2417 - [[package]] 2418 - name = "unicode-ident" 2419 - version = "1.0.12" 2420 - source = "registry+https://github.com/rust-lang/crates.io-index" 2421 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2422 - 2423 - [[package]] 2424 - name = "unicode-normalization" 2425 - version = "0.1.23" 2426 - source = "registry+https://github.com/rust-lang/crates.io-index" 2427 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 2428 - dependencies = [ 2429 - "tinyvec", 2430 - ] 2431 - 2432 - [[package]] 2433 - name = "unicode-width" 2434 - version = "0.1.13" 2435 - source = "registry+https://github.com/rust-lang/crates.io-index" 2436 - checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 2437 - 2438 - [[package]] 2439 - name = "unicode_names2" 2440 - version = "1.2.2" 2441 - source = "registry+https://github.com/rust-lang/crates.io-index" 2442 - checksum = "addeebf294df7922a1164f729fb27ebbbcea99cc32b3bf08afab62757f707677" 2443 - dependencies = [ 2444 - "phf", 2445 - "unicode_names2_generator", 2446 - ] 2447 - 2448 - [[package]] 2449 - name = "unicode_names2_generator" 2450 - version = "1.2.2" 2451 - source = "registry+https://github.com/rust-lang/crates.io-index" 2452 - checksum = "f444b8bba042fe3c1251ffaca35c603f2dc2ccc08d595c65a8c4f76f3e8426c0" 2453 - dependencies = [ 2454 - "getopts", 2455 - "log", 2456 - "phf_codegen", 2457 - "rand", 2458 - ] 2459 - 2460 - [[package]] 2461 - name = "unindent" 2462 - version = "0.1.11" 2463 - source = "registry+https://github.com/rust-lang/crates.io-index" 2464 - checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 2465 - 2466 - [[package]] 2467 - name = "unscanny" 2468 - version = "0.1.0" 2469 - source = "registry+https://github.com/rust-lang/crates.io-index" 2470 - checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47" 2471 - 2472 - [[package]] 2473 - name = "url" 2474 - version = "2.5.2" 2475 - source = "registry+https://github.com/rust-lang/crates.io-index" 2476 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 2477 - dependencies = [ 2478 - "form_urlencoded", 2479 - "idna", 2480 - "percent-encoding", 2481 - "serde", 2482 - ] 2483 - 2484 - [[package]] 2485 - name = "utf8parse" 2486 - version = "0.2.2" 2487 - source = "registry+https://github.com/rust-lang/crates.io-index" 2488 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2489 - 2490 - [[package]] 2491 - name = "uuid" 2492 - version = "1.10.0" 2493 - source = "registry+https://github.com/rust-lang/crates.io-index" 2494 - checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" 2495 - dependencies = [ 2496 - "getrandom", 2497 - "rand", 2498 - "uuid-macro-internal", 2499 - "wasm-bindgen", 2500 - ] 2501 - 2502 - [[package]] 2503 - name = "uuid-macro-internal" 2504 - version = "1.10.0" 2505 - source = "registry+https://github.com/rust-lang/crates.io-index" 2506 - checksum = "ee1cd046f83ea2c4e920d6ee9f7c3537ef928d75dce5d84a87c2c5d6b3999a3a" 2507 - dependencies = [ 2508 - "proc-macro2", 2509 - "quote", 2510 - "syn 2.0.72", 2511 - ] 2512 - 2513 - [[package]] 2514 - name = "valuable" 2515 - version = "0.1.0" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2518 - 2519 - [[package]] 2520 - name = "vte" 2521 - version = "0.11.1" 2522 - source = "registry+https://github.com/rust-lang/crates.io-index" 2523 - checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 2524 - dependencies = [ 2525 - "utf8parse", 2526 - "vte_generate_state_changes", 2527 - ] 2528 - 2529 - [[package]] 2530 - name = "vte_generate_state_changes" 2531 - version = "0.1.2" 2532 - source = "registry+https://github.com/rust-lang/crates.io-index" 2533 - checksum = "2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e" 2534 - dependencies = [ 2535 - "proc-macro2", 2536 - "quote", 2537 - ] 2538 - 2539 - [[package]] 2540 - name = "walkdir" 2541 - version = "2.5.0" 2542 - source = "registry+https://github.com/rust-lang/crates.io-index" 2543 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 2544 - dependencies = [ 2545 - "same-file", 2546 - "winapi-util", 2547 - ] 2548 - 2549 - [[package]] 2550 - name = "wasi" 2551 - version = "0.11.0+wasi-snapshot-preview1" 2552 - source = "registry+https://github.com/rust-lang/crates.io-index" 2553 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2554 - 2555 - [[package]] 2556 - name = "wasm-bindgen" 2557 - version = "0.2.92" 2558 - source = "registry+https://github.com/rust-lang/crates.io-index" 2559 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 2560 - dependencies = [ 2561 - "cfg-if", 2562 - "wasm-bindgen-macro", 2563 - ] 2564 - 2565 - [[package]] 2566 - name = "wasm-bindgen-backend" 2567 - version = "0.2.92" 2568 - source = "registry+https://github.com/rust-lang/crates.io-index" 2569 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 2570 - dependencies = [ 2571 - "bumpalo", 2572 - "log", 2573 - "once_cell", 2574 - "proc-macro2", 2575 - "quote", 2576 - "syn 2.0.72", 2577 - "wasm-bindgen-shared", 2578 - ] 2579 - 2580 - [[package]] 2581 - name = "wasm-bindgen-macro" 2582 - version = "0.2.92" 2583 - source = "registry+https://github.com/rust-lang/crates.io-index" 2584 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 2585 - dependencies = [ 2586 - "quote", 2587 - "wasm-bindgen-macro-support", 2588 - ] 2589 - 2590 - [[package]] 2591 - name = "wasm-bindgen-macro-support" 2592 - version = "0.2.92" 2593 - source = "registry+https://github.com/rust-lang/crates.io-index" 2594 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 2595 - dependencies = [ 2596 - "proc-macro2", 2597 - "quote", 2598 - "syn 2.0.72", 2599 - "wasm-bindgen-backend", 2600 - "wasm-bindgen-shared", 2601 - ] 2602 - 2603 - [[package]] 2604 - name = "wasm-bindgen-shared" 2605 - version = "0.2.92" 2606 - source = "registry+https://github.com/rust-lang/crates.io-index" 2607 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 2608 - 2609 - [[package]] 2610 - name = "which" 2611 - version = "6.0.2" 2612 - source = "registry+https://github.com/rust-lang/crates.io-index" 2613 - checksum = "3d9c5ed668ee1f17edb3b627225343d210006a90bb1e3745ce1f30b1fb115075" 2614 - dependencies = [ 2615 - "either", 2616 - "home", 2617 - "rustix", 2618 - "winsafe", 2619 - ] 2620 - 2621 - [[package]] 2622 - name = "wild" 2623 - version = "2.2.1" 2624 - source = "registry+https://github.com/rust-lang/crates.io-index" 2625 - checksum = "a3131afc8c575281e1e80f36ed6a092aa502c08b18ed7524e86fbbb12bb410e1" 2626 - dependencies = [ 2627 - "glob", 2628 - ] 2629 - 2630 - [[package]] 2631 - name = "winapi" 2632 - version = "0.3.9" 2633 - source = "registry+https://github.com/rust-lang/crates.io-index" 2634 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2635 - dependencies = [ 2636 - "winapi-i686-pc-windows-gnu", 2637 - "winapi-x86_64-pc-windows-gnu", 2638 - ] 2639 - 2640 - [[package]] 2641 - name = "winapi-i686-pc-windows-gnu" 2642 - version = "0.4.0" 2643 - source = "registry+https://github.com/rust-lang/crates.io-index" 2644 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2645 - 2646 - [[package]] 2647 - name = "winapi-util" 2648 - version = "0.1.9" 2649 - source = "registry+https://github.com/rust-lang/crates.io-index" 2650 - checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 2651 - dependencies = [ 2652 - "windows-sys 0.59.0", 2653 - ] 2654 - 2655 - [[package]] 2656 - name = "winapi-x86_64-pc-windows-gnu" 2657 - version = "0.4.0" 2658 - source = "registry+https://github.com/rust-lang/crates.io-index" 2659 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2660 - 2661 - [[package]] 2662 - name = "windows-core" 2663 - version = "0.52.0" 2664 - source = "registry+https://github.com/rust-lang/crates.io-index" 2665 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2666 - dependencies = [ 2667 - "windows-targets 0.52.6", 2668 - ] 2669 - 2670 - [[package]] 2671 - name = "windows-sys" 2672 - version = "0.48.0" 2673 - source = "registry+https://github.com/rust-lang/crates.io-index" 2674 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2675 - dependencies = [ 2676 - "windows-targets 0.48.5", 2677 - ] 2678 - 2679 - [[package]] 2680 - name = "windows-sys" 2681 - version = "0.52.0" 2682 - source = "registry+https://github.com/rust-lang/crates.io-index" 2683 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2684 - dependencies = [ 2685 - "windows-targets 0.52.6", 2686 - ] 2687 - 2688 - [[package]] 2689 - name = "windows-sys" 2690 - version = "0.59.0" 2691 - source = "registry+https://github.com/rust-lang/crates.io-index" 2692 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 2693 - dependencies = [ 2694 - "windows-targets 0.52.6", 2695 - ] 2696 - 2697 - [[package]] 2698 - name = "windows-targets" 2699 - version = "0.48.5" 2700 - source = "registry+https://github.com/rust-lang/crates.io-index" 2701 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2702 - dependencies = [ 2703 - "windows_aarch64_gnullvm 0.48.5", 2704 - "windows_aarch64_msvc 0.48.5", 2705 - "windows_i686_gnu 0.48.5", 2706 - "windows_i686_msvc 0.48.5", 2707 - "windows_x86_64_gnu 0.48.5", 2708 - "windows_x86_64_gnullvm 0.48.5", 2709 - "windows_x86_64_msvc 0.48.5", 2710 - ] 2711 - 2712 - [[package]] 2713 - name = "windows-targets" 2714 - version = "0.52.6" 2715 - source = "registry+https://github.com/rust-lang/crates.io-index" 2716 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2717 - dependencies = [ 2718 - "windows_aarch64_gnullvm 0.52.6", 2719 - "windows_aarch64_msvc 0.52.6", 2720 - "windows_i686_gnu 0.52.6", 2721 - "windows_i686_gnullvm", 2722 - "windows_i686_msvc 0.52.6", 2723 - "windows_x86_64_gnu 0.52.6", 2724 - "windows_x86_64_gnullvm 0.52.6", 2725 - "windows_x86_64_msvc 0.52.6", 2726 - ] 2727 - 2728 - [[package]] 2729 - name = "windows_aarch64_gnullvm" 2730 - version = "0.48.5" 2731 - source = "registry+https://github.com/rust-lang/crates.io-index" 2732 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2733 - 2734 - [[package]] 2735 - name = "windows_aarch64_gnullvm" 2736 - version = "0.52.6" 2737 - source = "registry+https://github.com/rust-lang/crates.io-index" 2738 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2739 - 2740 - [[package]] 2741 - name = "windows_aarch64_msvc" 2742 - version = "0.48.5" 2743 - source = "registry+https://github.com/rust-lang/crates.io-index" 2744 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2745 - 2746 - [[package]] 2747 - name = "windows_aarch64_msvc" 2748 - version = "0.52.6" 2749 - source = "registry+https://github.com/rust-lang/crates.io-index" 2750 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2751 - 2752 - [[package]] 2753 - name = "windows_i686_gnu" 2754 - version = "0.48.5" 2755 - source = "registry+https://github.com/rust-lang/crates.io-index" 2756 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2757 - 2758 - [[package]] 2759 - name = "windows_i686_gnu" 2760 - version = "0.52.6" 2761 - source = "registry+https://github.com/rust-lang/crates.io-index" 2762 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2763 - 2764 - [[package]] 2765 - name = "windows_i686_gnullvm" 2766 - version = "0.52.6" 2767 - source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2769 - 2770 - [[package]] 2771 - name = "windows_i686_msvc" 2772 - version = "0.48.5" 2773 - source = "registry+https://github.com/rust-lang/crates.io-index" 2774 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2775 - 2776 - [[package]] 2777 - name = "windows_i686_msvc" 2778 - version = "0.52.6" 2779 - source = "registry+https://github.com/rust-lang/crates.io-index" 2780 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2781 - 2782 - [[package]] 2783 - name = "windows_x86_64_gnu" 2784 - version = "0.48.5" 2785 - source = "registry+https://github.com/rust-lang/crates.io-index" 2786 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2787 - 2788 - [[package]] 2789 - name = "windows_x86_64_gnu" 2790 - version = "0.52.6" 2791 - source = "registry+https://github.com/rust-lang/crates.io-index" 2792 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2793 - 2794 - [[package]] 2795 - name = "windows_x86_64_gnullvm" 2796 - version = "0.48.5" 2797 - source = "registry+https://github.com/rust-lang/crates.io-index" 2798 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2799 - 2800 - [[package]] 2801 - name = "windows_x86_64_gnullvm" 2802 - version = "0.52.6" 2803 - source = "registry+https://github.com/rust-lang/crates.io-index" 2804 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2805 - 2806 - [[package]] 2807 - name = "windows_x86_64_msvc" 2808 - version = "0.48.5" 2809 - source = "registry+https://github.com/rust-lang/crates.io-index" 2810 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2811 - 2812 - [[package]] 2813 - name = "windows_x86_64_msvc" 2814 - version = "0.52.6" 2815 - source = "registry+https://github.com/rust-lang/crates.io-index" 2816 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2817 - 2818 - [[package]] 2819 - name = "winnow" 2820 - version = "0.6.18" 2821 - source = "registry+https://github.com/rust-lang/crates.io-index" 2822 - checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f" 2823 - dependencies = [ 2824 - "memchr", 2825 - ] 2826 - 2827 - [[package]] 2828 - name = "winsafe" 2829 - version = "0.0.19" 2830 - source = "registry+https://github.com/rust-lang/crates.io-index" 2831 - checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" 2832 - 2833 - [[package]] 2834 - name = "yansi-term" 2835 - version = "0.1.2" 2836 - source = "registry+https://github.com/rust-lang/crates.io-index" 2837 - checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1" 2838 - dependencies = [ 2839 - "winapi", 2840 - ] 2841 - 2842 - [[package]] 2843 - name = "zerocopy" 2844 - version = "0.7.35" 2845 - source = "registry+https://github.com/rust-lang/crates.io-index" 2846 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 2847 - dependencies = [ 2848 - "byteorder", 2849 - "zerocopy-derive", 2850 - ] 2851 - 2852 - [[package]] 2853 - name = "zerocopy-derive" 2854 - version = "0.7.35" 2855 - source = "registry+https://github.com/rust-lang/crates.io-index" 2856 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 2857 - dependencies = [ 2858 - "proc-macro2", 2859 - "quote", 2860 - "syn 2.0.72", 2861 - ]
+6 -12
pkgs/development/python-modules/ruff-api/default.nix
··· 3 3 stdenv, 4 4 buildPythonPackage, 5 5 cargo, 6 - darwin, 7 6 fetchFromGitHub, 8 7 libiconv, 9 8 pythonOlder, ··· 25 24 hash = "sha256-1XULyxu3XujhAcFnvqI5zMiXOc0axx1LS4EevjhoGDc="; 26 25 }; 27 26 28 - cargoDeps = rustPlatform.importCargoLock { 29 - lockFile = ./Cargo.lock; 30 - outputHashes = { 31 - "lsp-types-0.95.1" = "sha256-8Oh299exWXVi6A39pALOISNfp8XBya8z+KT/Z7suRxQ="; 32 - "ruff-0.4.10" = "sha256-FRBuvXtnbxRWoI0f8SM0U0Z5TRyX5Tbgq3d34Oh2bG4="; 33 - }; 27 + cargoDeps = rustPlatform.fetchCargoVendor { 28 + inherit pname version src; 29 + hash = "sha256-q8Y5oqoSzUk1Xg4AmjLs7RO8Kr87Oi3eKLSpmXlHp4U="; 34 30 }; 35 31 36 32 nativeBuildInputs = [ ··· 41 37 ]; 42 38 43 39 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 44 - darwin.apple_sdk.frameworks.CoreFoundation 45 - darwin.apple_sdk.frameworks.CoreServices 46 40 libiconv 47 41 ]; 48 42 ··· 51 45 52 46 pythonImportsCheck = [ "ruff_api" ]; 53 47 54 - meta = with lib; { 48 + meta = { 55 49 description = "Experimental Python API for Ruff"; 56 50 homepage = "https://github.com/amyreese/ruff-api"; 57 51 changelog = "https://github.com/amyreese/ruff-api/blob/${src.rev}/CHANGELOG.md"; 58 - license = licenses.mit; 59 - maintainers = with maintainers; [ fab ]; 52 + license = lib.licenses.mit; 53 + maintainers = with lib.maintainers; [ fab ]; 60 54 }; 61 55 }
+5
pkgs/development/python-modules/torcheval/default.nix
··· 99 99 # AssertionError: Scalars are not close! 100 100 # Expected 7.781850814819336 but got 7.781772613525391 101 101 "--deselect=tests/metrics/image/test_psnr.py::TestPeakSignalNoiseRatio::test_psnr_with_random_data" 102 + 103 + # -- tests/metrics/regression/test_mean_squared_error.py -- 104 + # AssertionError: Scalars are not close! 105 + # Expected -640.4547729492188 but got -640.4707641601562 106 + "--deselect=tests/metrics/regression/test_mean_squared_error.py::TestMeanSquaredError::test_mean_squared_error_class_update_input_shape_different" 102 107 ]; 103 108 104 109 meta = {
+2 -2
pkgs/development/python-modules/types-s3transfer/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "types-s3transfer"; 11 - version = "0.11.2"; 11 + version = "0.11.4"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 16 16 src = fetchPypi { 17 17 pname = "types_s3transfer"; 18 18 inherit version; 19 - hash = "sha256-PMuLkLFENK8vsNbAhQBZbZPzqD+4BKK7hD2b9PfCymA="; 19 + hash = "sha256-Bf3lk8hCcPGf0FPwseCPWgV9fF8Da5iE5o+4zTBBrDA="; 20 20 }; 21 21 22 22 build-system = [ setuptools ];
+36
pkgs/development/python-modules/wrapcco/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + numpy, 6 + setuptools, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "wrapcco"; 11 + version = "0.1.3"; 12 + pyproject = true; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-nts5cujixB+PfAf9Fk7kOXW4BeI/0q5GYTthCI76ZOA="; 17 + }; 18 + 19 + build-system = [ setuptools ]; 20 + dependencies = [ 21 + numpy 22 + setuptools 23 + ]; 24 + 25 + # require non trivial test setup 26 + doCheck = false; 27 + 28 + pythonImportsCheck = [ "wrapcco" ]; 29 + 30 + meta = { 31 + description = "Supercharge Python with C++ extensions!"; 32 + homepage = "https://github.com/H3cth0r/wrapc.co"; 33 + license = lib.licenses.mit; 34 + maintainers = with lib.maintainers; [ h3cth0r ]; 35 + }; 36 + }
+6
pkgs/development/tools/godot/4.3/default.nix
··· 1 + { 2 + version = "4.3-stable"; 3 + hash = "sha256-MzElflwXHWLgPtoOIhPLA00xX8eEdQsexZaGIEOzbj0="; 4 + exportTemplatesHash = "sha256-XRnKii+eexIkbGf7bqc42SR0NBULFvgMdOpSRNNk6kg="; 5 + nugetDeps = ./deps.json; 6 + }
+6
pkgs/development/tools/godot/4.4/default.nix
··· 1 + { 2 + version = "4.4-stable"; 3 + hash = "sha256-lCWz0FLSlqUZLA4APgcxuc4wupkMcXcvZ9TUzREAM4U="; 4 + exportTemplatesHash = "sha256-ayY1euO7WJJhZcF0NfobuD1Pcr8LeV/3g/opaZ2wniQ="; 5 + nugetDeps = ./deps.json; 6 + }
+1307
pkgs/development/tools/godot/4.4/deps.json
··· 1 + [ 2 + { 3 + "pname": "coverlet.collector", 4 + "version": "3.2.0", 5 + "hash": "sha256-2aM3pKX5toQQRLKpH5ArzND2Rgq1fSpMsLxcEDbat+M=" 6 + }, 7 + { 8 + "pname": "DiffPlex", 9 + "version": "1.5.0", 10 + "hash": "sha256-6HwA6ZyCn++NAXy6ep9ywSF/Ss+e/nmMhjyeIft9fQw=" 11 + }, 12 + { 13 + "pname": "Humanizer.Core", 14 + "version": "2.14.1", 15 + "hash": "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o=" 16 + }, 17 + { 18 + "pname": "Humanizer.Core", 19 + "version": "2.2.0", 20 + "hash": "sha256-5Q6oRaV8wHPONHreKvB74VjV2FW36mwC3n+05It5vyI=" 21 + }, 22 + { 23 + "pname": "JetBrains.Annotations", 24 + "version": "2019.1.3", 25 + "hash": "sha256-gn2Z7yANT+2tnK+qbOA2PviRf1M1VtvamABGajgGC6E=" 26 + }, 27 + { 28 + "pname": "JetBrains.Rider.PathLocator", 29 + "version": "1.0.9", 30 + "hash": "sha256-7c5TRZ594tr1Fj5fNiXtPI0pcBuyX/3eU4x+it6Yzew=" 31 + }, 32 + { 33 + "pname": "Microsoft.AspNetCore.App.Ref", 34 + "version": "6.0.36", 35 + "hash": "sha256-9jDkWbjw/nd8yqdzVTagCuqr6owJ/DUMi4BlUZT4hWU=" 36 + }, 37 + { 38 + "pname": "Microsoft.Bcl.AsyncInterfaces", 39 + "version": "1.1.1", 40 + "hash": "sha256-fAcX4sxE0veWM1CZBtXR/Unky+6sE33yrV7ohrWGKig=" 41 + }, 42 + { 43 + "pname": "Microsoft.Bcl.AsyncInterfaces", 44 + "version": "5.0.0", 45 + "hash": "sha256-bpJjcJSUSZH0GeOXoZI12xUQOf2SRtxG7sZV0dWS5TI=" 46 + }, 47 + { 48 + "pname": "Microsoft.Bcl.AsyncInterfaces", 49 + "version": "7.0.0", 50 + "hash": "sha256-1e031E26iraIqun84ad0fCIR4MJZ1hcQo4yFN+B7UfE=" 51 + }, 52 + { 53 + "pname": "Microsoft.Build", 54 + "version": "15.1.548", 55 + "hash": "sha256-v6rTGfytT6QwXkp97T6vQurVi8oDzZmIOn3/cHYuC6s=" 56 + }, 57 + { 58 + "pname": "Microsoft.Build.Framework", 59 + "version": "15.1.548", 60 + "hash": "sha256-0U6XANGftKOS9Owx1x8hOe5GOdqx2uwQwuAsVHw297g=" 61 + }, 62 + { 63 + "pname": "Microsoft.Build.Locator", 64 + "version": "1.2.6", 65 + "hash": "sha256-Z5wzSnsGbbJe3nvj6kAAv6KhYMK1H3Mktn4ugflpzuY=" 66 + }, 67 + { 68 + "pname": "Microsoft.Build.NoTargets", 69 + "version": "2.0.1", 70 + "hash": "sha256-5Gqi/OQayuQiQNEcoaFue0glNvcF4nmGneW07Hs9prg=" 71 + }, 72 + { 73 + "pname": "Microsoft.CodeAnalysis.Analyzer.Testing", 74 + "version": "1.1.1", 75 + "hash": "sha256-3w7g0KhG16ZH8rYK9FxP15qbd+hTgwRDpDJEKpDMHu8=" 76 + }, 77 + { 78 + "pname": "Microsoft.CodeAnalysis.Analyzers", 79 + "version": "2.6.1", 80 + "hash": "sha256-1+FV3KvwerZsknecHZhdDACsPKaWrbQQeN27BAcZk94=" 81 + }, 82 + { 83 + "pname": "Microsoft.CodeAnalysis.Analyzers", 84 + "version": "3.3.2", 85 + "hash": "sha256-pDeaMqX7a01Hp1Qd9P/y/B2rEGAv2eIY0Ld/klBZW5g=" 86 + }, 87 + { 88 + "pname": "Microsoft.CodeAnalysis.Analyzers", 89 + "version": "3.3.4", 90 + "hash": "sha256-qDzTfZBSCvAUu9gzq2k+LOvh6/eRvJ9++VCNck/ZpnE=" 91 + }, 92 + { 93 + "pname": "Microsoft.CodeAnalysis.CodeFix.Testing", 94 + "version": "1.1.1", 95 + "hash": "sha256-NXEGr/+rzt4ENdTWPlgW7upyjofPP841xzwU78lReio=" 96 + }, 97 + { 98 + "pname": "Microsoft.CodeAnalysis.Common", 99 + "version": "1.0.1", 100 + "hash": "sha256-jjWtdrHSISgBF1m94P0DsVbQa4YxKnf2CWRWYHQLTG8=" 101 + }, 102 + { 103 + "pname": "Microsoft.CodeAnalysis.Common", 104 + "version": "3.11.0", 105 + "hash": "sha256-lOW5q1kAAk+Wpweb9TaZ1LztWzAODt9yZKe6SN5rkV8=" 106 + }, 107 + { 108 + "pname": "Microsoft.CodeAnalysis.Common", 109 + "version": "3.8.0", 110 + "hash": "sha256-3G9vSc/gHH7FWgOySLTut1+eEaf3H66qcPOvNPLOx4o=" 111 + }, 112 + { 113 + "pname": "Microsoft.CodeAnalysis.Common", 114 + "version": "4.8.0", 115 + "hash": "sha256-3IEinVTZq6/aajMVA8XTRO3LTIEt0PuhGyITGJLtqz4=" 116 + }, 117 + { 118 + "pname": "Microsoft.CodeAnalysis.CSharp", 119 + "version": "3.11.0", 120 + "hash": "sha256-AVFv1c6eMi5Jc6GXyL2P3WSs9YTOs3hPO7iGq9tZJsA=" 121 + }, 122 + { 123 + "pname": "Microsoft.CodeAnalysis.CSharp", 124 + "version": "4.8.0", 125 + "hash": "sha256-MmOnXJvd/ezs5UPcqyGLnbZz5m+VedpRfB+kFZeeqkU=" 126 + }, 127 + { 128 + "pname": "Microsoft.CodeAnalysis.CSharp.Analyzer.Testing", 129 + "version": "1.1.1", 130 + "hash": "sha256-uZf99S701CcUoR8XHn+PusRXdDeeWylFiqdMjR9R6TY=" 131 + }, 132 + { 133 + "pname": "Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.XUnit", 134 + "version": "1.1.1", 135 + "hash": "sha256-Fs+ygXsCxoJGcaatBc1v8ZXTVSsid+Y60O4/JLiMD18=" 136 + }, 137 + { 138 + "pname": "Microsoft.CodeAnalysis.CSharp.CodeFix.Testing", 139 + "version": "1.1.1", 140 + "hash": "sha256-g1AkqFBndpl4ySk1w5IMAN+EibO9OsLiWCLjMggImDo=" 141 + }, 142 + { 143 + "pname": "Microsoft.CodeAnalysis.CSharp.CodeFix.Testing.XUnit", 144 + "version": "1.1.1", 145 + "hash": "sha256-3z6ELEBETjKlCyGQ5PzyQWS6Ud982BQMNvLdJnOdlWw=" 146 + }, 147 + { 148 + "pname": "Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing", 149 + "version": "1.1.1", 150 + "hash": "sha256-nX4GSfovb8K4cD9xFEKXcRXVDNmXyWOaAAVQ/XfvAFk=" 151 + }, 152 + { 153 + "pname": "Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.XUnit", 154 + "version": "1.1.1", 155 + "hash": "sha256-QAQ87pM9sr+8uqwDSXR39x3wtx82jVGcdTJPmwDSB2Y=" 156 + }, 157 + { 158 + "pname": "Microsoft.CodeAnalysis.CSharp.Workspaces", 159 + "version": "3.11.0", 160 + "hash": "sha256-4WQgwOdmKbCMfT2c4K+5ZkErU3zkRboJO0ORHhnUvpo=" 161 + }, 162 + { 163 + "pname": "Microsoft.CodeAnalysis.CSharp.Workspaces", 164 + "version": "4.8.0", 165 + "hash": "sha256-WNzc+6mKqzPviOI0WMdhKyrWs8u32bfGj2XwmfL7bwE=" 166 + }, 167 + { 168 + "pname": "Microsoft.CodeAnalysis.SourceGenerators.Testing", 169 + "version": "1.1.1", 170 + "hash": "sha256-d4zoBTjX9DAwIZfGAa9as5vE/BIshKIov4GepT9l1vg=" 171 + }, 172 + { 173 + "pname": "Microsoft.CodeAnalysis.Testing.Verifiers.XUnit", 174 + "version": "1.1.1", 175 + "hash": "sha256-WOo0pITkG6CZwJ9MiLaCMSbjbBOxn7+tlpjJGn//gnc=" 176 + }, 177 + { 178 + "pname": "Microsoft.CodeAnalysis.Workspaces.Common", 179 + "version": "1.0.1", 180 + "hash": "sha256-/SYPkq5LhOoEWi+rcBZDyQL2U0cQk2YrykNJODrRLVs=" 181 + }, 182 + { 183 + "pname": "Microsoft.CodeAnalysis.Workspaces.Common", 184 + "version": "3.11.0", 185 + "hash": "sha256-mkJ/pkf7x7kQ2NngYl8yOlEwJIEjphL84KyUC5vEKh4=" 186 + }, 187 + { 188 + "pname": "Microsoft.CodeAnalysis.Workspaces.Common", 189 + "version": "3.8.0", 190 + "hash": "sha256-3D7xV3V1WsUU9OMMEOj+z9GouCDKXSBC4Z/Szs/OcWE=" 191 + }, 192 + { 193 + "pname": "Microsoft.CodeAnalysis.Workspaces.Common", 194 + "version": "4.8.0", 195 + "hash": "sha256-X8R4SpWVO/gpip5erVZf5jCCx8EX3VzIRtNrQiLDIoM=" 196 + }, 197 + { 198 + "pname": "Microsoft.CodeCoverage", 199 + "version": "17.7.1", 200 + "hash": "sha256-MePYLGy7Y4DuPZccxIbRTjq4GB554jBwT4noLiAZJKs=" 201 + }, 202 + { 203 + "pname": "Microsoft.Composition", 204 + "version": "1.0.27", 205 + "hash": "sha256-G/3p3zxOWC8HqLt7Ll5cqN7507F6N/G6G/HzKazQRdE=" 206 + }, 207 + { 208 + "pname": "Microsoft.CSharp", 209 + "version": "4.0.1", 210 + "hash": "sha256-0huoqR2CJ3Z9Q2peaKD09TV3E6saYSqDGZ290K8CrH8=" 211 + }, 212 + { 213 + "pname": "Microsoft.NET.Test.Sdk", 214 + "version": "17.7.1", 215 + "hash": "sha256-ySyNpRodd6R6qKnGrgwLYaiHZga2GL0fQARrYGIFa6k=" 216 + }, 217 + { 218 + "pname": "Microsoft.NETCore.App.Ref", 219 + "version": "6.0.36", 220 + "hash": "sha256-9LZgVoIFF8qNyUu8kdJrYGLutMF/cL2K82HN2ywwlx8=" 221 + }, 222 + { 223 + "pname": "Microsoft.NETCore.Platforms", 224 + "version": "1.0.1", 225 + "hash": "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU=" 226 + }, 227 + { 228 + "pname": "Microsoft.NETCore.Platforms", 229 + "version": "1.1.0", 230 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 231 + }, 232 + { 233 + "pname": "Microsoft.NETCore.Platforms", 234 + "version": "2.0.0", 235 + "hash": "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=" 236 + }, 237 + { 238 + "pname": "Microsoft.NETCore.Platforms", 239 + "version": "2.1.2", 240 + "hash": "sha256-gYQQO7zsqG+OtN4ywYQyfsiggS2zmxw4+cPXlK+FB5Q=" 241 + }, 242 + { 243 + "pname": "Microsoft.NETCore.Platforms", 244 + "version": "5.0.0", 245 + "hash": "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=" 246 + }, 247 + { 248 + "pname": "Microsoft.NETCore.Targets", 249 + "version": "1.0.1", 250 + "hash": "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4=" 251 + }, 252 + { 253 + "pname": "Microsoft.NETCore.Targets", 254 + "version": "1.1.0", 255 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 256 + }, 257 + { 258 + "pname": "Microsoft.NETFramework.ReferenceAssemblies", 259 + "version": "1.0.0", 260 + "hash": "sha256-6faPQ4jaFY3OGGVk3lZKW+DEZaIOBZ/wHqbiDTsRR1k=" 261 + }, 262 + { 263 + "pname": "Microsoft.NETFramework.ReferenceAssemblies.net461", 264 + "version": "1.0.0", 265 + "hash": "sha256-oS7sUMzKBkLmhggqbI6eBqb1OPAipH0TDTaDaBixcwM=" 266 + }, 267 + { 268 + "pname": "Microsoft.TestPlatform.ObjectModel", 269 + "version": "17.7.1", 270 + "hash": "sha256-KfqM1E0jhAg07QfpjfEcjQ+HX13XZfdvveT5qxm89Sk=" 271 + }, 272 + { 273 + "pname": "Microsoft.TestPlatform.TestHost", 274 + "version": "17.7.1", 275 + "hash": "sha256-MMrdBDByByYDpO/xaRCl9Cb27zIfcjPJqld/649e8Mw=" 276 + }, 277 + { 278 + "pname": "Microsoft.VisualBasic", 279 + "version": "10.0.1", 280 + "hash": "sha256-7HHzZcWLVTTQ1K1rCIyoB+UxLHMvOIz+O5av6XDa22A=" 281 + }, 282 + { 283 + "pname": "Microsoft.VisualStudio.Composition", 284 + "version": "16.1.8", 285 + "hash": "sha256-yFT4t3Uk31R5EPdAxxsTAmRuiv58MlYoYL4JT1ywlHQ=" 286 + }, 287 + { 288 + "pname": "Microsoft.VisualStudio.Composition.NetFxAttributes", 289 + "version": "16.1.8", 290 + "hash": "sha256-FFemIG+m8RWUPo5W+kCHPh5Yn4fGS+tpjGiQTcT0sAE=" 291 + }, 292 + { 293 + "pname": "Microsoft.VisualStudio.Validation", 294 + "version": "15.0.82", 295 + "hash": "sha256-7JFaA/HZHVjsEtTh/iHDRLi5RcuA39KKvvCkuI4JQFc=" 296 + }, 297 + { 298 + "pname": "Microsoft.Win32.Primitives", 299 + "version": "4.0.1", 300 + "hash": "sha256-B4t5El/ViBdxALMcpZulewc4j/3SIXf71HhJWhm4Ctk=" 301 + }, 302 + { 303 + "pname": "Microsoft.Win32.Primitives", 304 + "version": "4.3.0", 305 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 306 + }, 307 + { 308 + "pname": "Microsoft.Win32.Registry", 309 + "version": "4.0.0", 310 + "hash": "sha256-M/06F/Z2wTHCh4pZOgtCjUGLD1FJXEJKCmzOeFMl7uo=" 311 + }, 312 + { 313 + "pname": "Microsoft.Win32.Registry", 314 + "version": "4.3.0", 315 + "hash": "sha256-50XwFbyRfZkTD/bBn76WV/NIpOy/mzXD3MMEVFX/vr8=" 316 + }, 317 + { 318 + "pname": "Microsoft.Win32.Registry", 319 + "version": "5.0.0", 320 + "hash": "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=" 321 + }, 322 + { 323 + "pname": "NETStandard.Library", 324 + "version": "1.6.1", 325 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 326 + }, 327 + { 328 + "pname": "NETStandard.Library", 329 + "version": "2.0.3", 330 + "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" 331 + }, 332 + { 333 + "pname": "Newtonsoft.Json", 334 + "version": "13.0.1", 335 + "hash": "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=" 336 + }, 337 + { 338 + "pname": "Newtonsoft.Json", 339 + "version": "9.0.1", 340 + "hash": "sha256-mYCBrgUhIJFzRuLLV9SIiIFHovzfR8Uuqfg6e08EnlU=" 341 + }, 342 + { 343 + "pname": "NuGet.Common", 344 + "version": "5.6.0", 345 + "hash": "sha256-uc/gCpcfugMjulqDVpS0ryfcaVBtmKyho07g3M8o//g=" 346 + }, 347 + { 348 + "pname": "NuGet.Configuration", 349 + "version": "5.6.0", 350 + "hash": "sha256-K5A66u9WPz8PZYIl+DDyCAodYGUJfLdNNix6f5F7adI=" 351 + }, 352 + { 353 + "pname": "NuGet.Frameworks", 354 + "version": "5.6.0", 355 + "hash": "sha256-iMacMTcuvemRQ4p3gv/3MioC/OEDOju8rnmZioWq9bc=" 356 + }, 357 + { 358 + "pname": "NuGet.Frameworks", 359 + "version": "6.12.1", 360 + "hash": "sha256-GGpkbas+PNLx35vvr3nyAVz5lY/aeoMx6qjmT368Lpg=" 361 + }, 362 + { 363 + "pname": "NuGet.Frameworks", 364 + "version": "6.5.0", 365 + "hash": "sha256-ElqfN4CcKxT3hP2qvxxObb4mnBlYG89IMxO0Sm5oZ2g=" 366 + }, 367 + { 368 + "pname": "NuGet.Packaging", 369 + "version": "5.6.0", 370 + "hash": "sha256-bl/A1QbIJAu/GpzKOKjGwe7NrTXlYH5s3ppJ6mYAoQk=" 371 + }, 372 + { 373 + "pname": "NuGet.Protocol", 374 + "version": "5.6.0", 375 + "hash": "sha256-faY3xEk4g9xQFRT7DspGmlVLRGH1r4Vvr5VLT9sLUf8=" 376 + }, 377 + { 378 + "pname": "NuGet.Resolver", 379 + "version": "5.6.0", 380 + "hash": "sha256-wAiARlBJtCjP482a0jnZKpZBbHRl3voXYMTz3WEox04=" 381 + }, 382 + { 383 + "pname": "NuGet.Versioning", 384 + "version": "5.6.0", 385 + "hash": "sha256-3HKwW3hhTuwkZM5n02VFe8yDZbCLgqNE8gI+pqFTToI=" 386 + }, 387 + { 388 + "pname": "ReflectionAnalyzers", 389 + "version": "0.1.22-dev", 390 + "hash": "sha256-NA/pyCCzzIewVr6IfZtFQjR5lOBnBdSzYj5SzgsBFvw=" 391 + }, 392 + { 393 + "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 394 + "version": "4.3.0", 395 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 396 + }, 397 + { 398 + "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 399 + "version": "4.3.0", 400 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 401 + }, 402 + { 403 + "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 404 + "version": "4.3.0", 405 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 406 + }, 407 + { 408 + "pname": "runtime.native.System", 409 + "version": "4.0.0", 410 + "hash": "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894=" 411 + }, 412 + { 413 + "pname": "runtime.native.System", 414 + "version": "4.3.0", 415 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 416 + }, 417 + { 418 + "pname": "runtime.native.System.IO.Compression", 419 + "version": "4.1.0", 420 + "hash": "sha256-085JrZxNEwIHdBWKKKFsh1JzpF0AblvrUsz5T8kH4jQ=" 421 + }, 422 + { 423 + "pname": "runtime.native.System.IO.Compression", 424 + "version": "4.3.0", 425 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 426 + }, 427 + { 428 + "pname": "runtime.native.System.Net.Http", 429 + "version": "4.3.0", 430 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 431 + }, 432 + { 433 + "pname": "runtime.native.System.Security.Cryptography.Apple", 434 + "version": "4.3.0", 435 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 436 + }, 437 + { 438 + "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 439 + "version": "4.3.0", 440 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 441 + }, 442 + { 443 + "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 444 + "version": "4.3.0", 445 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 446 + }, 447 + { 448 + "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 449 + "version": "4.3.0", 450 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 451 + }, 452 + { 453 + "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 454 + "version": "4.3.0", 455 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 456 + }, 457 + { 458 + "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 459 + "version": "4.3.0", 460 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 461 + }, 462 + { 463 + "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 464 + "version": "4.3.0", 465 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 466 + }, 467 + { 468 + "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 469 + "version": "4.3.0", 470 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 471 + }, 472 + { 473 + "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 474 + "version": "4.3.0", 475 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 476 + }, 477 + { 478 + "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 479 + "version": "4.3.0", 480 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 481 + }, 482 + { 483 + "pname": "System.AppContext", 484 + "version": "4.1.0", 485 + "hash": "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs=" 486 + }, 487 + { 488 + "pname": "System.AppContext", 489 + "version": "4.3.0", 490 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 491 + }, 492 + { 493 + "pname": "System.Buffers", 494 + "version": "4.3.0", 495 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 496 + }, 497 + { 498 + "pname": "System.Buffers", 499 + "version": "4.5.1", 500 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 501 + }, 502 + { 503 + "pname": "System.Collections", 504 + "version": "4.0.11", 505 + "hash": "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0=" 506 + }, 507 + { 508 + "pname": "System.Collections", 509 + "version": "4.3.0", 510 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 511 + }, 512 + { 513 + "pname": "System.Collections.Concurrent", 514 + "version": "4.0.12", 515 + "hash": "sha256-zIEM7AB4SyE9u6G8+o+gCLLwkgi6+3rHQVPdn/dEwB8=" 516 + }, 517 + { 518 + "pname": "System.Collections.Concurrent", 519 + "version": "4.3.0", 520 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 521 + }, 522 + { 523 + "pname": "System.Collections.Immutable", 524 + "version": "1.1.36", 525 + "hash": "sha256-x/UyLEyveCYI+JAWo9xallSPbl78dIVuW2pGqgTY/C0=" 526 + }, 527 + { 528 + "pname": "System.Collections.Immutable", 529 + "version": "1.2.0", 530 + "hash": "sha256-FQ3l+ulbLSPhQ0JcQCC4D4SzjTnHsRqcOj56Ywy7pMo=" 531 + }, 532 + { 533 + "pname": "System.Collections.Immutable", 534 + "version": "5.0.0", 535 + "hash": "sha256-GdwSIjLMM0uVfE56VUSLVNgpW0B//oCeSFj8/hSlbM8=" 536 + }, 537 + { 538 + "pname": "System.Collections.Immutable", 539 + "version": "7.0.0", 540 + "hash": "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk=" 541 + }, 542 + { 543 + "pname": "System.Collections.NonGeneric", 544 + "version": "4.0.1", 545 + "hash": "sha256-jdCVXmGOsJ+2F0xAagCkiMZ91SGAm9iOhO2u4ksmKaU=" 546 + }, 547 + { 548 + "pname": "System.ComponentModel.Composition", 549 + "version": "4.5.0", 550 + "hash": "sha256-xxeZs1zIkhl2ZXU8CaOtCkMX1N290IK7bbHYeEKD0aQ=" 551 + }, 552 + { 553 + "pname": "System.Composition", 554 + "version": "1.0.31", 555 + "hash": "sha256-wcQEG6MCRa1S03s3Yb3E3tfsIBZid99M7WDhcb48Qik=" 556 + }, 557 + { 558 + "pname": "System.Composition", 559 + "version": "7.0.0", 560 + "hash": "sha256-YjhxuzuVdAzRBHNQy9y/1ES+ll3QtLcd2o+o8wIyMao=" 561 + }, 562 + { 563 + "pname": "System.Composition.AttributedModel", 564 + "version": "1.0.31", 565 + "hash": "sha256-u+XnXfj6LQ3OXwrb9KqHRW4a/a9yHzLrJOXwDQ1a/sY=" 566 + }, 567 + { 568 + "pname": "System.Composition.AttributedModel", 569 + "version": "7.0.0", 570 + "hash": "sha256-3s52Dyk2J66v/B4LLYFBMyXl0I8DFDshjE+sMjW4ubM=" 571 + }, 572 + { 573 + "pname": "System.Composition.Convention", 574 + "version": "1.0.31", 575 + "hash": "sha256-GQWo1YDyQ3r2OMcKW+GbR3BbZNIAdwK79XAfinNj+AE=" 576 + }, 577 + { 578 + "pname": "System.Composition.Convention", 579 + "version": "7.0.0", 580 + "hash": "sha256-N4MkkBXSQkcFKsEdcSe6zmyFyMmFOHmI2BNo3wWxftk=" 581 + }, 582 + { 583 + "pname": "System.Composition.Hosting", 584 + "version": "1.0.31", 585 + "hash": "sha256-fg9BIY+zWtiEBIJefYP2lKHDYa4r/vtPTr3ZI8e0K7g=" 586 + }, 587 + { 588 + "pname": "System.Composition.Hosting", 589 + "version": "7.0.0", 590 + "hash": "sha256-7liQGMaVKNZU1iWTIXvqf0SG8zPobRoLsW7q916XC3M=" 591 + }, 592 + { 593 + "pname": "System.Composition.Runtime", 594 + "version": "1.0.31", 595 + "hash": "sha256-mqfxjAnVyE1YCgXMOcV34IWhYFnvXVKjMo9Y/d3yDuo=" 596 + }, 597 + { 598 + "pname": "System.Composition.Runtime", 599 + "version": "7.0.0", 600 + "hash": "sha256-Oo1BxSGLETmdNcYvnkGdgm7JYAnQmv1jY0gL0j++Pd0=" 601 + }, 602 + { 603 + "pname": "System.Composition.TypedParts", 604 + "version": "1.0.31", 605 + "hash": "sha256-w9ApcUJr7jYP4Vf5+efIIqoWmr5v9R56W4uC0n8KktQ=" 606 + }, 607 + { 608 + "pname": "System.Composition.TypedParts", 609 + "version": "7.0.0", 610 + "hash": "sha256-6ZzNdk35qQG3ttiAi4OXrihla7LVP+y2fL3bx40/32s=" 611 + }, 612 + { 613 + "pname": "System.Console", 614 + "version": "4.0.0", 615 + "hash": "sha256-jtZfT/TpJtLisV/y5Mk3IfCpE79zwhBYXtyGP9jC3Xo=" 616 + }, 617 + { 618 + "pname": "System.Console", 619 + "version": "4.3.0", 620 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 621 + }, 622 + { 623 + "pname": "System.Diagnostics.Contracts", 624 + "version": "4.0.1", 625 + "hash": "sha256-Mq2MU+80m+zqhe92JazEIDi4rsgk8MHg3yjNYlObzXg=" 626 + }, 627 + { 628 + "pname": "System.Diagnostics.Debug", 629 + "version": "4.0.11", 630 + "hash": "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4=" 631 + }, 632 + { 633 + "pname": "System.Diagnostics.Debug", 634 + "version": "4.3.0", 635 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 636 + }, 637 + { 638 + "pname": "System.Diagnostics.DiagnosticSource", 639 + "version": "4.3.0", 640 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 641 + }, 642 + { 643 + "pname": "System.Diagnostics.FileVersionInfo", 644 + "version": "4.0.0", 645 + "hash": "sha256-Yy94jPhDXF2QHOF7qTmqKkn1048K9xkKryuBeDzsu+g=" 646 + }, 647 + { 648 + "pname": "System.Diagnostics.Process", 649 + "version": "4.1.0", 650 + "hash": "sha256-OgW6ogQ+oYADYS0PHmwXdhrOKQJpqXlwzSvmfjTLNBg=" 651 + }, 652 + { 653 + "pname": "System.Diagnostics.Process", 654 + "version": "4.3.0", 655 + "hash": "sha256-Rzo24qXhuJDDgrGNHr2eQRHhwLmsYmWDqAg/P5fOlzw=" 656 + }, 657 + { 658 + "pname": "System.Diagnostics.Tools", 659 + "version": "4.0.1", 660 + "hash": "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U=" 661 + }, 662 + { 663 + "pname": "System.Diagnostics.Tools", 664 + "version": "4.3.0", 665 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 666 + }, 667 + { 668 + "pname": "System.Diagnostics.TraceSource", 669 + "version": "4.0.0", 670 + "hash": "sha256-cCjdPU7ow91HGf1hBIOLJMQGO6pNmF+N+5/Z38XJh9U=" 671 + }, 672 + { 673 + "pname": "System.Diagnostics.Tracing", 674 + "version": "4.1.0", 675 + "hash": "sha256-JA0jJcLbU3zh52ub3zweob2EVHvxOqiC6SCYHrY5WbQ=" 676 + }, 677 + { 678 + "pname": "System.Diagnostics.Tracing", 679 + "version": "4.3.0", 680 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 681 + }, 682 + { 683 + "pname": "System.Dynamic.Runtime", 684 + "version": "4.0.11", 685 + "hash": "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4=" 686 + }, 687 + { 688 + "pname": "System.Dynamic.Runtime", 689 + "version": "4.3.0", 690 + "hash": "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU=" 691 + }, 692 + { 693 + "pname": "System.Globalization", 694 + "version": "4.0.11", 695 + "hash": "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw=" 696 + }, 697 + { 698 + "pname": "System.Globalization", 699 + "version": "4.3.0", 700 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 701 + }, 702 + { 703 + "pname": "System.Globalization.Calendars", 704 + "version": "4.3.0", 705 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 706 + }, 707 + { 708 + "pname": "System.Globalization.Extensions", 709 + "version": "4.3.0", 710 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 711 + }, 712 + { 713 + "pname": "System.IO", 714 + "version": "4.1.0", 715 + "hash": "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw=" 716 + }, 717 + { 718 + "pname": "System.IO", 719 + "version": "4.3.0", 720 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 721 + }, 722 + { 723 + "pname": "System.IO.Compression", 724 + "version": "4.1.0", 725 + "hash": "sha256-UT4KEfJNZOk7b4X0AqLFUsqfHu6myVH/BhbRKYc+1Uc=" 726 + }, 727 + { 728 + "pname": "System.IO.Compression", 729 + "version": "4.3.0", 730 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 731 + }, 732 + { 733 + "pname": "System.IO.Compression.ZipFile", 734 + "version": "4.3.0", 735 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 736 + }, 737 + { 738 + "pname": "System.IO.FileSystem", 739 + "version": "4.0.1", 740 + "hash": "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0=" 741 + }, 742 + { 743 + "pname": "System.IO.FileSystem", 744 + "version": "4.3.0", 745 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 746 + }, 747 + { 748 + "pname": "System.IO.FileSystem.Primitives", 749 + "version": "4.0.1", 750 + "hash": "sha256-IpigKMomqb6pmYWkrlf0ZdpILtRluX2cX5sOKVW0Feg=" 751 + }, 752 + { 753 + "pname": "System.IO.FileSystem.Primitives", 754 + "version": "4.3.0", 755 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 756 + }, 757 + { 758 + "pname": "System.IO.Pipelines", 759 + "version": "5.0.1", 760 + "hash": "sha256-2zT5uBiyYm+jLIoJppIKJttTtpcMNKxd7Li0QEVjbv8=" 761 + }, 762 + { 763 + "pname": "System.IO.Pipelines", 764 + "version": "7.0.0", 765 + "hash": "sha256-W2181khfJUTxLqhuAVRhCa52xZ3+ePGOLIPwEN8WisY=" 766 + }, 767 + { 768 + "pname": "System.IO.Pipes", 769 + "version": "4.0.0", 770 + "hash": "sha256-6qMAD6DCZ5c1wswLWi1msqwu8GwI8un1RzjpUhzbrjs=" 771 + }, 772 + { 773 + "pname": "System.Linq", 774 + "version": "4.1.0", 775 + "hash": "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794=" 776 + }, 777 + { 778 + "pname": "System.Linq", 779 + "version": "4.3.0", 780 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 781 + }, 782 + { 783 + "pname": "System.Linq.Expressions", 784 + "version": "4.1.0", 785 + "hash": "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4=" 786 + }, 787 + { 788 + "pname": "System.Linq.Expressions", 789 + "version": "4.3.0", 790 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 791 + }, 792 + { 793 + "pname": "System.Linq.Parallel", 794 + "version": "4.0.1", 795 + "hash": "sha256-TV1F3KYFipPmPnWFjX6hOZQNFsG2m729EdgPSFzqY0Q=" 796 + }, 797 + { 798 + "pname": "System.Memory", 799 + "version": "4.5.4", 800 + "hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=" 801 + }, 802 + { 803 + "pname": "System.Memory", 804 + "version": "4.5.5", 805 + "hash": "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI=" 806 + }, 807 + { 808 + "pname": "System.Net.Http", 809 + "version": "4.3.0", 810 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 811 + }, 812 + { 813 + "pname": "System.Net.Primitives", 814 + "version": "4.0.11", 815 + "hash": "sha256-2YSijNhCdw/ZU2yfH7vE+ReA8pgxRCXPnWr+ab36v4M=" 816 + }, 817 + { 818 + "pname": "System.Net.Primitives", 819 + "version": "4.3.0", 820 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 821 + }, 822 + { 823 + "pname": "System.Net.Sockets", 824 + "version": "4.1.0", 825 + "hash": "sha256-muK7oXIX7ykqhXskuUt0KX6Hzg5VogJhUS0JiOB2BY0=" 826 + }, 827 + { 828 + "pname": "System.Net.Sockets", 829 + "version": "4.3.0", 830 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 831 + }, 832 + { 833 + "pname": "System.Numerics.Vectors", 834 + "version": "4.4.0", 835 + "hash": "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U=" 836 + }, 837 + { 838 + "pname": "System.ObjectModel", 839 + "version": "4.0.12", 840 + "hash": "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s=" 841 + }, 842 + { 843 + "pname": "System.ObjectModel", 844 + "version": "4.3.0", 845 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 846 + }, 847 + { 848 + "pname": "System.Reflection", 849 + "version": "4.1.0", 850 + "hash": "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs=" 851 + }, 852 + { 853 + "pname": "System.Reflection", 854 + "version": "4.3.0", 855 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 856 + }, 857 + { 858 + "pname": "System.Reflection.Emit", 859 + "version": "4.0.1", 860 + "hash": "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk=" 861 + }, 862 + { 863 + "pname": "System.Reflection.Emit", 864 + "version": "4.3.0", 865 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 866 + }, 867 + { 868 + "pname": "System.Reflection.Emit.ILGeneration", 869 + "version": "4.0.1", 870 + "hash": "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0=" 871 + }, 872 + { 873 + "pname": "System.Reflection.Emit.ILGeneration", 874 + "version": "4.3.0", 875 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 876 + }, 877 + { 878 + "pname": "System.Reflection.Emit.Lightweight", 879 + "version": "4.0.1", 880 + "hash": "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g=" 881 + }, 882 + { 883 + "pname": "System.Reflection.Emit.Lightweight", 884 + "version": "4.3.0", 885 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 886 + }, 887 + { 888 + "pname": "System.Reflection.Extensions", 889 + "version": "4.0.1", 890 + "hash": "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ=" 891 + }, 892 + { 893 + "pname": "System.Reflection.Extensions", 894 + "version": "4.3.0", 895 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 896 + }, 897 + { 898 + "pname": "System.Reflection.Metadata", 899 + "version": "1.0.21", 900 + "hash": "sha256-0yqDWxwaw57YQ5dl8qdo+2o6VvG8qKp4il093uWWAUs=" 901 + }, 902 + { 903 + "pname": "System.Reflection.Metadata", 904 + "version": "1.3.0", 905 + "hash": "sha256-a/RQr++mSsziWaOTknicfIQX/zJrwPFExfhK6PM0tfg=" 906 + }, 907 + { 908 + "pname": "System.Reflection.Metadata", 909 + "version": "1.6.0", 910 + "hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=" 911 + }, 912 + { 913 + "pname": "System.Reflection.Metadata", 914 + "version": "5.0.0", 915 + "hash": "sha256-Wo+MiqhcP9dQ6NuFGrQTw6hpbJORFwp+TBNTq2yhGp8=" 916 + }, 917 + { 918 + "pname": "System.Reflection.Metadata", 919 + "version": "7.0.0", 920 + "hash": "sha256-GwAKQhkhPBYTqmRdG9c9taqrKSKDwyUgOEhWLKxWNPI=" 921 + }, 922 + { 923 + "pname": "System.Reflection.Primitives", 924 + "version": "4.0.1", 925 + "hash": "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0=" 926 + }, 927 + { 928 + "pname": "System.Reflection.Primitives", 929 + "version": "4.3.0", 930 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 931 + }, 932 + { 933 + "pname": "System.Reflection.TypeExtensions", 934 + "version": "4.1.0", 935 + "hash": "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4=" 936 + }, 937 + { 938 + "pname": "System.Reflection.TypeExtensions", 939 + "version": "4.3.0", 940 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 941 + }, 942 + { 943 + "pname": "System.Resources.ResourceManager", 944 + "version": "4.0.1", 945 + "hash": "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw=" 946 + }, 947 + { 948 + "pname": "System.Resources.ResourceManager", 949 + "version": "4.3.0", 950 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 951 + }, 952 + { 953 + "pname": "System.Runtime", 954 + "version": "4.1.0", 955 + "hash": "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo=" 956 + }, 957 + { 958 + "pname": "System.Runtime", 959 + "version": "4.3.0", 960 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 961 + }, 962 + { 963 + "pname": "System.Runtime.CompilerServices.Unsafe", 964 + "version": "4.5.3", 965 + "hash": "sha256-lnZMUqRO4RYRUeSO8HSJ9yBHqFHLVbmenwHWkIU20ak=" 966 + }, 967 + { 968 + "pname": "System.Runtime.CompilerServices.Unsafe", 969 + "version": "4.7.1", 970 + "hash": "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U=" 971 + }, 972 + { 973 + "pname": "System.Runtime.CompilerServices.Unsafe", 974 + "version": "5.0.0", 975 + "hash": "sha256-neARSpLPUzPxEKhJRwoBzhPxK+cKIitLx7WBYncsYgo=" 976 + }, 977 + { 978 + "pname": "System.Runtime.CompilerServices.Unsafe", 979 + "version": "6.0.0", 980 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 981 + }, 982 + { 983 + "pname": "System.Runtime.Extensions", 984 + "version": "4.1.0", 985 + "hash": "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc=" 986 + }, 987 + { 988 + "pname": "System.Runtime.Extensions", 989 + "version": "4.3.0", 990 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 991 + }, 992 + { 993 + "pname": "System.Runtime.Handles", 994 + "version": "4.0.1", 995 + "hash": "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w=" 996 + }, 997 + { 998 + "pname": "System.Runtime.Handles", 999 + "version": "4.3.0", 1000 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 1001 + }, 1002 + { 1003 + "pname": "System.Runtime.InteropServices", 1004 + "version": "4.1.0", 1005 + "hash": "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY=" 1006 + }, 1007 + { 1008 + "pname": "System.Runtime.InteropServices", 1009 + "version": "4.3.0", 1010 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 1011 + }, 1012 + { 1013 + "pname": "System.Runtime.InteropServices.RuntimeInformation", 1014 + "version": "4.0.0", 1015 + "hash": "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4=" 1016 + }, 1017 + { 1018 + "pname": "System.Runtime.InteropServices.RuntimeInformation", 1019 + "version": "4.3.0", 1020 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 1021 + }, 1022 + { 1023 + "pname": "System.Runtime.Loader", 1024 + "version": "4.0.0", 1025 + "hash": "sha256-gE5/ehU3Qq5phhSxGuPmSv1DFVQeiyl1/+YyrO+I7lI=" 1026 + }, 1027 + { 1028 + "pname": "System.Runtime.Numerics", 1029 + "version": "4.3.0", 1030 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 1031 + }, 1032 + { 1033 + "pname": "System.Runtime.Serialization.Primitives", 1034 + "version": "4.1.1", 1035 + "hash": "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA=" 1036 + }, 1037 + { 1038 + "pname": "System.Security.AccessControl", 1039 + "version": "4.5.0", 1040 + "hash": "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM=" 1041 + }, 1042 + { 1043 + "pname": "System.Security.AccessControl", 1044 + "version": "5.0.0", 1045 + "hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=" 1046 + }, 1047 + { 1048 + "pname": "System.Security.Cryptography.Algorithms", 1049 + "version": "4.3.0", 1050 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 1051 + }, 1052 + { 1053 + "pname": "System.Security.Cryptography.Cng", 1054 + "version": "4.3.0", 1055 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 1056 + }, 1057 + { 1058 + "pname": "System.Security.Cryptography.Csp", 1059 + "version": "4.3.0", 1060 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 1061 + }, 1062 + { 1063 + "pname": "System.Security.Cryptography.Encoding", 1064 + "version": "4.3.0", 1065 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 1066 + }, 1067 + { 1068 + "pname": "System.Security.Cryptography.OpenSsl", 1069 + "version": "4.3.0", 1070 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 1071 + }, 1072 + { 1073 + "pname": "System.Security.Cryptography.Primitives", 1074 + "version": "4.3.0", 1075 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 1076 + }, 1077 + { 1078 + "pname": "System.Security.Cryptography.ProtectedData", 1079 + "version": "4.3.0", 1080 + "hash": "sha256-CbfRZFmnJZCAsx9cx9UehCtzsbnVo+ce+n4pXDsx4s0=" 1081 + }, 1082 + { 1083 + "pname": "System.Security.Cryptography.X509Certificates", 1084 + "version": "4.3.0", 1085 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 1086 + }, 1087 + { 1088 + "pname": "System.Security.Permissions", 1089 + "version": "4.5.0", 1090 + "hash": "sha256-Fa6dX6Gyse1A/RBoin8cVaHQePbfBvp6jjWxUXPhXKQ=" 1091 + }, 1092 + { 1093 + "pname": "System.Security.Principal", 1094 + "version": "4.0.1", 1095 + "hash": "sha256-9wBgPnJfFOtrhKZ7wDXZ4q12GklQ49Ka02/9v7Frf9k=" 1096 + }, 1097 + { 1098 + "pname": "System.Security.Principal.Windows", 1099 + "version": "4.5.0", 1100 + "hash": "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY=" 1101 + }, 1102 + { 1103 + "pname": "System.Security.Principal.Windows", 1104 + "version": "5.0.0", 1105 + "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 1106 + }, 1107 + { 1108 + "pname": "System.Text.Encoding", 1109 + "version": "4.0.11", 1110 + "hash": "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=" 1111 + }, 1112 + { 1113 + "pname": "System.Text.Encoding", 1114 + "version": "4.3.0", 1115 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 1116 + }, 1117 + { 1118 + "pname": "System.Text.Encoding.CodePages", 1119 + "version": "4.5.1", 1120 + "hash": "sha256-PIhkv59IXjyiuefdhKxS9hQfEwO9YWRuNudpo53HQfw=" 1121 + }, 1122 + { 1123 + "pname": "System.Text.Encoding.CodePages", 1124 + "version": "7.0.0", 1125 + "hash": "sha256-eCKTVwumD051ZEcoJcDVRGnIGAsEvKpfH3ydKluHxmo=" 1126 + }, 1127 + { 1128 + "pname": "System.Text.Encoding.Extensions", 1129 + "version": "4.0.11", 1130 + "hash": "sha256-+kf7J3dEhgCbnCM5vHYlsTm5/R/Ud0Jr6elpHm922iI=" 1131 + }, 1132 + { 1133 + "pname": "System.Text.Encoding.Extensions", 1134 + "version": "4.3.0", 1135 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 1136 + }, 1137 + { 1138 + "pname": "System.Text.RegularExpressions", 1139 + "version": "4.1.0", 1140 + "hash": "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c=" 1141 + }, 1142 + { 1143 + "pname": "System.Text.RegularExpressions", 1144 + "version": "4.3.0", 1145 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 1146 + }, 1147 + { 1148 + "pname": "System.Threading", 1149 + "version": "4.0.11", 1150 + "hash": "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac=" 1151 + }, 1152 + { 1153 + "pname": "System.Threading", 1154 + "version": "4.3.0", 1155 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 1156 + }, 1157 + { 1158 + "pname": "System.Threading.Channels", 1159 + "version": "7.0.0", 1160 + "hash": "sha256-Cu0gjQsLIR8Yvh0B4cOPJSYVq10a+3F9pVz/C43CNeM=" 1161 + }, 1162 + { 1163 + "pname": "System.Threading.Overlapped", 1164 + "version": "4.0.1", 1165 + "hash": "sha256-CAWZlavcuBQHs+kaSX9CmkpHF7wC8rFrug3XPb5KJzo=" 1166 + }, 1167 + { 1168 + "pname": "System.Threading.Tasks", 1169 + "version": "4.0.11", 1170 + "hash": "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs=" 1171 + }, 1172 + { 1173 + "pname": "System.Threading.Tasks", 1174 + "version": "4.3.0", 1175 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 1176 + }, 1177 + { 1178 + "pname": "System.Threading.Tasks.Dataflow", 1179 + "version": "4.6.0", 1180 + "hash": "sha256-YYrT3GRzVBdendxt8FUDCnOBJi0nw/CJ9VrzcPJWLSg=" 1181 + }, 1182 + { 1183 + "pname": "System.Threading.Tasks.Extensions", 1184 + "version": "4.0.0", 1185 + "hash": "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE=" 1186 + }, 1187 + { 1188 + "pname": "System.Threading.Tasks.Extensions", 1189 + "version": "4.3.0", 1190 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 1191 + }, 1192 + { 1193 + "pname": "System.Threading.Tasks.Extensions", 1194 + "version": "4.5.4", 1195 + "hash": "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng=" 1196 + }, 1197 + { 1198 + "pname": "System.Threading.Thread", 1199 + "version": "4.0.0", 1200 + "hash": "sha256-7EtSJuKqcW107FYA5Ko9NFXEWUPIzNDtlfKaQV2pvb8=" 1201 + }, 1202 + { 1203 + "pname": "System.Threading.Thread", 1204 + "version": "4.3.0", 1205 + "hash": "sha256-pMs6RNFC3nQOGz9EqIcyWmO8YLaqay+q/Qde5hqPXXg=" 1206 + }, 1207 + { 1208 + "pname": "System.Threading.ThreadPool", 1209 + "version": "4.0.10", 1210 + "hash": "sha256-/fowWjM/0ZZFC1Rwu0i5N71iRxV2JOd3jQV2Jn0wuTk=" 1211 + }, 1212 + { 1213 + "pname": "System.Threading.ThreadPool", 1214 + "version": "4.3.0", 1215 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 1216 + }, 1217 + { 1218 + "pname": "System.Threading.Timer", 1219 + "version": "4.3.0", 1220 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 1221 + }, 1222 + { 1223 + "pname": "System.ValueTuple", 1224 + "version": "4.5.0", 1225 + "hash": "sha256-niH6l2fU52vAzuBlwdQMw0OEoRS/7E1w5smBFoqSaAI=" 1226 + }, 1227 + { 1228 + "pname": "System.Xml.ReaderWriter", 1229 + "version": "4.0.11", 1230 + "hash": "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA=" 1231 + }, 1232 + { 1233 + "pname": "System.Xml.ReaderWriter", 1234 + "version": "4.3.0", 1235 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 1236 + }, 1237 + { 1238 + "pname": "System.Xml.XDocument", 1239 + "version": "4.0.11", 1240 + "hash": "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg=" 1241 + }, 1242 + { 1243 + "pname": "System.Xml.XDocument", 1244 + "version": "4.3.0", 1245 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 1246 + }, 1247 + { 1248 + "pname": "System.Xml.XmlDocument", 1249 + "version": "4.0.1", 1250 + "hash": "sha256-gdoFrPo54v1LjkBF79f8EvtltVVjHz9ZI9kc5ve0GkY=" 1251 + }, 1252 + { 1253 + "pname": "System.Xml.XPath", 1254 + "version": "4.0.1", 1255 + "hash": "sha256-lQCoK2M51SGRuGjfiuIW26Y2goABY2RLE6cZ4816WDo=" 1256 + }, 1257 + { 1258 + "pname": "System.Xml.XPath.XmlDocument", 1259 + "version": "4.0.1", 1260 + "hash": "sha256-bK9AfAYrdSipdRbmo8Rk7394ku92UFNe2TEQF5+k/lA=" 1261 + }, 1262 + { 1263 + "pname": "xunit", 1264 + "version": "2.4.2", 1265 + "hash": "sha256-tePXTtlRgTAhfnUzc13Y9MwowU/cKttl1qlzHLqhWS0=" 1266 + }, 1267 + { 1268 + "pname": "xunit.abstractions", 1269 + "version": "2.0.3", 1270 + "hash": "sha256-0D1y/C34iARI96gb3bAOG8tcGPMjx+fMabTPpydGlAM=" 1271 + }, 1272 + { 1273 + "pname": "xunit.analyzers", 1274 + "version": "1.0.0", 1275 + "hash": "sha256-hZEaTaJN0bWw9q8tha5RziGlZ/lkDrj2S+QLQxgRjlw=" 1276 + }, 1277 + { 1278 + "pname": "xunit.assert", 1279 + "version": "2.3.0", 1280 + "hash": "sha256-lN+NiUEQoHWmoamUjvsNt2PVhHXYeHJHjHRk1BTs6R8=" 1281 + }, 1282 + { 1283 + "pname": "xunit.assert", 1284 + "version": "2.4.2", 1285 + "hash": "sha256-wMyRXZzDn9Se4c0Pzzn0U4YuKRiUtu6o4MoPjJPPzUU=" 1286 + }, 1287 + { 1288 + "pname": "xunit.core", 1289 + "version": "2.4.2", 1290 + "hash": "sha256-jRFoW8LSuqDINuJlno3xT3VfdkHFVEbDKctU/mISIMc=" 1291 + }, 1292 + { 1293 + "pname": "xunit.extensibility.core", 1294 + "version": "2.4.2", 1295 + "hash": "sha256-wlTMUOQg5NaAPEsWkNSr8QSPbbCNSicpFajp1rowCsA=" 1296 + }, 1297 + { 1298 + "pname": "xunit.extensibility.execution", 1299 + "version": "2.4.2", 1300 + "hash": "sha256-l5Q60IBYWE5tYJCdFEEQnO5rIlXcNEM5S4Ut8vFnL2U=" 1301 + }, 1302 + { 1303 + "pname": "xunit.runner.visualstudio", 1304 + "version": "2.4.5", 1305 + "hash": "sha256-Gv7U1VPKfNb7IOWrwUGUKAeurKtE3AtQmegDFNkYHHk=" 1306 + } 1307 + ]
+398
pkgs/development/tools/godot/common.nix
··· 1 + { 2 + alsa-lib, 3 + autoPatchelfHook, 4 + buildPackages, 5 + dbus, 6 + dotnetCorePackages, 7 + fetchFromGitHub, 8 + fontconfig, 9 + hash, 10 + installShellFiles, 11 + lib, 12 + libdecor, 13 + libGL, 14 + libpulseaudio, 15 + libX11, 16 + libXcursor, 17 + libXext, 18 + libXfixes, 19 + libXi, 20 + libXinerama, 21 + libxkbcommon, 22 + libXrandr, 23 + libXrender, 24 + makeWrapper, 25 + pkg-config, 26 + runCommand, 27 + scons, 28 + speechd-minimal, 29 + stdenv, 30 + stdenvNoCC, 31 + testers, 32 + udev, 33 + version, 34 + vulkan-loader, 35 + wayland, 36 + wayland-scanner, 37 + withDbus ? true, 38 + withFontconfig ? true, 39 + withMono ? false, 40 + nugetDeps ? null, 41 + withPlatform ? "linuxbsd", 42 + withPrecision ? "single", 43 + withPulseaudio ? true, 44 + withSpeechd ? true, 45 + withTarget ? "editor", 46 + withTouch ? true, 47 + withUdev ? true, 48 + # Wayland in Godot requires X11 until upstream fix is merged 49 + # https://github.com/godotengine/godot/pull/73504 50 + withWayland ? true, 51 + withX11 ? true, 52 + }: 53 + assert lib.asserts.assertOneOf "withPrecision" withPrecision [ 54 + "single" 55 + "double" 56 + ]; 57 + let 58 + mkSconsFlagsFromAttrSet = lib.mapAttrsToList ( 59 + k: v: if builtins.isString v then "${k}=${v}" else "${k}=${builtins.toJSON v}" 60 + ); 61 + 62 + suffix = if withMono then "-mono" else ""; 63 + 64 + arch = stdenv.hostPlatform.linuxArch; 65 + 66 + dotnet-sdk = dotnetCorePackages.sdk_8_0-source; 67 + 68 + attrs = finalAttrs: rec { 69 + pname = "godot4${suffix}"; 70 + inherit version; 71 + 72 + src = fetchFromGitHub { 73 + owner = "godotengine"; 74 + repo = "godot"; 75 + tag = version; 76 + inherit hash; 77 + # Required for the commit hash to be included in the version number. 78 + # 79 + # `methods.py` reads the commit hash from `.git/HEAD` and manually follows 80 + # refs. 81 + # 82 + # See also 'hash' in 83 + # https://docs.godotengine.org/en/stable/classes/class_engine.html#class-engine-method-get-version-info 84 + leaveDotGit = true; 85 + # Only keep HEAD, because leaveDotGit is non-deterministic: 86 + # https://github.com/NixOS/nixpkgs/issues/8567 87 + postFetch = '' 88 + hash=$(git -C "$out" rev-parse HEAD) 89 + rm -r "$out"/.git 90 + mkdir "$out"/.git 91 + echo "$hash" > "$out"/.git/HEAD 92 + ''; 93 + }; 94 + 95 + outputs = [ 96 + "out" 97 + "man" 98 + ]; 99 + separateDebugInfo = true; 100 + 101 + # Set the build name which is part of the version. In official downloads, this 102 + # is set to 'official'. When not specified explicitly, it is set to 103 + # 'custom_build'. Other platforms packaging Godot (Gentoo, Arch, Flatpack 104 + # etc.) usually set this to their name as well. 105 + # 106 + # See also 'methods.py' in the Godot repo and 'build' in 107 + # https://docs.godotengine.org/en/stable/classes/class_engine.html#class-engine-method-get-version-info 108 + BUILD_NAME = "nixpkgs"; 109 + 110 + preConfigure = lib.optionalString withMono '' 111 + # TODO: avoid pulling in dependencies of windows-only project 112 + dotnet sln modules/mono/editor/GodotTools/GodotTools.sln \ 113 + remove modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/GodotTools.OpenVisualStudio.csproj 114 + 115 + dotnet restore modules/mono/glue/GodotSharp/GodotSharp.sln 116 + dotnet restore modules/mono/editor/GodotTools/GodotTools.sln 117 + dotnet restore modules/mono/editor/Godot.NET.Sdk/Godot.NET.Sdk.sln 118 + ''; 119 + 120 + # From: https://github.com/godotengine/godot/blob/4.2.2-stable/SConstruct 121 + sconsFlags = mkSconsFlagsFromAttrSet { 122 + # Options from 'SConstruct' 123 + precision = withPrecision; # Floating-point precision level 124 + production = true; # Set defaults to build Godot for use in production 125 + platform = withPlatform; 126 + target = withTarget; 127 + debug_symbols = true; 128 + 129 + # Options from 'platform/linuxbsd/detect.py' 130 + dbus = withDbus; # Use D-Bus to handle screensaver and portal desktop settings 131 + fontconfig = withFontconfig; # Use fontconfig for system fonts support 132 + pulseaudio = withPulseaudio; # Use PulseAudio 133 + speechd = withSpeechd; # Use Speech Dispatcher for Text-to-Speech support 134 + touch = withTouch; # Enable touch events 135 + udev = withUdev; # Use udev for gamepad connection callbacks 136 + wayland = withWayland; # Compile with Wayland support 137 + x11 = withX11; # Compile with X11 support 138 + 139 + module_mono_enabled = withMono; 140 + 141 + linkflags = "-Wl,--build-id"; 142 + }; 143 + 144 + enableParallelBuilding = true; 145 + 146 + strictDeps = true; 147 + 148 + depsBuildBuild = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ 149 + buildPackages.stdenv.cc 150 + pkg-config 151 + ]; 152 + 153 + buildInputs = lib.optionals withMono dotnet-sdk.packages; 154 + 155 + nativeBuildInputs = 156 + [ 157 + autoPatchelfHook 158 + installShellFiles 159 + pkg-config 160 + scons 161 + ] 162 + ++ lib.optionals withWayland [ wayland-scanner ] 163 + ++ lib.optionals withMono [ 164 + dotnet-sdk 165 + makeWrapper 166 + ]; 167 + 168 + postBuild = lib.optionalString withMono '' 169 + echo "Generating Glue" 170 + if [[ ${withPrecision} == *double* ]]; then 171 + bin/godot.${withPlatform}.${withTarget}.${withPrecision}.${arch}.mono --headless --generate-mono-glue modules/mono/glue 172 + else 173 + bin/godot.${withPlatform}.${withTarget}.${arch}.mono --headless --generate-mono-glue modules/mono/glue 174 + fi 175 + echo "Building C#/.NET Assemblies" 176 + python modules/mono/build_scripts/build_assemblies.py --godot-output-dir bin --precision=${withPrecision} 177 + ''; 178 + 179 + runtimeDependencies = 180 + [ 181 + alsa-lib 182 + libGL 183 + vulkan-loader 184 + ] 185 + ++ lib.optionals withX11 [ 186 + libX11 187 + libXcursor 188 + libXext 189 + libXfixes 190 + libXi 191 + libXinerama 192 + libxkbcommon 193 + libXrandr 194 + libXrender 195 + ] 196 + ++ lib.optionals withWayland [ 197 + libdecor 198 + wayland 199 + ] 200 + ++ lib.optionals withDbus [ 201 + dbus 202 + dbus.lib 203 + ] 204 + ++ lib.optionals withFontconfig [ 205 + fontconfig 206 + fontconfig.lib 207 + ] 208 + ++ lib.optionals withPulseaudio [ libpulseaudio ] 209 + ++ lib.optionals withSpeechd [ speechd-minimal ] 210 + ++ lib.optionals withUdev [ udev ]; 211 + 212 + installPhase = 213 + '' 214 + runHook preInstall 215 + 216 + mkdir -p "$out/bin" 217 + cp bin/godot.* $out/bin/godot4${suffix} 218 + 219 + installManPage misc/dist/linux/godot.6 220 + 221 + mkdir -p "$out"/share/{applications,icons/hicolor/scalable/apps} 222 + cp misc/dist/linux/org.godotengine.Godot.desktop "$out/share/applications/org.godotengine.Godot4${suffix}.desktop" 223 + substituteInPlace "$out/share/applications/org.godotengine.Godot4${suffix}.desktop" \ 224 + --replace "Exec=godot" "Exec=$out/bin/godot4${suffix}" \ 225 + --replace "Godot Engine" "Godot Engine 4" 226 + cp icon.svg "$out/share/icons/hicolor/scalable/apps/godot.svg" 227 + cp icon.png "$out/share/icons/godot.png" 228 + '' 229 + + lib.optionalString withMono '' 230 + cp -r bin/GodotSharp/ $out/bin/ 231 + wrapProgram $out/bin/godot4${suffix} \ 232 + --set DOTNET_ROOT ${dotnet-sdk} \ 233 + --prefix PATH : "${ 234 + lib.makeBinPath [ 235 + dotnet-sdk 236 + ] 237 + }" 238 + '' 239 + + '' 240 + ln -s godot4${suffix} "$out"/bin/godot 241 + runHook post Install 242 + ''; 243 + 244 + passthru = { 245 + tests = 246 + let 247 + pkg = finalAttrs.finalPackage; 248 + dottedVersion = lib.replaceStrings [ "-" ] [ "." ] version; 249 + exportedProject = stdenvNoCC.mkDerivation { 250 + name = "${pkg.name}-project-export"; 251 + 252 + nativeBuildInputs = [ 253 + pkg 254 + autoPatchelfHook 255 + ]; 256 + 257 + runtimeDependencies = map lib.getLib [ 258 + alsa-lib 259 + libGL 260 + libpulseaudio 261 + libX11 262 + libXcursor 263 + libXext 264 + libXi 265 + libXrandr 266 + udev 267 + vulkan-loader 268 + ]; 269 + 270 + unpackPhase = '' 271 + runHook preUnpack 272 + 273 + mkdir test 274 + cd test 275 + touch project.godot 276 + 277 + cat >create-scene.gd <<'EOF' 278 + extends SceneTree 279 + 280 + func _initialize(): 281 + var node = Node.new() 282 + var script = ResourceLoader.load("res://test.gd") 283 + print(script) 284 + node.set_script(script) 285 + var scene = PackedScene.new() 286 + var scenePath = "res://test.tscn" 287 + scene.pack(node) 288 + var x = ResourceSaver.save(scene, scenePath) 289 + ProjectSettings["application/run/main_scene"] = scenePath 290 + ProjectSettings.save() 291 + node.free() 292 + quit() 293 + EOF 294 + 295 + cat >test.gd <<'EOF' 296 + extends Node 297 + func _ready(): 298 + print("Hello, World!") 299 + get_tree().quit() 300 + EOF 301 + 302 + cat >export_presets.cfg <<'EOF' 303 + [preset.0] 304 + name="build" 305 + platform="Linux" 306 + runnable=true 307 + export_filter="all_resources" 308 + include_filter="" 309 + exclude_filter="" 310 + [preset.0.options] 311 + __empty="" 312 + EOF 313 + 314 + runHook postUnpack 315 + ''; 316 + 317 + buildPhase = '' 318 + runHook preBuild 319 + 320 + export HOME=$(mktemp -d) 321 + mkdir -p $HOME/.local/share/godot/export_templates 322 + ln -s "${pkg.export-templates-bin}" "$HOME/.local/share/godot/export_templates/${dottedVersion}" 323 + 324 + godot --headless -s create-scene.gd 325 + 326 + runHook postBuild 327 + ''; 328 + 329 + installPhase = '' 330 + runHook preInstall 331 + 332 + mkdir -p "$out"/bin 333 + godot --headless --export-release build "$out"/bin/test 334 + 335 + runHook postInstall 336 + ''; 337 + }; 338 + in 339 + { 340 + version = testers.testVersion { 341 + package = pkg; 342 + version = dottedVersion; 343 + }; 344 + 345 + project-runs = runCommand "${pkg.name}-project-runs" { } '' 346 + ( 347 + set -eo pipefail 348 + HOME=$(mktemp -d) 349 + "${exportedProject}"/bin/test --headless | tail -n1 | ( 350 + read output 351 + if [[ "$output" != "Hello, World!" ]]; then 352 + echo "unexpected output: $output" >&2 353 + exit 1 354 + fi 355 + ) 356 + touch "$out" 357 + ) 358 + ''; 359 + }; 360 + }; 361 + 362 + requiredSystemFeatures = [ 363 + # fixes: No space left on device 364 + "big-parallel" 365 + ]; 366 + 367 + meta = { 368 + changelog = "https://github.com/godotengine/godot/releases/tag/${version}"; 369 + description = "Free and Open Source 2D and 3D game engine"; 370 + homepage = "https://godotengine.org"; 371 + license = lib.licenses.mit; 372 + platforms = [ 373 + "x86_64-linux" 374 + "aarch64-linux" 375 + ] ++ lib.optional (!withMono) "i686-linux"; 376 + maintainers = with lib.maintainers; [ 377 + shiryel 378 + corngood 379 + ]; 380 + mainProgram = "godot4${suffix}"; 381 + }; 382 + }; 383 + 384 + in 385 + stdenv.mkDerivation ( 386 + if withMono then 387 + dotnetCorePackages.addNuGetDeps { 388 + inherit nugetDeps; 389 + overrideFetchAttrs = old: rec { 390 + runtimeIds = map (system: dotnetCorePackages.systemToDotnetRid system) old.meta.platforms; 391 + buildInputs = 392 + old.buildInputs 393 + ++ lib.concatLists (lib.attrValues (lib.getAttrs runtimeIds dotnet-sdk.targetPackages)); 394 + }; 395 + } attrs 396 + else 397 + attrs 398 + )
+71
pkgs/development/tools/godot/default.nix
··· 1 + { 2 + callPackage, 3 + nix-update-script, 4 + fetchzip, 5 + }: 6 + let 7 + mkGodotPackages = 8 + versionPrefix: 9 + let 10 + attrs = import ./${versionPrefix}; 11 + inherit (attrs) 12 + version 13 + hash 14 + exportTemplatesHash 15 + nugetDeps 16 + ; 17 + in 18 + rec { 19 + godot = (callPackage ./common.nix { inherit version hash nugetDeps; }).overrideAttrs (old: { 20 + passthru = old.passthru or { } // { 21 + inherit export-templates-bin; 22 + updateScript = [ 23 + ./update.sh 24 + versionPrefix 25 + (builtins.unsafeGetAttrPos "version" attrs).file 26 + ]; 27 + }; 28 + }); 29 + 30 + godot-mono = godot.override { 31 + withMono = true; 32 + }; 33 + 34 + export-templates-bin = ( 35 + callPackage ./export-templates-bin.nix { 36 + inherit version godot; 37 + hash = exportTemplatesHash; 38 + } 39 + ); 40 + }; 41 + 42 + godotPackages_4_3 = mkGodotPackages "4.3"; 43 + godotPackages_4_4 = mkGodotPackages "4.4"; 44 + godotPackages_4 = godotPackages_4_4; 45 + godotPackages = godotPackages_4; 46 + in 47 + rec { 48 + godot3 = callPackage ./3 { }; 49 + godot3-export-templates = callPackage ./3/export-templates.nix { }; 50 + godot3-headless = callPackage ./3/headless.nix { }; 51 + godot3-debug-server = callPackage ./3/debug-server.nix { }; 52 + godot3-server = callPackage ./3/server.nix { }; 53 + godot3-mono = callPackage ./3/mono { }; 54 + godot3-mono-export-templates = callPackage ./3/mono/export-templates.nix { }; 55 + godot3-mono-headless = callPackage ./3/mono/headless.nix { }; 56 + godot3-mono-debug-server = callPackage ./3/mono/debug-server.nix { }; 57 + godot3-mono-server = callPackage ./3/mono/server.nix { }; 58 + 59 + godot_4_3 = godotPackages_4_3.godot; 60 + godot_4_3-mono = godotPackages_4_3.godot-mono; 61 + godot_4_3-export-templates = godotPackages_4_3.export-templates-bin; 62 + godot_4_4 = godotPackages_4_4.godot; 63 + godot_4_4-mono = godotPackages_4_4.godot-mono; 64 + godot_4_4-export-templates = godotPackages_4_4.export-templates-bin; 65 + godot_4 = godotPackages_4.godot; 66 + godot_4-mono = godotPackages_4.godot-mono; 67 + godot_4-export-templates = godotPackages_4.export-templates-bin; 68 + godot = godotPackages.godot; 69 + godot-mono = godotPackages.godot-mono; 70 + godot-export-templates = godotPackages.export-templates-bin; 71 + }
+29
pkgs/development/tools/godot/export-templates-bin.nix
··· 1 + { 2 + fetchzip, 3 + godot, 4 + hash, 5 + lib, 6 + version, 7 + }: 8 + # Export templates is necessary for setting up Godot engine, it's used when exporting projects. 9 + # Godot applications/games packages needs to reference export templates. 10 + # Export templates version should be kept in sync with Godot version. 11 + # https://docs.godotengine.org/en/stable/tutorials/export/exporting_projects.html#export-templates 12 + fetchzip { 13 + pname = "godot-export-templates"; 14 + version = version; 15 + extension = "zip"; 16 + url = "https://github.com/godotengine/godot/releases/download/${version}/Godot_v${version}_export_templates.tpz"; 17 + inherit hash; 18 + 19 + meta = { 20 + inherit (godot.meta) 21 + changelog 22 + description 23 + homepage 24 + license 25 + maintainers 26 + ; 27 + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 28 + }; 29 + }
+17
pkgs/development/tools/godot/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -I nixpkgs=./. --pure -i bash -p bash nix nix-update git cacert common-updater-scripts --keep UPDATE_NIX_ATTR_PATH --keep UPDATE_NIX_OLD_VERSION 3 + set -euo pipefail 4 + 5 + versionPrefix=$1 6 + file=$2 7 + attr=$UPDATE_NIX_ATTR_PATH 8 + 9 + prev_version=$UPDATE_NIX_OLD_VERSION 10 + nix-update "$attr" \ 11 + --version-regex "($versionPrefix\\b.*-stable)" \ 12 + --override-filename "$2" 13 + [[ $(nix eval --raw -f. "$attr".version) != "$prev_version" ]] || exit 0 14 + 15 + "$(nix build --impure --expr "((import ./. {}).$attr.override { withMono = true; }).fetch-deps" --print-out-paths --no-link)" 16 + 17 + update-source-version "$attr" --ignore-same-version --source-key=export-templates-bin --file="$file"
+3 -3
pkgs/games/openttd/nml.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "openttd-nml"; 9 - version = "0.7.5"; 9 + version = "0.7.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "OpenTTD"; 13 13 repo = "nml"; 14 - rev = "refs/tags/${version}"; 15 - hash = "sha256-OobTyPD7FtYMhJL3BDFXaZCOO2iPn8kjEw2OEdqQbr8="; 14 + tag = version; 15 + hash = "sha256-jAvzfmv8iLs4jb/rzRswiAPHZpx20hjfbG/NY4HGcF0="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/games/pysolfc/default.nix
··· 12 12 13 13 python311Packages.buildPythonApplication rec { 14 14 pname = "pysolfc"; 15 - version = "3.1.0"; 15 + version = "3.2.0"; 16 16 17 17 src = fetchzip { 18 18 url = "mirror://sourceforge/pysolfc/PySolFC-${version}.tar.xz"; 19 - hash = "sha256-rz4m5KZyxMwi6e9qYDgLG7ANWmVb/Xpp2tljCax+3z8="; 19 + hash = "sha256-0Thvg9sNNXkF0GJ03A4qt3yobezVtBsGT4U4Nd44Ftg="; 20 20 }; 21 21 22 22 cardsets = stdenv.mkDerivation rec {
+2 -2
pkgs/servers/http/apache-modules/mod_python/default.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "mod_python"; 14 - version = "3.5.0.2"; 14 + version = "3.5.0.4"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "grisha"; 18 18 repo = "mod_python"; 19 19 tag = finalAttrs.version; 20 - hash = "sha256-++yHNKVe1u3w47DaB0zvYyuTrBcQdmuDm22areAeejs="; 20 + hash = "sha256-bZ0w61+0If70KD3UW24JllY6vD0vQX2C7FssYG1YLPI="; 21 21 }; 22 22 23 23 patches = [ ./install.patch ];
+11 -5
pkgs/tools/networking/vpn-slice/default.nix
··· 13 13 buildPythonApplication rec { 14 14 pname = "vpn-slice"; 15 15 version = "0.16.1"; 16 + pyproject = true; 16 17 17 18 src = fetchFromGitHub { 18 19 owner = "dlenski"; 19 - repo = pname; 20 + repo = "vpn-slice"; 20 21 rev = "v${version}"; 21 22 sha256 = "sha256-T6VULLNRLWO4OcAsuTmhty6H4EhinyxQSg0dfv2DUJs="; 22 23 }; ··· 24 25 postPatch = 25 26 lib.optionalString stdenv.hostPlatform.isDarwin '' 26 27 substituteInPlace vpn_slice/mac.py \ 27 - --replace "'/sbin/route'" "'${unixtools.route}/bin/route'" 28 + --replace-fail "'/sbin/route'" "'${unixtools.route}/bin/route'" 28 29 '' 29 30 + lib.optionalString stdenv.hostPlatform.isLinux '' 30 31 substituteInPlace vpn_slice/linux.py \ 31 - --replace "'/sbin/ip'" "'${iproute2}/bin/ip'" \ 32 - --replace "'/sbin/iptables'" "'${iptables}/bin/iptables'" 32 + --replace-fail "'/sbin/ip'" "'${iproute2}/bin/ip'" \ 33 + --replace-fail "'/sbin/iptables'" "'${iptables}/bin/iptables'" 33 34 ''; 34 35 35 - propagatedBuildInputs = with python3Packages; [ 36 + build-system = with python3Packages; [ 37 + setuptools 38 + ]; 39 + 40 + dependencies = with python3Packages; [ 41 + setuptools # can be removed with next package update, upstream no longer has a dependency on distutils 36 42 setproctitle 37 43 dnspython 38 44 ];
+3 -8
pkgs/tools/package-management/protontricks/default.nix
··· 19 19 20 20 buildPythonApplication rec { 21 21 pname = "protontricks"; 22 - version = "1.12.0"; 22 + version = "1.12.1"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "Matoking"; 26 26 repo = "protontricks"; 27 27 tag = version; 28 - hash = "sha256-dCb8mcwXoxD4abJjLEwk5tGp65XkvepmOX+Kc9Dl7fQ="; 28 + hash = "sha256-xNy7quksnZ6BnZk5Rz9kwwoC4xitmfnSe5Zj6gZO8S4="; 29 29 }; 30 30 31 31 patches = [ ··· 42 42 url = "https://github.com/Matoking/protontricks/commit/4198b7ea82369a91e3084d6e185f9b370f78eaec.patch"; 43 43 revert = true; 44 44 hash = "sha256-1U/LiAliKtk3ygbIBsmoavXN0RSykiiegtml+bO8CnI="; 45 - }) 46 - 47 - # Fix test_run_no_args test 48 - (fetchpatch2 { 49 - url = "https://github.com/Matoking/protontricks/commit/ff2381ad379a612e73f0d4604f1c9c3a012b3355.patch"; 50 - hash = "sha256-aiafLbiqS6TBBiQpfTYPVqhQs2OXYg/4yCtbuTv6Ug8="; 51 45 }) 52 46 ]; 53 47 ··· 87 81 meta = with lib; { 88 82 description = "Simple wrapper for running Winetricks commands for Proton-enabled games"; 89 83 homepage = "https://github.com/Matoking/protontricks"; 84 + changelog = "https://github.com/Matoking/protontricks/blob/${src.tag}/CHANGELOG.md"; 90 85 license = licenses.gpl3Only; 91 86 maintainers = with maintainers; [ kira-bruneau ]; 92 87 platforms = [
+4 -4
pkgs/tools/package-management/protontricks/steam-run.patch
··· 29 29 # for the duration of the Protontricks session. 30 30 # This is accomplished by launching a simple Windows batch script that will 31 31 diff --git a/src/protontricks/util.py b/src/protontricks/util.py 32 - index 9262cd0..00b2b2f 100644 32 + index 0c7de98..afea7e4 100644 33 33 --- a/src/protontricks/util.py 34 34 +++ b/src/protontricks/util.py 35 35 @@ -99,7 +99,7 @@ def get_host_library_paths(): ··· 42 42 ) 43 43 lines = result.stdout.decode("utf-8").split("\n") 44 44 diff --git a/tests/conftest.py b/tests/conftest.py 45 - index a516437..88bf804 100644 45 + index fdb44ed..4758799 100644 46 46 --- a/tests/conftest.py 47 47 +++ b/tests/conftest.py 48 - @@ -170,7 +170,7 @@ def steam_runtime_dir(steam_dir): 48 + @@ -175,7 +175,7 @@ def steam_runtime_dir(steam_dir): 49 49 """ 50 50 (steam_dir.parent / "root" / "ubuntu12_32" / "steam-runtime").mkdir(parents=True) 51 51 (steam_dir.parent / "root" / "ubuntu12_32" / "steam-runtime" / "run.sh").write_text( ··· 54 54 """if [ "$1" = "--print-steam-runtime-library-paths" ]; then\n""" 55 55 " echo 'fake_steam_runtime/lib:fake_steam_runtime/lib64'\n" 56 56 "fi" 57 - @@ -764,7 +764,7 @@ def xdg_user_dir_bin(home_dir): 57 + @@ -768,7 +768,7 @@ def xdg_user_dir_bin(home_dir): 58 58 # Only mock PICTURES and DOWNLOAD; mocking everything isn't necessary 59 59 # for the tests. 60 60 (home_dir / ".local" / "bin" / "xdg-user-dir").write_text(
+2 -2
pkgs/tools/system/rsyslog/default.nix
··· 62 62 63 63 stdenv.mkDerivation rec { 64 64 pname = "rsyslog"; 65 - version = "8.2412.0"; 65 + version = "8.2502.0"; 66 66 67 67 src = fetchurl { 68 68 url = "https://www.rsyslog.com/files/download/rsyslog/${pname}-${version}.tar.gz"; 69 - hash = "sha256-jN+loHfLpXa91rGEHMKEi3dOZjsuRKOVEruCAXQXSAI="; 69 + hash = "sha256-AvoZfSHVGfWiWpKN65OXzTh7pzgrm0SXgrox2PMRggY="; 70 70 }; 71 71 72 72 nativeBuildInputs = [
+32 -24
pkgs/top-level/all-packages.nix
··· 1105 1105 withNtfs = true; 1106 1106 }; 1107 1107 1108 + ventoy-full-gtk = ventoy-full.override { 1109 + defaultGuiType = "gtk3"; 1110 + }; 1111 + 1112 + ventoy-full-qt = ventoy-full.override { 1113 + defaultGuiType = "qt5"; 1114 + }; 1115 + 1108 1116 vprof = with python3Packages; toPythonApplication vprof; 1109 1117 1110 1118 vrc-get = callPackage ../tools/misc/vrc-get { }; ··· 3445 3453 3446 3454 gnutar = callPackage ../tools/archivers/gnutar { }; 3447 3455 3448 - godot3 = callPackage ../development/tools/godot/3 { }; 3449 - 3450 - godot3-export-templates = callPackage ../development/tools/godot/3/export-templates.nix { }; 3451 - 3452 - godot3-headless = callPackage ../development/tools/godot/3/headless.nix { }; 3453 - 3454 - godot3-debug-server = callPackage ../development/tools/godot/3/debug-server.nix { }; 3455 - 3456 - godot3-server = callPackage ../development/tools/godot/3/server.nix { }; 3457 - 3458 - godot3-mono = callPackage ../development/tools/godot/3/mono {}; 3459 - 3460 - godot3-mono-export-templates = callPackage ../development/tools/godot/3/mono/export-templates.nix { }; 3461 - 3462 - godot3-mono-headless = callPackage ../development/tools/godot/3/mono/headless.nix { }; 3463 - 3464 - godot3-mono-debug-server = callPackage ../development/tools/godot/3/mono/debug-server.nix { }; 3465 - 3466 - godot3-mono-server = callPackage ../development/tools/godot/3/mono/server.nix { }; 3456 + inherit (callPackage ../development/tools/godot { }) 3457 + godot3 3458 + godot3-export-templates 3459 + godot3-headless 3460 + godot3-debug-server 3461 + godot3-server 3462 + godot3-mono 3463 + godot3-mono-export-templates 3464 + godot3-mono-headless 3465 + godot3-mono-debug-server 3466 + godot3-mono-server 3467 + godot_4_3 3468 + godot_4_3-mono 3469 + godot_4_3-export-templates 3470 + godot_4_4 3471 + godot_4_4-mono 3472 + godot_4_4-export-templates 3473 + godot_4 3474 + godot_4-mono 3475 + godot_4-export-templates 3476 + godot 3477 + godot-mono 3478 + godot-export-templates 3479 + ; 3467 3480 3468 3481 goattracker = callPackage ../applications/audio/goattracker { }; 3469 3482 ··· 4677 4690 po4a = perlPackages.Po4a; 4678 4691 4679 4692 podman-compose = python3Packages.callPackage ../applications/virtualization/podman-compose { }; 4680 - 4681 - podman-desktop = callPackage ../applications/virtualization/podman-desktop { 4682 - inherit (darwin) autoSignDarwinBinariesHook; 4683 - electron = electron_34; 4684 - }; 4685 4693 4686 4694 polaris = callPackage ../servers/polaris { }; 4687 4695
+2
pkgs/top-level/python-packages.nix
··· 18578 18578 18579 18579 worldengine = callPackage ../development/python-modules/worldengine { }; 18580 18580 18581 + wrapcco = callPackage ../development/python-modules/wrapcco { }; 18582 + 18581 18583 wrapio = callPackage ../development/python-modules/wrapio { }; 18582 18584 18583 18585 wrapt = callPackage ../development/python-modules/wrapt { };