lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
c3cf9364 10d4474c

+3448 -1672
+19
maintainers/maintainer-list.nix
··· 4247 4247 githubId = 49398; 4248 4248 name = "Daniël de Kok"; 4249 4249 }; 4250 + daniel-fahey = { 4251 + name = "Daniel Fahey"; 4252 + email = "daniel.fahey+nixpkgs@pm.me"; 4253 + github = "daniel-fahey"; 4254 + githubId = 7294692; 4255 + }; 4250 4256 danielfullmer = { 4251 4257 email = "danielrf12@gmail.com"; 4252 4258 github = "danielfullmer"; ··· 7460 7466 github = "gvolpe"; 7461 7467 githubId = 443978; 7462 7468 name = "Gabriel Volpe"; 7469 + }; 7470 + gwg313 = { 7471 + email = "gwg313@pm.me"; 7472 + matrix = "@gwg313:matrix.org"; 7473 + github = "gwg313"; 7474 + githubId = 70684146; 7475 + name = "Glen Goodwin"; 7463 7476 }; 7464 7477 gytis-ivaskevicius = { 7465 7478 name = "Gytis Ivaskevicius"; ··· 14914 14927 github = "pcarrier"; 14915 14928 githubId = 8641; 14916 14929 name = "Pierre Carrier"; 14930 + }; 14931 + pcasaretto = { 14932 + email = "pcasaretto@gmail.com"; 14933 + github = "pcasaretto"; 14934 + githubId = 817039; 14935 + name = "Paulo Casaretto"; 14917 14936 }; 14918 14937 pedrohlc = { 14919 14938 email = "root@pedrohlc.com";
+2 -2
pkgs/applications/audio/ladspa-plugins/default.nix
··· 33 33 meta = with lib; { 34 34 homepage = "http://plugin.org.uk/"; 35 35 description = "LADSPA format audio plugins"; 36 - license = licenses.gpl2; 36 + license = licenses.gpl2Only; 37 37 maintainers = [ maintainers.magnetophon ]; 38 - platforms = platforms.linux; 38 + platforms = platforms.unix; 39 39 }; 40 40 }
+19 -43
pkgs/applications/graphics/digikam/default.nix pkgs/by-name/di/digikam/package.nix
··· 1 - { mkDerivation, config, lib, fetchpatch, fetchurl, cmake, doxygen, extra-cmake-modules, wrapGAppsHook 1 + { stdenv, config, lib, fetchurl, cmake, doxygen, extra-cmake-modules, wrapGAppsHook 2 2 3 3 # For `digitaglinktree` 4 4 , perl, sqlite 5 5 6 - , qtbase 7 - , qtxmlpatterns 8 - , qtsvg 9 - , qtwebengine 10 - , qtnetworkauth 11 - 12 - , akonadi-contacts 13 - , kcalendarcore 14 - , kconfigwidgets 15 - , kcoreaddons 16 - , kdoctools 17 - , kfilemetadata 18 - , knotifications 19 - , knotifyconfig 20 - , ktextwidgets 21 - , kwidgetsaddons 22 - , kxmlgui 6 + , libsForQt5 23 7 24 8 , bison 25 9 , boost ··· 32 16 , lcms2 33 17 , lensfun 34 18 , libgphoto2 35 - , libkipi 36 - , libksane 37 19 , liblqr1 38 - , libqtav 39 20 , libusb1 40 - , marble 21 + , libheif 41 22 , libGL 42 23 , libGLU 43 24 , opencv 44 25 , pcre 45 - , threadweaver 46 26 , x265 47 27 , jasper 48 28 ··· 51 31 , hugin 52 32 , gnumake 53 33 54 - , breeze-icons 55 - , oxygen 56 - 57 34 , cudaSupport ? config.cudaSupport 58 35 , cudaPackages ? {} 59 36 }: 60 37 61 - mkDerivation rec { 38 + stdenv.mkDerivation rec { 62 39 pname = "digikam"; 63 - version = "8.1.0"; 40 + version = "8.2.0"; 64 41 65 42 src = fetchurl { 66 43 url = "mirror://kde/stable/${pname}/${version}/digiKam-${version}.tar.xz"; 67 - hash = "sha256-BQPANORF/0JPGKZxXAp6eb5KXgyCs+vEYaIc7DdFpbM="; 44 + hash = "sha256-L3/LVZsSPtnsrlpa729FYO7l9JIG2dF0beyatsj7OL8="; 68 45 }; 69 46 70 - # Fix build against exiv2 0.28.1 71 - patches = [ 72 - (fetchpatch { 73 - url = "https://invent.kde.org/graphics/digikam/-/commit/f5ea91a7f6c1926815ec68f3e0176d6c15b83051.patch"; 74 - hash = "sha256-5g2NaKKNKVfgW3dTO/IP/H/nZ0YAIOmdPAumy3NEaNg="; 75 - }) 76 - ]; 47 + strictDeps = true; 48 + 49 + depsBuildBuild = [ cmake ]; 77 50 78 51 nativeBuildInputs = [ 79 52 cmake 80 53 doxygen 81 54 extra-cmake-modules 82 - kdoctools 55 + libsForQt5.kdoctools 56 + libsForQt5.wrapQtAppsHook 83 57 wrapGAppsHook 84 58 ] ++ lib.optionals cudaSupport (with cudaPackages; [ 85 59 cuda_nvcc ··· 97 71 lcms2 98 72 lensfun 99 73 libgphoto2 100 - libkipi 101 - libksane 74 + libheif 102 75 liblqr1 103 - libqtav 104 76 libusb1 105 77 libGL 106 78 libGLU ··· 108 80 pcre 109 81 x265 110 82 jasper 83 + ] ++ (with libsForQt5; [ 84 + libkipi 85 + libksane 86 + libqtav 111 87 112 88 qtbase 113 89 qtxmlpatterns ··· 130 106 marble 131 107 oxygen 132 108 threadweaver 133 - ] ++ lib.optionals cudaSupport (with cudaPackages; [ 109 + ]) ++ lib.optionals cudaSupport (with cudaPackages; [ 134 110 cuda_cudart 135 111 ]); 136 112 ··· 140 116 "-DENABLE_MEDIAPLAYER=1" 141 117 "-DENABLE_QWEBENGINE=on" 142 118 "-DENABLE_APPSTYLES=on" 143 - "-DCMAKE_CXX_FLAGS=-I${libksane}/include/KF5" # fix `#include <ksane_version.h>` 119 + "-DCMAKE_CXX_FLAGS=-I${libsForQt5.libksane}/include/KF5" # fix `#include <ksane_version.h>` 144 120 ]; 145 121 146 122 dontWrapGApps = true; ··· 148 124 preFixup = '' 149 125 qtWrapperArgs+=("''${gappsWrapperArgs[@]}") 150 126 qtWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ gnumake hugin enblend-enfuse ]}) 151 - qtWrapperArgs+=(--suffix DK_PLUGIN_PATH : ${placeholder "out"}/${qtbase.qtPluginPrefix}/${pname}) 127 + qtWrapperArgs+=(--suffix DK_PLUGIN_PATH : ${placeholder "out"}/${libsForQt5.qtbase.qtPluginPrefix}/${pname}) 152 128 substituteInPlace $out/bin/digitaglinktree \ 153 129 --replace "/usr/bin/perl" "${perl}/bin/perl" \ 154 130 --replace "/usr/bin/sqlite3" "${sqlite}/bin/sqlite3"
+2 -2
pkgs/applications/misc/revanced-cli/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "revanced-cli"; 5 - version = "4.4.0"; 5 + version = "4.4.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/revanced/revanced-cli/releases/download/v${version}/revanced-cli-${version}-all.jar"; 9 - hash = "sha256-ydP9iPClWNKlbBhsNC1bzqfJYRyit1WsxIgwbQQbgi8="; 9 + hash = "sha256-8uhKbEA3H8GY4ydefkLXAqCZdDIZANs3gZQGYyCUdOM="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 94 94 95 95 stdenv.mkDerivation rec { 96 96 pname = "brave"; 97 - version = "1.63.165"; 97 + version = "1.63.169"; 98 98 99 99 src = fetchurl { 100 100 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 101 - hash = "sha256-UyzOV6sUv7WdwN31TIg35HGchrUSXnvzk3Aba/d8dJc="; 101 + hash = "sha256-K8zbsxwKcYuhW7m7ijrAOeHHpC2AhM4Kr2M7SwGlV70="; 102 102 }; 103 103 104 104 dontConfigure = true;
+3 -3
pkgs/applications/networking/cluster/cmctl/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "cmctl"; 11 - version = "1.14.3"; 11 + version = "1.14.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "cert-manager"; 15 15 repo = "cert-manager"; 16 16 rev = "v${version}"; 17 - hash = "sha256-CPHSWGM8zq+Sg0tqdm9kmIyBFpVf1ot40Ud7Mpe1sNI="; 17 + hash = "sha256-iUXN+8ueCxGsFnwhC2WjrQQSXV7TGUR80xaKqjxcC6o="; 18 18 }; 19 19 20 20 sourceRoot = "${src.name}/cmd/ctl"; 21 21 22 - vendorHash = "sha256-CBX/U9v2ubmPveXUeWbogHDyWVAtU0pyOWAlnRsMs4c="; 22 + vendorHash = "sha256-ViKsqqM6l/tQSGgj8Yt2L57x+eE1Pd3xCVPuWpIjWOQ="; 23 23 24 24 ldflags = [ 25 25 "-s"
+6 -6
pkgs/applications/networking/cluster/k3s/1_28/versions.nix
··· 1 1 { 2 - k3sVersion = "1.28.6+k3s2"; 3 - k3sCommit = "c9f49a3b06cd7ebe793f8cc1dcd0293168e743d9"; 4 - k3sRepoSha256 = "0vz5976q58v9x6g1qz6kz3xksgf8gm1f727ccckmpbyxbhw75zsa"; 5 - k3sVendorHash = "sha256-HG4x3N/F5qCFpLxGrUWPkBHHqY7WBRDWN7DNyAcJwyI="; 2 + k3sVersion = "1.28.7+k3s1"; 3 + k3sCommit = "051b14b248655896fdfd7ba6c93db6182cde7431"; 4 + k3sRepoSha256 = "1136h9xwg1p26lh3m63a4c55qsahla0d0xvlr09qqbhqiyv7fn0b"; 5 + k3sVendorHash = "sha256-FzalTtDleFIN12lvn0k7+nWchr6y/Ztcxs0bs2E4UO0="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 k3sRootVersion = "0.12.2"; 8 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k"; 9 - k3sCNIVersion = "1.3.0-k3s1"; 10 - k3sCNISha256 = "0zma9g4wvdnhs9igs03xlx15bk2nq56j73zns9xgqmfiixd9c9av"; 9 + k3sCNIVersion = "1.4.0-k3s2"; 10 + k3sCNISha256 = "17dg6jgjx18nrlyfmkv14dhzxsljz4774zgwz5dchxcf38bvarqa"; 11 11 containerdVersion = "1.7.11-k3s2"; 12 12 containerdSha256 = "0279sil02wz7310xhrgmdbc0r2qibj9lafy0i9k24jdrh74icmib"; 13 13 criCtlVersion = "1.26.0-rc.0-k3s1";
+6 -6
pkgs/applications/networking/cluster/k3s/1_29/versions.nix
··· 1 1 { 2 - k3sVersion = "1.29.1+k3s2"; 3 - k3sCommit = "57482a1c1bb9c67b5f893418a114edca1004258e"; 4 - k3sRepoSha256 = "0pvab3dd6dzgk1zgra4jmdwba5b8xssfjr3mihwq1h0c5bxf1cza"; 5 - k3sVendorHash = "sha256-EkRbdUoYpK7M+Wbc2Cf37bOwdwPB6/xLxULO7Bkpt5c="; 2 + k3sVersion = "1.29.2+k3s1"; 3 + k3sCommit = "86f102134ed6b1669badd3bfb6420f73e8f015d0"; 4 + k3sRepoSha256 = "0gd35ficik92x4svcg4mlw1v6vms7sfw1asmdahh16li4j27wdz5"; 5 + k3sVendorHash = "sha256-KG795CA3l+iCdJlYMNTQLmv3YqmtM2juacbsmH7B//M="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 k3sRootVersion = "0.12.2"; 8 8 k3sRootSha256 = "1gjynvr350qni5mskgm7pcc7alss4gms4jmkiv453vs8mmma9c9k"; 9 - k3sCNIVersion = "1.3.0-k3s1"; 10 - k3sCNISha256 = "0zma9g4wvdnhs9igs03xlx15bk2nq56j73zns9xgqmfiixd9c9av"; 9 + k3sCNIVersion = "1.4.0-k3s2"; 10 + k3sCNISha256 = "17dg6jgjx18nrlyfmkv14dhzxsljz4774zgwz5dchxcf38bvarqa"; 11 11 containerdVersion = "1.7.11-k3s2"; 12 12 containerdSha256 = "0279sil02wz7310xhrgmdbc0r2qibj9lafy0i9k24jdrh74icmib"; 13 13 criCtlVersion = "1.29.0-k3s1";
-74
pkgs/applications/networking/instant-messengers/ricochet/default.nix
··· 1 - { mkDerivation 2 - , lib 3 - , fetchFromGitHub 4 - , pkg-config 5 - , makeDesktopItem 6 - , qtbase 7 - , qttools 8 - , qtmultimedia 9 - , qtquickcontrols 10 - , openssl 11 - , protobuf 12 - , qmake 13 - }: 14 - 15 - mkDerivation rec { 16 - pname = "ricochet"; 17 - version = "1.1.4"; 18 - 19 - src = fetchFromGitHub { 20 - owner = "ricochet-im"; 21 - repo = "ricochet"; 22 - rev = "v${version}"; 23 - sha256 = "sha256-CGVTHa0Hqj90WvB6ZbA156DVgzv/R7blsU550y2Ai9c="; 24 - }; 25 - 26 - desktopItem = makeDesktopItem { 27 - name = "ricochet"; 28 - exec = "ricochet"; 29 - icon = "ricochet"; 30 - desktopName = "Ricochet"; 31 - genericName = "Ricochet"; 32 - comment = meta.description; 33 - categories = [ "Office" "Email" ]; 34 - }; 35 - 36 - buildInputs = [ 37 - qtbase 38 - qttools 39 - qtmultimedia 40 - qtquickcontrols 41 - openssl 42 - protobuf 43 - ]; 44 - 45 - nativeBuildInputs = [ pkg-config qmake ]; 46 - 47 - preConfigure = '' 48 - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags openssl)" 49 - ''; 50 - 51 - qmakeFlags = [ "DEFINES+=RICOCHET_NO_PORTABLE" ]; 52 - 53 - installPhase = '' 54 - mkdir -p $out/bin 55 - cp ricochet $out/bin 56 - 57 - mkdir -p $out/share/applications 58 - cp $desktopItem/share/applications"/"* $out/share/applications 59 - 60 - mkdir -p $out/share/pixmaps 61 - cp icons/ricochet.png $out/share/pixmaps/ricochet.png 62 - ''; 63 - 64 - # RCC: Error in 'translation/embedded.qrc': Cannot find file 'ricochet_en.qm' 65 - enableParallelBuilding = false; 66 - 67 - meta = with lib; { 68 - description = "Anonymous peer-to-peer instant messaging"; 69 - homepage = "https://ricochet.im"; 70 - license = licenses.bsd3; 71 - maintainers = [ maintainers.codsl maintainers.jgillich maintainers.np ]; 72 - platforms = platforms.linux; 73 - }; 74 - }
+3 -3
pkgs/applications/networking/netmaker/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "netmaker"; 13 - version = "0.21.2"; 13 + version = "0.23.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "gravitl"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-0KyBRIMXGqg4MdTyN3Kw1rVbZ7ULlfW6M9DSfAUQF8A="; 19 + hash = "sha256-M2DY+C0g8G+DjicMeT3Ojn4GzG7vaE1OHKSy7O6T1Kk="; 20 20 }; 21 21 22 - vendorHash = "sha256-B9r+p9kL/8h5qGmJ2WChnU3qKFf9z76YFqn6M2dXsDg="; 22 + vendorHash = "sha256-SUu0OvHCmlssH9HbAaMbiG0gF/ezxgf1n0HBiB/2PTs="; 23 23 24 24 inherit subPackages; 25 25
+17 -8
pkgs/applications/video/shotcut/default.nix
··· 16 16 , qtmultimedia 17 17 , qtcharts 18 18 , cmake 19 + , Cocoa 19 20 , gitUpdater 20 21 }: 21 - stdenv.mkDerivation rec { 22 + stdenv.mkDerivation (finalAttrs: { 22 23 pname = "shotcut"; 23 - version = "24.02.19"; 24 + version = "24.02.29"; 24 25 25 26 src = fetchFromGitHub { 26 27 owner = "mltframework"; 27 28 repo = "shotcut"; 28 - rev = "v${version}"; 29 - hash = "sha256-fjm2gqbuLKj6YyAZGgbfWUd+JOM9/Fhvpfz0E+TaqY0="; 29 + rev = "v${finalAttrs.version}"; 30 + hash = "sha256-PHpVquqC0MT7WNoWcdB9WTz4ZiSK4/f4oD5PH1gWBnw="; 30 31 }; 31 32 32 33 nativeBuildInputs = [ pkg-config cmake wrapQtAppsHook ]; ··· 41 42 qttools 42 43 qtmultimedia 43 44 qtcharts 45 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 46 + Cocoa 44 47 ]; 45 48 46 49 env.NIX_CFLAGS_COMPILE = "-DSHOTCUT_NOUPGRADE"; 47 50 cmakeFlags = [ 48 - "-DSHOTCUT_VERSION=${version}" 51 + "-DSHOTCUT_VERSION=${finalAttrs.version}" 49 52 ]; 50 53 51 54 patches = [ ··· 55 58 qtWrapperArgs = [ 56 59 "--set FREI0R_PATH ${frei0r}/lib/frei0r-1" 57 60 "--set LADSPA_PATH ${ladspaPlugins}/lib/ladspa" 58 - "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [jack1 SDL2]}" 61 + "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([SDL2] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [jack1])}" 59 62 ]; 63 + 64 + postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 65 + mkdir $out/Applications $out/bin 66 + mv $out/Shotcut.app $out/Applications/Shotcut.app 67 + ln -s $out/Applications/Shotcut.app/Contents/MacOS/Shotcut $out/bin/shotcut 68 + ''; 60 69 61 70 passthru.updateScript = gitUpdater { 62 71 rev-prefix = "v"; ··· 76 85 homepage = "https://shotcut.org"; 77 86 license = licenses.gpl3Plus; 78 87 maintainers = with maintainers; [ goibhniu woffs peti ]; 79 - platforms = platforms.linux; 88 + platforms = platforms.unix; 80 89 mainProgram = "shotcut"; 81 90 }; 82 - } 91 + })
+833 -576
pkgs/by-name/co/cosmic-applibrary/Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "accesskit" 7 - version = "0.11.0" 8 - source = "git+https://github.com/wash2/accesskit.git?tag=winit-0.28#db6f2587f663eafd8f7888e8507baa3a092599b0" 7 + version = "0.12.2" 8 + source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#5f9b61c8264000d001499c902562422e13efa7a8" 9 9 10 10 [[package]] 11 11 name = "accesskit_consumer" 12 - version = "0.15.0" 13 - source = "git+https://github.com/wash2/accesskit.git?tag=winit-0.28#db6f2587f663eafd8f7888e8507baa3a092599b0" 12 + version = "0.17.0" 13 + source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#5f9b61c8264000d001499c902562422e13efa7a8" 14 14 dependencies = [ 15 15 "accesskit", 16 16 ] 17 17 18 18 [[package]] 19 19 name = "accesskit_unix" 20 - version = "0.4.0" 21 - source = "git+https://github.com/wash2/accesskit.git?tag=winit-0.28#db6f2587f663eafd8f7888e8507baa3a092599b0" 20 + version = "0.7.1" 21 + source = "git+https://github.com/wash2/accesskit.git?branch=winit-0.29#5f9b61c8264000d001499c902562422e13efa7a8" 22 22 dependencies = [ 23 23 "accesskit", 24 24 "accesskit_consumer", 25 - "async-channel 1.9.0", 25 + "async-channel", 26 + "async-executor", 27 + "async-task", 26 28 "atspi", 27 29 "futures-lite 1.13.0", 28 - "log", 30 + "futures-util", 31 + "once_cell", 29 32 "serde", 30 33 "zbus", 31 34 ] ··· 47 50 48 51 [[package]] 49 52 name = "ahash" 50 - version = "0.7.7" 51 - source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" 53 - dependencies = [ 54 - "getrandom", 55 - "once_cell", 56 - "version_check", 57 - ] 58 - 59 - [[package]] 60 - name = "ahash" 61 53 version = "0.8.7" 62 54 source = "registry+https://github.com/rust-lang/crates.io-index" 63 55 checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" ··· 106 98 107 99 [[package]] 108 100 name = "anstream" 109 - version = "0.6.5" 101 + version = "0.6.11" 110 102 source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6" 103 + checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" 112 104 dependencies = [ 113 105 "anstyle", 114 106 "anstyle-parse", ··· 120 112 121 113 [[package]] 122 114 name = "anstyle" 123 - version = "1.0.4" 115 + version = "1.0.6" 124 116 source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" 117 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 126 118 127 119 [[package]] 128 120 name = "anstyle-parse" ··· 208 200 209 201 [[package]] 210 202 name = "ashpd" 211 - version = "0.6.7" 203 + version = "0.6.8" 212 204 source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "2c018490e423efb6f032ef575f873ea57b61d44bec763cfe027b8e8852a027cf" 205 + checksum = "4ac22eda5891cc086690cb6fa10121c0390de0e3b04eb269f2d766b00d3f2d81" 214 206 dependencies = [ 215 207 "enumflags2", 216 208 "futures-channel", ··· 239 231 240 232 [[package]] 241 233 name = "async-channel" 242 - version = "1.9.0" 234 + version = "2.2.0" 243 235 source = "registry+https://github.com/rust-lang/crates.io-index" 244 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 236 + checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" 245 237 dependencies = [ 246 238 "concurrent-queue", 247 - "event-listener 2.5.3", 248 - "futures-core", 249 - ] 250 - 251 - [[package]] 252 - name = "async-channel" 253 - version = "2.1.1" 254 - source = "registry+https://github.com/rust-lang/crates.io-index" 255 - checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 256 - dependencies = [ 257 - "concurrent-queue", 258 - "event-listener 4.0.2", 259 - "event-listener-strategy", 239 + "event-listener 5.0.0", 240 + "event-listener-strategy 0.5.0", 260 241 "futures-core", 261 242 "pin-project-lite", 262 243 ] ··· 267 248 source = "registry+https://github.com/rust-lang/crates.io-index" 268 249 checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c" 269 250 dependencies = [ 270 - "async-lock 3.2.0", 251 + "async-lock 3.3.0", 271 252 "async-task", 272 253 "concurrent-queue", 273 254 "fastrand 2.0.1", 274 - "futures-lite 2.1.0", 255 + "futures-lite 2.2.0", 275 256 "slab", 276 257 ] 277 258 ··· 309 290 310 291 [[package]] 311 292 name = "async-io" 312 - version = "2.2.2" 293 + version = "2.3.1" 313 294 source = "registry+https://github.com/rust-lang/crates.io-index" 314 - checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7" 295 + checksum = "8f97ab0c5b00a7cdbe5a371b9a782ee7be1316095885c8a4ea1daf490eb0ef65" 315 296 dependencies = [ 316 - "async-lock 3.2.0", 297 + "async-lock 3.3.0", 317 298 "cfg-if", 318 299 "concurrent-queue", 319 300 "futures-io", 320 - "futures-lite 2.1.0", 301 + "futures-lite 2.2.0", 321 302 "parking", 322 - "polling 3.3.1", 323 - "rustix 0.38.28", 303 + "polling 3.4.0", 304 + "rustix 0.38.31", 324 305 "slab", 325 306 "tracing", 326 307 "windows-sys 0.52.0", ··· 337 318 338 319 [[package]] 339 320 name = "async-lock" 340 - version = "3.2.0" 321 + version = "3.3.0" 341 322 source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" 323 + checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 343 324 dependencies = [ 344 - "event-listener 4.0.2", 345 - "event-listener-strategy", 325 + "event-listener 4.0.3", 326 + "event-listener-strategy 0.4.0", 346 327 "pin-project-lite", 347 328 ] 348 329 ··· 359 340 "cfg-if", 360 341 "event-listener 3.1.0", 361 342 "futures-lite 1.13.0", 362 - "rustix 0.38.28", 343 + "rustix 0.38.31", 363 344 "windows-sys 0.48.0", 364 345 ] 365 346 ··· 371 352 dependencies = [ 372 353 "proc-macro2", 373 354 "quote", 374 - "syn 2.0.46", 355 + "syn 2.0.48", 375 356 ] 376 357 377 358 [[package]] ··· 380 361 source = "registry+https://github.com/rust-lang/crates.io-index" 381 362 checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" 382 363 dependencies = [ 383 - "async-io 2.2.2", 364 + "async-io 2.3.1", 384 365 "async-lock 2.8.0", 385 366 "atomic-waker", 386 367 "cfg-if", 387 368 "futures-core", 388 369 "futures-io", 389 - "rustix 0.38.28", 370 + "rustix 0.38.31", 390 371 "signal-hook-registry", 391 372 "slab", 392 373 "windows-sys 0.48.0", ··· 394 375 395 376 [[package]] 396 377 name = "async-task" 397 - version = "4.6.0" 378 + version = "4.7.0" 398 379 source = "registry+https://github.com/rust-lang/crates.io-index" 399 - checksum = "e1d90cd0b264dfdd8eb5bad0a2c217c1f88fa96a8573f40e7b12de23fb468f46" 380 + checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" 400 381 401 382 [[package]] 402 383 name = "async-trait" ··· 406 387 dependencies = [ 407 388 "proc-macro2", 408 389 "quote", 409 - "syn 2.0.46", 390 + "syn 2.0.48", 391 + ] 392 + 393 + [[package]] 394 + name = "atk-sys" 395 + version = "0.18.0" 396 + source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "251e0b7d90e33e0ba930891a505a9a35ece37b2dd37a14f3ffc306c13b980009" 398 + dependencies = [ 399 + "glib-sys", 400 + "gobject-sys", 401 + "libc", 402 + "system-deps", 410 403 ] 411 404 412 405 [[package]] ··· 420 413 version = "0.4.2" 421 414 source = "git+https://github.com/jackpot51/rust-atomicwrites#043ab4859d53ffd3d55334685303d8df39c9f768" 422 415 dependencies = [ 423 - "rustix 0.38.28", 416 + "rustix 0.38.31", 424 417 "tempfile", 425 418 "windows-sys 0.48.0", 426 419 ] 427 420 428 421 [[package]] 429 422 name = "atspi" 430 - version = "0.10.1" 423 + version = "0.19.0" 431 424 source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "674e7a3376837b2e7d12d34d58ac47073c491dc3bf6f71a7adaf687d4d817faa" 425 + checksum = "6059f350ab6f593ea00727b334265c4dfc7fd442ee32d264794bd9bdc68e87ca" 433 426 dependencies = [ 434 - "async-recursion", 435 - "async-trait", 436 - "atspi-macros", 427 + "atspi-common", 428 + "atspi-connection", 429 + "atspi-proxies", 430 + ] 431 + 432 + [[package]] 433 + name = "atspi-common" 434 + version = "0.3.0" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "92af95f966d2431f962bc632c2e68eda7777330158bf640c4af4249349b2cdf5" 437 + dependencies = [ 437 438 "enumflags2", 438 - "futures-lite 1.13.0", 439 439 "serde", 440 - "tracing", 440 + "static_assertions", 441 441 "zbus", 442 442 "zbus_names", 443 + "zvariant", 443 444 ] 444 445 445 446 [[package]] 446 - name = "atspi-macros" 447 - version = "0.2.0" 447 + name = "atspi-connection" 448 + version = "0.3.0" 448 449 source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "97fb4870a32c0eaa17e35bca0e6b16020635157121fb7d45593d242c295bc768" 450 + checksum = "a0c65e7d70f86d4c0e3b2d585d9bf3f979f0b19d635a336725a88d279f76b939" 450 451 dependencies = [ 451 - "quote", 452 - "syn 1.0.109", 452 + "atspi-common", 453 + "atspi-proxies", 454 + "futures-lite 1.13.0", 455 + "zbus", 456 + ] 457 + 458 + [[package]] 459 + name = "atspi-proxies" 460 + version = "0.3.0" 461 + source = "registry+https://github.com/rust-lang/crates.io-index" 462 + checksum = "6495661273703e7a229356dcbe8c8f38223d697aacfaf0e13590a9ac9977bb52" 463 + dependencies = [ 464 + "atspi-common", 465 + "serde", 466 + "zbus", 453 467 ] 454 468 455 469 [[package]] ··· 475 489 476 490 [[package]] 477 491 name = "base64" 478 - version = "0.21.5" 492 + version = "0.21.7" 479 493 source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 494 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 481 495 482 496 [[package]] 483 497 name = "bit-set" ··· 508 522 509 523 [[package]] 510 524 name = "bitflags" 511 - version = "2.4.1" 525 + version = "2.4.2" 512 526 source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 527 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 514 528 dependencies = [ 515 529 "serde", 516 530 ] ··· 536 550 source = "registry+https://github.com/rust-lang/crates.io-index" 537 551 checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" 538 552 dependencies = [ 539 - "async-channel 2.1.1", 540 - "async-lock 3.2.0", 553 + "async-channel", 554 + "async-lock 3.3.0", 541 555 "async-task", 542 556 "fastrand 2.0.1", 543 557 "futures-io", 544 - "futures-lite 2.1.0", 558 + "futures-lite 2.2.0", 545 559 "piper", 546 560 "tracing", 547 561 ] ··· 554 568 555 569 [[package]] 556 570 name = "bytemuck" 557 - version = "1.14.0" 571 + version = "1.14.3" 558 572 source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 573 + checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f" 560 574 dependencies = [ 561 575 "bytemuck_derive", 562 576 ] ··· 569 583 dependencies = [ 570 584 "proc-macro2", 571 585 "quote", 572 - "syn 2.0.46", 586 + "syn 2.0.48", 573 587 ] 574 588 575 589 [[package]] ··· 583 597 version = "1.5.0" 584 598 source = "registry+https://github.com/rust-lang/crates.io-index" 585 599 checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 600 + 601 + [[package]] 602 + name = "cairo-sys-rs" 603 + version = "0.18.2" 604 + source = "registry+https://github.com/rust-lang/crates.io-index" 605 + checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 606 + dependencies = [ 607 + "libc", 608 + "system-deps", 609 + ] 586 610 587 611 [[package]] 588 612 name = "calloop" 589 - version = "0.12.3" 613 + version = "0.12.4" 590 614 source = "registry+https://github.com/rust-lang/crates.io-index" 591 - checksum = "7b50b5a44d59a98c55a9eeb518f39bf7499ba19fd98ee7d22618687f3f10adbf" 615 + checksum = "fba7adb4dd5aa98e5553510223000e7148f621165ec5f9acd7113f6ca4995298" 592 616 dependencies = [ 593 - "bitflags 2.4.1", 617 + "bitflags 2.4.2", 594 618 "log", 595 - "polling 3.3.1", 596 - "rustix 0.38.28", 619 + "polling 3.4.0", 620 + "rustix 0.38.31", 597 621 "slab", 598 622 "thiserror", 599 623 ] ··· 605 629 checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02" 606 630 dependencies = [ 607 631 "calloop", 608 - "rustix 0.38.28", 609 - "wayland-backend 0.3.2", 610 - "wayland-client 0.31.1", 632 + "rustix 0.38.31", 633 + "wayland-backend 0.3.3", 634 + "wayland-client 0.31.2", 611 635 ] 612 636 613 637 [[package]] ··· 620 644 ] 621 645 622 646 [[package]] 647 + name = "cfg-expr" 648 + version = "0.15.7" 649 + source = "registry+https://github.com/rust-lang/crates.io-index" 650 + checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d" 651 + dependencies = [ 652 + "smallvec", 653 + "target-lexicon", 654 + ] 655 + 656 + [[package]] 623 657 name = "cfg-if" 624 658 version = "1.0.0" 625 659 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 632 666 checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 633 667 634 668 [[package]] 669 + name = "cfg_aliases" 670 + version = "0.2.0" 671 + source = "registry+https://github.com/rust-lang/crates.io-index" 672 + checksum = "77e53693616d3075149f4ead59bdeecd204ac6b8192d8969757601b74bddf00f" 673 + 674 + [[package]] 635 675 name = "clap" 636 - version = "4.4.12" 676 + version = "4.5.0" 637 677 source = "registry+https://github.com/rust-lang/crates.io-index" 638 - checksum = "dcfab8ba68f3668e89f6ff60f5b205cea56aa7b769451a59f34b8682f51c056d" 678 + checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" 639 679 dependencies = [ 640 680 "clap_builder", 641 681 "clap_derive", ··· 643 683 644 684 [[package]] 645 685 name = "clap_builder" 646 - version = "4.4.12" 686 + version = "4.5.0" 647 687 source = "registry+https://github.com/rust-lang/crates.io-index" 648 - checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9" 688 + checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" 649 689 dependencies = [ 650 690 "anstream", 651 691 "anstyle", 652 692 "clap_lex", 653 - "strsim", 693 + "strsim 0.11.0", 654 694 ] 655 695 656 696 [[package]] 657 697 name = "clap_derive" 658 - version = "4.4.7" 698 + version = "4.5.0" 659 699 source = "registry+https://github.com/rust-lang/crates.io-index" 660 - checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 700 + checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" 661 701 dependencies = [ 662 702 "heck", 663 703 "proc-macro2", 664 704 "quote", 665 - "syn 2.0.46", 705 + "syn 2.0.48", 666 706 ] 667 707 668 708 [[package]] 669 709 name = "clap_lex" 670 - version = "0.6.0" 710 + version = "0.7.0" 671 711 source = "registry+https://github.com/rust-lang/crates.io-index" 672 - checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 712 + checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 673 713 674 714 [[package]] 675 715 name = "cocoa" ··· 724 764 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 725 765 726 766 [[package]] 727 - name = "com-rs" 728 - version = "0.2.1" 767 + name = "com" 768 + version = "0.6.0" 729 769 source = "registry+https://github.com/rust-lang/crates.io-index" 730 - checksum = "bf43edc576402991846b093a7ca18a3477e0ef9c588cde84964b5d3e43016642" 770 + checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6" 771 + dependencies = [ 772 + "com_macros", 773 + ] 774 + 775 + [[package]] 776 + name = "com_macros" 777 + version = "0.6.0" 778 + source = "registry+https://github.com/rust-lang/crates.io-index" 779 + checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5" 780 + dependencies = [ 781 + "com_macros_support", 782 + "proc-macro2", 783 + "syn 1.0.109", 784 + ] 785 + 786 + [[package]] 787 + name = "com_macros_support" 788 + version = "0.6.0" 789 + source = "registry+https://github.com/rust-lang/crates.io-index" 790 + checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c" 791 + dependencies = [ 792 + "proc-macro2", 793 + "quote", 794 + "syn 1.0.109", 795 + ] 731 796 732 797 [[package]] 733 798 name = "concurrent-queue" ··· 739 804 ] 740 805 741 806 [[package]] 807 + name = "const-random" 808 + version = "0.1.17" 809 + source = "registry+https://github.com/rust-lang/crates.io-index" 810 + checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" 811 + dependencies = [ 812 + "const-random-macro", 813 + ] 814 + 815 + [[package]] 816 + name = "const-random-macro" 817 + version = "0.1.16" 818 + source = "registry+https://github.com/rust-lang/crates.io-index" 819 + checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 820 + dependencies = [ 821 + "getrandom", 822 + "once_cell", 823 + "tiny-keccak", 824 + ] 825 + 826 + [[package]] 742 827 name = "core-foundation" 743 828 version = "0.9.4" 744 829 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 802 887 "rust-embed", 803 888 "serde", 804 889 "shlex", 890 + "switcheroo-control", 805 891 "tokio", 806 892 "url", 807 893 "xdg", ··· 811 897 [[package]] 812 898 name = "cosmic-client-toolkit" 813 899 version = "0.1.0" 814 - source = "git+https://github.com/pop-os/cosmic-protocols?rev=c1b6516#c1b651630c2b71cd8dfd2eb4ab47ede9dbd63840" 900 + source = "git+https://github.com/pop-os/cosmic-protocols?rev=e65fa5e#e65fa5e2bb47e51656221657049bd3f88ae9dae5" 815 901 dependencies = [ 816 902 "cosmic-protocols", 817 903 "smithay-client-toolkit 0.18.0", 818 - "wayland-client 0.31.1", 904 + "wayland-client 0.31.2", 819 905 ] 820 906 821 907 [[package]] 822 908 name = "cosmic-config" 823 909 version = "0.1.0" 824 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 910 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 825 911 dependencies = [ 826 912 "atomicwrites", 827 913 "cosmic-config-derive", ··· 829 915 "dirs 5.0.1", 830 916 "futures-util", 831 917 "iced_futures", 918 + "known-folders", 832 919 "notify", 833 920 "once_cell", 834 921 "ron", 835 922 "serde", 923 + "xdg", 836 924 "zbus", 837 925 ] 838 926 839 927 [[package]] 840 928 name = "cosmic-config-derive" 841 929 version = "0.1.0" 842 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 930 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 843 931 dependencies = [ 844 932 "quote", 845 933 "syn 1.0.109", ··· 848 936 [[package]] 849 937 name = "cosmic-protocols" 850 938 version = "0.1.0" 851 - source = "git+https://github.com/pop-os/cosmic-protocols?rev=c1b6516#c1b651630c2b71cd8dfd2eb4ab47ede9dbd63840" 939 + source = "git+https://github.com/pop-os/cosmic-protocols?rev=e65fa5e#e65fa5e2bb47e51656221657049bd3f88ae9dae5" 852 940 dependencies = [ 853 - "bitflags 2.4.1", 854 - "wayland-backend 0.3.2", 855 - "wayland-client 0.31.1", 856 - "wayland-protocols 0.31.0", 857 - "wayland-scanner 0.31.0", 941 + "bitflags 2.4.2", 942 + "wayland-backend 0.3.3", 943 + "wayland-client 0.31.2", 944 + "wayland-protocols 0.31.2", 945 + "wayland-scanner 0.31.1", 858 946 "wayland-server", 859 947 ] 860 948 ··· 868 956 869 957 [[package]] 870 958 name = "cosmic-text" 871 - version = "0.10.0" 872 - source = "git+https://github.com/pop-os/cosmic-text.git?branch=refactor#6abf336e6df08771d80232b2d6853269be34ee28" 959 + version = "0.11.1" 960 + source = "git+https://github.com/pop-os/cosmic-text.git#cb447ea8c6717d558994575b93a00baa549d01f8" 873 961 dependencies = [ 874 - "bitflags 2.4.1", 962 + "bitflags 2.4.2", 875 963 "fontdb", 876 964 "libm", 877 965 "log", ··· 881 969 "self_cell 1.0.3", 882 970 "swash", 883 971 "sys-locale", 972 + "ttf-parser", 884 973 "unicode-bidi", 885 974 "unicode-linebreak", 886 975 "unicode-script", ··· 890 979 [[package]] 891 980 name = "cosmic-theme" 892 981 version = "0.1.0" 893 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 982 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 894 983 dependencies = [ 895 984 "almost", 896 985 "cosmic-config", ··· 903 992 904 993 [[package]] 905 994 name = "cpufeatures" 906 - version = "0.2.11" 995 + version = "0.2.12" 907 996 source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 997 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 909 998 dependencies = [ 910 999 "libc", 911 1000 ] ··· 921 1010 922 1011 [[package]] 923 1012 name = "crossbeam-channel" 924 - version = "0.5.10" 1013 + version = "0.5.11" 925 1014 source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2" 1015 + checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" 927 1016 dependencies = [ 928 - "cfg-if", 929 1017 "crossbeam-utils", 930 1018 ] 931 1019 932 1020 [[package]] 933 1021 name = "crossbeam-deque" 934 - version = "0.8.4" 1022 + version = "0.8.5" 935 1023 source = "registry+https://github.com/rust-lang/crates.io-index" 936 - checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" 1024 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 937 1025 dependencies = [ 938 - "cfg-if", 939 1026 "crossbeam-epoch", 940 1027 "crossbeam-utils", 941 1028 ] 942 1029 943 1030 [[package]] 944 1031 name = "crossbeam-epoch" 945 - version = "0.9.17" 1032 + version = "0.9.18" 946 1033 source = "registry+https://github.com/rust-lang/crates.io-index" 947 - checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d" 1034 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 948 1035 dependencies = [ 949 - "autocfg", 950 - "cfg-if", 951 1036 "crossbeam-utils", 952 1037 ] 953 1038 954 1039 [[package]] 955 1040 name = "crossbeam-utils" 956 - version = "0.8.18" 1041 + version = "0.8.19" 957 1042 source = "registry+https://github.com/rust-lang/crates.io-index" 958 - checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" 959 - dependencies = [ 960 - "cfg-if", 961 - ] 1043 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 962 1044 963 1045 [[package]] 964 1046 name = "crunchy" ··· 999 1081 checksum = "30d2b3721e861707777e3195b0158f950ae6dc4a27e4d02ff9f67e3eb3de199e" 1000 1082 dependencies = [ 1001 1083 "quote", 1002 - "syn 2.0.46", 1084 + "syn 2.0.48", 1003 1085 ] 1004 1086 1005 1087 [[package]] ··· 1022 1104 1023 1105 [[package]] 1024 1106 name = "d3d12" 1025 - version = "0.7.0" 1026 - source = "registry+https://github.com/rust-lang/crates.io-index" 1027 - checksum = "e16e44ab292b1dddfdaf7be62cfd8877df52f2f3fde5858d95bab606be259f20" 1107 + version = "0.19.0" 1108 + source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" 1028 1109 dependencies = [ 1029 - "bitflags 2.4.1", 1110 + "bitflags 2.4.2", 1030 1111 "libloading 0.8.1", 1031 1112 "winapi", 1032 1113 ] 1033 1114 1034 1115 [[package]] 1035 1116 name = "darling" 1036 - version = "0.20.3" 1117 + version = "0.20.5" 1037 1118 source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 1119 + checksum = "fc5d6b04b3fd0ba9926f945895de7d806260a2d7431ba82e7edaecb043c4c6b8" 1039 1120 dependencies = [ 1040 1121 "darling_core", 1041 1122 "darling_macro", ··· 1043 1124 1044 1125 [[package]] 1045 1126 name = "darling_core" 1046 - version = "0.20.3" 1127 + version = "0.20.5" 1047 1128 source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 1129 + checksum = "04e48a959bcd5c761246f5d090ebc2fbf7b9cd527a492b07a67510c108f1e7e3" 1049 1130 dependencies = [ 1050 1131 "fnv", 1051 1132 "ident_case", 1052 1133 "proc-macro2", 1053 1134 "quote", 1054 - "strsim", 1055 - "syn 2.0.46", 1135 + "strsim 0.10.0", 1136 + "syn 2.0.48", 1056 1137 ] 1057 1138 1058 1139 [[package]] 1059 1140 name = "darling_macro" 1060 - version = "0.20.3" 1141 + version = "0.20.5" 1061 1142 source = "registry+https://github.com/rust-lang/crates.io-index" 1062 - checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 1143 + checksum = "1d1545d67a2149e1d93b7e5c7752dce5a7426eb5d1357ddcfd89336b94444f77" 1063 1144 dependencies = [ 1064 1145 "darling_core", 1065 1146 "quote", 1066 - "syn 2.0.46", 1147 + "syn 2.0.48", 1067 1148 ] 1068 1149 1069 1150 [[package]] ··· 1073 1154 checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 1074 1155 dependencies = [ 1075 1156 "cfg-if", 1076 - "hashbrown 0.14.3", 1157 + "hashbrown", 1077 1158 "lock_api", 1078 1159 "once_cell", 1079 1160 "parking_lot_core 0.9.9", ··· 1105 1186 "darling", 1106 1187 "proc-macro2", 1107 1188 "quote", 1108 - "syn 2.0.46", 1189 + "syn 2.0.48", 1109 1190 ] 1110 1191 1111 1192 [[package]] ··· 1129 1210 1130 1211 [[package]] 1131 1212 name = "dirs" 1132 - version = "4.0.0" 1133 - source = "registry+https://github.com/rust-lang/crates.io-index" 1134 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1135 - dependencies = [ 1136 - "dirs-sys 0.3.7", 1137 - ] 1138 - 1139 - [[package]] 1140 - name = "dirs" 1141 1213 version = "5.0.1" 1142 1214 source = "registry+https://github.com/rust-lang/crates.io-index" 1143 1215 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" ··· 1169 1241 ] 1170 1242 1171 1243 [[package]] 1244 + name = "dispatch" 1245 + version = "0.2.0" 1246 + source = "registry+https://github.com/rust-lang/crates.io-index" 1247 + checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 1248 + 1249 + [[package]] 1172 1250 name = "displaydoc" 1173 1251 version = "0.2.4" 1174 1252 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1176 1254 dependencies = [ 1177 1255 "proc-macro2", 1178 1256 "quote", 1179 - "syn 2.0.46", 1257 + "syn 2.0.48", 1180 1258 ] 1181 1259 1182 1260 [[package]] ··· 1190 1268 1191 1269 [[package]] 1192 1270 name = "dlv-list" 1193 - version = "0.3.0" 1271 + version = "0.5.2" 1194 1272 source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" 1273 + checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 1274 + dependencies = [ 1275 + "const-random", 1276 + ] 1196 1277 1197 1278 [[package]] 1198 1279 name = "downcast-rs" ··· 1202 1283 1203 1284 [[package]] 1204 1285 name = "drm" 1205 - version = "0.10.0" 1286 + version = "0.11.1" 1206 1287 source = "registry+https://github.com/rust-lang/crates.io-index" 1207 - checksum = "97fb1b703ffbc7ebd216eba7900008049a56ace55580ecb2ee7fa801e8d8be87" 1288 + checksum = "a0f8a69e60d75ae7dab4ef26a59ca99f2a89d4c142089b537775ae0c198bdcde" 1208 1289 dependencies = [ 1209 - "bitflags 2.4.1", 1290 + "bitflags 2.4.2", 1210 1291 "bytemuck", 1211 1292 "drm-ffi", 1212 1293 "drm-fourcc", 1213 - "nix 0.27.1", 1294 + "rustix 0.38.31", 1214 1295 ] 1215 1296 1216 1297 [[package]] 1217 1298 name = "drm-ffi" 1218 - version = "0.6.0" 1299 + version = "0.7.1" 1219 1300 source = "registry+https://github.com/rust-lang/crates.io-index" 1220 - checksum = "ba7d1c19c4b6270e89d59fb27dc6d02a317c658a8a54e54781e1db9b5947595d" 1301 + checksum = "41334f8405792483e32ad05fbb9c5680ff4e84491883d2947a4757dc54cb2ac6" 1221 1302 dependencies = [ 1222 1303 "drm-sys", 1223 - "nix 0.27.1", 1304 + "rustix 0.38.31", 1224 1305 ] 1225 1306 1226 1307 [[package]] ··· 1231 1312 1232 1313 [[package]] 1233 1314 name = "drm-sys" 1234 - version = "0.5.0" 1315 + version = "0.6.1" 1235 1316 source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "3a4f1c0468062a56cd5705f1e3b5409eb286d5596a2028ec8e947595d7e715ae" 1317 + checksum = "2d09ff881f92f118b11105ba5e34ff8f4adf27b30dae8f12e28c193af1c83176" 1318 + dependencies = [ 1319 + "libc", 1320 + "linux-raw-sys 0.6.4", 1321 + ] 1237 1322 1238 1323 [[package]] 1239 1324 name = "either" ··· 1270 1355 dependencies = [ 1271 1356 "proc-macro2", 1272 1357 "quote", 1273 - "syn 2.0.46", 1358 + "syn 2.0.48", 1274 1359 ] 1275 1360 1276 1361 [[package]] 1277 1362 name = "env_logger" 1278 - version = "0.10.1" 1363 + version = "0.10.2" 1279 1364 source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 1365 + checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 1281 1366 dependencies = [ 1282 1367 "humantime", 1283 1368 "is-terminal", ··· 1340 1425 1341 1426 [[package]] 1342 1427 name = "event-listener" 1343 - version = "4.0.2" 1428 + version = "4.0.3" 1344 1429 source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "218a870470cce1469024e9fb66b901aa983929d81304a1cdb299f28118e550d5" 1430 + checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" 1431 + dependencies = [ 1432 + "concurrent-queue", 1433 + "parking", 1434 + "pin-project-lite", 1435 + ] 1436 + 1437 + [[package]] 1438 + name = "event-listener" 1439 + version = "5.0.0" 1440 + source = "registry+https://github.com/rust-lang/crates.io-index" 1441 + checksum = "b72557800024fabbaa2449dd4bf24e37b93702d457a4d4f2b0dd1f0f039f20c1" 1346 1442 dependencies = [ 1347 1443 "concurrent-queue", 1348 1444 "parking", ··· 1355 1451 source = "registry+https://github.com/rust-lang/crates.io-index" 1356 1452 checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" 1357 1453 dependencies = [ 1358 - "event-listener 4.0.2", 1454 + "event-listener 4.0.3", 1455 + "pin-project-lite", 1456 + ] 1457 + 1458 + [[package]] 1459 + name = "event-listener-strategy" 1460 + version = "0.5.0" 1461 + source = "registry+https://github.com/rust-lang/crates.io-index" 1462 + checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" 1463 + dependencies = [ 1464 + "event-listener 5.0.0", 1359 1465 "pin-project-lite", 1360 1466 ] 1361 1467 1362 1468 [[package]] 1363 1469 name = "exr" 1364 - version = "1.6.4" 1470 + version = "1.72.0" 1365 1471 source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "279d3efcc55e19917fff7ab3ddd6c14afb6a90881a0078465196fe2f99d08c56" 1472 + checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 1367 1473 dependencies = [ 1368 1474 "bit_field", 1369 - "flume 0.10.14", 1475 + "flume", 1370 1476 "half", 1371 1477 "lebe", 1372 1478 "miniz_oxide", ··· 1398 1504 1399 1505 [[package]] 1400 1506 name = "fdeflate" 1401 - version = "0.3.3" 1507 + version = "0.3.4" 1402 1508 source = "registry+https://github.com/rust-lang/crates.io-index" 1403 - checksum = "209098dd6dfc4445aa6111f0e98653ac323eaa4dfd212c9ca3931bf9955c31bd" 1509 + checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 1404 1510 dependencies = [ 1405 1511 "simd-adler32", 1406 1512 ] ··· 1497 1603 1498 1604 [[package]] 1499 1605 name = "flume" 1500 - version = "0.10.14" 1501 - source = "registry+https://github.com/rust-lang/crates.io-index" 1502 - checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 1503 - dependencies = [ 1504 - "futures-core", 1505 - "futures-sink", 1506 - "nanorand", 1507 - "pin-project", 1508 - "spin", 1509 - ] 1510 - 1511 - [[package]] 1512 - name = "flume" 1513 1606 version = "0.11.0" 1514 1607 source = "registry+https://github.com/rust-lang/crates.io-index" 1515 1608 checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1516 1609 dependencies = [ 1517 - "futures-core", 1518 - "futures-sink", 1519 - "nanorand", 1520 1610 "spin", 1521 1611 ] 1522 1612 ··· 1527 1617 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1528 1618 1529 1619 [[package]] 1620 + name = "font-types" 1621 + version = "0.4.2" 1622 + source = "registry+https://github.com/rust-lang/crates.io-index" 1623 + checksum = "0bd7f3ea17572640b606b35df42cfb6ecdf003704b062580e59918692190b73d" 1624 + 1625 + [[package]] 1530 1626 name = "fontconfig-parser" 1531 - version = "0.5.3" 1627 + version = "0.5.6" 1532 1628 source = "registry+https://github.com/rust-lang/crates.io-index" 1533 - checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4" 1629 + checksum = "6a595cb550439a117696039dfc69830492058211b771a2a165379f2a1a53d84d" 1534 1630 dependencies = [ 1535 - "roxmltree 0.18.1", 1631 + "roxmltree", 1536 1632 ] 1537 1633 1538 1634 [[package]] 1539 1635 name = "fontdb" 1540 - version = "0.16.0" 1636 + version = "0.16.1" 1541 1637 source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "98b88c54a38407f7352dd2c4238830115a6377741098ffd1f997c813d0e088a6" 1638 + checksum = "3890d0893c8253d3eb98337af18b3e1a10a9b2958f2a164b53a93fb3a3049e72" 1543 1639 dependencies = [ 1544 1640 "fontconfig-parser", 1545 1641 "log", 1546 - "memmap2 0.9.3", 1642 + "memmap2 0.9.4", 1547 1643 "slotmap", 1548 1644 "tinyvec", 1549 1645 "ttf-parser", ··· 1567 1663 dependencies = [ 1568 1664 "proc-macro2", 1569 1665 "quote", 1570 - "syn 2.0.46", 1666 + "syn 2.0.48", 1571 1667 ] 1572 1668 1573 1669 [[package]] ··· 1610 1706 1611 1707 [[package]] 1612 1708 name = "freedesktop-icons" 1613 - version = "0.2.4" 1709 + version = "0.2.5" 1614 1710 source = "registry+https://github.com/rust-lang/crates.io-index" 1615 - checksum = "3f9d46a9ae065c46efb83854bb10315de6d333bb6f4526ebe320c004dab7857e" 1711 + checksum = "b5339cbd60b2ff6b95ef212ab96bc80bf1a9dff2821b9966c417cdfae2808796" 1616 1712 dependencies = [ 1617 - "dirs 4.0.0", 1713 + "dirs 5.0.1", 1618 1714 "once_cell", 1619 1715 "rust-ini", 1620 1716 "thiserror", ··· 1696 1792 1697 1793 [[package]] 1698 1794 name = "futures-lite" 1699 - version = "2.1.0" 1795 + version = "2.2.0" 1700 1796 source = "registry+https://github.com/rust-lang/crates.io-index" 1701 - checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" 1797 + checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba" 1702 1798 dependencies = [ 1703 1799 "fastrand 2.0.1", 1704 1800 "futures-core", ··· 1715 1811 dependencies = [ 1716 1812 "proc-macro2", 1717 1813 "quote", 1718 - "syn 2.0.46", 1814 + "syn 2.0.48", 1719 1815 ] 1720 1816 1721 1817 [[package]] ··· 1749 1845 ] 1750 1846 1751 1847 [[package]] 1848 + name = "gdk-pixbuf-sys" 1849 + version = "0.18.0" 1850 + source = "registry+https://github.com/rust-lang/crates.io-index" 1851 + checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1852 + dependencies = [ 1853 + "gio-sys", 1854 + "glib-sys", 1855 + "gobject-sys", 1856 + "libc", 1857 + "system-deps", 1858 + ] 1859 + 1860 + [[package]] 1861 + name = "gdk-sys" 1862 + version = "0.18.0" 1863 + source = "registry+https://github.com/rust-lang/crates.io-index" 1864 + checksum = "31ff856cb3386dae1703a920f803abafcc580e9b5f711ca62ed1620c25b51ff2" 1865 + dependencies = [ 1866 + "cairo-sys-rs", 1867 + "gdk-pixbuf-sys", 1868 + "gio-sys", 1869 + "glib-sys", 1870 + "gobject-sys", 1871 + "libc", 1872 + "pango-sys", 1873 + "pkg-config", 1874 + "system-deps", 1875 + ] 1876 + 1877 + [[package]] 1752 1878 name = "generic-array" 1753 1879 version = "0.14.7" 1754 1880 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1760 1886 1761 1887 [[package]] 1762 1888 name = "gethostname" 1763 - version = "0.3.0" 1889 + version = "0.4.3" 1764 1890 source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177" 1891 + checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1766 1892 dependencies = [ 1767 1893 "libc", 1768 - "winapi", 1894 + "windows-targets 0.48.5", 1769 1895 ] 1770 1896 1771 1897 [[package]] 1772 1898 name = "getrandom" 1773 - version = "0.2.11" 1899 + version = "0.2.12" 1774 1900 source = "registry+https://github.com/rust-lang/crates.io-index" 1775 - checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1901 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 1776 1902 dependencies = [ 1777 1903 "cfg-if", 1778 - "js-sys", 1779 1904 "libc", 1780 1905 "wasi", 1781 - "wasm-bindgen", 1782 1906 ] 1783 1907 1784 1908 [[package]] ··· 1816 1940 version = "0.28.1" 1817 1941 source = "registry+https://github.com/rust-lang/crates.io-index" 1818 1942 checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 1943 + 1944 + [[package]] 1945 + name = "gio-sys" 1946 + version = "0.18.1" 1947 + source = "registry+https://github.com/rust-lang/crates.io-index" 1948 + checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1949 + dependencies = [ 1950 + "glib-sys", 1951 + "gobject-sys", 1952 + "libc", 1953 + "system-deps", 1954 + "winapi", 1955 + ] 1819 1956 1820 1957 [[package]] 1821 1958 name = "gl_generator" ··· 1835 1972 checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945" 1836 1973 1837 1974 [[package]] 1975 + name = "glib-sys" 1976 + version = "0.18.1" 1977 + source = "registry+https://github.com/rust-lang/crates.io-index" 1978 + checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1979 + dependencies = [ 1980 + "libc", 1981 + "system-deps", 1982 + ] 1983 + 1984 + [[package]] 1838 1985 name = "glob" 1839 1986 version = "0.3.1" 1840 1987 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1842 1989 1843 1990 [[package]] 1844 1991 name = "glow" 1845 - version = "0.13.0" 1992 + version = "0.13.1" 1846 1993 source = "registry+https://github.com/rust-lang/crates.io-index" 1847 - checksum = "886c2a30b160c4c6fec8f987430c26b526b7988ca71f664e6a699ddf6f9601e4" 1994 + checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1" 1848 1995 dependencies = [ 1849 1996 "js-sys", 1850 1997 "slotmap", ··· 1863 2010 1864 2011 [[package]] 1865 2012 name = "glyphon" 1866 - version = "0.3.0" 1867 - source = "git+https://github.com/jackpot51/glyphon.git?branch=refactor#c28dc99c86b6b598633e6623096b21632f266976" 2013 + version = "0.5.0" 2014 + source = "git+https://github.com/pop-os/glyphon.git?tag=v0.5.0#1b0646ff8f74da92d3be704dfc2257d7f4d7eed8" 1868 2015 dependencies = [ 1869 2016 "cosmic-text", 1870 2017 "etagere", ··· 1873 2020 ] 1874 2021 1875 2022 [[package]] 2023 + name = "gobject-sys" 2024 + version = "0.18.0" 2025 + source = "registry+https://github.com/rust-lang/crates.io-index" 2026 + checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 2027 + dependencies = [ 2028 + "glib-sys", 2029 + "libc", 2030 + "system-deps", 2031 + ] 2032 + 2033 + [[package]] 1876 2034 name = "gpu-alloc" 1877 2035 version = "0.6.0" 1878 2036 source = "registry+https://github.com/rust-lang/crates.io-index" 1879 2037 checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171" 1880 2038 dependencies = [ 1881 - "bitflags 2.4.1", 2039 + "bitflags 2.4.2", 1882 2040 "gpu-alloc-types", 1883 2041 ] 1884 2042 ··· 1888 2046 source = "registry+https://github.com/rust-lang/crates.io-index" 1889 2047 checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4" 1890 2048 dependencies = [ 1891 - "bitflags 2.4.1", 2049 + "bitflags 2.4.2", 1892 2050 ] 1893 2051 1894 2052 [[package]] 1895 2053 name = "gpu-allocator" 1896 - version = "0.23.0" 2054 + version = "0.25.0" 1897 2055 source = "registry+https://github.com/rust-lang/crates.io-index" 1898 - checksum = "40fe17c8a05d60c38c0a4e5a3c802f2f1ceb66b76c67d96ffb34bef0475a7fad" 2056 + checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884" 1899 2057 dependencies = [ 1900 - "backtrace", 1901 2058 "log", 1902 2059 "presser", 1903 2060 "thiserror", ··· 1911 2068 source = "registry+https://github.com/rust-lang/crates.io-index" 1912 2069 checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c" 1913 2070 dependencies = [ 1914 - "bitflags 2.4.1", 2071 + "bitflags 2.4.2", 1915 2072 "gpu-descriptor-types", 1916 - "hashbrown 0.14.3", 2073 + "hashbrown", 1917 2074 ] 1918 2075 1919 2076 [[package]] ··· 1922 2079 source = "registry+https://github.com/rust-lang/crates.io-index" 1923 2080 checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c" 1924 2081 dependencies = [ 1925 - "bitflags 2.4.1", 2082 + "bitflags 2.4.2", 1926 2083 ] 1927 2084 1928 2085 [[package]] ··· 1932 2089 checksum = "1df00eed8d1f0db937f6be10e46e8072b0671accb504cf0f959c5c52c679f5b9" 1933 2090 1934 2091 [[package]] 2092 + name = "gtk-sys" 2093 + version = "0.18.0" 2094 + source = "registry+https://github.com/rust-lang/crates.io-index" 2095 + checksum = "771437bf1de2c1c0b496c11505bdf748e26066bbe942dfc8f614c9460f6d7722" 2096 + dependencies = [ 2097 + "atk-sys", 2098 + "cairo-sys-rs", 2099 + "gdk-pixbuf-sys", 2100 + "gdk-sys", 2101 + "gio-sys", 2102 + "glib-sys", 2103 + "gobject-sys", 2104 + "libc", 2105 + "pango-sys", 2106 + "system-deps", 2107 + ] 2108 + 2109 + [[package]] 1935 2110 name = "guillotiere" 1936 2111 version = "0.6.2" 1937 2112 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1953 2128 1954 2129 [[package]] 1955 2130 name = "hashbrown" 1956 - version = "0.12.3" 1957 - source = "registry+https://github.com/rust-lang/crates.io-index" 1958 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1959 - dependencies = [ 1960 - "ahash 0.7.7", 1961 - ] 1962 - 1963 - [[package]] 1964 - name = "hashbrown" 1965 2131 version = "0.14.3" 1966 2132 source = "registry+https://github.com/rust-lang/crates.io-index" 1967 2133 checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1968 2134 dependencies = [ 1969 - "ahash 0.8.7", 2135 + "ahash", 1970 2136 "allocator-api2", 1971 2137 ] 1972 2138 1973 2139 [[package]] 1974 2140 name = "hassle-rs" 1975 - version = "0.10.0" 2141 + version = "0.11.0" 1976 2142 source = "registry+https://github.com/rust-lang/crates.io-index" 1977 - checksum = "1397650ee315e8891a0df210707f0fc61771b0cc518c3023896064c5407cb3b0" 2143 + checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890" 1978 2144 dependencies = [ 1979 - "bitflags 1.3.2", 1980 - "com-rs", 2145 + "bitflags 2.4.2", 2146 + "com", 1981 2147 "libc", 1982 - "libloading 0.7.4", 2148 + "libloading 0.8.1", 1983 2149 "thiserror", 1984 2150 "widestring", 1985 2151 "winapi", ··· 1993 2159 1994 2160 [[package]] 1995 2161 name = "hermit-abi" 1996 - version = "0.3.3" 2162 + version = "0.3.5" 1997 2163 source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 2164 + checksum = "d0c62115964e08cb8039170eb33c1d0e2388a256930279edca206fff675f82c3" 1999 2165 2000 2166 [[package]] 2001 2167 name = "hex" ··· 2025 2191 "serde", 2026 2192 "serde_derive", 2027 2193 "thiserror", 2028 - "toml 0.8.8", 2194 + "toml 0.8.10", 2029 2195 "unic-langid", 2030 2196 ] 2031 2197 ··· 2067 2233 "proc-macro-error", 2068 2234 "proc-macro2", 2069 2235 "quote", 2070 - "strsim", 2071 - "syn 2.0.46", 2236 + "strsim 0.10.0", 2237 + "syn 2.0.48", 2072 2238 "unic-langid", 2073 2239 ] 2074 2240 ··· 2082 2248 "i18n-config", 2083 2249 "proc-macro2", 2084 2250 "quote", 2085 - "syn 2.0.46", 2251 + "syn 2.0.48", 2086 2252 ] 2087 2253 2088 2254 [[package]] 2089 2255 name = "iced" 2090 2256 version = "0.12.0" 2091 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2257 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2092 2258 dependencies = [ 2093 2259 "iced_accessibility", 2094 2260 "iced_core", ··· 2103 2269 [[package]] 2104 2270 name = "iced_accessibility" 2105 2271 version = "0.1.0" 2106 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2272 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2107 2273 dependencies = [ 2108 2274 "accesskit", 2109 2275 "accesskit_unix", ··· 2112 2278 [[package]] 2113 2279 name = "iced_core" 2114 2280 version = "0.12.0" 2115 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2281 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2116 2282 dependencies = [ 2117 2283 "bitflags 1.3.2", 2118 2284 "iced_accessibility", 2119 - "instant", 2120 2285 "log", 2121 2286 "num-traits", 2122 2287 "palette", 2123 - "raw-window-handle", 2288 + "raw-window-handle 0.6.0", 2124 2289 "serde", 2125 2290 "smithay-client-toolkit 0.18.0", 2291 + "smol_str", 2126 2292 "thiserror", 2293 + "web-time", 2127 2294 "xxhash-rust", 2128 2295 ] 2129 2296 2130 2297 [[package]] 2131 2298 name = "iced_futures" 2132 2299 version = "0.12.0" 2133 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2300 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2134 2301 dependencies = [ 2135 2302 "futures", 2136 2303 "iced_core", ··· 2143 2310 [[package]] 2144 2311 name = "iced_graphics" 2145 2312 version = "0.12.0" 2146 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2313 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2147 2314 dependencies = [ 2148 2315 "bitflags 1.3.2", 2149 2316 "bytemuck", ··· 2151 2318 "glam", 2152 2319 "half", 2153 2320 "iced_core", 2321 + "iced_futures", 2154 2322 "image", 2155 2323 "kamadak-exif", 2156 2324 "log", 2157 2325 "lyon_path", 2158 2326 "once_cell", 2159 - "raw-window-handle", 2327 + "raw-window-handle 0.6.0", 2160 2328 "rustc-hash", 2161 2329 "thiserror", 2162 2330 "unicode-segmentation", ··· 2166 2334 [[package]] 2167 2335 name = "iced_renderer" 2168 2336 version = "0.12.0" 2169 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2337 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2170 2338 dependencies = [ 2171 2339 "iced_graphics", 2172 2340 "iced_tiny_skia", 2173 2341 "iced_wgpu", 2174 2342 "log", 2175 - "raw-window-handle", 2176 2343 "thiserror", 2177 2344 ] 2178 2345 2179 2346 [[package]] 2180 2347 name = "iced_runtime" 2181 2348 version = "0.12.0" 2182 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2349 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2183 2350 dependencies = [ 2184 2351 "iced_accessibility", 2185 2352 "iced_core", ··· 2191 2358 [[package]] 2192 2359 name = "iced_sctk" 2193 2360 version = "0.1.0" 2194 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2361 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2195 2362 dependencies = [ 2196 2363 "enum-repr", 2197 2364 "float-cmp", ··· 2200 2367 "iced_graphics", 2201 2368 "iced_runtime", 2202 2369 "iced_style", 2203 - "itertools 0.10.5", 2370 + "itertools 0.12.1", 2204 2371 "lazy_static", 2205 - "raw-window-handle", 2372 + "raw-window-handle 0.6.0", 2206 2373 "smithay-client-toolkit 0.18.0", 2207 2374 "smithay-clipboard", 2208 2375 "thiserror", 2209 2376 "tracing", 2210 - "wayland-backend 0.3.2", 2211 - "wayland-protocols 0.31.0", 2377 + "wayland-backend 0.3.3", 2378 + "wayland-protocols 0.31.2", 2379 + "xkbcommon", 2380 + "xkbcommon-dl", 2212 2381 "xkeysym", 2213 2382 ] 2214 2383 2215 2384 [[package]] 2216 2385 name = "iced_style" 2217 2386 version = "0.12.0" 2218 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2387 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2219 2388 dependencies = [ 2220 2389 "iced_core", 2221 2390 "once_cell", ··· 2225 2394 [[package]] 2226 2395 name = "iced_tiny_skia" 2227 2396 version = "0.12.0" 2228 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2397 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2229 2398 dependencies = [ 2230 2399 "bytemuck", 2231 2400 "cosmic-text", 2232 2401 "iced_graphics", 2233 2402 "kurbo", 2234 2403 "log", 2235 - "raw-window-handle", 2236 2404 "resvg", 2237 2405 "rustc-hash", 2238 2406 "softbuffer", ··· 2243 2411 [[package]] 2244 2412 name = "iced_wgpu" 2245 2413 version = "0.12.0" 2246 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2414 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2247 2415 dependencies = [ 2248 2416 "bitflags 1.3.2", 2249 2417 "bytemuck", ··· 2255 2423 "log", 2256 2424 "lyon", 2257 2425 "once_cell", 2258 - "raw-window-handle", 2259 2426 "resvg", 2260 2427 "wgpu", 2261 2428 ] ··· 2263 2430 [[package]] 2264 2431 name = "iced_widget" 2265 2432 version = "0.12.0" 2266 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2433 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2267 2434 dependencies = [ 2268 2435 "iced_renderer", 2269 2436 "iced_runtime", ··· 2293 2460 2294 2461 [[package]] 2295 2462 name = "image" 2296 - version = "0.24.7" 2463 + version = "0.24.8" 2297 2464 source = "registry+https://github.com/rust-lang/crates.io-index" 2298 - checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 2465 + checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23" 2299 2466 dependencies = [ 2300 2467 "bytemuck", 2301 2468 "byteorder", ··· 2303 2470 "exr", 2304 2471 "gif", 2305 2472 "jpeg-decoder", 2306 - "num-rational", 2307 2473 "num-traits", 2308 2474 "png", 2309 2475 "qoi", ··· 2318 2484 2319 2485 [[package]] 2320 2486 name = "indexmap" 2321 - version = "2.1.0" 2487 + version = "2.2.2" 2322 2488 source = "registry+https://github.com/rust-lang/crates.io-index" 2323 - checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 2489 + checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520" 2324 2490 dependencies = [ 2325 2491 "equivalent", 2326 - "hashbrown 0.14.3", 2492 + "hashbrown", 2327 2493 ] 2328 2494 2329 2495 [[package]] ··· 2393 2559 2394 2560 [[package]] 2395 2561 name = "is-terminal" 2396 - version = "0.4.10" 2562 + version = "0.4.11" 2397 2563 source = "registry+https://github.com/rust-lang/crates.io-index" 2398 - checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455" 2564 + checksum = "fe8f25ce1159c7740ff0b9b2f5cdf4a8428742ba7c112b9f20f22cd5219c7dab" 2399 2565 dependencies = [ 2400 2566 "hermit-abi", 2401 - "rustix 0.38.28", 2567 + "libc", 2402 2568 "windows-sys 0.52.0", 2403 2569 ] 2404 2570 2405 2571 [[package]] 2406 2572 name = "itertools" 2407 - version = "0.10.5" 2573 + version = "0.11.0" 2408 2574 source = "registry+https://github.com/rust-lang/crates.io-index" 2409 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2575 + checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2410 2576 dependencies = [ 2411 2577 "either", 2412 2578 ] 2413 2579 2414 2580 [[package]] 2415 2581 name = "itertools" 2416 - version = "0.11.0" 2582 + version = "0.12.1" 2417 2583 source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 2584 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2419 2585 dependencies = [ 2420 2586 "either", 2421 2587 ] 2422 2588 2423 2589 [[package]] 2424 2590 name = "jpeg-decoder" 2425 - version = "0.3.0" 2591 + version = "0.3.1" 2426 2592 source = "registry+https://github.com/rust-lang/crates.io-index" 2427 - checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 2593 + checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 2428 2594 dependencies = [ 2429 2595 "rayon", 2430 2596 ] 2431 2597 2432 2598 [[package]] 2433 2599 name = "js-sys" 2434 - version = "0.3.66" 2600 + version = "0.3.68" 2435 2601 source = "registry+https://github.com/rust-lang/crates.io-index" 2436 - checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 2602 + checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 2437 2603 dependencies = [ 2438 2604 "wasm-bindgen", 2439 2605 ] ··· 2465 2631 checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" 2466 2632 2467 2633 [[package]] 2634 + name = "known-folders" 2635 + version = "1.1.0" 2636 + source = "registry+https://github.com/rust-lang/crates.io-index" 2637 + checksum = "4397c789f2709d23cfcb703b316e0766a8d4b17db2d47b0ab096ef6047cae1d8" 2638 + dependencies = [ 2639 + "windows-sys 0.52.0", 2640 + ] 2641 + 2642 + [[package]] 2468 2643 name = "kqueue" 2469 2644 version = "1.0.8" 2470 2645 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2507 2682 2508 2683 [[package]] 2509 2684 name = "libc" 2510 - version = "0.2.151" 2685 + version = "0.2.153" 2511 2686 source = "registry+https://github.com/rust-lang/crates.io-index" 2512 - checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" 2687 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 2513 2688 2514 2689 [[package]] 2515 2690 name = "libcosmic" 2516 2691 version = "0.1.0" 2517 - source = "git+https://github.com/pop-os/libcosmic/#481cd5a0cdb86661417918bebe8ca2029bc752ab" 2692 + source = "git+https://github.com/pop-os/libcosmic/#5738ac20559ff3c327fd9bcf3bcf323281a4c504" 2518 2693 dependencies = [ 2519 2694 "apply", 2520 2695 "ashpd", ··· 2525 2700 "css-color", 2526 2701 "derive_setters", 2527 2702 "fraction", 2703 + "freedesktop-desktop-entry", 2528 2704 "freedesktop-icons", 2529 2705 "iced", 2530 2706 "iced_core", ··· 2534 2710 "iced_sctk", 2535 2711 "iced_style", 2536 2712 "iced_tiny_skia", 2713 + "iced_wgpu", 2537 2714 "iced_widget", 2538 2715 "lazy_static", 2716 + "nix 0.27.1", 2539 2717 "palette", 2718 + "rfd", 2540 2719 "ron", 2541 2720 "serde", 2721 + "shlex", 2542 2722 "slotmap", 2543 2723 "taffy", 2544 2724 "thiserror", ··· 2581 2761 source = "registry+https://github.com/rust-lang/crates.io-index" 2582 2762 checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 2583 2763 dependencies = [ 2584 - "bitflags 2.4.1", 2764 + "bitflags 2.4.2", 2585 2765 "libc", 2586 2766 "redox_syscall 0.4.1", 2587 2767 ] ··· 2594 2774 2595 2775 [[package]] 2596 2776 name = "linux-raw-sys" 2597 - version = "0.4.12" 2777 + version = "0.4.13" 2598 2778 source = "registry+https://github.com/rust-lang/crates.io-index" 2599 - checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" 2779 + checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 2780 + 2781 + [[package]] 2782 + name = "linux-raw-sys" 2783 + version = "0.6.4" 2784 + source = "registry+https://github.com/rust-lang/crates.io-index" 2785 + checksum = "f0b5399f6804fbab912acbd8878ed3532d506b7c951b8f9f164ef90fef39e3f4" 2600 2786 2601 2787 [[package]] 2602 2788 name = "locale_config" ··· 2629 2815 2630 2816 [[package]] 2631 2817 name = "lru" 2632 - version = "0.11.1" 2818 + version = "0.12.2" 2633 2819 source = "registry+https://github.com/rust-lang/crates.io-index" 2634 - checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" 2820 + checksum = "db2c024b41519440580066ba82aab04092b333e09066a5eb86c7c4890df31f22" 2635 2821 dependencies = [ 2636 - "hashbrown 0.14.3", 2822 + "hashbrown", 2637 2823 ] 2638 2824 2639 2825 [[package]] ··· 2723 2909 2724 2910 [[package]] 2725 2911 name = "memmap2" 2726 - version = "0.9.3" 2912 + version = "0.9.4" 2727 2913 source = "registry+https://github.com/rust-lang/crates.io-index" 2728 - checksum = "45fd3a57831bf88bc63f8cebc0cf956116276e97fef3966103e96416209f7c92" 2914 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 2729 2915 dependencies = [ 2730 2916 "libc", 2731 2917 ] ··· 2763 2949 source = "registry+https://github.com/rust-lang/crates.io-index" 2764 2950 checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25" 2765 2951 dependencies = [ 2766 - "bitflags 2.4.1", 2952 + "bitflags 2.4.2", 2767 2953 "block", 2768 2954 "core-graphics-types", 2769 2955 "foreign-types", ··· 2774 2960 2775 2961 [[package]] 2776 2962 name = "miniz_oxide" 2777 - version = "0.7.1" 2963 + version = "0.7.2" 2778 2964 source = "registry+https://github.com/rust-lang/crates.io-index" 2779 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2965 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 2780 2966 dependencies = [ 2781 2967 "adler", 2782 2968 "simd-adler32", ··· 2802 2988 2803 2989 [[package]] 2804 2990 name = "naga" 2805 - version = "0.14.2" 2806 - source = "registry+https://github.com/rust-lang/crates.io-index" 2807 - checksum = "ae585df4b6514cf8842ac0f1ab4992edc975892704835b549cf818dc0191249e" 2991 + version = "0.19.0" 2992 + source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" 2808 2993 dependencies = [ 2994 + "arrayvec", 2809 2995 "bit-set", 2810 - "bitflags 2.4.1", 2996 + "bitflags 2.4.2", 2811 2997 "codespan-reporting", 2812 2998 "hexf-parse", 2813 2999 "indexmap", ··· 2821 3007 ] 2822 3008 2823 3009 [[package]] 2824 - name = "nanorand" 2825 - version = "0.7.0" 2826 - source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 2828 - dependencies = [ 2829 - "getrandom", 2830 - ] 2831 - 2832 - [[package]] 2833 3010 name = "nix" 2834 3011 version = "0.24.3" 2835 3012 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2860 3037 source = "registry+https://github.com/rust-lang/crates.io-index" 2861 3038 checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2862 3039 dependencies = [ 2863 - "bitflags 2.4.1", 3040 + "bitflags 2.4.2", 2864 3041 "cfg-if", 2865 3042 "libc", 2866 3043 ] ··· 2871 3048 source = "registry+https://github.com/rust-lang/crates.io-index" 2872 3049 checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 2873 3050 dependencies = [ 2874 - "bitflags 2.4.1", 3051 + "bitflags 2.4.2", 2875 3052 "crossbeam-channel", 2876 3053 "filetime", 2877 3054 "fsevent-sys", ··· 2911 3088 2912 3089 [[package]] 2913 3090 name = "num-complex" 2914 - version = "0.4.4" 3091 + version = "0.4.5" 2915 3092 source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" 3093 + checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6" 2917 3094 dependencies = [ 2918 3095 "num-traits", 2919 3096 ] 2920 3097 2921 3098 [[package]] 2922 3099 name = "num-integer" 2923 - version = "0.1.45" 3100 + version = "0.1.46" 2924 3101 source = "registry+https://github.com/rust-lang/crates.io-index" 2925 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 3102 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2926 3103 dependencies = [ 2927 - "autocfg", 2928 3104 "num-traits", 2929 3105 ] 2930 3106 2931 3107 [[package]] 2932 3108 name = "num-iter" 2933 - version = "0.1.43" 3109 + version = "0.1.44" 2934 3110 source = "registry+https://github.com/rust-lang/crates.io-index" 2935 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 3111 + checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9" 2936 3112 dependencies = [ 2937 3113 "autocfg", 2938 3114 "num-integer", ··· 2953 3129 2954 3130 [[package]] 2955 3131 name = "num-traits" 2956 - version = "0.2.17" 3132 + version = "0.2.18" 2957 3133 source = "registry+https://github.com/rust-lang/crates.io-index" 2958 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 3134 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 2959 3135 dependencies = [ 2960 3136 "autocfg", 2961 3137 "libm", ··· 3033 3209 3034 3210 [[package]] 3035 3211 name = "ordered-multimap" 3036 - version = "0.4.3" 3212 + version = "0.7.1" 3037 3213 source = "registry+https://github.com/rust-lang/crates.io-index" 3038 - checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" 3214 + checksum = "a4d6a8c22fc714f0c2373e6091bf6f5e9b37b1bc0b1184874b7e0a4e303d318f" 3039 3215 dependencies = [ 3040 3216 "dlv-list", 3041 - "hashbrown 0.12.3", 3217 + "hashbrown", 3042 3218 ] 3043 3219 3044 3220 [[package]] ··· 3072 3248 "proc-macro-error", 3073 3249 "proc-macro2", 3074 3250 "quote", 3075 - "syn 2.0.46", 3251 + "syn 2.0.48", 3076 3252 ] 3077 3253 3078 3254 [[package]] 3079 3255 name = "palette" 3080 - version = "0.7.3" 3256 + version = "0.7.4" 3081 3257 source = "registry+https://github.com/rust-lang/crates.io-index" 3082 - checksum = "b2e2f34147767aa758aa649415b50a69eeb46a67f9dc7db8011eeb3d84b351dc" 3258 + checksum = "3d38e6e5ca1612e2081cc31188f08c3cba630ce4ba44709a153f1a0f38d678f2" 3083 3259 dependencies = [ 3084 3260 "approx", 3085 3261 "fast-srgb8", ··· 3090 3266 3091 3267 [[package]] 3092 3268 name = "palette_derive" 3093 - version = "0.7.3" 3269 + version = "0.7.4" 3094 3270 source = "registry+https://github.com/rust-lang/crates.io-index" 3095 - checksum = "b7db010ec5ff3d4385e4f133916faacd9dad0f6a09394c92d825b3aed310fa0a" 3271 + checksum = "e05d1c929301fee6830dafa764341118829b2535c216b0571e3821ecac5c885b" 3096 3272 dependencies = [ 3097 3273 "proc-macro2", 3098 3274 "quote", 3099 - "syn 2.0.46", 3275 + "syn 2.0.48", 3276 + ] 3277 + 3278 + [[package]] 3279 + name = "pango-sys" 3280 + version = "0.18.0" 3281 + source = "registry+https://github.com/rust-lang/crates.io-index" 3282 + checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 3283 + dependencies = [ 3284 + "glib-sys", 3285 + "gobject-sys", 3286 + "libc", 3287 + "system-deps", 3100 3288 ] 3101 3289 3102 3290 [[package]] ··· 3195 3383 "phf_shared", 3196 3384 "proc-macro2", 3197 3385 "quote", 3198 - "syn 2.0.46", 3386 + "syn 2.0.48", 3199 3387 ] 3200 3388 3201 3389 [[package]] ··· 3214 3402 checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 3215 3403 3216 3404 [[package]] 3217 - name = "pin-project" 3218 - version = "1.1.3" 3219 - source = "registry+https://github.com/rust-lang/crates.io-index" 3220 - checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 3221 - dependencies = [ 3222 - "pin-project-internal", 3223 - ] 3224 - 3225 - [[package]] 3226 - name = "pin-project-internal" 3227 - version = "1.1.3" 3228 - source = "registry+https://github.com/rust-lang/crates.io-index" 3229 - checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 3230 - dependencies = [ 3231 - "proc-macro2", 3232 - "quote", 3233 - "syn 2.0.46", 3234 - ] 3235 - 3236 - [[package]] 3237 3405 name = "pin-project-lite" 3238 3406 version = "0.2.13" 3239 3407 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3258 3426 3259 3427 [[package]] 3260 3428 name = "pkg-config" 3261 - version = "0.3.28" 3429 + version = "0.3.29" 3262 3430 source = "registry+https://github.com/rust-lang/crates.io-index" 3263 - checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" 3431 + checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" 3264 3432 3265 3433 [[package]] 3266 3434 name = "png" 3267 - version = "0.17.10" 3435 + version = "0.17.11" 3268 3436 source = "registry+https://github.com/rust-lang/crates.io-index" 3269 - checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 3437 + checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a" 3270 3438 dependencies = [ 3271 3439 "bitflags 1.3.2", 3272 3440 "crc32fast", ··· 3293 3461 3294 3462 [[package]] 3295 3463 name = "polling" 3296 - version = "3.3.1" 3464 + version = "3.4.0" 3297 3465 source = "registry+https://github.com/rust-lang/crates.io-index" 3298 - checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e" 3466 + checksum = "30054e72317ab98eddd8561db0f6524df3367636884b7b21b703e4b280a84a14" 3299 3467 dependencies = [ 3300 3468 "cfg-if", 3301 3469 "concurrent-queue", 3302 3470 "pin-project-lite", 3303 - "rustix 0.38.28", 3471 + "rustix 0.38.31", 3304 3472 "tracing", 3305 3473 "windows-sys 0.52.0", 3306 3474 ] ··· 3363 3531 3364 3532 [[package]] 3365 3533 name = "proc-macro2" 3366 - version = "1.0.74" 3534 + version = "1.0.78" 3367 3535 source = "registry+https://github.com/rust-lang/crates.io-index" 3368 - checksum = "2de98502f212cfcea8d0bb305bd0f49d7ebdd75b64ba0a68f937d888f4e0d6db" 3536 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 3369 3537 dependencies = [ 3370 3538 "unicode-ident", 3371 3539 ] 3372 3540 3373 3541 [[package]] 3374 3542 name = "profiling" 3375 - version = "1.0.13" 3543 + version = "1.0.14" 3376 3544 source = "registry+https://github.com/rust-lang/crates.io-index" 3377 - checksum = "d135ede8821cf6376eb7a64148901e1690b788c11ae94dc297ae917dbc91dc0e" 3545 + checksum = "0f0f7f43585c34e4fdd7497d746bc32e14458cf11c69341cc0587b1d825dde42" 3378 3546 3379 3547 [[package]] 3380 3548 name = "qoi" ··· 3396 3564 3397 3565 [[package]] 3398 3566 name = "quick-xml" 3399 - version = "0.30.0" 3567 + version = "0.31.0" 3400 3568 source = "registry+https://github.com/rust-lang/crates.io-index" 3401 - checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 3569 + checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 3402 3570 dependencies = [ 3403 3571 "memchr", 3404 3572 ] ··· 3450 3618 3451 3619 [[package]] 3452 3620 name = "rangemap" 3453 - version = "1.4.0" 3621 + version = "1.5.0" 3454 3622 source = "registry+https://github.com/rust-lang/crates.io-index" 3455 - checksum = "977b1e897f9d764566891689e642653e5ed90c6895106acd005eb4c1d0203991" 3623 + checksum = "795915a3930a5d6bafd9053d37602fea3e61be2e5d4d788983a8ba9654c1c6f2" 3456 3624 3457 3625 [[package]] 3458 3626 name = "raw-window-handle" ··· 3461 3629 checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 3462 3630 3463 3631 [[package]] 3632 + name = "raw-window-handle" 3633 + version = "0.6.0" 3634 + source = "registry+https://github.com/rust-lang/crates.io-index" 3635 + checksum = "42a9830a0e1b9fb145ebb365b8bc4ccd75f290f98c0247deafbbe2c75cefb544" 3636 + 3637 + [[package]] 3464 3638 name = "rayon" 3465 - version = "1.8.0" 3639 + version = "1.8.1" 3466 3640 source = "registry+https://github.com/rust-lang/crates.io-index" 3467 - checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" 3641 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 3468 3642 dependencies = [ 3469 3643 "either", 3470 3644 "rayon-core", ··· 3472 3646 3473 3647 [[package]] 3474 3648 name = "rayon-core" 3475 - version = "1.12.0" 3649 + version = "1.12.1" 3476 3650 source = "registry+https://github.com/rust-lang/crates.io-index" 3477 - checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" 3651 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3478 3652 dependencies = [ 3479 3653 "crossbeam-deque", 3480 3654 "crossbeam-utils", ··· 3487 3661 checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" 3488 3662 3489 3663 [[package]] 3664 + name = "read-fonts" 3665 + version = "0.15.4" 3666 + source = "registry+https://github.com/rust-lang/crates.io-index" 3667 + checksum = "d70252c718fb23d41771a4f927e924700edefc2a91ecd52a2ee6f2461d4e6b64" 3668 + dependencies = [ 3669 + "font-types", 3670 + ] 3671 + 3672 + [[package]] 3490 3673 name = "redox_syscall" 3491 3674 version = "0.2.16" 3492 3675 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3517 3700 3518 3701 [[package]] 3519 3702 name = "regex" 3520 - version = "1.10.2" 3703 + version = "1.10.3" 3521 3704 source = "registry+https://github.com/rust-lang/crates.io-index" 3522 - checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 3705 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 3523 3706 dependencies = [ 3524 3707 "aho-corasick", 3525 3708 "memchr", ··· 3529 3712 3530 3713 [[package]] 3531 3714 name = "regex-automata" 3532 - version = "0.4.3" 3715 + version = "0.4.5" 3533 3716 source = "registry+https://github.com/rust-lang/crates.io-index" 3534 - checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 3717 + checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 3535 3718 dependencies = [ 3536 3719 "aho-corasick", 3537 3720 "memchr", ··· 3565 3748 "svgtypes", 3566 3749 "tiny-skia", 3567 3750 "usvg", 3751 + ] 3752 + 3753 + [[package]] 3754 + name = "rfd" 3755 + version = "0.13.0" 3756 + source = "registry+https://github.com/rust-lang/crates.io-index" 3757 + checksum = "c0d8ab342bcc5436e04d3a4c1e09e17d74958bfaddf8d5fad6f85607df0f994f" 3758 + dependencies = [ 3759 + "ashpd", 3760 + "block", 3761 + "dispatch", 3762 + "glib-sys", 3763 + "gobject-sys", 3764 + "gtk-sys", 3765 + "js-sys", 3766 + "log", 3767 + "objc", 3768 + "objc-foundation", 3769 + "objc_id", 3770 + "raw-window-handle 0.5.2", 3771 + "wasm-bindgen", 3772 + "wasm-bindgen-futures", 3773 + "web-sys", 3774 + "windows-sys 0.48.0", 3568 3775 ] 3569 3776 3570 3777 [[package]] ··· 3583 3790 checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 3584 3791 dependencies = [ 3585 3792 "base64", 3586 - "bitflags 2.4.1", 3793 + "bitflags 2.4.2", 3587 3794 "serde", 3588 3795 "serde_derive", 3589 - ] 3590 - 3591 - [[package]] 3592 - name = "roxmltree" 3593 - version = "0.18.1" 3594 - source = "registry+https://github.com/rust-lang/crates.io-index" 3595 - checksum = "862340e351ce1b271a378ec53f304a5558f7db87f3769dc655a8f6ecbb68b302" 3596 - dependencies = [ 3597 - "xmlparser", 3598 3796 ] 3599 3797 3600 3798 [[package]] ··· 3623 3821 "proc-macro2", 3624 3822 "quote", 3625 3823 "rust-embed-utils", 3626 - "syn 2.0.46", 3824 + "syn 2.0.48", 3627 3825 "walkdir", 3628 3826 ] 3629 3827 ··· 3639 3837 3640 3838 [[package]] 3641 3839 name = "rust-ini" 3642 - version = "0.18.0" 3840 + version = "0.20.0" 3643 3841 source = "registry+https://github.com/rust-lang/crates.io-index" 3644 - checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" 3842 + checksum = "3e0698206bcb8882bf2a9ecb4c1e7785db57ff052297085a6efd4fe42302068a" 3645 3843 dependencies = [ 3646 3844 "cfg-if", 3647 3845 "ordered-multimap", ··· 3675 3873 3676 3874 [[package]] 3677 3875 name = "rustix" 3678 - version = "0.38.28" 3876 + version = "0.38.31" 3679 3877 source = "registry+https://github.com/rust-lang/crates.io-index" 3680 - checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" 3878 + checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" 3681 3879 dependencies = [ 3682 - "bitflags 2.4.1", 3880 + "bitflags 2.4.2", 3683 3881 "errno", 3684 3882 "libc", 3685 - "linux-raw-sys 0.4.12", 3883 + "linux-raw-sys 0.4.13", 3686 3884 "windows-sys 0.52.0", 3687 3885 ] 3688 3886 ··· 3692 3890 source = "registry+https://github.com/rust-lang/crates.io-index" 3693 3891 checksum = "f0ae5692c5beaad6a9e22830deeed7874eae8a4e3ba4076fb48e12c56856222c" 3694 3892 dependencies = [ 3695 - "bitflags 2.4.1", 3893 + "bitflags 2.4.2", 3696 3894 "bytemuck", 3697 3895 "libm", 3698 3896 "smallvec", ··· 3741 3939 3742 3940 [[package]] 3743 3941 name = "serde" 3744 - version = "1.0.194" 3942 + version = "1.0.196" 3745 3943 source = "registry+https://github.com/rust-lang/crates.io-index" 3746 - checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773" 3944 + checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 3747 3945 dependencies = [ 3748 3946 "serde_derive", 3749 3947 ] 3750 3948 3751 3949 [[package]] 3752 3950 name = "serde_derive" 3753 - version = "1.0.194" 3951 + version = "1.0.196" 3754 3952 source = "registry+https://github.com/rust-lang/crates.io-index" 3755 - checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0" 3953 + checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 3756 3954 dependencies = [ 3757 3955 "proc-macro2", 3758 3956 "quote", 3759 - "syn 2.0.46", 3957 + "syn 2.0.48", 3760 3958 ] 3761 3959 3762 3960 [[package]] ··· 3767 3965 dependencies = [ 3768 3966 "proc-macro2", 3769 3967 "quote", 3770 - "syn 2.0.46", 3968 + "syn 2.0.48", 3771 3969 ] 3772 3970 3773 3971 [[package]] ··· 3803 4001 3804 4002 [[package]] 3805 4003 name = "shlex" 3806 - version = "1.2.0" 4004 + version = "1.3.0" 3807 4005 source = "registry+https://github.com/rust-lang/crates.io-index" 3808 - checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 4006 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3809 4007 3810 4008 [[package]] 3811 4009 name = "signal-hook-registry" ··· 3857 4055 3858 4056 [[package]] 3859 4057 name = "smallvec" 3860 - version = "1.11.2" 4058 + version = "1.13.1" 3861 4059 source = "registry+https://github.com/rust-lang/crates.io-index" 3862 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 4060 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 3863 4061 3864 4062 [[package]] 3865 4063 name = "smithay-client-toolkit" ··· 3884 4082 version = "0.18.0" 3885 4083 source = "git+https://github.com/smithay/client-toolkit?rev=2e9bf9f#2e9bf9f31698851ca373e5f1e7ba3e6e804e4db1" 3886 4084 dependencies = [ 3887 - "bitflags 2.4.1", 4085 + "bitflags 2.4.2", 3888 4086 "bytemuck", 3889 4087 "calloop", 3890 4088 "calloop-wayland-source", 3891 4089 "cursor-icon", 3892 4090 "libc", 3893 4091 "log", 3894 - "memmap2 0.9.3", 4092 + "memmap2 0.9.4", 3895 4093 "pkg-config", 3896 - "rustix 0.38.28", 4094 + "rustix 0.38.31", 3897 4095 "thiserror", 3898 - "wayland-backend 0.3.2", 3899 - "wayland-client 0.31.1", 4096 + "wayland-backend 0.3.3", 4097 + "wayland-client 0.31.2", 3900 4098 "wayland-csd-frame", 3901 - "wayland-cursor 0.31.0", 3902 - "wayland-protocols 0.31.0", 4099 + "wayland-cursor 0.31.1", 4100 + "wayland-protocols 0.31.2", 3903 4101 "wayland-protocols-wlr", 3904 - "wayland-scanner 0.31.0", 4102 + "wayland-scanner 0.31.1", 3905 4103 "xkbcommon", 3906 4104 "xkeysym", 3907 4105 ] ··· 3917 4115 ] 3918 4116 3919 4117 [[package]] 4118 + name = "smol_str" 4119 + version = "0.2.1" 4120 + source = "registry+https://github.com/rust-lang/crates.io-index" 4121 + checksum = "e6845563ada680337a52d43bb0b29f396f2d911616f6573012645b9e3d048a49" 4122 + dependencies = [ 4123 + "serde", 4124 + ] 4125 + 4126 + [[package]] 3920 4127 name = "socket2" 3921 4128 version = "0.4.10" 3922 4129 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3938 4145 3939 4146 [[package]] 3940 4147 name = "softbuffer" 3941 - version = "0.3.3" 3942 - source = "git+https://github.com/pop-os/softbuffer?tag=v0.3-cosmic#6f0371ccece51d124c6c5d37082189df0dc5f9ba" 4148 + version = "0.4.1" 4149 + source = "git+https://github.com/pop-os/softbuffer?tag=cosmic-4.0#0bb85989353f0d17deb593dedb00ee4392a871e7" 3943 4150 dependencies = [ 3944 4151 "as-raw-xcb-connection", 3945 4152 "bytemuck", 3946 - "cfg_aliases", 4153 + "cfg_aliases 0.2.0", 3947 4154 "cocoa", 3948 4155 "core-graphics", 3949 4156 "drm", ··· 3951 4158 "foreign-types", 3952 4159 "js-sys", 3953 4160 "log", 3954 - "memmap2 0.9.3", 4161 + "memmap2 0.9.4", 3955 4162 "objc", 3956 - "raw-window-handle", 4163 + "raw-window-handle 0.6.0", 3957 4164 "redox_syscall 0.4.1", 3958 - "rustix 0.38.28", 4165 + "rustix 0.38.31", 3959 4166 "tiny-xlib", 3960 4167 "wasm-bindgen", 3961 - "wayland-backend 0.3.2", 3962 - "wayland-client 0.31.1", 4168 + "wayland-backend 0.3.3", 4169 + "wayland-client 0.31.2", 3963 4170 "wayland-sys 0.31.1", 3964 4171 "web-sys", 3965 - "windows-sys 0.48.0", 4172 + "windows-sys 0.52.0", 3966 4173 "x11rb", 3967 4174 ] 3968 4175 ··· 3977 4184 3978 4185 [[package]] 3979 4186 name = "spirv" 3980 - version = "0.2.0+1.5.4" 4187 + version = "0.3.0+sdk-1.3.268.0" 3981 4188 source = "registry+https://github.com/rust-lang/crates.io-index" 3982 - checksum = "246bfa38fe3db3f1dfc8ca5a2cdeb7348c78be2112740cc0ec8ef18b6d94f830" 4189 + checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844" 3983 4190 dependencies = [ 3984 - "bitflags 1.3.2", 3985 - "num-traits", 4191 + "bitflags 2.4.2", 3986 4192 ] 3987 4193 3988 4194 [[package]] ··· 4007 4213 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4008 4214 4009 4215 [[package]] 4216 + name = "strsim" 4217 + version = "0.11.0" 4218 + source = "registry+https://github.com/rust-lang/crates.io-index" 4219 + checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 4220 + 4221 + [[package]] 4010 4222 name = "svg_fmt" 4011 4223 version = "0.4.1" 4012 4224 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4024 4236 4025 4237 [[package]] 4026 4238 name = "swash" 4027 - version = "0.1.8" 4239 + version = "0.1.12" 4028 4240 source = "registry+https://github.com/rust-lang/crates.io-index" 4029 - checksum = "3b7c73c813353c347272919aa1af2885068b05e625e5532b43049e4f641ae77f" 4241 + checksum = "d06ff4664af8923625604261c645f5c4cc610cc83c84bec74b50d76237089de7" 4030 4242 dependencies = [ 4243 + "read-fonts", 4031 4244 "yazi", 4032 4245 "zeno", 4033 4246 ] 4034 4247 4035 4248 [[package]] 4249 + name = "switcheroo-control" 4250 + version = "0.1.0" 4251 + source = "git+https://github.com/pop-os/dbus-settings-bindings#5dea929b730460f883935357a1a8fb9736f36f95" 4252 + dependencies = [ 4253 + "zbus", 4254 + ] 4255 + 4256 + [[package]] 4036 4257 name = "syn" 4037 4258 version = "1.0.109" 4038 4259 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4045 4266 4046 4267 [[package]] 4047 4268 name = "syn" 4048 - version = "2.0.46" 4269 + version = "2.0.48" 4049 4270 source = "registry+https://github.com/rust-lang/crates.io-index" 4050 - checksum = "89456b690ff72fddcecf231caedbe615c59480c93358a93dfae7fc29e3ebbf0e" 4271 + checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 4051 4272 dependencies = [ 4052 4273 "proc-macro2", 4053 4274 "quote", ··· 4064 4285 ] 4065 4286 4066 4287 [[package]] 4288 + name = "system-deps" 4289 + version = "6.2.0" 4290 + source = "registry+https://github.com/rust-lang/crates.io-index" 4291 + checksum = "2a2d580ff6a20c55dfb86be5f9c238f67835d0e81cbdea8bf5680e0897320331" 4292 + dependencies = [ 4293 + "cfg-expr", 4294 + "heck", 4295 + "pkg-config", 4296 + "toml 0.8.10", 4297 + "version-compare", 4298 + ] 4299 + 4300 + [[package]] 4067 4301 name = "taffy" 4068 4302 version = "0.3.11" 4069 4303 source = "git+https://github.com/DioxusLabs/taffy?rev=7781c70#7781c70241f7f572130c13106f2a869a9cf80885" ··· 4075 4309 ] 4076 4310 4077 4311 [[package]] 4312 + name = "target-lexicon" 4313 + version = "0.12.13" 4314 + source = "registry+https://github.com/rust-lang/crates.io-index" 4315 + checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 4316 + 4317 + [[package]] 4078 4318 name = "temp-dir" 4079 4319 version = "0.1.12" 4080 4320 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4082 4322 4083 4323 [[package]] 4084 4324 name = "tempfile" 4085 - version = "3.9.0" 4325 + version = "3.10.0" 4086 4326 source = "registry+https://github.com/rust-lang/crates.io-index" 4087 - checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 4327 + checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" 4088 4328 dependencies = [ 4089 4329 "cfg-if", 4090 4330 "fastrand 2.0.1", 4091 - "redox_syscall 0.4.1", 4092 - "rustix 0.38.28", 4331 + "rustix 0.38.31", 4093 4332 "windows-sys 0.52.0", 4094 4333 ] 4095 4334 4096 4335 [[package]] 4097 4336 name = "termcolor" 4098 - version = "1.4.0" 4337 + version = "1.4.1" 4099 4338 source = "registry+https://github.com/rust-lang/crates.io-index" 4100 - checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" 4339 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4101 4340 dependencies = [ 4102 4341 "winapi-util", 4103 4342 ] ··· 4119 4358 dependencies = [ 4120 4359 "proc-macro2", 4121 4360 "quote", 4122 - "syn 2.0.46", 4361 + "syn 2.0.48", 4123 4362 ] 4124 4363 4125 4364 [[package]] 4126 4365 name = "tiff" 4127 - version = "0.9.0" 4366 + version = "0.9.1" 4128 4367 source = "registry+https://github.com/rust-lang/crates.io-index" 4129 - checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 4368 + checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 4130 4369 dependencies = [ 4131 4370 "flate2", 4132 4371 "jpeg-decoder", ··· 4134 4373 ] 4135 4374 4136 4375 [[package]] 4376 + name = "tiny-keccak" 4377 + version = "2.0.2" 4378 + source = "registry+https://github.com/rust-lang/crates.io-index" 4379 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 4380 + dependencies = [ 4381 + "crunchy", 4382 + ] 4383 + 4384 + [[package]] 4137 4385 name = "tiny-skia" 4138 - version = "0.11.3" 4386 + version = "0.11.4" 4139 4387 source = "registry+https://github.com/rust-lang/crates.io-index" 4140 - checksum = "b6a067b809476893fce6a254cf285850ff69c847e6cfbade6a20b655b6c7e80d" 4388 + checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 4141 4389 dependencies = [ 4142 4390 "arrayref", 4143 4391 "arrayvec", ··· 4150 4398 4151 4399 [[package]] 4152 4400 name = "tiny-skia-path" 4153 - version = "0.11.3" 4401 + version = "0.11.4" 4154 4402 source = "registry+https://github.com/rust-lang/crates.io-index" 4155 - checksum = "5de35e8a90052baaaf61f171680ac2f8e925a1e43ea9d2e3a00514772250e541" 4403 + checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 4156 4404 dependencies = [ 4157 4405 "arrayref", 4158 4406 "bytemuck", ··· 4197 4445 4198 4446 [[package]] 4199 4447 name = "tokio" 4200 - version = "1.35.1" 4448 + version = "1.36.0" 4201 4449 source = "registry+https://github.com/rust-lang/crates.io-index" 4202 - checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" 4450 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 4203 4451 dependencies = [ 4204 4452 "backtrace", 4205 4453 "bytes", ··· 4224 4472 4225 4473 [[package]] 4226 4474 name = "toml" 4227 - version = "0.8.8" 4475 + version = "0.8.10" 4228 4476 source = "registry+https://github.com/rust-lang/crates.io-index" 4229 - checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" 4477 + checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" 4230 4478 dependencies = [ 4231 4479 "serde", 4232 4480 "serde_spanned", 4233 4481 "toml_datetime", 4234 - "toml_edit 0.21.0", 4482 + "toml_edit 0.22.4", 4235 4483 ] 4236 4484 4237 4485 [[package]] ··· 4256 4504 4257 4505 [[package]] 4258 4506 name = "toml_edit" 4259 - version = "0.21.0" 4507 + version = "0.22.4" 4260 4508 source = "registry+https://github.com/rust-lang/crates.io-index" 4261 - checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" 4509 + checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951" 4262 4510 dependencies = [ 4263 4511 "indexmap", 4264 4512 "serde", ··· 4286 4534 dependencies = [ 4287 4535 "proc-macro2", 4288 4536 "quote", 4289 - "syn 2.0.46", 4537 + "syn 2.0.48", 4290 4538 ] 4291 4539 4292 4540 [[package]] ··· 4351 4599 4352 4600 [[package]] 4353 4601 name = "unicode-bidi" 4354 - version = "0.3.14" 4602 + version = "0.3.15" 4355 4603 source = "registry+https://github.com/rust-lang/crates.io-index" 4356 - checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 4604 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 4357 4605 4358 4606 [[package]] 4359 4607 name = "unicode-bidi-mirroring" ··· 4390 4638 4391 4639 [[package]] 4392 4640 name = "unicode-properties" 4393 - version = "0.1.0" 4641 + version = "0.1.1" 4394 4642 source = "registry+https://github.com/rust-lang/crates.io-index" 4395 - checksum = "c7f91c8b21fbbaa18853c3d0801c78f4fc94cdb976699bb03e832e75f7fd22f0" 4643 + checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 4396 4644 4397 4645 [[package]] 4398 4646 name = "unicode-script" ··· 4402 4650 4403 4651 [[package]] 4404 4652 name = "unicode-segmentation" 4405 - version = "1.10.1" 4653 + version = "1.11.0" 4406 4654 source = "registry+https://github.com/rust-lang/crates.io-index" 4407 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 4655 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 4408 4656 4409 4657 [[package]] 4410 4658 name = "unicode-vo" ··· 4462 4710 "imagesize", 4463 4711 "kurbo", 4464 4712 "log", 4465 - "roxmltree 0.19.0", 4713 + "roxmltree", 4466 4714 "simplecss", 4467 4715 "siphasher", 4468 4716 "svgtypes", ··· 4502 4750 version = "0.2.1" 4503 4751 source = "registry+https://github.com/rust-lang/crates.io-index" 4504 4752 checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 4753 + 4754 + [[package]] 4755 + name = "version-compare" 4756 + version = "0.1.1" 4757 + source = "registry+https://github.com/rust-lang/crates.io-index" 4758 + checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 4505 4759 4506 4760 [[package]] 4507 4761 name = "version_check" ··· 4533 4787 4534 4788 [[package]] 4535 4789 name = "wasm-bindgen" 4536 - version = "0.2.89" 4790 + version = "0.2.91" 4537 4791 source = "registry+https://github.com/rust-lang/crates.io-index" 4538 - checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 4792 + checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 4539 4793 dependencies = [ 4540 4794 "cfg-if", 4541 4795 "wasm-bindgen-macro", ··· 4543 4797 4544 4798 [[package]] 4545 4799 name = "wasm-bindgen-backend" 4546 - version = "0.2.89" 4800 + version = "0.2.91" 4547 4801 source = "registry+https://github.com/rust-lang/crates.io-index" 4548 - checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 4802 + checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 4549 4803 dependencies = [ 4550 4804 "bumpalo", 4551 4805 "log", 4552 4806 "once_cell", 4553 4807 "proc-macro2", 4554 4808 "quote", 4555 - "syn 2.0.46", 4809 + "syn 2.0.48", 4556 4810 "wasm-bindgen-shared", 4557 4811 ] 4558 4812 4559 4813 [[package]] 4560 4814 name = "wasm-bindgen-futures" 4561 - version = "0.4.39" 4815 + version = "0.4.41" 4562 4816 source = "registry+https://github.com/rust-lang/crates.io-index" 4563 - checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 4817 + checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 4564 4818 dependencies = [ 4565 4819 "cfg-if", 4566 4820 "js-sys", ··· 4570 4824 4571 4825 [[package]] 4572 4826 name = "wasm-bindgen-macro" 4573 - version = "0.2.89" 4827 + version = "0.2.91" 4574 4828 source = "registry+https://github.com/rust-lang/crates.io-index" 4575 - checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 4829 + checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 4576 4830 dependencies = [ 4577 4831 "quote", 4578 4832 "wasm-bindgen-macro-support", ··· 4580 4834 4581 4835 [[package]] 4582 4836 name = "wasm-bindgen-macro-support" 4583 - version = "0.2.89" 4837 + version = "0.2.91" 4584 4838 source = "registry+https://github.com/rust-lang/crates.io-index" 4585 - checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 4839 + checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 4586 4840 dependencies = [ 4587 4841 "proc-macro2", 4588 4842 "quote", 4589 - "syn 2.0.46", 4843 + "syn 2.0.48", 4590 4844 "wasm-bindgen-backend", 4591 4845 "wasm-bindgen-shared", 4592 4846 ] 4593 4847 4594 4848 [[package]] 4595 4849 name = "wasm-bindgen-shared" 4596 - version = "0.2.89" 4850 + version = "0.2.91" 4597 4851 source = "registry+https://github.com/rust-lang/crates.io-index" 4598 - checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 4852 + checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 4599 4853 4600 4854 [[package]] 4601 4855 name = "wasm-timer" ··· 4629 4883 4630 4884 [[package]] 4631 4885 name = "wayland-backend" 4632 - version = "0.3.2" 4886 + version = "0.3.3" 4633 4887 source = "registry+https://github.com/rust-lang/crates.io-index" 4634 - checksum = "19152ddd73f45f024ed4534d9ca2594e0ef252c1847695255dae47f34df9fbe4" 4888 + checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40" 4635 4889 dependencies = [ 4636 4890 "cc", 4637 4891 "downcast-rs", 4638 - "nix 0.26.4", 4892 + "rustix 0.38.31", 4639 4893 "scoped-tls", 4640 4894 "smallvec", 4641 4895 "wayland-sys 0.31.1", ··· 4671 4925 4672 4926 [[package]] 4673 4927 name = "wayland-client" 4674 - version = "0.31.1" 4928 + version = "0.31.2" 4675 4929 source = "registry+https://github.com/rust-lang/crates.io-index" 4676 - checksum = "1ca7d52347346f5473bf2f56705f360e8440873052e575e55890c4fa57843ed3" 4930 + checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f" 4677 4931 dependencies = [ 4678 - "bitflags 2.4.1", 4679 - "nix 0.26.4", 4680 - "wayland-backend 0.3.2", 4681 - "wayland-scanner 0.31.0", 4932 + "bitflags 2.4.2", 4933 + "rustix 0.38.31", 4934 + "wayland-backend 0.3.3", 4935 + "wayland-scanner 0.31.1", 4682 4936 ] 4683 4937 4684 4938 [[package]] ··· 4699 4953 source = "registry+https://github.com/rust-lang/crates.io-index" 4700 4954 checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 4701 4955 dependencies = [ 4702 - "bitflags 2.4.1", 4956 + "bitflags 2.4.2", 4703 4957 "cursor-icon", 4704 - "wayland-backend 0.3.2", 4958 + "wayland-backend 0.3.3", 4705 4959 ] 4706 4960 4707 4961 [[package]] ··· 4717 4971 4718 4972 [[package]] 4719 4973 name = "wayland-cursor" 4720 - version = "0.31.0" 4974 + version = "0.31.1" 4721 4975 source = "registry+https://github.com/rust-lang/crates.io-index" 4722 - checksum = "a44aa20ae986659d6c77d64d808a046996a932aa763913864dc40c359ef7ad5b" 4976 + checksum = "71ce5fa868dd13d11a0d04c5e2e65726d0897be8de247c0c5a65886e283231ba" 4723 4977 dependencies = [ 4724 - "nix 0.26.4", 4725 - "wayland-client 0.31.1", 4978 + "rustix 0.38.31", 4979 + "wayland-client 0.31.2", 4726 4980 "xcursor", 4727 4981 ] 4728 4982 ··· 4752 5006 4753 5007 [[package]] 4754 5008 name = "wayland-protocols" 4755 - version = "0.31.0" 5009 + version = "0.31.2" 4756 5010 source = "registry+https://github.com/rust-lang/crates.io-index" 4757 - checksum = "e253d7107ba913923dc253967f35e8561a3c65f914543e46843c88ddd729e21c" 5011 + checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4" 4758 5012 dependencies = [ 4759 - "bitflags 2.4.1", 4760 - "wayland-backend 0.3.2", 4761 - "wayland-client 0.31.1", 4762 - "wayland-scanner 0.31.0", 5013 + "bitflags 2.4.2", 5014 + "wayland-backend 0.3.3", 5015 + "wayland-client 0.31.2", 5016 + "wayland-scanner 0.31.1", 4763 5017 "wayland-server", 4764 5018 ] 4765 5019 ··· 4769 5023 source = "registry+https://github.com/rust-lang/crates.io-index" 4770 5024 checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6" 4771 5025 dependencies = [ 4772 - "bitflags 2.4.1", 4773 - "wayland-backend 0.3.2", 4774 - "wayland-client 0.31.1", 4775 - "wayland-protocols 0.31.0", 4776 - "wayland-scanner 0.31.0", 5026 + "bitflags 2.4.2", 5027 + "wayland-backend 0.3.3", 5028 + "wayland-client 0.31.2", 5029 + "wayland-protocols 0.31.2", 5030 + "wayland-scanner 0.31.1", 4777 5031 ] 4778 5032 4779 5033 [[package]] ··· 4800 5054 4801 5055 [[package]] 4802 5056 name = "wayland-scanner" 4803 - version = "0.31.0" 5057 + version = "0.31.1" 4804 5058 source = "registry+https://github.com/rust-lang/crates.io-index" 4805 - checksum = "fb8e28403665c9f9513202b7e1ed71ec56fde5c107816843fb14057910b2c09c" 5059 + checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283" 4806 5060 dependencies = [ 4807 5061 "proc-macro2", 4808 - "quick-xml 0.30.0", 5062 + "quick-xml 0.31.0", 4809 5063 "quote", 4810 5064 ] 4811 5065 4812 5066 [[package]] 4813 5067 name = "wayland-server" 4814 - version = "0.31.0" 5068 + version = "0.31.1" 4815 5069 source = "registry+https://github.com/rust-lang/crates.io-index" 4816 - checksum = "3f3f0c52a445936ca1184c98f1a69cf4ad9c9130788884531ef04428468cb1ce" 5070 + checksum = "00e6e4d5c285bc24ba4ed2d5a4bd4febd5fd904451f465973225c8e99772fdb7" 4817 5071 dependencies = [ 4818 - "bitflags 2.4.1", 5072 + "bitflags 2.4.2", 4819 5073 "downcast-rs", 4820 5074 "io-lifetimes 2.0.3", 4821 - "nix 0.26.4", 4822 - "wayland-backend 0.3.2", 4823 - "wayland-scanner 0.31.0", 5075 + "rustix 0.38.31", 5076 + "wayland-backend 0.3.3", 5077 + "wayland-scanner 0.31.1", 4824 5078 ] 4825 5079 4826 5080 [[package]] ··· 4859 5113 4860 5114 [[package]] 4861 5115 name = "web-sys" 4862 - version = "0.3.64" 5116 + version = "0.3.68" 4863 5117 source = "registry+https://github.com/rust-lang/crates.io-index" 4864 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 5118 + checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 5119 + dependencies = [ 5120 + "js-sys", 5121 + "wasm-bindgen", 5122 + ] 5123 + 5124 + [[package]] 5125 + name = "web-time" 5126 + version = "0.2.4" 5127 + source = "registry+https://github.com/rust-lang/crates.io-index" 5128 + checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0" 4865 5129 dependencies = [ 4866 5130 "js-sys", 4867 5131 "wasm-bindgen", ··· 4869 5133 4870 5134 [[package]] 4871 5135 name = "weezl" 4872 - version = "0.1.7" 5136 + version = "0.1.8" 4873 5137 source = "registry+https://github.com/rust-lang/crates.io-index" 4874 - checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 5138 + checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 4875 5139 4876 5140 [[package]] 4877 5141 name = "wgpu" 4878 - version = "0.18.0" 4879 - source = "registry+https://github.com/rust-lang/crates.io-index" 4880 - checksum = "30e7d227c9f961f2061c26f4cb0fbd4df0ef37e056edd0931783599d6c94ef24" 5142 + version = "0.19.0" 5143 + source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" 4881 5144 dependencies = [ 4882 5145 "arrayvec", 4883 5146 "cfg-if", 4884 - "flume 0.11.0", 5147 + "cfg_aliases 0.1.1", 4885 5148 "js-sys", 4886 5149 "log", 4887 5150 "naga", 4888 5151 "parking_lot 0.12.1", 4889 5152 "profiling", 4890 - "raw-window-handle", 5153 + "raw-window-handle 0.6.0", 4891 5154 "smallvec", 4892 5155 "static_assertions", 4893 5156 "wasm-bindgen", ··· 4900 5163 4901 5164 [[package]] 4902 5165 name = "wgpu-core" 4903 - version = "0.18.1" 4904 - source = "registry+https://github.com/rust-lang/crates.io-index" 4905 - checksum = "ef91c1d62d1e9e81c79e600131a258edf75c9531cbdbde09c44a011a47312726" 5166 + version = "0.19.0" 5167 + source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" 4906 5168 dependencies = [ 4907 5169 "arrayvec", 4908 5170 "bit-vec", 4909 - "bitflags 2.4.1", 5171 + "bitflags 2.4.2", 5172 + "cfg_aliases 0.1.1", 4910 5173 "codespan-reporting", 5174 + "indexmap", 4911 5175 "log", 4912 5176 "naga", 5177 + "once_cell", 4913 5178 "parking_lot 0.12.1", 4914 5179 "profiling", 4915 - "raw-window-handle", 5180 + "raw-window-handle 0.6.0", 4916 5181 "rustc-hash", 4917 5182 "smallvec", 4918 5183 "thiserror", ··· 4923 5188 4924 5189 [[package]] 4925 5190 name = "wgpu-hal" 4926 - version = "0.18.1" 4927 - source = "registry+https://github.com/rust-lang/crates.io-index" 4928 - checksum = "b84ecc802da3eb67b4cf3dd9ea6fe45bbb47ef13e6c49c5c3240868a9cc6cdd9" 5191 + version = "0.19.0" 5192 + source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" 4929 5193 dependencies = [ 4930 5194 "android_system_properties", 4931 5195 "arrayvec", 4932 5196 "ash", 4933 5197 "bit-set", 4934 - "bitflags 2.4.1", 5198 + "bitflags 2.4.2", 4935 5199 "block", 5200 + "cfg_aliases 0.1.1", 4936 5201 "core-graphics-types", 4937 5202 "d3d12", 4938 5203 "glow", ··· 4953 5218 "parking_lot 0.12.1", 4954 5219 "profiling", 4955 5220 "range-alloc", 4956 - "raw-window-handle", 5221 + "raw-window-handle 0.6.0", 4957 5222 "renderdoc-sys", 4958 5223 "rustc-hash", 4959 5224 "smallvec", ··· 4966 5231 4967 5232 [[package]] 4968 5233 name = "wgpu-types" 4969 - version = "0.18.0" 4970 - source = "registry+https://github.com/rust-lang/crates.io-index" 4971 - checksum = "0d5ed5f0edf0de351fe311c53304986315ce866f394a2e6df0c4b3c70774bcdd" 5234 + version = "0.19.0" 5235 + source = "git+https://github.com/gfx-rs/wgpu?rev=20fda69#20fda698341efbdc870b8027d6d49f5bf3f36109" 4972 5236 dependencies = [ 4973 - "bitflags 2.4.1", 5237 + "bitflags 2.4.2", 4974 5238 "js-sys", 4975 5239 "web-sys", 4976 5240 ] ··· 5007 5271 ] 5008 5272 5009 5273 [[package]] 5010 - name = "winapi-wsapoll" 5011 - version = "0.1.1" 5012 - source = "registry+https://github.com/rust-lang/crates.io-index" 5013 - checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e" 5014 - dependencies = [ 5015 - "winapi", 5016 - ] 5017 - 5018 - [[package]] 5019 5274 name = "winapi-x86_64-pc-windows-gnu" 5020 5275 version = "0.4.0" 5021 5276 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5023 5278 5024 5279 [[package]] 5025 5280 name = "windows" 5026 - version = "0.51.1" 5281 + version = "0.52.0" 5027 5282 source = "registry+https://github.com/rust-lang/crates.io-index" 5028 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 5283 + checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 5029 5284 dependencies = [ 5030 5285 "windows-core", 5031 - "windows-targets 0.48.5", 5286 + "windows-targets 0.52.0", 5032 5287 ] 5033 5288 5034 5289 [[package]] 5035 5290 name = "windows-core" 5036 - version = "0.51.1" 5291 + version = "0.52.0" 5037 5292 source = "registry+https://github.com/rust-lang/crates.io-index" 5038 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 5293 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 5039 5294 dependencies = [ 5040 - "windows-targets 0.48.5", 5295 + "windows-targets 0.52.0", 5041 5296 ] 5042 5297 5043 5298 [[package]] ··· 5174 5429 5175 5430 [[package]] 5176 5431 name = "winnow" 5177 - version = "0.5.32" 5432 + version = "0.5.39" 5178 5433 source = "registry+https://github.com/rust-lang/crates.io-index" 5179 - checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6" 5434 + checksum = "5389a154b01683d28c77f8f68f49dea75f0a4da32557a58f68ee51ebba472d29" 5180 5435 dependencies = [ 5181 5436 "memchr", 5182 5437 ] 5183 5438 5184 5439 [[package]] 5185 5440 name = "x11rb" 5186 - version = "0.12.0" 5441 + version = "0.13.0" 5187 5442 source = "registry+https://github.com/rust-lang/crates.io-index" 5188 - checksum = "b1641b26d4dec61337c35a1b1aaf9e3cba8f46f0b43636c609ab0291a648040a" 5443 + checksum = "f8f25ead8c7e4cba123243a6367da5d3990e0d3affa708ea19dce96356bd9f1a" 5189 5444 dependencies = [ 5190 5445 "as-raw-xcb-connection", 5191 5446 "gethostname", 5192 5447 "libc", 5193 - "libloading 0.7.4", 5194 - "nix 0.26.4", 5448 + "libloading 0.8.1", 5195 5449 "once_cell", 5196 - "winapi", 5197 - "winapi-wsapoll", 5450 + "rustix 0.38.31", 5198 5451 "x11rb-protocol", 5199 5452 ] 5200 5453 5201 5454 [[package]] 5202 5455 name = "x11rb-protocol" 5203 - version = "0.12.0" 5456 + version = "0.13.0" 5204 5457 source = "registry+https://github.com/rust-lang/crates.io-index" 5205 - checksum = "82d6c3f9a0fb6701fab8f6cea9b0c0bd5d6876f1f89f7fada07e558077c344bc" 5206 - dependencies = [ 5207 - "nix 0.26.4", 5208 - ] 5458 + checksum = "e63e71c4b8bd9ffec2c963173a4dc4cbde9ee96961d4fcb4429db9929b606c34" 5209 5459 5210 5460 [[package]] 5211 5461 name = "xcursor" ··· 5221 5471 5222 5472 [[package]] 5223 5473 name = "xdg-home" 5224 - version = "1.0.0" 5474 + version = "1.1.0" 5225 5475 source = "registry+https://github.com/rust-lang/crates.io-index" 5226 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 5476 + checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" 5227 5477 dependencies = [ 5228 - "nix 0.26.4", 5478 + "libc", 5229 5479 "winapi", 5230 5480 ] 5231 5481 ··· 5241 5491 ] 5242 5492 5243 5493 [[package]] 5494 + name = "xkbcommon-dl" 5495 + version = "0.4.1" 5496 + source = "registry+https://github.com/rust-lang/crates.io-index" 5497 + checksum = "6924668544c48c0133152e7eec86d644a056ca3d09275eb8d5cdb9855f9d8699" 5498 + dependencies = [ 5499 + "bitflags 2.4.2", 5500 + "dlib", 5501 + "log", 5502 + "once_cell", 5503 + "xkeysym", 5504 + ] 5505 + 5506 + [[package]] 5244 5507 name = "xkeysym" 5245 5508 version = "0.2.0" 5246 5509 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5256 5519 checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 5257 5520 5258 5521 [[package]] 5259 - name = "xmlparser" 5260 - version = "0.13.6" 5261 - source = "registry+https://github.com/rust-lang/crates.io-index" 5262 - checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 5263 - 5264 - [[package]] 5265 5522 name = "xmlwriter" 5266 5523 version = "0.1.0" 5267 5524 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5281 5538 5282 5539 [[package]] 5283 5540 name = "zbus" 5284 - version = "3.14.1" 5541 + version = "3.15.0" 5285 5542 source = "registry+https://github.com/rust-lang/crates.io-index" 5286 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 5543 + checksum = "c45d06ae3b0f9ba1fb2671268b975557d8f5a84bb5ec6e43964f87e763d8bca8" 5287 5544 dependencies = [ 5288 5545 "async-broadcast", 5289 5546 "async-executor", ··· 5323 5580 5324 5581 [[package]] 5325 5582 name = "zbus_macros" 5326 - version = "3.14.1" 5583 + version = "3.15.0" 5327 5584 source = "registry+https://github.com/rust-lang/crates.io-index" 5328 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 5585 + checksum = "b4a1ba45ed0ad344b85a2bb5a1fe9830aed23d67812ea39a586e7d0136439c7d" 5329 5586 dependencies = [ 5330 5587 "proc-macro-crate", 5331 5588 "proc-macro2", ··· 5369 5626 dependencies = [ 5370 5627 "proc-macro2", 5371 5628 "quote", 5372 - "syn 2.0.46", 5629 + "syn 2.0.48", 5373 5630 ] 5374 5631 5375 5632 [[package]]
+22 -14
pkgs/by-name/co/cosmic-applibrary/package.nix
··· 8 8 , libxkbcommon 9 9 , wayland 10 10 }: 11 - 12 11 rustPlatform.buildRustPackage rec { 13 12 pname = "cosmic-applibrary"; 14 - version = "unstable-2024-01-03"; 13 + version = "0-unstable-2024-02-09"; 15 14 16 15 src = fetchFromGitHub { 17 16 owner = "pop-os"; 18 17 repo = pname; 19 - rev = "889cb6078c05cdf3eb94f19f64db552fa2be32dc"; 20 - hash = "sha256-qLAFSHA7YdOWr7ZmLCkQ+aGWb2schANfgdD2BxsrvaE="; 18 + rev = "e214e9867876c96b24568d8a45aaca2936269d9b"; 19 + hash = "sha256-fZxDRktiHHmj7X3e5VyJJMO081auOpSMSsBnJdhhtR8="; 21 20 }; 22 21 23 22 cargoLock = { 24 23 lockFile = ./Cargo.lock; 25 24 outputHashes = { 26 - "accesskit-0.11.0" = "sha256-xVhe6adUb8VmwIKKjHxwCwOo5Y1p3Or3ylcJJdLDrrE="; 25 + "accesskit-0.12.2" = "sha256-ksaYMGT/oug7isQY8/1WD97XDUsX2ShBdabUzxWffYw="; 27 26 "atomicwrites-0.4.2" = "sha256-QZSuGPrJXh+svMeFWqAXoqZQxLq/WfIiamqvjJNVhxA="; 28 - "cosmic-config-0.1.0" = "sha256-WM08/jnB2kAf77FE+0xpBJcVGOHOCcUorifQ/5LXav0="; 29 - "cosmic-client-toolkit-0.1.0" = "sha256-AEgvF7i/OWPdEMi8WUaAg99igBwE/AexhAXHxyeJMdc="; 30 - "glyphon-0.3.0" = "sha256-JGkNIfj1HjOF8kGxqJPNq/JO+NhZD6XrZ4KmkXEP6Xc="; 27 + "cosmic-config-0.1.0" = "sha256-ETNVJ4y7EraAlU9XEZGNNPdyWt1WIURr1dSH6hQ0Pos="; 28 + "cosmic-client-toolkit-0.1.0" = "sha256-vj7Wm1uJ5ULvGNEwKznNhujCZQiuntsWMyKQbIVaO/Q="; 29 + "cosmic-settings-daemon-0.1.0" = "sha256-z/dvRyc3Zc1fAQh2HKk6NI6QSDpNqarqslwszjU+0nc="; 30 + "glyphon-0.5.0" = "sha256-j1HrbEpUBqazWqNfJhpyjWuxYAxkvbXzRKeSouUoPWg="; 31 31 "smithay-client-toolkit-0.18.0" = "sha256-2WbDKlSGiyVmi7blNBr2Aih9FfF2dq/bny57hoA4BrE="; 32 - "softbuffer-0.3.3" = "sha256-eKYFVr6C1+X6ulidHIu9SP591rJxStxwL9uMiqnXx4k="; 32 + "softbuffer-0.4.1" = "sha256-CACVCnyFgefkpDlll6IeaPWB8a3gbF6BW8MnlkytV8o="; 33 + "switcheroo-control-0.1.0" = "sha256-ztZ5HD1hEOvsUSn94ZbbJ6SY9Jbsm8iGHR70GuAnEaQ="; 33 34 "taffy-0.3.11" = "sha256-SCx9GEIJjWdoNVyq+RZAGn0N71qraKZxf9ZWhvyzLaI="; 34 - "cosmic-settings-daemon-0.1.0" = "sha256-z/dvRyc3Zc1fAQh2HKk6NI6QSDpNqarqslwszjU+0nc="; 35 - "cosmic-text-0.10.0" = "sha256-C2FHJBESbiyL2BhLb6T+wI9EX+xCyp02Kk6cI46EfDs="; 35 + "cosmic-text-0.11.1" = "sha256-lyBl0VAzcKBqLeCPrA28VW6O0MWXazJg1b11YuBR65U="; 36 + "d3d12-0.19.0" = "sha256-usrxQXWLGJDjmIdw1LBXtBvX+CchZDvE8fHC0LjvhD4="; 36 37 }; 37 38 }; 38 39 39 - nativeBuildInputs = [ just pkg-config makeBinaryWrapper ]; 40 - buildInputs = [ libxkbcommon wayland ]; 40 + nativeBuildInputs = [ 41 + just 42 + pkg-config 43 + makeBinaryWrapper 44 + ]; 45 + buildInputs = [ 46 + libxkbcommon 47 + wayland 48 + ]; 41 49 42 50 dontUseJustBuild = true; 43 51 ··· 56 64 57 65 postInstall = '' 58 66 wrapProgram $out/bin/cosmic-app-library \ 59 - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [wayland]}" 67 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ wayland ]}" 60 68 ''; 61 69 62 70 meta = with lib; {
+35
pkgs/by-name/dd/ddsmt/package.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchPypi 4 + }: 5 + 6 + let 7 + version = "2.0.3"; 8 + in 9 + python3Packages.buildPythonApplication { 10 + pname = "ddsmt"; 11 + inherit version; 12 + pyproject = true; 13 + 14 + src = fetchPypi { 15 + inherit version; 16 + pname = "ddSMT"; 17 + hash = "sha256-nmhEG4sUmgpgRUduVTtwDLGPJVKx+dEaPb+KjFRwV2Q="; 18 + }; 19 + 20 + nativeBuildInputs = with python3Packages; [ 21 + setuptools 22 + ]; 23 + 24 + propagatedBuildInputs = with python3Packages; [ 25 + gprof2dot 26 + progressbar 27 + ]; 28 + 29 + meta = { 30 + description = "A delta debugger for SMT benchmarks in SMT-LIB v2"; 31 + homepage = "https://ddsmt.readthedocs.io/"; 32 + license = with lib.licenses; [ gpl3Plus ]; 33 + maintainers = with lib.maintainers; [ AndersonTorres ]; 34 + }; 35 + }
+3 -3
pkgs/by-name/hy/hyprlang/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "hyprlang"; 10 - version = "0.4.1"; 10 + version = "0.5.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "hyprwm"; 14 14 repo = "hyprlang"; 15 15 rev = "v${finalAttrs.version}"; 16 - hash = "sha256-upV2PWOoQ5hKbeuMwiJ4RJUa1JDVqzxdr5LL7YJJ/f4="; 16 + hash = "sha256-bR4o3mynoTa1Wi4ZTjbnsZ6iqVcPGriXp56bZh5UFTk="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ ··· 30 30 meta = with lib; { 31 31 homepage = "https://github.com/hyprwm/hyprlang"; 32 32 description = "The official implementation library for the hypr config language"; 33 - license = licenses.gpl3Plus; 33 + license = licenses.lgpl3Only; 34 34 platforms = platforms.linux; 35 35 maintainers = with maintainers; [ iogamaster fufexan ]; 36 36 };
+25
pkgs/by-name/ke/kernel-hardening-checker/package.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3Packages.buildPythonApplication rec { 7 + pname = "kernel-hardening-checker"; 8 + version = "0.6.6"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "a13xp0p0v"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-xpVazB9G0cdc0GglGpna80EWHZXfTd5mc5mTvvvoPfE="; 15 + }; 16 + 17 + meta = with lib; { 18 + description = "A tool for checking the security hardening options of the Linux kernel"; 19 + homepage = "https://github.com/a13xp0p0v/kernel-hardening-checker"; 20 + license = licenses.gpl3Only; 21 + platforms = platforms.all; 22 + maintainers = with maintainers; [ erdnaxe ]; 23 + mainProgram = "kernel-hardening-checker"; 24 + }; 25 + }
+49
pkgs/by-name/lb/lbreakout2/package.nix
··· 1 + { lib 2 + , SDL 3 + , SDL_mixer 4 + , fetchpatch 5 + , fetchurl 6 + , libintl 7 + , libpng 8 + , stdenv 9 + , zlib 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "lbreakout2"; 14 + version = "2.6.5"; 15 + 16 + src = fetchurl { 17 + url = "mirror://sourceforge/lgames/lbreakout2-${finalAttrs.version}.tar.gz"; 18 + hash = "sha256-kQTWF1VT2jRC3GpfxAemaeL1r/Pu3F0wQJ6wA7enjW8="; 19 + }; 20 + 21 + patches = [ 22 + (fetchpatch { 23 + url = "https://sources.debian.org/data/main/l/lbreakout2/2.6.5-2/debian/patches/sdl_fix_pauses.patch"; 24 + hash = "sha256-ycsuxfokpOblLky42MwtJowdEp7v5dZRMFIR4id4ZBI="; 25 + }) 26 + ]; 27 + 28 + buildInputs = [ 29 + SDL 30 + SDL_mixer 31 + libintl 32 + libpng 33 + zlib 34 + ]; 35 + 36 + # With fortify it crashes at runtime: 37 + # *** buffer overflow detected ***: terminated 38 + # Aborted (core dumped) 39 + hardeningDisable = [ "fortify" ]; 40 + 41 + meta = { 42 + homepage = "http://lgames.sourceforge.net/LBreakout2/"; 43 + description = "Breakout clone from the LGames series"; 44 + license = with lib.licenses; [ gpl2Plus ]; 45 + mainProgram = "lbreakout2"; 46 + maintainers = with lib.maintainers; [ AndersonTorres ciil ]; 47 + platforms = lib.platforms.unix; 48 + }; 49 + })
+2 -2
pkgs/by-name/no/nom/package.nix
··· 4 4 }: 5 5 buildGoModule rec { 6 6 pname = "nom"; 7 - version = "2.1.3"; 7 + version = "2.1.4"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "guyfedwards"; 11 11 repo = "nom"; 12 12 rev = "v${version}"; 13 - hash = "sha256-PBhwIyGzWbXRTmp+IvFPqae4cbb6l6nIYcFheYkHlFI="; 13 + hash = "sha256-W0vfYAEQYixbnOQhA59sj2uSAcbqoS/OMiB3TfXsv/Y="; 14 14 }; 15 15 16 16 vendorHash = "sha256-fP6yxfIQoVaBC9hYcrCyo3YP3ntEVDbDTwKMO9TdyDI=";
+26
pkgs/by-name/ob/obs-cmd/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "obs-cmd"; 8 + version = "0.17.4"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "grigio"; 12 + repo = "obs-cmd"; 13 + rev = "v${version}"; 14 + hash = "sha256-HCvIMIQZKzIkpYL9F9oM4xiE/gOeI+7dMj9QmhetHm4="; 15 + }; 16 + 17 + cargoHash = "sha256-AQRjZH3WhZXU6NhDSCv4/HWz5un1nFtuzWPYSJA9XaE="; 18 + 19 + meta = with lib; { 20 + description = "Minimal CLI to control OBS Studio via obs-websocket"; 21 + homepage = "https://github.com/grigio/obs-cmd"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ ianmjones ]; 24 + mainProgram = "obs-cmd"; 25 + }; 26 + }
+13 -15
pkgs/by-name/pr/pretalx/package.nix
··· 27 27 }; 28 28 }; 29 29 30 - version = "2023.1.3"; 30 + version = "2024.1.0"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "pretalx"; 34 34 repo = "pretalx"; 35 35 rev = "v${version}"; 36 - hash = "sha256-YxmkjfftNrInIcSkK21wJXiEU6hbdDa1Od8p+HiLprs="; 36 + hash = "sha256-rFOlovybaEZnv5wBx6Dv8bVkP1D+CgYAKRXuNb6hLKQ="; 37 37 }; 38 38 39 39 meta = with lib; { 40 40 description = "Conference planning tool: CfP, scheduling, speaker management"; 41 41 homepage = "https://github.com/pretalx/pretalx"; 42 + changelog = "https://docs.pretalx.org/en/latest/changelog.html"; 42 43 license = licenses.asl20; 43 44 maintainers = teams.c3d2.members; 44 45 platforms = platforms.linux; ··· 50 51 51 52 sourceRoot = "${src.name}/src/pretalx/frontend/schedule-editor"; 52 53 53 - npmDepsHash = "sha256-4cnBHZ8WpHgp/bbsYYbdtrhuD6ffUAZq9ZjoLpWGfRg="; 54 + npmDepsHash = "sha256-B9R3Nn4tURNxzeyLDHscqHxYOQK9AcmDnyNq3k5WQQs="; 54 55 55 56 npmBuildScript = "build"; 56 57 ··· 72 73 --replace 'subprocess.check_call(["npm", "run", "build"], cwd=frontend_dir, env=env)' "" 73 74 74 75 substituteInPlace src/setup.cfg \ 75 - --replace "--cov=./" "" 76 + --replace "--cov=./ --cov-report=" "" 76 77 ''; 77 78 78 79 nativeBuildInputs = [ 79 80 gettext 80 - python.pkgs.pythonRelaxDepsHook 81 - ]; 82 - 83 - pythonRelaxDeps = [ 84 - "bleach" 85 - "cssutils" 86 - "django-filter" 87 - "django-formtools" 88 - "libsass" 89 - "markdown" 90 - "pillow" 91 81 ]; 92 82 93 83 propagatedBuildInputs = with python.pkgs; [ ··· 174 164 nativeCheckInputs = with python.pkgs; [ 175 165 faker 176 166 freezegun 167 + jsonschema 177 168 pytest-django 178 169 pytest-mock 179 170 pytest-xdist ··· 185 176 # tries to run npm run i18n:extract 186 177 "test_common_custom_makemessages_does_not_blow_up" 187 178 # Expected to perform X queries or less but Y were done 179 + "test_can_see_schedule" 188 180 "test_schedule_export_public" 189 181 "test_schedule_frab_json_export" 182 + "test_schedule_frab_xcal_export" 190 183 "test_schedule_frab_xml_export" 184 + "test_schedule_frab_xml_export_control_char" 185 + "test_schedule_page_text_list" 186 + "test_schedule_page_text_table" 187 + "test_schedule_page_text_wrong_format" 188 + "test_versioned_schedule_page" 191 189 ]; 192 190 193 191 passthru = {
+29
pkgs/by-name/se/sesh/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildGoModule, 5 + }: 6 + buildGoModule rec { 7 + pname = "sesh"; 8 + version = "0.12.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "joshmedeski"; 12 + repo = "sesh"; 13 + rev = "v${version}"; 14 + hash = "sha256-m/EcWh4wfna9PB/NN+MCRUsz5Er0OZ70AAumlKdrm/s="; 15 + }; 16 + 17 + vendorHash = "sha256-zt1/gE4bVj+3yr9n0kT2FMYMEmiooy3k1lQ77rN6sTk="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = { 22 + description = "Smart session manager for the terminal"; 23 + homepage = "https://github.com/joshmedeski/sesh"; 24 + changelog = "https://github.com/joshmedeski/sesh/releases/tag/${src.rev}"; 25 + license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ gwg313 ]; 27 + mainProgram = "sesh"; 28 + }; 29 + }
+2 -2
pkgs/by-name/uc/uclibc-ng/package.nix
··· 58 58 in 59 59 stdenv.mkDerivation (finalAttrs: { 60 60 pname = "uclibc-ng"; 61 - version = "1.0.44"; 61 + version = "1.0.45"; 62 62 63 63 src = fetchurl { 64 64 url = "https://downloads.uclibc-ng.org/releases/${finalAttrs.version}/uClibc-ng-${finalAttrs.version}.tar.xz"; 65 - sha256 = "sha256-ffnZh5VYJzgvHCQA2lE0Vr7Ltvhovf03c3Jl8cvuyZQ="; 65 + sha256 = "sha256-wvTGtuGdfJwiaZKjdG79erkyBARjwV7gvI9BMrV3esQ="; 66 66 }; 67 67 68 68 # 'ftw' needed to build acl, a coreutils dependency
+61
pkgs/by-name/vl/vlc-bin/package.nix
··· 1 + { lib 2 + , fetchurl 3 + , makeWrapper 4 + , stdenv 5 + , undmg 6 + , variant ? 7 + if (stdenv.isDarwin && stdenv.isAarch64) 8 + then "arm64" 9 + else if (stdenv.isDarwin && stdenv.isx86_64) 10 + then "intel64" 11 + else "universal" # not reachable by normal means 12 + }: 13 + 14 + assert builtins.elem variant [ "arm64" "intel64" "universal" ]; 15 + stdenv.mkDerivation (finalAttrs: { 16 + pname = "vlc-bin-${variant}"; 17 + version = "3.0.20"; 18 + 19 + src = fetchurl { 20 + url = "http://get.videolan.org/vlc/${finalAttrs.version}/macosx/vlc-${finalAttrs.version}-${variant}.dmg"; 21 + hash = { 22 + "arm64" = "sha256-XV8O5S2BmCpiL0AhkopktHBalVRJniDDPQusIlkLEY4="; 23 + "intel64" = "sha256-pNwUQfyrjiuQxil0zlOZu4isv2xw1U8hxhWNn7H7onk="; 24 + "universal" = "sha256-IqGPOWzMmHbGDV+0QxFslv19BC2J1Z5Qzcuja/Od1Us="; 25 + }.${variant}; 26 + }; 27 + 28 + sourceRoot = "."; 29 + 30 + nativeBuildInputs = [ 31 + makeWrapper 32 + undmg 33 + ]; 34 + 35 + installPhase = '' 36 + runHook preInstall 37 + 38 + mkdir -p $out/Applications $out/bin 39 + cp -r "VLC.app" $out/Applications 40 + makeWrapper "$out/Applications/VLC.app/Contents/MacOS/VLC" "$out/bin/vlc" 41 + 42 + runHook postInstall 43 + ''; 44 + 45 + meta = { 46 + description = "Cross-platform media player and streaming server; precompiled binary for MacOS, repacked from official website"; 47 + homepage = "https://www.videolan.org/vlc/"; 48 + downloadPage = "https://www.videolan.org/vlc/download-macosx.html"; 49 + license = lib.licenses.lgpl21Plus; 50 + mainProgram = "vlc"; 51 + maintainers = with lib.maintainers; [ pcasaretto ]; 52 + platforms = lib.systems.inspect.patternLogicalAnd 53 + (lib.systems.inspect.patterns.isDarwin) 54 + (({ 55 + "arm64" = lib.systems.inspect.patterns.isAarch64; 56 + "intel64" = lib.systems.inspect.patterns.isx86_64; 57 + "universal" = lib.systems.inspect.patterns.isDarwin; 58 + }).${variant}); 59 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 60 + }; 61 + })
+14 -8
pkgs/data/fonts/iosevka/bin.nix
··· 1 - { stdenv, lib, fetchurl, iosevka, unzip 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , iosevka 5 + , unzip 2 6 , variant ? "" 3 7 }: 4 8 5 9 let 6 - name = if lib.hasPrefix "sgr" variant then variant 7 - else "iosevka" + lib.optionalString (variant != "") "-" + variant; 10 + name = 11 + if lib.hasPrefix "SGr-" variant then variant 12 + else "Iosevka" + variant; 8 13 9 14 variantHashes = import ./variants.nix; 10 - validVariants = map (lib.removePrefix "iosevka-") 11 - (builtins.attrNames (builtins.removeAttrs variantHashes [ "iosevka" ])); 12 - in stdenv.mkDerivation rec { 15 + validVariants = map (lib.removePrefix "Iosevka") 16 + (builtins.attrNames (builtins.removeAttrs variantHashes [ "Iosevka" ])); 17 + in 18 + stdenv.mkDerivation rec { 13 19 pname = "${name}-bin"; 14 - version = "27.3.5"; 20 + version = "28.1.0"; 15 21 16 22 src = fetchurl { 17 - url = "https://github.com/be5invis/Iosevka/releases/download/v${version}/ttc-${name}-${version}.zip"; 23 + url = "https://github.com/be5invis/Iosevka/releases/download/v${version}/PkgTTC-${name}-${version}.zip"; 18 24 sha256 = variantHashes.${name} or (throw '' 19 25 No such variant "${variant}" for package iosevka-bin. 20 26 Valid variants are: ${lib.concatStringsSep ", " validVariants}.
+20 -11
pkgs/data/fonts/iosevka/comfy.nix
··· 4 4 sets = [ 5 5 # Family | Shapes | Spacing | Style | Ligatures | 6 6 # ------------------------+--------+---------+------------+-----------| 7 - "comfy" # Sans | Compact | Monospaced | Yes | 8 - "comfy-fixed" # Sans | Compact | Monospaced | No | 9 - "comfy-duo" # Sans | Compact | Duospaced | Yes | 7 + "comfy" # | Sans | Compact | Monospaced | Yes | 8 + "comfy-fixed" # | Sans | Compact | Monospaced | No | 9 + "comfy-duo" # | Sans | Compact | Duospaced | Yes | 10 10 # ------------------------+--------+---------+------------+-----------| 11 - "comfy-motion" # Slab | Compact | Monospaced | Yes | 12 - "comfy-motion-fixed" # Slab | Compact | Monospaced | No | 13 - "comfy-motion-duo" # Slab | Compact | Duospaced | Yes | 11 + "comfy-motion" # | Slab | Compact | Monospaced | Yes | 12 + "comfy-motion-fixed" # | Slab | Compact | Monospaced | No | 13 + "comfy-motion-duo" # | Slab | Compact | Duospaced | Yes | 14 14 # ------------------------+--------+---------+------------+-----------| 15 - "comfy-wide" # Sans | Wide | Monospaced | Yes | 16 - "comfy-wide-fixed" # Sans | Wide | Monospaced | No | 17 - "comfy-wide-duo" # Sans | Wide | Duospaced | Yes | 15 + "comfy-wide" # | Sans | Wide | Monospaced | Yes | 16 + "comfy-wide-fixed" # | Sans | Wide | Monospaced | No | 17 + "comfy-wide-duo" # | Sans | Wide | Duospaced | Yes | 18 18 # ------------------------+--------+---------+------------+-----------| 19 - "comfy-wide-motion" # Slab | Wide | Monospaced | Yes | 19 + "comfy-wide-motion" # | Slab | Wide | Monospaced | Yes | 20 20 "comfy-wide-motion-fixed" # Slab | Wide | Monospaced | No | 21 - "comfy-wide-motion-duo" # Slab | Wide | Duospaced | Yes | 21 + "comfy-wide-motion-duo" # | Slab | Wide | Duospaced | Yes | 22 22 ]; 23 23 version = "1.4.0"; 24 24 src = fetchFromGitHub { ··· 34 34 inherit set privateBuildPlan; 35 35 buildNpmPackage = args: superBuildNpmPackage 36 36 (args // { 37 + pname = "iosevka-${set}"; 37 38 inherit version; 38 39 39 40 src = fetchFromGitHub { ··· 44 45 }; 45 46 46 47 npmDepsHash = "sha256-c+ltdh5e3+idclYfqp0Xh9IUwoj7XYP1uzJG6+a5gFU="; 48 + 49 + installPhase = '' 50 + runHook preInstall 51 + fontdir="$out/share/fonts/truetype" 52 + install -d "$fontdir" 53 + install "dist/$pname/ttf"/* "$fontdir" 54 + runHook postInstall 55 + ''; 47 56 48 57 meta = with lib; { 49 58 inherit (src.meta) homepage;
+20 -20
pkgs/data/fonts/iosevka/default.nix
··· 54 54 assert (extraParameters != null) -> set != null; 55 55 56 56 buildNpmPackage rec { 57 - pname = if set != null then "iosevka-${set}" else "iosevka"; 58 - version = "27.3.5"; 57 + pname = "Iosevka${toString set}"; 58 + version = "28.1.0"; 59 59 60 60 src = fetchFromGitHub { 61 61 owner = "be5invis"; 62 62 repo = "iosevka"; 63 63 rev = "v${version}"; 64 - hash = "sha256-dqXr/MVOuEmAMueaRWsnzY9MabhnyBRtLR9IDVLN79I="; 64 + hash = "sha256-cYnGJ7Z0PDRZtC/vz8hX/+mqk7iVkajFTfNGgRW+edQ="; 65 65 }; 66 66 67 - npmDepsHash = "sha256-bux8aFBP1Pi5pAQY1jkNTqD2Ny2j+QQs+QRaXWJj6xg="; 67 + npmDepsHash = "sha256-bzQ7dc7UiC++0DxnQHusu6Ym7rd7GgeA6bGSnnla1nk="; 68 68 69 69 nativeBuildInputs = [ 70 70 remarshal ··· 88 88 ) [ "buildPlan" ]; 89 89 90 90 configurePhase = '' 91 - runHook preConfigure 92 - ${lib.optionalString (builtins.isAttrs privateBuildPlan) '' 93 - remarshal -i "$buildPlanPath" -o private-build-plans.toml -if json -of toml 94 - ''} 95 - ${lib.optionalString (builtins.isString privateBuildPlan 96 - && (!lib.hasPrefix builtins.storeDir privateBuildPlan)) '' 97 - cp "$buildPlanPath" private-build-plans.toml 91 + runHook preConfigure 92 + ${lib.optionalString (builtins.isAttrs privateBuildPlan) '' 93 + remarshal -i "$buildPlanPath" -o private-build-plans.toml -if json -of toml 98 94 ''} 99 - ${lib.optionalString (builtins.isString privateBuildPlan 100 - && (lib.hasPrefix builtins.storeDir privateBuildPlan)) '' 101 - cp "$buildPlan" private-build-plans.toml 95 + ${lib.optionalString (builtins.isString privateBuildPlan 96 + && (!lib.hasPrefix builtins.storeDir privateBuildPlan)) '' 97 + cp "$buildPlanPath" private-build-plans.toml 98 + ''} 99 + ${lib.optionalString (builtins.isString privateBuildPlan 100 + && (lib.hasPrefix builtins.storeDir privateBuildPlan)) '' 101 + cp "$buildPlan" private-build-plans.toml 102 + ''} 103 + ${lib.optionalString (extraParameters != null) '' 104 + echo -e "\n" >> params/parameters.toml 105 + cat "$extraParametersPath" >> params/parameters.toml 102 106 ''} 103 - ${lib.optionalString (extraParameters != null) '' 104 - echo -e "\n" >> params/parameters.toml 105 - cat "$extraParametersPath" >> params/parameters.toml 106 - ''} 107 - runHook postConfigure 107 + runHook postConfigure 108 108 ''; 109 109 110 110 buildPhase = '' ··· 118 118 runHook preInstall 119 119 fontdir="$out/share/fonts/truetype" 120 120 install -d "$fontdir" 121 - install "dist/$pname/ttf"/* "$fontdir" 121 + install "dist/$pname/TTF"/* "$fontdir" 122 122 runHook postInstall 123 123 ''; 124 124
+2 -2
pkgs/data/fonts/iosevka/update-bin.sh
··· 19 19 { 20 20 echo '# This file was autogenerated. DO NOT EDIT!' 21 21 echo '{' 22 - for asset in $(echo "$release" | jq -r '.assets[].name | select(startswith("ttc"))'); do 22 + for asset in $(echo "$release" | jq -r '.assets[].name | select(startswith("PkgTTC"))'); do 23 23 printf ' %s = "%s";\n' \ 24 - $(echo "$asset" | sed -r "s/^ttc-(.*)-$version.zip$/\1/") \ 24 + $(echo "$asset" | sed -r "s/^PkgTTC-(.*)-$version.zip$/\1/") \ 25 25 $(nix-prefetch-url "https://github.com/be5invis/Iosevka/releases/download/v$version/$asset") 26 26 done 27 27 echo '}'
+90 -92
pkgs/data/fonts/iosevka/variants.nix
··· 1 1 # This file was autogenerated. DO NOT EDIT! 2 2 { 3 - iosevka = "0s37z4yml026pmaj6gpc603mry34hlzg67b0v9rblb90rx7xqlii"; 4 - iosevka-aile = "1vpn9mg48xy4jmbs804zmisaj1mnvwv5b9c0iy6mrwkd5m7gcqfb"; 5 - iosevka-curly = "138wwgn03cx0lkgs2mbydiyggjmbmy3iz4wgn17sbp5d7m7g0sp3"; 6 - iosevka-curly-slab = "024miwl9y57rxmc4hnyjk0j861wapyfy4jpg5q61jjh6nji3qwrk"; 7 - iosevka-etoile = "0gcdpzi6riy6x9qcjzmvb2kcdh209d8zbbc78b95ymgyndzwp3k2"; 8 - iosevka-slab = "1gny1az6lrg24dx9qrrpbrq85mkn6684970gbvl8wjh1pmkv2w14"; 9 - iosevka-ss01 = "06kw96biyyp35cc4x5pr3bf08f72020nvwcz12wk0qms02rz37s0"; 10 - iosevka-ss02 = "0yd18n2vrxbpf4kccad5q0cr24j04grz57l2jpgr3j3qiwz53zn1"; 11 - iosevka-ss03 = "01203jgpx8hsxs2jq5py8404y1cz95m5bsdzgya3nhyfslix7dxz"; 12 - iosevka-ss04 = "1c2xs689fqzzvbv72wb7pfwx687hrl8vzvakjbl317qpzmlrlbkr"; 13 - iosevka-ss05 = "0whfsl9ma1590zmks0r7lywc0sfy6mq74p8mhkmds6h35nri9djj"; 14 - iosevka-ss06 = "065lqb0w4cvhk7jadic2xn4pdq0rrg4f4b0gpc5z0xa2fsvw4rir"; 15 - iosevka-ss07 = "0bhl2p0zrzdn9vhl5ndfdzd7658qsaci41l6vpcsl5x9np3ii2jg"; 16 - iosevka-ss08 = "1ka2ii29v4aqqiwfbjcwsqsj2gpa46mpnv7d11rgn49n4j0isk1p"; 17 - iosevka-ss09 = "08n44fjsas94d7q1x9az58z5p786gxh8665yyhvhjzh76pzrkbwj"; 18 - iosevka-ss10 = "136pvfw6lab3vwzrx45cqkh1n6r8srahd9jbi9li02r19m78qp6f"; 19 - iosevka-ss11 = "0wgnzq1vfibxgb50dcwjsvf20jvjvhp1xwsbh1zpqqsh1kr89bln"; 20 - iosevka-ss12 = "0ql1xhjk2alrvyryvjaw54z9gnh4gi58nhskrhnkz4mdlr7a6xr3"; 21 - iosevka-ss13 = "0ivk20l8y2g0s7729wjc4h9bdqvjn859ij8vaccl12ql58i2phhb"; 22 - iosevka-ss14 = "0ib2ynpk7lcisbmcrrd2wlia7rh243zq1hys6ln2r3gd75m6hvbq"; 23 - iosevka-ss15 = "0yp0n7d5wwwykmzlc41fywc1mx06khp3xiy6gad9bng7mavpx91c"; 24 - iosevka-ss16 = "0gm0b50zhc2hc6l3qpl4q3jk8rcr9bh8y0i65xcv3bm456753l4v"; 25 - iosevka-ss17 = "0yf244n7161zk1csxnb7zx2c95q79jibplvczqfh2k8as3r4xw07"; 26 - iosevka-ss18 = "1886h5dzswspd0j3hs0d6m271qqsfp3zkihyp9acpf2v4r56nmmn"; 27 - sgr-iosevka = "1kl1wkgda764qqyyk14s0gfb2qavsfvc9zbr30z7zdkcqxk383gd"; 28 - sgr-iosevka-aile = "115ynw0dysf9473j6jami7yf79i6rlhm7a019fxlfcqnm2k3zz5r"; 29 - sgr-iosevka-curly = "010g7cgd3r8dw48mfdmcqzymqn8mqn5xnnvinvilahxq0qaj2s4w"; 30 - sgr-iosevka-curly-slab = "1fk67ay7bs1s1qajlrib06n0y1ii1fjlxdqrj2dvzlji8ac35hqc"; 31 - sgr-iosevka-etoile = "1gf696k4f4hh1yh664d361x0n65sh6q0i3n8as5id2vpzcjbn83w"; 32 - sgr-iosevka-fixed = "12v438imi2891b4ra3c48imd0n429aa889myhkglrky1bfxwwpw2"; 33 - sgr-iosevka-fixed-curly = "1v4vv48an8l9a5diavxap328d3qd6iy6hbwkkn64db2vxwmkdml7"; 34 - sgr-iosevka-fixed-curly-slab = "0xbz45qkd9paghrdx4s1gxgnn872fmywmr7il0v5yir81wys1z97"; 35 - sgr-iosevka-fixed-slab = "1w7qsg6a2g27izbmqshly2bnsbwdf2rhymvnq30vqgb2f1a6rlwq"; 36 - sgr-iosevka-fixed-ss01 = "1f4fi4h3fl7c3b0maj2l9df4yfs4pqj9rq5f7kk9kl2jnk0zq6yy"; 37 - sgr-iosevka-fixed-ss02 = "18q603zbi1dk1z8n215z2kyi3rcxik6m6cffihml0f1sb39rh3r7"; 38 - sgr-iosevka-fixed-ss03 = "05xs1z82ck01f9x3vhc74ajbgj9ms14bbmbcz0cf18sx03hpyz84"; 39 - sgr-iosevka-fixed-ss04 = "00rb7580xppnvjph6az2ldhgagahvivirzax2pf3fxd5an08zmla"; 40 - sgr-iosevka-fixed-ss05 = "1smjnzjhkxkb9m79d8ynp30846zggb88z7qxd2q58iadq8narx2q"; 41 - sgr-iosevka-fixed-ss06 = "0wqd4pyv66axwsnicbpzidghvh3cx2lyzjmj66734rqz8slsrjb6"; 42 - sgr-iosevka-fixed-ss07 = "1xbs7mjvl8mvi4jhmxnfadvvgpyvyh7y4yqn8vhgbcxp84fzgy3j"; 43 - sgr-iosevka-fixed-ss08 = "0x2kkfffhapj4vnfpdv49zr4wrf02sw6467qrky9sf9phkwa40vh"; 44 - sgr-iosevka-fixed-ss09 = "0z436cps3rb8kfm7pxjjs8p3bjwrg86p549nd6fvgp67p05xx38r"; 45 - sgr-iosevka-fixed-ss10 = "0qpjdgzqb5yadp4bz26kmwjdmpaak7s2mj9km2g565bci096cri4"; 46 - sgr-iosevka-fixed-ss11 = "1i306ai7drhca8ammi6dz8j6v68mjyxwc35zzg801shgy8a00scd"; 47 - sgr-iosevka-fixed-ss12 = "0aza67vz3mrq9ah5pm7lyahdbh0dhzzp8v4hy5slmy8a766ha9gm"; 48 - sgr-iosevka-fixed-ss13 = "022nrapzv1s2a5davh1bpqgm46r04fbns5x6z3826ydsrwkapfs7"; 49 - sgr-iosevka-fixed-ss14 = "023f8j5rzivmqg61larm5kjyb7sd8prqilzd99xp1b97zi4iy0kg"; 50 - sgr-iosevka-fixed-ss15 = "0xb85wsfha7z0krlnb1nhzqd4cva13dvrp8kpfpnmmz1alpvgx0x"; 51 - sgr-iosevka-fixed-ss16 = "0n3chagxlypxsj1zb2r6z3vjfix15pc3nc8sx5cc9j4inb7v5z5v"; 52 - sgr-iosevka-fixed-ss17 = "0kzk2llpwi9plbn3jw203chr8ahpq6kbv9b4i9maf3ljvgdy7nyc"; 53 - sgr-iosevka-fixed-ss18 = "1mzv3zkxrd1lsri1niiqvlkpzhxy9m0gr3ygxzrrfj3f6p6wzq87"; 54 - sgr-iosevka-slab = "1fsl0qsvmfhxjc6y5g8d90x39mz5hzw55xfnwzjjifls6igc8kd4"; 55 - sgr-iosevka-ss01 = "0z18akfqsgr6qcqrcrrwpfdswzk8if9cdhahqgjnkw90qm4m6pyq"; 56 - sgr-iosevka-ss02 = "0x0bc72y835xlz9k2xbbpgccrgswkg7w1hia86x6d91kgj7whmg4"; 57 - sgr-iosevka-ss03 = "0v56qc9aj2k1vs7wxnni21hflady4n5qi05gysp193n7j440l3ci"; 58 - sgr-iosevka-ss04 = "0nidrw3pjcn5fz2a6ysvdkqah31rzgnsg4z7p804h9cnqwl2b2m4"; 59 - sgr-iosevka-ss05 = "0khphs4d28sas5i31kbbj2zv0b45vc0p05d9kyg3azl4hl72ic41"; 60 - sgr-iosevka-ss06 = "0qmr33qv890jqygz6gllh1g0fvvxyjmla0hb02zcgljrccwq7jyd"; 61 - sgr-iosevka-ss07 = "09952mnal5mdz5fqfg4ayidvxcc8sfwv7d127vdzxhawg60ikkss"; 62 - sgr-iosevka-ss08 = "1ymf7j5jx2jdh6n910d89k71m95hg05dp6g6mvv0c7m4yf5wd7m3"; 63 - sgr-iosevka-ss09 = "0gh7rx8fzbx61jba34kcwlazxg7ar4y6vp1h6aysn30fv7q9p7rp"; 64 - sgr-iosevka-ss10 = "0i72r3xllg8am12n700zylc1a8nc4xnj5zxhfhvlk1czdhv7dln6"; 65 - sgr-iosevka-ss11 = "0hs8b9fmjwxbl08652zfkgdmq0dds43jsr2qd3npmg6cg2xdiz2n"; 66 - sgr-iosevka-ss12 = "0crs18k93v2xsry8fmf07wfpl3n7ixdn2sy7xls4ijk5wk0nd6vr"; 67 - sgr-iosevka-ss13 = "1fg883qjpqpcxwh9bwc88nzihisr212q1fdrrzy8q3p9vy322j5j"; 68 - sgr-iosevka-ss14 = "1ix85cr0prgfrxckzgf2xdnh9zv6d8v2f4lf6syq0rax2wpdxdk7"; 69 - sgr-iosevka-ss15 = "098fjkjlgnzmw4wgr2d7vx627xiq7n19rc2x5f6qhqcfxcvayf0f"; 70 - sgr-iosevka-ss16 = "0ibfr10h6gxnimpq0bbp2n61a4y4rdkwa5x6m8hlxndxi801zy8j"; 71 - sgr-iosevka-ss17 = "11zx7lpp8xy67x35a6089s3fq0i1yqfdkckxnp2f32szv67midp0"; 72 - sgr-iosevka-ss18 = "1zdfk1a9sixn7as75sjf7sgh3qhhhs819305i9aw93dy4ghvc4zc"; 73 - sgr-iosevka-term = "091rkh4abm90hakq78w7r3ks9kcyx7kpcfvvcx8ydq7qammc2064"; 74 - sgr-iosevka-term-curly = "0kqxraz8jl7w97yf4x9jp7rkbkxjj85yghw0f70g3idxmzk2n4fh"; 75 - sgr-iosevka-term-curly-slab = "1q10n7wckzv1y9dq0b3jj61h39mcjhkga310pm8r0mjh59jsqxxk"; 76 - sgr-iosevka-term-slab = "1pzd5gzz7s1gawvvqnh8gfc6cm5c56ajvkc6c3fnjycl1v9fr3fg"; 77 - sgr-iosevka-term-ss01 = "0za9kwg389znql9jycs02xnmn9wi9c9ganwlqrsmazgcg6cxksds"; 78 - sgr-iosevka-term-ss02 = "0qli57cva503qvxqx86lrl6mjmbq9n0i04198vzjs5ad151iqk2a"; 79 - sgr-iosevka-term-ss03 = "0yfp4a6m9dl67kc8wa4skzrlkh1ysh0a0ndv3gvknaidzpqyigwh"; 80 - sgr-iosevka-term-ss04 = "1b8yvv3i66d0j4z8fh94q97hqgw404pf1z57p7kx31nlgs0p26kq"; 81 - sgr-iosevka-term-ss05 = "1x6adciw3irh6xsxjlw668l0cz094zin1p4f83allc2bkphq3f9w"; 82 - sgr-iosevka-term-ss06 = "1z73jak1ffc1mdnfh3j1z33b8sj5bbh5s86mn7ki5fy5wvq65sih"; 83 - sgr-iosevka-term-ss07 = "1f028x2m39xphvx265qzh3mrirj3rkwv9jmr5q4qdpvpk7xnbra9"; 84 - sgr-iosevka-term-ss08 = "1i0k7k21fmnb0s5ri840a45ycxmm9dz2zw59n4sxivyv70fhhsfc"; 85 - sgr-iosevka-term-ss09 = "1qn891rqxha2sr9w2h885xx4fnyc9scjqqp148dpsnn32cg7bqpr"; 86 - sgr-iosevka-term-ss10 = "02a1nxcv4q6s6kvlxrq7b9xdym2j7in40pkw05df8wqmlqzmgv2b"; 87 - sgr-iosevka-term-ss11 = "0fwjn4a5p65q5rdbb9wb979ff4k5r2ifh2x99jhj0xhwpy8dza1i"; 88 - sgr-iosevka-term-ss12 = "1ycga16psqw4jh6gzxji6sbvhlq6488hkkqwsh1h860gjql0ckm6"; 89 - sgr-iosevka-term-ss13 = "1f715vxs5j5ham5ihpxzq36ykn2nm2f62gg8s3yzsyp9s58sndmd"; 90 - sgr-iosevka-term-ss14 = "1l2s2naa77xv1dwng6lw0zccbndaln8viamsgmbrqjwfdisbrlzw"; 91 - sgr-iosevka-term-ss15 = "1wmkpilp06633rdaf5dzbw48srikh5a8jvk8prcwka4flrs5crnq"; 92 - sgr-iosevka-term-ss16 = "0ccxfk87qp4lr3g67lzbphw6rknvc78h66bbpq5smk0diad8q3nc"; 93 - sgr-iosevka-term-ss17 = "1hm0m9gr8pwbp34fsg9dxcmawn2czmx908gajv4miq4wg0ivsz8k"; 94 - sgr-iosevka-term-ss18 = "1ylbvygxdn3f2crkrywhj0jc15hdpwh08f925xxygq3vrshd22r6"; 3 + Iosevka = "0c9b5hxqfi8jqbgdf5377l0xbga51j9h8hxi5yfa1zznqm1yp041"; 4 + IosevkaAile = "1xc43dinsikyr1q0br25kqlqknrahd8g0sxdphvm0f5chxrnysjk"; 5 + IosevkaCurly = "0v0r1xcgayzg7qb4r0apncpvc22faidbq5rrb5srb5nbaglrlkcm"; 6 + IosevkaCurlySlab = "1rj8xam8p8xx3slzsm3wg84cgzcg1mqsx2k9ww21ic21ckhr2b68"; 7 + IosevkaEtoile = "1hnjiqridfswlgzx2gx09nvmn2vj1iqzccxsv8bfddj9h3gxkqqv"; 8 + IosevkaSlab = "1ja18as85yww613nk4nxryy4mbvb1kgawx2fzh1wxw2g6jyqxdag"; 9 + IosevkaSS01 = "1a6im9ga2zm58ngf4wj19k9a6k971m9szj9ph8919mrpa5k66slb"; 10 + IosevkaSS02 = "1899hyy1snzbaj96vncv4qmd3ky3bbqqrxr54vmk49mx10fvq494"; 11 + IosevkaSS03 = "0lfkvd0rhw5yls31xhmd2vdwh51d16pyx9fq12kdy10syawlzfcy"; 12 + IosevkaSS04 = "101n098m6sckz3fp3xmd94d2yzpc4b1qhc7qn1g8kfk053ydg7jm"; 13 + IosevkaSS05 = "18j2rrs3m091f156b38jhlr3h83malgvsacidg5nkp09jcphfcsc"; 14 + IosevkaSS06 = "1jl1cxhqcj6an0z7ln2al105ayvhbrq1bs4a04zqg9j36wh67b86"; 15 + IosevkaSS07 = "0bzsg9zpwabp0hsp4d8v0ixzhzwm3m833g2326pc86aky50j1r3s"; 16 + IosevkaSS08 = "0gbmfddnfnc6g8zgfv3l3560j6ry9yky8l15kah2xx4ywzl561y1"; 17 + IosevkaSS09 = "1yfhh29k565kq7k2bnfci2mbkm0hb18r9h8cic2w4661fx9yb5vz"; 18 + IosevkaSS10 = "0q8xycxxvmzamhz2qsg0lzf1vgvcvs6pk854q3dwpc1xkp1592qb"; 19 + IosevkaSS11 = "0cxfbx1d28pval8gzka869b273vdaa88wqj6i6i4x1nss24kdyy9"; 20 + IosevkaSS12 = "0jax7xabzwb4visjg7b71gyqk5wx03x08scnmz92vq65sqd5i7yd"; 21 + IosevkaSS13 = "105fv8ilz579bqdyaynkngcsxfvx75smabns7vbj7vlkw3z39343"; 22 + IosevkaSS14 = "1d7gd3j158lk1dnv18ab1i1jfb9q18p977iypq95xy9yjyvs03s8"; 23 + IosevkaSS15 = "0nq2yi6ad1jk45k16br3rq4isy5cc1vb8pysbg4q2sswxm195j4a"; 24 + IosevkaSS16 = "0pqfqlv87ag0kfdnf7wqhnljby2a1nf44q0qaxamv2vkf0b14b55"; 25 + IosevkaSS17 = "132zqrl7z7c8z4bs74nyka8nx94hdzh41kg63rd8ynycj9wpg7p1"; 26 + IosevkaSS18 = "1chyqbynsgaxcgi0cf62g8b7h6hdkirfy05i8yh6rwwwa7bksp0l"; 27 + SGr-Iosevka = "123vpy4y51rp63q2biif7s2n1pb6s53r5zpsl3v0fx31lga5fqmb"; 28 + SGr-IosevkaCurly = "0n7xsxnkz1mrq9608vvm7sha7irr3zkxl92lj7nvkcp0fzsvj27k"; 29 + SGr-IosevkaCurlySlab = "08q7na9abvlnyds9kldgs4q6rpli4b6mb6xynxifgh0p2zqwvzby"; 30 + SGr-IosevkaFixed = "0y1yi6xn7zbp8ylg9i9y0l58a2fd2hvbplrv9l28b9rn4j5rlz1s"; 31 + SGr-IosevkaFixedCurly = "0bs83vis93myb6icixyz0nlzbk0iykdxc1m3jwqig8wmyl1d0rzq"; 32 + SGr-IosevkaFixedCurlySlab = "0gm00qjffx2rnwdm486jrhnv4f68g0lknfv05y0alm2nczn4nhh4"; 33 + SGr-IosevkaFixedSlab = "03xmgm5884496d6x1rsrcz3qg10j960zyqlwfawv33yr2yi1z7j8"; 34 + SGr-IosevkaFixedSS01 = "0dnprncmrl3pi6dkmcf7qgh90730zrfvpg32fjrm67svvjqlhnqk"; 35 + SGr-IosevkaFixedSS02 = "0yn9r3z0q328y0dk5mx4ik4cpsixmhg1fdsgqaznkwqwxgp687s4"; 36 + SGr-IosevkaFixedSS03 = "1bq5aq277ixnc6p1v0yf5l47kml1hh867zvv365wjz2wqdzg9zma"; 37 + SGr-IosevkaFixedSS04 = "0rbbm7b0ljr1l219ipq64a4vhpcsc68pp1y5n2a7vknnmg0al0hw"; 38 + SGr-IosevkaFixedSS05 = "11gs8zazljlayban6whjr8kbq40v0z6icn55iwn4spwfdri74p5p"; 39 + SGr-IosevkaFixedSS06 = "18pfxnpz5a78qis7ml1cq7s4y4h98d5zg0v8km6hgzmxan60rlhl"; 40 + SGr-IosevkaFixedSS07 = "0whgk33w9w1kjqy6lazc9p5azn9cjd2sy1cx2shvc8zqg60y5zjn"; 41 + SGr-IosevkaFixedSS08 = "189i1x7lk4r0q92g09badxl2ymf23fcsg80hpzlbpr84xqynsbnb"; 42 + SGr-IosevkaFixedSS09 = "04qp01is8piqsd4x7bn0aq63dhdvcg2b5hyd3m7xs6j9bfbxdb0a"; 43 + SGr-IosevkaFixedSS10 = "0xyw2z2gjs4qa1cwdf5zyman1d9c1imvdzlczc5vhikllfqxpagj"; 44 + SGr-IosevkaFixedSS11 = "05yqrn5zwgxrdn0g9cvd4i7km3r3xn5qdjakkywi3l8hi638qxj3"; 45 + SGr-IosevkaFixedSS12 = "0kl1wxiirpkd69x6zv3k5v2k0cgdh7sd288x05z5whgmx2cvlfpc"; 46 + SGr-IosevkaFixedSS13 = "1rb3l2i6k1974a26nkm7l3b2ky3wiwmcc9ia1sg0dcn0z8ckxapj"; 47 + SGr-IosevkaFixedSS14 = "15084jaxknbjf5xqhg21c5pv8w4hjma1h2x84wp5apqn4w6s4rza"; 48 + SGr-IosevkaFixedSS15 = "1dray6ywv2sj9hlm2mwx6zhbas2mhsd0q0lvmbyxldrwvapc749c"; 49 + SGr-IosevkaFixedSS16 = "1cikcxyv1jbw83wlvxcp3f5qivy0gklqzirpsfyj8q13nllqhq1h"; 50 + SGr-IosevkaFixedSS17 = "0mvmp4fx3rajd6l2370jc7mcn7fr6z3yh0zxz7haps7zhkbp9fgg"; 51 + SGr-IosevkaFixedSS18 = "1nkghw9j672q2k2y3hdlwj237lk31ig7860phbxx90nnxy9vpjhz"; 52 + SGr-IosevkaSlab = "011jcy2a2196b2lizz5qcf044rkh6hmfjpm171skiqidxndafpf4"; 53 + SGr-IosevkaSS01 = "0yndd4ry0mcm3h578y3azqnqx4iild2xxqgbwcxs995pc4n8i7mr"; 54 + SGr-IosevkaSS02 = "13p9674zv6xj2378i0lsg6g61g735zwgdjkq35cmhfavbmp4kgnf"; 55 + SGr-IosevkaSS03 = "1w9pnbs2xkmxggr76n8n2ikk5x7zha9na26dg2xdridhlvlzdwvm"; 56 + SGr-IosevkaSS04 = "1ds9mjx37ihhq60ysccmgj15vzhyl7jjkr1is6n76aqacjqxki0g"; 57 + SGr-IosevkaSS05 = "1n2jcpym1yzb7xwd86s2kq5gmqi1i83lvmdng0y4wmi09ak6njwi"; 58 + SGr-IosevkaSS06 = "08hd66f6fbgnxns9zbr6wjqcxqnmbs6mrrd66yrlsxx9xcz9vggx"; 59 + SGr-IosevkaSS07 = "1lrjvpcgvvanmajvdw91d7f3kwg4xmfmsq7x455mx06ni6c6yx1x"; 60 + SGr-IosevkaSS08 = "1m959d0hwb5v3ad483gaw7kzjzkws0p5y10gd337n5vsjsy3l1yj"; 61 + SGr-IosevkaSS09 = "1q15mgabvdh5bvl8i36807m0nl0aiglfrpa3bilrbbayvqsp4yhr"; 62 + SGr-IosevkaSS10 = "0nw7053361rb38w104yg31xib42v67n7zv3j8j7z0al0z5ypak35"; 63 + SGr-IosevkaSS11 = "1im7pad5alp9j80r6qvpps4fxpkf753c4c87mfy9bk1jvr60md8p"; 64 + SGr-IosevkaSS12 = "1nn353bqnx0wd2jp6k9pmf1h48nyakv29whpklp3vn53fy8dysjq"; 65 + SGr-IosevkaSS13 = "0d4drf8i6df0hf0m7fwapzncvjsy2165qfj0y0iggzr3v2bq8q71"; 66 + SGr-IosevkaSS14 = "1nccdwhn6kg6142x4w3r53slvs4x33ls54rhc818wvrnpbl08b75"; 67 + SGr-IosevkaSS15 = "1kgrj1my2i10qi13psdx3pljz93g4417fnm0d2b9nz9ha2d4zknh"; 68 + SGr-IosevkaSS16 = "1vsn37wkzc417li7xfx8bbcj2wn2pp9qmn60wzq8pj8isbgj4c5d"; 69 + SGr-IosevkaSS17 = "0c51rjmjqih87wnfiajhhc3b695dypr079v9dhz8rq2ic1r0dd5c"; 70 + SGr-IosevkaSS18 = "0cxr42gza3lrdph91nfpr0a9imxrr6n0pyzcmar65ix77r4wdy0q"; 71 + SGr-IosevkaTerm = "1q7pqpazlj1x140gib3gdzblwi3s6cywz1icf1xgwbm7mr8ab5g7"; 72 + SGr-IosevkaTermCurly = "0xpj52hps0l5iarcjxhammz2z8kqjjayi6vxnpz12hjbvfp6ldcj"; 73 + SGr-IosevkaTermCurlySlab = "0pxjn59fmsmqyirl6mpkhhl4yz4xb4n2mz7wg8lccrj2naz027sp"; 74 + SGr-IosevkaTermSlab = "0814zl1yy671jaiycwdwj21b15if1wdv0d08f3ja3qp97h5ppzwg"; 75 + SGr-IosevkaTermSS01 = "1kwc5rl1yybwxygsmxca3sk83281fbihf2k3pwabrz0jmw61s2rd"; 76 + SGr-IosevkaTermSS02 = "1srk77hn944vc6k66njrqs9wn9qw8kqgynw48y5w54vdii2ac9fb"; 77 + SGr-IosevkaTermSS03 = "0kl0xrbqn5a9ry1q6hxhawia09wa1vz8pjvkc22r54qz0l5mcw4i"; 78 + SGr-IosevkaTermSS04 = "0rm00brfqs97lhg3jqb8cvsin28a87pm7scf8vibh9pigg5h8vly"; 79 + SGr-IosevkaTermSS05 = "1ii53sp83wc3ljhapra4rfvbfglalg1rqg30ybkj7r4jfyx4jl98"; 80 + SGr-IosevkaTermSS06 = "1pc61w7c9ph0x5wxpz6bkfiisi2mvq8fnxzm7qnq1gbl5895d255"; 81 + SGr-IosevkaTermSS07 = "1nhilhhb4lr7hxaj9rzmrqw0bsfm7h54dmggrwsssld4pzy2crpg"; 82 + SGr-IosevkaTermSS08 = "16p0yx9b0xlsg0g0hyi42ccfc5z5ngmh31bsdivfxxdpmjsln3r6"; 83 + SGr-IosevkaTermSS09 = "1xky6d68nmhy3fzv91d616mzms2x4j0z6ahlj98bn70xns1bdp5y"; 84 + SGr-IosevkaTermSS10 = "05dp4lya900w8glcdm8dl47pic3c3w6i9xsqzbb0la8rz1hbrrwy"; 85 + SGr-IosevkaTermSS11 = "059wiqwm4vz1ddjn20jnd943s6zld1va13zmqx9hf2w77hsi4gm3"; 86 + SGr-IosevkaTermSS12 = "1swapdr2vr7xw4y63f7wrpgy271hx49cmng3pvsnrkw31rbdkf4f"; 87 + SGr-IosevkaTermSS13 = "00bcqr2yz1dg6hq9n23njy7vsj1hl06k6836h7krphnzy8rw5fx2"; 88 + SGr-IosevkaTermSS14 = "1wrqyq8i2dplivifsza6d4w87x9jhcqypyy3mli0gy8vvqr4f938"; 89 + SGr-IosevkaTermSS15 = "07rknhg3bmsyr8wnk1y8k5h6sjgbnx75xrx9yzbqgfx344x0p6c2"; 90 + SGr-IosevkaTermSS16 = "1gxmlqh9bnqw1izwmxvhiy717j7mmfqbywqi92y3cj8w1191n5r6"; 91 + SGr-IosevkaTermSS17 = "0w2c3k6yla9mkl263ypp96nhsydgnn2l3x2ddif0s75hv12qkbng"; 92 + SGr-IosevkaTermSS18 = "1gwnbw3pxwaj0pa223zqvdsx9pccc03c3f70y5dsq4c6fxfqaxzh"; 95 93 }
+1 -1
pkgs/development/compilers/dmd/generic.nix
··· 220 220 # Everything is now Boost licensed, even the backend. 221 221 # https://github.com/dlang/dmd/pull/6680 222 222 license = licenses.boost; 223 - maintainers = with maintainers; [ ThomasMader lionello dukc jtbx ]; 223 + maintainers = with maintainers; [ lionello dukc jtbx ]; 224 224 platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 225 225 }; 226 226 }
+1 -1
pkgs/development/compilers/ldc/binary.nix
··· 37 37 homepage = "https://github.com/ldc-developers/ldc"; 38 38 # from https://github.com/ldc-developers/ldc/blob/master/LICENSE 39 39 license = with licenses; [ bsd3 boost mit ncsa gpl2Plus ]; 40 - maintainers = with maintainers; [ ThomasMader lionello ]; 40 + maintainers = with maintainers; [ lionello ]; 41 41 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; 42 42 }; 43 43 }
+1 -1
pkgs/development/compilers/ldc/generic.nix
··· 130 130 homepage = "https://github.com/ldc-developers/ldc"; 131 131 # from https://github.com/ldc-developers/ldc/blob/master/LICENSE 132 132 license = with licenses; [ bsd3 boost mit ncsa gpl2Plus ]; 133 - maintainers = with maintainers; [ ThomasMader lionello jtbx ]; 133 + maintainers = with maintainers; [ lionello jtbx ]; 134 134 platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 135 135 }; 136 136 }
+4 -5
pkgs/development/libraries/boehm-gc/default.nix pkgs/by-name/bo/boehmgc/package.nix
··· 57 57 58 58 passthru.tests = nixVersions; 59 59 60 - meta = with lib; { 60 + meta = { 61 61 homepage = "https://hboehm.info/gc/"; 62 62 description = "The Boehm-Demers-Weiser conservative garbage collector for C and C++"; 63 63 longDescription = '' ··· 76 76 Alternatively, the garbage collector may be used as a leak detector for 77 77 C or C++ programs, though that is not its primary goal. 78 78 ''; 79 - # non-copyleft, X11-style license 80 79 changelog = "https://github.com/ivmai/bdwgc/blob/v${finalAttrs.version}/ChangeLog"; 81 - license = "https://hboehm.info/gc/license.txt"; 82 - maintainers = with maintainers; [ AndersonTorres ]; 83 - platforms = platforms.all; 80 + license = "https://hboehm.info/gc/license.txt"; # non-copyleft, X11-style license 81 + maintainers = with lib.maintainers; [ AndersonTorres ]; 82 + platforms = lib.platforms.all; 84 83 }; 85 84 })
+2 -2
pkgs/development/libraries/liberfa/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "erfa"; 5 - version = "2.0.0"; 5 + version = "2.0.1"; 6 6 7 7 nativeBuildInputs = [ autoreconfHook ]; 8 8 ··· 10 10 owner = "liberfa"; 11 11 repo = "erfa"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-xBE8mWwmvlu0v3Up5y6J8jMhToMSACdKeQzPJoG8LWk="; 13 + sha256 = "sha256-NtHYgiN5mo3kWC2H+5TUDbU1nFrwuhNyOIhg2jZbssM="; 14 14 }; 15 15 16 16 configureFlags = [ "--enable-shared" ];
+2 -2
pkgs/development/libraries/libyang/default.nix pkgs/by-name/li/libyang/package.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "libyang"; 18 - version = "2.1.128"; 18 + version = "2.1.148"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "CESNET"; 22 22 repo = "libyang"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-qwEHGUizjsWQZSwQkh7Clevd1OQfj1mse7Q8YiRCMyQ="; 24 + hash = "sha256-uYZJo8lUv6tq0MRRJvbTS/8t1eZNGqcMb5k5sVCwMJM="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+4 -3
pkgs/development/libraries/sentry-native/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "sentry-native"; 12 - version = "0.6.7"; 12 + version = "0.7.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "getsentry"; 16 16 repo = "sentry-native"; 17 17 rev = version; 18 - hash = "sha256-pEFfs8xjc+6r+60aJF4Sjjy/oSU/+ADWgOBpS3t9rWI="; 18 + hash = "sha256-e2VjQ3U72X+bwRAi/6StLDWT8tf/MjatnmC/+jCgzTo="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ ··· 32 32 33 33 cmakeFlags = [ 34 34 "-DSENTRY_BREAKPAD_SYSTEM=On" 35 + "-DSENTRY_BACKEND=breakpad" 35 36 ]; 36 37 37 38 meta = with lib; { ··· 40 41 changelog = "https://github.com/getsentry/sentry-native/blob/${version}/CHANGELOG.md"; 41 42 license = licenses.mit; 42 43 platforms = platforms.linux; 43 - maintainers = with maintainers; [ wheelsandmetal ]; 44 + maintainers = with maintainers; [ wheelsandmetal daniel-fahey ]; 44 45 }; 45 46 }
+4 -12
pkgs/development/libraries/spdlog/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , cmake 6 5 , fmt 7 6 , catch2_3 8 7 , staticBuild ? stdenv.hostPlatform.isStatic 9 8 10 9 # tests 11 - , bear, tiledb 10 + , bear 11 + , tiledb 12 12 }: 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "spdlog"; 16 - version = "1.12.0"; 16 + version = "1.13.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "gabime"; 20 20 repo = "spdlog"; 21 21 rev = "v${version}"; 22 - hash = "sha256-cxTaOuLXHRU8xMz9gluYz0a93O0ez2xOxbloyc1m1ns="; 22 + hash = "sha256-3n8BnjZ7uMH8quoiT60yTU7poyOtoEmzNMOLa1+r7X0="; 23 23 }; 24 - 25 - patches = [ 26 - # Fix a broken test, remove with the next release. 27 - (fetchpatch { 28 - url = "https://github.com/gabime/spdlog/commit/2ee8bac78e6525a8ad9a9196e65d502ce390d83a.patch"; 29 - hash = "sha256-L79yOkm3VY01jmxNctfneTLmOA5DEQeNNGC8LbpJiOc="; 30 - }) 31 - ]; 32 24 33 25 nativeBuildInputs = [ cmake ]; 34 26 # Required to build tests, even if they aren't executed
+2 -2
pkgs/development/octave-modules/signal/default.nix
··· 6 6 7 7 buildOctavePackage rec { 8 8 pname = "signal"; 9 - version = "1.4.3"; 9 + version = "1.4.5"; 10 10 11 11 src = fetchurl { 12 12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 13 - sha256 = "sha256-VFuXVA6+ujtCDwiQb905d/wpOzvI/Db2uosJTOqI8zk="; 13 + sha256 = "sha256-VVreL/gPcRiQk5XDNAXwoXpPvNIrxtL7nD9/Rf72SOc="; 14 14 }; 15 15 16 16 requiredOctavePackages = [
+5 -5
pkgs/development/python-modules/aionotion/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "aionotion"; 22 - version = "2024.02.2"; 23 - format = "pyproject"; 22 + version = "2024.03.0"; 23 + pyproject = true; 24 24 25 25 disabled = pythonOlder "3.7"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "bachya"; 29 - repo = pname; 29 + repo = "aionotion"; 30 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-xehHOB4iUMT1kKEK4jQzaj7hH9fmiY7mZxGC3CLnpAs="; 31 + hash = "sha256-BsbfLb5wCVxR8v2U2Zzt7LMl7XJcZWfVjZN47VDkhFc="; 32 32 }; 33 33 34 34 nativeBuildInputs = [ ··· 66 66 meta = with lib; { 67 67 description = "Python library for Notion Home Monitoring"; 68 68 homepage = "https://github.com/bachya/aionotion"; 69 - changelog = "https://github.com/bachya/aionotion/releases/tag/${src.rev}"; 69 + changelog = "https://github.com/bachya/aionotion/releases/tag/${version}"; 70 70 license = with licenses; [ mit ]; 71 71 maintainers = with maintainers; [ fab ]; 72 72 };
+2 -2
pkgs/development/python-modules/clickhouse-connect/default.nix
··· 23 23 }: 24 24 buildPythonPackage rec { 25 25 pname = "clickhouse-connect"; 26 - version = "0.7.1"; 26 + version = "0.7.2"; 27 27 28 28 format = "setuptools"; 29 29 ··· 33 33 repo = "clickhouse-connect"; 34 34 owner = "ClickHouse"; 35 35 rev = "refs/tags/v${version}"; 36 - hash = "sha256-Qdv0DcdIjqz8NtyMsVNQxGTxsB3TpXUGDA3oL8QbBDc="; 36 + hash = "sha256-UOS0Z8KsMqyFBPfVc8Lag7zfw1DNgNDEnvAbmG15FGg="; 37 37 }; 38 38 39 39 nativeBuildInputs = [ cython_3 ];
+751 -409
pkgs/development/python-modules/css-inline/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "addr2line" 7 + version = "0.21.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 6 15 name = "adler" 7 16 version = "1.0.2" 8 17 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 24 33 ] 25 34 26 35 [[package]] 27 - name = "attohttpc" 28 - version = "0.25.0" 36 + name = "autocfg" 37 + version = "1.1.0" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 40 + 41 + [[package]] 42 + name = "backtrace" 43 + version = "0.3.69" 29 44 source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "7e57d6e7a84f33ff3316e97af3180fe7f86597a6a60161c0be70c0e45f382620" 45 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 31 46 dependencies = [ 32 - "flate2", 33 - "http", 34 - "log", 35 - "rustls", 36 - "url", 37 - "webpki", 38 - "webpki-roots", 47 + "addr2line", 48 + "cc", 49 + "cfg-if", 50 + "libc", 51 + "miniz_oxide", 52 + "object", 53 + "rustc-demangle", 39 54 ] 40 55 41 56 [[package]] 42 - name = "autocfg" 43 - version = "1.1.0" 57 + name = "base64" 58 + version = "0.21.7" 44 59 source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 60 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 46 61 47 62 [[package]] 48 63 name = "bitflags" ··· 51 66 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 52 67 53 68 [[package]] 69 + name = "bitflags" 70 + version = "2.4.2" 71 + source = "registry+https://github.com/rust-lang/crates.io-index" 72 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 73 + 74 + [[package]] 54 75 name = "built" 55 - version = "0.6.1" 76 + version = "0.7.1" 56 77 source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "b99c4cdc7b2c2364182331055623bdf45254fcb679fea565c40c3c11c101889a" 78 + checksum = "38d17f4d6e4dc36d1a02fbedc2753a096848e7c1b0772f7654eab8e2c927dd53" 58 79 dependencies = [ 59 80 "cargo-lock", 60 81 "chrono", ··· 62 83 63 84 [[package]] 64 85 name = "bumpalo" 65 - version = "3.13.0" 86 + version = "3.15.0" 66 87 source = "registry+https://github.com/rust-lang/crates.io-index" 67 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 88 + checksum = "d32a994c2b3ca201d9b263612a374263f05e7adde37c4707f693dcd375076d1f" 68 89 69 90 [[package]] 70 91 name = "byteorder" 71 - version = "1.4.3" 92 + version = "1.5.0" 72 93 source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 94 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 74 95 75 96 [[package]] 76 97 name = "bytes" 77 - version = "1.4.0" 98 + version = "1.5.0" 78 99 source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 100 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 80 101 81 102 [[package]] 82 103 name = "cargo-lock" ··· 92 113 93 114 [[package]] 94 115 name = "cc" 95 - version = "1.0.79" 116 + version = "1.0.83" 96 117 source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 118 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 119 + dependencies = [ 120 + "libc", 121 + ] 98 122 99 123 [[package]] 100 124 name = "cfg-if" ··· 104 128 105 129 [[package]] 106 130 name = "chrono" 107 - version = "0.4.26" 131 + version = "0.4.34" 108 132 source = "registry+https://github.com/rust-lang/crates.io-index" 109 - checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 133 + checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" 110 134 dependencies = [ 111 135 "android-tzdata", 112 136 "iana-time-zone", 113 137 "num-traits", 114 - "winapi", 138 + "windows-targets 0.52.0", 115 139 ] 116 140 117 141 [[package]] 118 - name = "convert_case" 119 - version = "0.4.0" 120 - source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 122 - 123 - [[package]] 124 - name = "core-foundation-sys" 125 - version = "0.8.4" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 128 - 129 - [[package]] 130 - name = "crc32fast" 131 - version = "1.3.2" 142 + name = "core-foundation" 143 + version = "0.9.4" 132 144 source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 145 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 134 146 dependencies = [ 135 - "cfg-if", 147 + "core-foundation-sys", 148 + "libc", 136 149 ] 137 150 138 151 [[package]] 139 - name = "crossbeam-channel" 140 - version = "0.5.8" 152 + name = "core-foundation-sys" 153 + version = "0.8.6" 141 154 source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 143 - dependencies = [ 144 - "cfg-if", 145 - "crossbeam-utils", 146 - ] 155 + checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 147 156 148 157 [[package]] 149 158 name = "crossbeam-deque" 150 - version = "0.8.3" 159 + version = "0.8.5" 151 160 source = "registry+https://github.com/rust-lang/crates.io-index" 152 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 161 + checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 153 162 dependencies = [ 154 - "cfg-if", 155 163 "crossbeam-epoch", 156 164 "crossbeam-utils", 157 165 ] 158 166 159 167 [[package]] 160 168 name = "crossbeam-epoch" 161 - version = "0.9.15" 169 + version = "0.9.18" 162 170 source = "registry+https://github.com/rust-lang/crates.io-index" 163 - checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 171 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 164 172 dependencies = [ 165 - "autocfg", 166 - "cfg-if", 167 173 "crossbeam-utils", 168 - "memoffset", 169 - "scopeguard", 170 174 ] 171 175 172 176 [[package]] 173 177 name = "crossbeam-utils" 174 - version = "0.8.16" 178 + version = "0.8.19" 175 179 source = "registry+https://github.com/rust-lang/crates.io-index" 176 - checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 177 - dependencies = [ 178 - "cfg-if", 179 - ] 180 + checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 180 181 181 182 [[package]] 182 183 name = "css-inline" 183 - version = "0.10.1" 184 + version = "0.13.0" 184 185 dependencies = [ 185 - "attohttpc", 186 186 "cssparser", 187 187 "html5ever", 188 188 "indexmap", 189 - "memchr", 189 + "reqwest", 190 + "rustc-hash", 190 191 "selectors", 191 192 "smallvec", 192 193 "url", ··· 194 195 195 196 [[package]] 196 197 name = "css-inline-python" 197 - version = "0.10.1" 198 + version = "0.13.0" 198 199 dependencies = [ 199 200 "built", 200 201 "css-inline", ··· 206 207 207 208 [[package]] 208 209 name = "cssparser" 209 - version = "0.29.6" 210 + version = "0.31.2" 210 211 source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" 212 + checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be" 212 213 dependencies = [ 213 214 "cssparser-macros", 214 215 "dtoa-short", 215 216 "itoa", 216 - "matches", 217 - "phf 0.10.1", 218 - "proc-macro2", 219 - "quote", 217 + "phf 0.11.2", 220 218 "smallvec", 221 - "syn 1.0.109", 222 219 ] 223 220 224 221 [[package]] ··· 228 225 checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 229 226 dependencies = [ 230 227 "quote", 231 - "syn 2.0.18", 228 + "syn 2.0.49", 232 229 ] 233 230 234 231 [[package]] ··· 237 234 source = "registry+https://github.com/rust-lang/crates.io-index" 238 235 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 239 236 dependencies = [ 240 - "convert_case", 241 237 "proc-macro2", 242 238 "quote", 243 - "rustc_version", 244 239 "syn 1.0.109", 245 240 ] 246 241 247 242 [[package]] 248 243 name = "dtoa" 249 - version = "1.0.6" 244 + version = "1.0.9" 250 245 source = "registry+https://github.com/rust-lang/crates.io-index" 251 - checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169" 246 + checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 252 247 253 248 [[package]] 254 249 name = "dtoa-short" ··· 261 256 262 257 [[package]] 263 258 name = "either" 264 - version = "1.8.1" 259 + version = "1.10.0" 265 260 source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 261 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 267 262 268 263 [[package]] 269 - name = "flate2" 270 - version = "1.0.26" 264 + name = "encoding_rs" 265 + version = "0.8.33" 271 266 source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 267 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 273 268 dependencies = [ 274 - "crc32fast", 275 - "miniz_oxide", 269 + "cfg-if", 276 270 ] 271 + 272 + [[package]] 273 + name = "equivalent" 274 + version = "1.0.1" 275 + source = "registry+https://github.com/rust-lang/crates.io-index" 276 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 277 277 278 278 [[package]] 279 279 name = "fnv" ··· 283 283 284 284 [[package]] 285 285 name = "form_urlencoded" 286 - version = "1.2.0" 286 + version = "1.2.1" 287 287 source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 288 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 289 289 dependencies = [ 290 290 "percent-encoding", 291 291 ] ··· 301 301 ] 302 302 303 303 [[package]] 304 + name = "futures-channel" 305 + version = "0.3.30" 306 + source = "registry+https://github.com/rust-lang/crates.io-index" 307 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 308 + dependencies = [ 309 + "futures-core", 310 + ] 311 + 312 + [[package]] 313 + name = "futures-core" 314 + version = "0.3.30" 315 + source = "registry+https://github.com/rust-lang/crates.io-index" 316 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 317 + 318 + [[package]] 319 + name = "futures-io" 320 + version = "0.3.30" 321 + source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 323 + 324 + [[package]] 325 + name = "futures-sink" 326 + version = "0.3.30" 327 + source = "registry+https://github.com/rust-lang/crates.io-index" 328 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 329 + 330 + [[package]] 331 + name = "futures-task" 332 + version = "0.3.30" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 335 + 336 + [[package]] 337 + name = "futures-util" 338 + version = "0.3.30" 339 + source = "registry+https://github.com/rust-lang/crates.io-index" 340 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 341 + dependencies = [ 342 + "futures-core", 343 + "futures-io", 344 + "futures-task", 345 + "memchr", 346 + "pin-project-lite", 347 + "pin-utils", 348 + "slab", 349 + ] 350 + 351 + [[package]] 304 352 name = "fxhash" 305 353 version = "0.2.1" 306 354 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 311 359 312 360 [[package]] 313 361 name = "getrandom" 314 - version = "0.1.16" 362 + version = "0.2.12" 315 363 source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 364 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 317 365 dependencies = [ 318 366 "cfg-if", 319 367 "libc", 320 - "wasi 0.9.0+wasi-snapshot-preview1", 368 + "wasi", 321 369 ] 322 370 323 371 [[package]] 324 - name = "getrandom" 325 - version = "0.2.10" 372 + name = "gimli" 373 + version = "0.28.1" 326 374 source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 375 + checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 376 + 377 + [[package]] 378 + name = "h2" 379 + version = "0.3.24" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" 328 382 dependencies = [ 329 - "cfg-if", 330 - "libc", 331 - "wasi 0.11.0+wasi-snapshot-preview1", 383 + "bytes", 384 + "fnv", 385 + "futures-core", 386 + "futures-sink", 387 + "futures-util", 388 + "http", 389 + "indexmap", 390 + "slab", 391 + "tokio", 392 + "tokio-util", 393 + "tracing", 332 394 ] 333 395 334 396 [[package]] 335 397 name = "hashbrown" 336 - version = "0.12.3" 398 + version = "0.14.3" 337 399 source = "registry+https://github.com/rust-lang/crates.io-index" 338 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 400 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 401 + 402 + [[package]] 403 + name = "heck" 404 + version = "0.4.1" 405 + source = "registry+https://github.com/rust-lang/crates.io-index" 406 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 339 407 340 408 [[package]] 341 409 name = "hermit-abi" 342 - version = "0.2.6" 410 + version = "0.3.6" 343 411 source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 345 - dependencies = [ 346 - "libc", 347 - ] 412 + checksum = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd" 348 413 349 414 [[package]] 350 415 name = "html5ever" ··· 362 427 363 428 [[package]] 364 429 name = "http" 365 - version = "0.2.9" 430 + version = "0.2.11" 366 431 source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 432 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 368 433 dependencies = [ 369 434 "bytes", 370 435 "fnv", ··· 372 437 ] 373 438 374 439 [[package]] 440 + name = "http-body" 441 + version = "0.4.6" 442 + source = "registry+https://github.com/rust-lang/crates.io-index" 443 + checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 444 + dependencies = [ 445 + "bytes", 446 + "http", 447 + "pin-project-lite", 448 + ] 449 + 450 + [[package]] 451 + name = "httparse" 452 + version = "1.8.0" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 455 + 456 + [[package]] 457 + name = "httpdate" 458 + version = "1.0.3" 459 + source = "registry+https://github.com/rust-lang/crates.io-index" 460 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 461 + 462 + [[package]] 463 + name = "hyper" 464 + version = "0.14.28" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 467 + dependencies = [ 468 + "bytes", 469 + "futures-channel", 470 + "futures-core", 471 + "futures-util", 472 + "h2", 473 + "http", 474 + "http-body", 475 + "httparse", 476 + "httpdate", 477 + "itoa", 478 + "pin-project-lite", 479 + "socket2", 480 + "tokio", 481 + "tower-service", 482 + "tracing", 483 + "want", 484 + ] 485 + 486 + [[package]] 487 + name = "hyper-rustls" 488 + version = "0.24.2" 489 + source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 491 + dependencies = [ 492 + "futures-util", 493 + "http", 494 + "hyper", 495 + "rustls", 496 + "tokio", 497 + "tokio-rustls", 498 + ] 499 + 500 + [[package]] 375 501 name = "iana-time-zone" 376 - version = "0.1.57" 502 + version = "0.1.60" 377 503 source = "registry+https://github.com/rust-lang/crates.io-index" 378 - checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 504 + checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 379 505 dependencies = [ 380 506 "android_system_properties", 381 507 "core-foundation-sys", 382 508 "iana-time-zone-haiku", 383 509 "js-sys", 384 510 "wasm-bindgen", 385 - "windows", 511 + "windows-core", 386 512 ] 387 513 388 514 [[package]] ··· 396 522 397 523 [[package]] 398 524 name = "idna" 399 - version = "0.4.0" 525 + version = "0.5.0" 400 526 source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 527 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 402 528 dependencies = [ 403 529 "unicode-bidi", 404 530 "unicode-normalization", ··· 406 532 407 533 [[package]] 408 534 name = "indexmap" 409 - version = "1.9.3" 535 + version = "2.2.3" 410 536 source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 537 + checksum = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177" 412 538 dependencies = [ 413 - "autocfg", 539 + "equivalent", 414 540 "hashbrown", 415 541 ] 416 542 417 543 [[package]] 418 544 name = "indoc" 419 - version = "1.0.9" 545 + version = "2.0.4" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" 548 + 549 + [[package]] 550 + name = "ipnet" 551 + version = "2.9.0" 420 552 source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 553 + checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 422 554 423 555 [[package]] 424 556 name = "itoa" 425 - version = "1.0.6" 557 + version = "1.0.10" 426 558 source = "registry+https://github.com/rust-lang/crates.io-index" 427 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 559 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 428 560 429 561 [[package]] 430 562 name = "js-sys" 431 - version = "0.3.64" 563 + version = "0.3.68" 432 564 source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 565 + checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 434 566 dependencies = [ 435 567 "wasm-bindgen", 436 568 ] 437 569 438 570 [[package]] 439 571 name = "libc" 440 - version = "0.2.146" 572 + version = "0.2.153" 441 573 source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 574 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 443 575 444 576 [[package]] 445 577 name = "lock_api" 446 - version = "0.4.10" 578 + version = "0.4.11" 447 579 source = "registry+https://github.com/rust-lang/crates.io-index" 448 - checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 580 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 449 581 dependencies = [ 450 582 "autocfg", 451 583 "scopeguard", ··· 453 585 454 586 [[package]] 455 587 name = "log" 456 - version = "0.4.19" 588 + version = "0.4.20" 457 589 source = "registry+https://github.com/rust-lang/crates.io-index" 458 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 590 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 459 591 460 592 [[package]] 461 593 name = "mac" ··· 471 603 dependencies = [ 472 604 "log", 473 605 "phf 0.10.1", 474 - "phf_codegen 0.10.0", 606 + "phf_codegen", 475 607 "string_cache", 476 608 "string_cache_codegen", 477 609 "tendril", 478 610 ] 479 611 480 612 [[package]] 481 - name = "matches" 482 - version = "0.1.10" 483 - source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 485 - 486 - [[package]] 487 613 name = "memchr" 488 - version = "2.5.0" 614 + version = "2.7.1" 489 615 source = "registry+https://github.com/rust-lang/crates.io-index" 490 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 616 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 491 617 492 618 [[package]] 493 619 name = "memoffset" ··· 499 625 ] 500 626 501 627 [[package]] 628 + name = "mime" 629 + version = "0.3.17" 630 + source = "registry+https://github.com/rust-lang/crates.io-index" 631 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 632 + 633 + [[package]] 502 634 name = "miniz_oxide" 503 - version = "0.7.1" 635 + version = "0.7.2" 504 636 source = "registry+https://github.com/rust-lang/crates.io-index" 505 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 637 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 506 638 dependencies = [ 507 639 "adler", 508 640 ] 509 641 510 642 [[package]] 511 - name = "new_debug_unreachable" 512 - version = "1.0.4" 643 + name = "mio" 644 + version = "0.8.10" 513 645 source = "registry+https://github.com/rust-lang/crates.io-index" 514 - checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 646 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 647 + dependencies = [ 648 + "libc", 649 + "wasi", 650 + "windows-sys", 651 + ] 515 652 516 653 [[package]] 517 - name = "nodrop" 518 - version = "0.1.14" 654 + name = "new_debug_unreachable" 655 + version = "1.0.4" 519 656 source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 657 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 521 658 522 659 [[package]] 523 660 name = "num-traits" 524 - version = "0.2.15" 661 + version = "0.2.18" 525 662 source = "registry+https://github.com/rust-lang/crates.io-index" 526 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 663 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 527 664 dependencies = [ 528 665 "autocfg", 529 666 ] 530 667 531 668 [[package]] 532 669 name = "num_cpus" 533 - version = "1.15.0" 670 + version = "1.16.0" 534 671 source = "registry+https://github.com/rust-lang/crates.io-index" 535 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 672 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 536 673 dependencies = [ 537 674 "hermit-abi", 538 675 "libc", 539 676 ] 540 677 541 678 [[package]] 679 + name = "object" 680 + version = "0.32.2" 681 + source = "registry+https://github.com/rust-lang/crates.io-index" 682 + checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 683 + dependencies = [ 684 + "memchr", 685 + ] 686 + 687 + [[package]] 542 688 name = "once_cell" 543 - version = "1.18.0" 689 + version = "1.19.0" 544 690 source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 691 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 546 692 547 693 [[package]] 548 694 name = "parking_lot" ··· 556 702 557 703 [[package]] 558 704 name = "parking_lot_core" 559 - version = "0.9.8" 705 + version = "0.9.9" 560 706 source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 707 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 562 708 dependencies = [ 563 709 "cfg-if", 564 710 "libc", 565 711 "redox_syscall", 566 712 "smallvec", 567 - "windows-targets", 713 + "windows-targets 0.48.5", 568 714 ] 569 715 570 716 [[package]] 571 717 name = "percent-encoding" 572 - version = "2.3.0" 718 + version = "2.3.1" 573 719 source = "registry+https://github.com/rust-lang/crates.io-index" 574 - checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 575 - 576 - [[package]] 577 - name = "phf" 578 - version = "0.8.0" 579 - source = "registry+https://github.com/rust-lang/crates.io-index" 580 - checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 581 - dependencies = [ 582 - "phf_shared 0.8.0", 583 - ] 720 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 584 721 585 722 [[package]] 586 723 name = "phf" ··· 588 725 source = "registry+https://github.com/rust-lang/crates.io-index" 589 726 checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 590 727 dependencies = [ 591 - "phf_macros", 592 728 "phf_shared 0.10.0", 593 - "proc-macro-hack", 594 729 ] 595 730 596 731 [[package]] 597 - name = "phf_codegen" 598 - version = "0.8.0" 732 + name = "phf" 733 + version = "0.11.2" 599 734 source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 735 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 601 736 dependencies = [ 602 - "phf_generator 0.8.0", 603 - "phf_shared 0.8.0", 737 + "phf_macros", 738 + "phf_shared 0.11.2", 604 739 ] 605 740 606 741 [[package]] ··· 615 750 616 751 [[package]] 617 752 name = "phf_generator" 618 - version = "0.8.0" 753 + version = "0.10.0" 619 754 source = "registry+https://github.com/rust-lang/crates.io-index" 620 - checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 755 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 621 756 dependencies = [ 622 - "phf_shared 0.8.0", 623 - "rand 0.7.3", 757 + "phf_shared 0.10.0", 758 + "rand", 624 759 ] 625 760 626 761 [[package]] 627 762 name = "phf_generator" 628 - version = "0.10.0" 763 + version = "0.11.2" 629 764 source = "registry+https://github.com/rust-lang/crates.io-index" 630 - checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 765 + checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 631 766 dependencies = [ 632 - "phf_shared 0.10.0", 633 - "rand 0.8.5", 767 + "phf_shared 0.11.2", 768 + "rand", 634 769 ] 635 770 636 771 [[package]] 637 772 name = "phf_macros" 638 - version = "0.10.0" 773 + version = "0.11.2" 639 774 source = "registry+https://github.com/rust-lang/crates.io-index" 640 - checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 775 + checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 641 776 dependencies = [ 642 - "phf_generator 0.10.0", 643 - "phf_shared 0.10.0", 644 - "proc-macro-hack", 777 + "phf_generator 0.11.2", 778 + "phf_shared 0.11.2", 645 779 "proc-macro2", 646 780 "quote", 647 - "syn 1.0.109", 781 + "syn 2.0.49", 648 782 ] 649 783 650 784 [[package]] 651 785 name = "phf_shared" 652 - version = "0.8.0" 786 + version = "0.10.0" 653 787 source = "registry+https://github.com/rust-lang/crates.io-index" 654 - checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 788 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 655 789 dependencies = [ 656 790 "siphasher", 657 791 ] 658 792 659 793 [[package]] 660 794 name = "phf_shared" 661 - version = "0.10.0" 795 + version = "0.11.2" 662 796 source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 797 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 664 798 dependencies = [ 665 799 "siphasher", 666 800 ] 667 801 668 802 [[package]] 803 + name = "pin-project-lite" 804 + version = "0.2.13" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 807 + 808 + [[package]] 809 + name = "pin-utils" 810 + version = "0.1.0" 811 + source = "registry+https://github.com/rust-lang/crates.io-index" 812 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 813 + 814 + [[package]] 669 815 name = "ppv-lite86" 670 816 version = "0.2.17" 671 817 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 678 824 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 679 825 680 826 [[package]] 681 - name = "proc-macro-hack" 682 - version = "0.5.20+deprecated" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 685 - 686 - [[package]] 687 827 name = "proc-macro2" 688 - version = "1.0.60" 828 + version = "1.0.78" 689 829 source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" 830 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 691 831 dependencies = [ 692 832 "unicode-ident", 693 833 ] 694 834 695 835 [[package]] 696 836 name = "pyo3" 697 - version = "0.19.0" 837 + version = "0.20.2" 698 838 source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "cffef52f74ec3b1a1baf295d9b8fcc3070327aefc39a6d00656b13c1d0b8885c" 839 + checksum = "9a89dc7a5850d0e983be1ec2a463a171d20990487c3cfcd68b5363f1ee3d6fe0" 700 840 dependencies = [ 701 841 "cfg-if", 702 842 "indoc", ··· 711 851 712 852 [[package]] 713 853 name = "pyo3-build-config" 714 - version = "0.19.0" 854 + version = "0.20.2" 715 855 source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "713eccf888fb05f1a96eb78c0dbc51907fee42b3377272dc902eb38985f418d5" 856 + checksum = "07426f0d8fe5a601f26293f300afd1a7b1ed5e78b2a705870c5f30893c5163be" 717 857 dependencies = [ 718 858 "once_cell", 719 859 "target-lexicon", ··· 727 867 728 868 [[package]] 729 869 name = "pyo3-ffi" 730 - version = "0.19.0" 870 + version = "0.20.2" 731 871 source = "registry+https://github.com/rust-lang/crates.io-index" 732 - checksum = "5b2ecbdcfb01cbbf56e179ce969a048fd7305a66d4cdf3303e0da09d69afe4c3" 872 + checksum = "dbb7dec17e17766b46bca4f1a4215a85006b4c2ecde122076c562dd058da6cf1" 733 873 dependencies = [ 734 874 "libc", 735 875 "pyo3-build-config", ··· 737 877 738 878 [[package]] 739 879 name = "pyo3-macros" 740 - version = "0.19.0" 880 + version = "0.20.2" 741 881 source = "registry+https://github.com/rust-lang/crates.io-index" 742 - checksum = "b78fdc0899f2ea781c463679b20cb08af9247febc8d052de941951024cd8aea0" 882 + checksum = "05f738b4e40d50b5711957f142878cfa0f28e054aa0ebdfc3fd137a843f74ed3" 743 883 dependencies = [ 744 884 "proc-macro2", 745 885 "pyo3-macros-backend", 746 886 "quote", 747 - "syn 1.0.109", 887 + "syn 2.0.49", 748 888 ] 749 889 750 890 [[package]] 751 891 name = "pyo3-macros-backend" 752 - version = "0.19.0" 892 + version = "0.20.2" 753 893 source = "registry+https://github.com/rust-lang/crates.io-index" 754 - checksum = "60da7b84f1227c3e2fe7593505de274dcf4c8928b4e0a1c23d551a14e4e80a0f" 894 + checksum = "0fc910d4851847827daf9d6cdd4a823fbdaab5b8818325c5e97a86da79e8881f" 755 895 dependencies = [ 896 + "heck", 756 897 "proc-macro2", 757 898 "quote", 758 - "syn 1.0.109", 899 + "syn 2.0.49", 759 900 ] 760 901 761 902 [[package]] 762 903 name = "quote" 763 - version = "1.0.28" 904 + version = "1.0.35" 764 905 source = "registry+https://github.com/rust-lang/crates.io-index" 765 - checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 906 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 766 907 dependencies = [ 767 908 "proc-macro2", 768 909 ] 769 910 770 911 [[package]] 771 912 name = "rand" 772 - version = "0.7.3" 773 - source = "registry+https://github.com/rust-lang/crates.io-index" 774 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 775 - dependencies = [ 776 - "getrandom 0.1.16", 777 - "libc", 778 - "rand_chacha 0.2.2", 779 - "rand_core 0.5.1", 780 - "rand_hc", 781 - "rand_pcg", 782 - ] 783 - 784 - [[package]] 785 - name = "rand" 786 913 version = "0.8.5" 787 914 source = "registry+https://github.com/rust-lang/crates.io-index" 788 915 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 789 916 dependencies = [ 790 917 "libc", 791 - "rand_chacha 0.3.1", 792 - "rand_core 0.6.4", 793 - ] 794 - 795 - [[package]] 796 - name = "rand_chacha" 797 - version = "0.2.2" 798 - source = "registry+https://github.com/rust-lang/crates.io-index" 799 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 800 - dependencies = [ 801 - "ppv-lite86", 802 - "rand_core 0.5.1", 918 + "rand_chacha", 919 + "rand_core", 803 920 ] 804 921 805 922 [[package]] ··· 809 926 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 810 927 dependencies = [ 811 928 "ppv-lite86", 812 - "rand_core 0.6.4", 813 - ] 814 - 815 - [[package]] 816 - name = "rand_core" 817 - version = "0.5.1" 818 - source = "registry+https://github.com/rust-lang/crates.io-index" 819 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 820 - dependencies = [ 821 - "getrandom 0.1.16", 929 + "rand_core", 822 930 ] 823 931 824 932 [[package]] ··· 827 935 source = "registry+https://github.com/rust-lang/crates.io-index" 828 936 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 829 937 dependencies = [ 830 - "getrandom 0.2.10", 831 - ] 832 - 833 - [[package]] 834 - name = "rand_hc" 835 - version = "0.2.0" 836 - source = "registry+https://github.com/rust-lang/crates.io-index" 837 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 838 - dependencies = [ 839 - "rand_core 0.5.1", 840 - ] 841 - 842 - [[package]] 843 - name = "rand_pcg" 844 - version = "0.2.1" 845 - source = "registry+https://github.com/rust-lang/crates.io-index" 846 - checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 847 - dependencies = [ 848 - "rand_core 0.5.1", 938 + "getrandom", 849 939 ] 850 940 851 941 [[package]] 852 942 name = "rayon" 853 - version = "1.7.0" 943 + version = "1.8.1" 854 944 source = "registry+https://github.com/rust-lang/crates.io-index" 855 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 945 + checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" 856 946 dependencies = [ 857 947 "either", 858 948 "rayon-core", ··· 860 950 861 951 [[package]] 862 952 name = "rayon-core" 863 - version = "1.11.0" 953 + version = "1.12.1" 864 954 source = "registry+https://github.com/rust-lang/crates.io-index" 865 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 955 + checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 866 956 dependencies = [ 867 - "crossbeam-channel", 868 957 "crossbeam-deque", 869 958 "crossbeam-utils", 870 - "num_cpus", 871 959 ] 872 960 873 961 [[package]] 874 962 name = "redox_syscall" 875 - version = "0.3.5" 963 + version = "0.4.1" 876 964 source = "registry+https://github.com/rust-lang/crates.io-index" 877 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 965 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 878 966 dependencies = [ 879 - "bitflags", 967 + "bitflags 1.3.2", 968 + ] 969 + 970 + [[package]] 971 + name = "reqwest" 972 + version = "0.11.24" 973 + source = "registry+https://github.com/rust-lang/crates.io-index" 974 + checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" 975 + dependencies = [ 976 + "base64", 977 + "bytes", 978 + "encoding_rs", 979 + "futures-core", 980 + "futures-util", 981 + "h2", 982 + "http", 983 + "http-body", 984 + "hyper", 985 + "hyper-rustls", 986 + "ipnet", 987 + "js-sys", 988 + "log", 989 + "mime", 990 + "once_cell", 991 + "percent-encoding", 992 + "pin-project-lite", 993 + "rustls", 994 + "rustls-pemfile", 995 + "serde", 996 + "serde_json", 997 + "serde_urlencoded", 998 + "sync_wrapper", 999 + "system-configuration", 1000 + "tokio", 1001 + "tokio-rustls", 1002 + "tower-service", 1003 + "url", 1004 + "wasm-bindgen", 1005 + "wasm-bindgen-futures", 1006 + "web-sys", 1007 + "webpki-roots", 1008 + "winreg", 880 1009 ] 881 1010 882 1011 [[package]] 883 1012 name = "ring" 884 - version = "0.16.20" 1013 + version = "0.17.7" 885 1014 source = "registry+https://github.com/rust-lang/crates.io-index" 886 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1015 + checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 887 1016 dependencies = [ 888 1017 "cc", 1018 + "getrandom", 889 1019 "libc", 890 - "once_cell", 891 1020 "spin", 892 1021 "untrusted", 893 - "web-sys", 894 - "winapi", 1022 + "windows-sys", 895 1023 ] 896 1024 897 1025 [[package]] 898 - name = "rustc_version" 899 - version = "0.4.0" 1026 + name = "rustc-demangle" 1027 + version = "0.1.23" 900 1028 source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 902 - dependencies = [ 903 - "semver", 904 - ] 1029 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1030 + 1031 + [[package]] 1032 + name = "rustc-hash" 1033 + version = "1.1.0" 1034 + source = "registry+https://github.com/rust-lang/crates.io-index" 1035 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 905 1036 906 1037 [[package]] 907 1038 name = "rustls" 908 - version = "0.21.2" 1039 + version = "0.21.10" 909 1040 source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" 1041 + checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 911 1042 dependencies = [ 912 1043 "log", 913 1044 "ring", ··· 916 1047 ] 917 1048 918 1049 [[package]] 1050 + name = "rustls-pemfile" 1051 + version = "1.0.4" 1052 + source = "registry+https://github.com/rust-lang/crates.io-index" 1053 + checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 1054 + dependencies = [ 1055 + "base64", 1056 + ] 1057 + 1058 + [[package]] 919 1059 name = "rustls-webpki" 920 - version = "0.100.1" 1060 + version = "0.101.7" 921 1061 source = "registry+https://github.com/rust-lang/crates.io-index" 922 - checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" 1062 + checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 923 1063 dependencies = [ 924 1064 "ring", 925 1065 "untrusted", 926 1066 ] 927 1067 928 1068 [[package]] 1069 + name = "ryu" 1070 + version = "1.0.16" 1071 + source = "registry+https://github.com/rust-lang/crates.io-index" 1072 + checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 1073 + 1074 + [[package]] 929 1075 name = "scopeguard" 930 - version = "1.1.0" 1076 + version = "1.2.0" 931 1077 source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1078 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 933 1079 934 1080 [[package]] 935 1081 name = "sct" 936 - version = "0.7.0" 1082 + version = "0.7.1" 937 1083 source = "registry+https://github.com/rust-lang/crates.io-index" 938 - checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1084 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 939 1085 dependencies = [ 940 1086 "ring", 941 1087 "untrusted", ··· 943 1089 944 1090 [[package]] 945 1091 name = "selectors" 946 - version = "0.24.0" 1092 + version = "0.25.0" 947 1093 source = "registry+https://github.com/rust-lang/crates.io-index" 948 - checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" 1094 + checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06" 949 1095 dependencies = [ 950 - "bitflags", 1096 + "bitflags 2.4.2", 951 1097 "cssparser", 952 1098 "derive_more", 953 1099 "fxhash", 954 1100 "log", 955 - "phf 0.8.0", 956 - "phf_codegen 0.8.0", 1101 + "new_debug_unreachable", 1102 + "phf 0.10.1", 1103 + "phf_codegen", 957 1104 "precomputed-hash", 958 1105 "servo_arc", 959 1106 "smallvec", ··· 961 1108 962 1109 [[package]] 963 1110 name = "semver" 964 - version = "1.0.17" 1111 + version = "1.0.21" 965 1112 source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 1113 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 967 1114 dependencies = [ 968 1115 "serde", 969 1116 ] 970 1117 971 1118 [[package]] 972 1119 name = "serde" 973 - version = "1.0.164" 1120 + version = "1.0.196" 974 1121 source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" 1122 + checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32" 976 1123 dependencies = [ 977 1124 "serde_derive", 978 1125 ] 979 1126 980 1127 [[package]] 981 1128 name = "serde_derive" 982 - version = "1.0.164" 1129 + version = "1.0.196" 983 1130 source = "registry+https://github.com/rust-lang/crates.io-index" 984 - checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" 1131 + checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" 985 1132 dependencies = [ 986 1133 "proc-macro2", 987 1134 "quote", 988 - "syn 2.0.18", 1135 + "syn 2.0.49", 1136 + ] 1137 + 1138 + [[package]] 1139 + name = "serde_json" 1140 + version = "1.0.113" 1141 + source = "registry+https://github.com/rust-lang/crates.io-index" 1142 + checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79" 1143 + dependencies = [ 1144 + "itoa", 1145 + "ryu", 1146 + "serde", 989 1147 ] 990 1148 991 1149 [[package]] 992 1150 name = "serde_spanned" 993 - version = "0.6.2" 1151 + version = "0.6.5" 994 1152 source = "registry+https://github.com/rust-lang/crates.io-index" 995 - checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" 1153 + checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" 996 1154 dependencies = [ 997 1155 "serde", 998 1156 ] 999 1157 1000 1158 [[package]] 1159 + name = "serde_urlencoded" 1160 + version = "0.7.1" 1161 + source = "registry+https://github.com/rust-lang/crates.io-index" 1162 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1163 + dependencies = [ 1164 + "form_urlencoded", 1165 + "itoa", 1166 + "ryu", 1167 + "serde", 1168 + ] 1169 + 1170 + [[package]] 1001 1171 name = "servo_arc" 1002 - version = "0.2.0" 1172 + version = "0.3.0" 1003 1173 source = "registry+https://github.com/rust-lang/crates.io-index" 1004 - checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" 1174 + checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44" 1005 1175 dependencies = [ 1006 - "nodrop", 1007 1176 "stable_deref_trait", 1008 1177 ] 1009 1178 1010 1179 [[package]] 1011 1180 name = "siphasher" 1012 - version = "0.3.10" 1181 + version = "0.3.11" 1182 + source = "registry+https://github.com/rust-lang/crates.io-index" 1183 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 1184 + 1185 + [[package]] 1186 + name = "slab" 1187 + version = "0.4.9" 1013 1188 source = "registry+https://github.com/rust-lang/crates.io-index" 1014 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 1189 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1190 + dependencies = [ 1191 + "autocfg", 1192 + ] 1015 1193 1016 1194 [[package]] 1017 1195 name = "smallvec" 1018 - version = "1.10.0" 1196 + version = "1.13.1" 1019 1197 source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1198 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 1199 + 1200 + [[package]] 1201 + name = "socket2" 1202 + version = "0.5.5" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 1205 + dependencies = [ 1206 + "libc", 1207 + "windows-sys", 1208 + ] 1021 1209 1022 1210 [[package]] 1023 1211 name = "spin" 1024 - version = "0.5.2" 1212 + version = "0.9.8" 1025 1213 source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1214 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1027 1215 1028 1216 [[package]] 1029 1217 name = "stable_deref_trait" ··· 1070 1258 1071 1259 [[package]] 1072 1260 name = "syn" 1073 - version = "2.0.18" 1261 + version = "2.0.49" 1074 1262 source = "registry+https://github.com/rust-lang/crates.io-index" 1075 - checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 1263 + checksum = "915aea9e586f80826ee59f8453c1101f9d1c4b3964cd2460185ee8e299ada496" 1076 1264 dependencies = [ 1077 1265 "proc-macro2", 1078 1266 "quote", ··· 1080 1268 ] 1081 1269 1082 1270 [[package]] 1271 + name = "sync_wrapper" 1272 + version = "0.1.2" 1273 + source = "registry+https://github.com/rust-lang/crates.io-index" 1274 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 1275 + 1276 + [[package]] 1277 + name = "system-configuration" 1278 + version = "0.5.1" 1279 + source = "registry+https://github.com/rust-lang/crates.io-index" 1280 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 1281 + dependencies = [ 1282 + "bitflags 1.3.2", 1283 + "core-foundation", 1284 + "system-configuration-sys", 1285 + ] 1286 + 1287 + [[package]] 1288 + name = "system-configuration-sys" 1289 + version = "0.5.0" 1290 + source = "registry+https://github.com/rust-lang/crates.io-index" 1291 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 1292 + dependencies = [ 1293 + "core-foundation-sys", 1294 + "libc", 1295 + ] 1296 + 1297 + [[package]] 1083 1298 name = "target-lexicon" 1084 - version = "0.12.8" 1299 + version = "0.12.13" 1085 1300 source = "registry+https://github.com/rust-lang/crates.io-index" 1086 - checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac" 1301 + checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" 1087 1302 1088 1303 [[package]] 1089 1304 name = "tendril" ··· 1112 1327 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1113 1328 1114 1329 [[package]] 1330 + name = "tokio" 1331 + version = "1.36.0" 1332 + source = "registry+https://github.com/rust-lang/crates.io-index" 1333 + checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" 1334 + dependencies = [ 1335 + "backtrace", 1336 + "bytes", 1337 + "libc", 1338 + "mio", 1339 + "num_cpus", 1340 + "pin-project-lite", 1341 + "socket2", 1342 + "windows-sys", 1343 + ] 1344 + 1345 + [[package]] 1346 + name = "tokio-rustls" 1347 + version = "0.24.1" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 1350 + dependencies = [ 1351 + "rustls", 1352 + "tokio", 1353 + ] 1354 + 1355 + [[package]] 1356 + name = "tokio-util" 1357 + version = "0.7.10" 1358 + source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 1360 + dependencies = [ 1361 + "bytes", 1362 + "futures-core", 1363 + "futures-sink", 1364 + "pin-project-lite", 1365 + "tokio", 1366 + "tracing", 1367 + ] 1368 + 1369 + [[package]] 1115 1370 name = "toml" 1116 - version = "0.7.4" 1371 + version = "0.7.8" 1117 1372 source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" 1373 + checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 1119 1374 dependencies = [ 1120 1375 "serde", 1121 1376 "serde_spanned", ··· 1125 1380 1126 1381 [[package]] 1127 1382 name = "toml_datetime" 1128 - version = "0.6.2" 1383 + version = "0.6.5" 1129 1384 source = "registry+https://github.com/rust-lang/crates.io-index" 1130 - checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 1385 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 1131 1386 dependencies = [ 1132 1387 "serde", 1133 1388 ] 1134 1389 1135 1390 [[package]] 1136 1391 name = "toml_edit" 1137 - version = "0.19.10" 1392 + version = "0.19.15" 1138 1393 source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 1394 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 1140 1395 dependencies = [ 1141 1396 "indexmap", 1142 1397 "serde", ··· 1146 1401 ] 1147 1402 1148 1403 [[package]] 1404 + name = "tower-service" 1405 + version = "0.3.2" 1406 + source = "registry+https://github.com/rust-lang/crates.io-index" 1407 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 1408 + 1409 + [[package]] 1410 + name = "tracing" 1411 + version = "0.1.40" 1412 + source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1414 + dependencies = [ 1415 + "pin-project-lite", 1416 + "tracing-core", 1417 + ] 1418 + 1419 + [[package]] 1420 + name = "tracing-core" 1421 + version = "0.1.32" 1422 + source = "registry+https://github.com/rust-lang/crates.io-index" 1423 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1424 + dependencies = [ 1425 + "once_cell", 1426 + ] 1427 + 1428 + [[package]] 1429 + name = "try-lock" 1430 + version = "0.2.5" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1433 + 1434 + [[package]] 1149 1435 name = "unicode-bidi" 1150 - version = "0.3.13" 1436 + version = "0.3.15" 1151 1437 source = "registry+https://github.com/rust-lang/crates.io-index" 1152 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1438 + checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 1153 1439 1154 1440 [[package]] 1155 1441 name = "unicode-ident" 1156 - version = "1.0.9" 1442 + version = "1.0.12" 1157 1443 source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 1444 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1159 1445 1160 1446 [[package]] 1161 1447 name = "unicode-normalization" ··· 1168 1454 1169 1455 [[package]] 1170 1456 name = "unindent" 1171 - version = "0.1.11" 1457 + version = "0.2.3" 1172 1458 source = "registry+https://github.com/rust-lang/crates.io-index" 1173 - checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 1459 + checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" 1174 1460 1175 1461 [[package]] 1176 1462 name = "untrusted" 1177 - version = "0.7.1" 1463 + version = "0.9.0" 1178 1464 source = "registry+https://github.com/rust-lang/crates.io-index" 1179 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 1465 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1180 1466 1181 1467 [[package]] 1182 1468 name = "url" 1183 - version = "2.4.0" 1469 + version = "2.5.0" 1184 1470 source = "registry+https://github.com/rust-lang/crates.io-index" 1185 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 1471 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 1186 1472 dependencies = [ 1187 1473 "form_urlencoded", 1188 1474 "idna", ··· 1196 1482 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 1197 1483 1198 1484 [[package]] 1199 - name = "wasi" 1200 - version = "0.9.0+wasi-snapshot-preview1" 1485 + name = "want" 1486 + version = "0.3.1" 1201 1487 source = "registry+https://github.com/rust-lang/crates.io-index" 1202 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 1488 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1489 + dependencies = [ 1490 + "try-lock", 1491 + ] 1203 1492 1204 1493 [[package]] 1205 1494 name = "wasi" ··· 1209 1498 1210 1499 [[package]] 1211 1500 name = "wasm-bindgen" 1212 - version = "0.2.87" 1501 + version = "0.2.91" 1213 1502 source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 1503 + checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 1215 1504 dependencies = [ 1216 1505 "cfg-if", 1217 1506 "wasm-bindgen-macro", ··· 1219 1508 1220 1509 [[package]] 1221 1510 name = "wasm-bindgen-backend" 1222 - version = "0.2.87" 1511 + version = "0.2.91" 1223 1512 source = "registry+https://github.com/rust-lang/crates.io-index" 1224 - checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 1513 + checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 1225 1514 dependencies = [ 1226 1515 "bumpalo", 1227 1516 "log", 1228 1517 "once_cell", 1229 1518 "proc-macro2", 1230 1519 "quote", 1231 - "syn 2.0.18", 1520 + "syn 2.0.49", 1232 1521 "wasm-bindgen-shared", 1233 1522 ] 1234 1523 1235 1524 [[package]] 1525 + name = "wasm-bindgen-futures" 1526 + version = "0.4.41" 1527 + source = "registry+https://github.com/rust-lang/crates.io-index" 1528 + checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 1529 + dependencies = [ 1530 + "cfg-if", 1531 + "js-sys", 1532 + "wasm-bindgen", 1533 + "web-sys", 1534 + ] 1535 + 1536 + [[package]] 1236 1537 name = "wasm-bindgen-macro" 1237 - version = "0.2.87" 1538 + version = "0.2.91" 1238 1539 source = "registry+https://github.com/rust-lang/crates.io-index" 1239 - checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 1540 + checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 1240 1541 dependencies = [ 1241 1542 "quote", 1242 1543 "wasm-bindgen-macro-support", ··· 1244 1545 1245 1546 [[package]] 1246 1547 name = "wasm-bindgen-macro-support" 1247 - version = "0.2.87" 1548 + version = "0.2.91" 1248 1549 source = "registry+https://github.com/rust-lang/crates.io-index" 1249 - checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 1550 + checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 1250 1551 dependencies = [ 1251 1552 "proc-macro2", 1252 1553 "quote", 1253 - "syn 2.0.18", 1554 + "syn 2.0.49", 1254 1555 "wasm-bindgen-backend", 1255 1556 "wasm-bindgen-shared", 1256 1557 ] 1257 1558 1258 1559 [[package]] 1259 1560 name = "wasm-bindgen-shared" 1260 - version = "0.2.87" 1561 + version = "0.2.91" 1261 1562 source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 1563 + checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 1263 1564 1264 1565 [[package]] 1265 1566 name = "web-sys" 1266 - version = "0.3.64" 1567 + version = "0.3.68" 1267 1568 source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 1569 + checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 1269 1570 dependencies = [ 1270 1571 "js-sys", 1271 1572 "wasm-bindgen", 1272 1573 ] 1273 1574 1274 1575 [[package]] 1275 - name = "webpki" 1276 - version = "0.22.0" 1576 + name = "webpki-roots" 1577 + version = "0.25.4" 1277 1578 source = "registry+https://github.com/rust-lang/crates.io-index" 1278 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 1579 + checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 1580 + 1581 + [[package]] 1582 + name = "windows-core" 1583 + version = "0.52.0" 1584 + source = "registry+https://github.com/rust-lang/crates.io-index" 1585 + checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 1279 1586 dependencies = [ 1280 - "ring", 1281 - "untrusted", 1587 + "windows-targets 0.52.0", 1282 1588 ] 1283 1589 1284 1590 [[package]] 1285 - name = "webpki-roots" 1286 - version = "0.23.1" 1591 + name = "windows-sys" 1592 + version = "0.48.0" 1287 1593 source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" 1594 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1289 1595 dependencies = [ 1290 - "rustls-webpki", 1596 + "windows-targets 0.48.5", 1291 1597 ] 1292 1598 1293 1599 [[package]] 1294 - name = "winapi" 1295 - version = "0.3.9" 1600 + name = "windows-targets" 1601 + version = "0.48.5" 1296 1602 source = "registry+https://github.com/rust-lang/crates.io-index" 1297 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1603 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1298 1604 dependencies = [ 1299 - "winapi-i686-pc-windows-gnu", 1300 - "winapi-x86_64-pc-windows-gnu", 1605 + "windows_aarch64_gnullvm 0.48.5", 1606 + "windows_aarch64_msvc 0.48.5", 1607 + "windows_i686_gnu 0.48.5", 1608 + "windows_i686_msvc 0.48.5", 1609 + "windows_x86_64_gnu 0.48.5", 1610 + "windows_x86_64_gnullvm 0.48.5", 1611 + "windows_x86_64_msvc 0.48.5", 1301 1612 ] 1302 1613 1303 1614 [[package]] 1304 - name = "winapi-i686-pc-windows-gnu" 1305 - version = "0.4.0" 1615 + name = "windows-targets" 1616 + version = "0.52.0" 1306 1617 source = "registry+https://github.com/rust-lang/crates.io-index" 1307 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1618 + checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 1619 + dependencies = [ 1620 + "windows_aarch64_gnullvm 0.52.0", 1621 + "windows_aarch64_msvc 0.52.0", 1622 + "windows_i686_gnu 0.52.0", 1623 + "windows_i686_msvc 0.52.0", 1624 + "windows_x86_64_gnu 0.52.0", 1625 + "windows_x86_64_gnullvm 0.52.0", 1626 + "windows_x86_64_msvc 0.52.0", 1627 + ] 1308 1628 1309 1629 [[package]] 1310 - name = "winapi-x86_64-pc-windows-gnu" 1311 - version = "0.4.0" 1630 + name = "windows_aarch64_gnullvm" 1631 + version = "0.48.5" 1312 1632 source = "registry+https://github.com/rust-lang/crates.io-index" 1313 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1633 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1314 1634 1315 1635 [[package]] 1316 - name = "windows" 1317 - version = "0.48.0" 1636 + name = "windows_aarch64_gnullvm" 1637 + version = "0.52.0" 1318 1638 source = "registry+https://github.com/rust-lang/crates.io-index" 1319 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 1320 - dependencies = [ 1321 - "windows-targets", 1322 - ] 1639 + checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 1323 1640 1324 1641 [[package]] 1325 - name = "windows-targets" 1326 - version = "0.48.0" 1642 + name = "windows_aarch64_msvc" 1643 + version = "0.48.5" 1327 1644 source = "registry+https://github.com/rust-lang/crates.io-index" 1328 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1329 - dependencies = [ 1330 - "windows_aarch64_gnullvm", 1331 - "windows_aarch64_msvc", 1332 - "windows_i686_gnu", 1333 - "windows_i686_msvc", 1334 - "windows_x86_64_gnu", 1335 - "windows_x86_64_gnullvm", 1336 - "windows_x86_64_msvc", 1337 - ] 1645 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1338 1646 1339 1647 [[package]] 1340 - name = "windows_aarch64_gnullvm" 1341 - version = "0.48.0" 1648 + name = "windows_aarch64_msvc" 1649 + version = "0.52.0" 1342 1650 source = "registry+https://github.com/rust-lang/crates.io-index" 1343 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1651 + checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 1344 1652 1345 1653 [[package]] 1346 - name = "windows_aarch64_msvc" 1347 - version = "0.48.0" 1654 + name = "windows_i686_gnu" 1655 + version = "0.48.5" 1348 1656 source = "registry+https://github.com/rust-lang/crates.io-index" 1349 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1657 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1350 1658 1351 1659 [[package]] 1352 1660 name = "windows_i686_gnu" 1353 - version = "0.48.0" 1661 + version = "0.52.0" 1354 1662 source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1663 + checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 1356 1664 1357 1665 [[package]] 1358 1666 name = "windows_i686_msvc" 1359 - version = "0.48.0" 1667 + version = "0.48.5" 1360 1668 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1669 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1670 + 1671 + [[package]] 1672 + name = "windows_i686_msvc" 1673 + version = "0.52.0" 1674 + source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 1362 1676 1363 1677 [[package]] 1364 1678 name = "windows_x86_64_gnu" 1365 - version = "0.48.0" 1679 + version = "0.48.5" 1366 1680 source = "registry+https://github.com/rust-lang/crates.io-index" 1367 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1681 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1682 + 1683 + [[package]] 1684 + name = "windows_x86_64_gnu" 1685 + version = "0.52.0" 1686 + source = "registry+https://github.com/rust-lang/crates.io-index" 1687 + checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 1368 1688 1369 1689 [[package]] 1370 1690 name = "windows_x86_64_gnullvm" 1371 - version = "0.48.0" 1691 + version = "0.48.5" 1372 1692 source = "registry+https://github.com/rust-lang/crates.io-index" 1373 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1693 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1694 + 1695 + [[package]] 1696 + name = "windows_x86_64_gnullvm" 1697 + version = "0.52.0" 1698 + source = "registry+https://github.com/rust-lang/crates.io-index" 1699 + checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 1374 1700 1375 1701 [[package]] 1376 1702 name = "windows_x86_64_msvc" 1377 - version = "0.48.0" 1703 + version = "0.48.5" 1378 1704 source = "registry+https://github.com/rust-lang/crates.io-index" 1379 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1705 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1706 + 1707 + [[package]] 1708 + name = "windows_x86_64_msvc" 1709 + version = "0.52.0" 1710 + source = "registry+https://github.com/rust-lang/crates.io-index" 1711 + checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 1380 1712 1381 1713 [[package]] 1382 1714 name = "winnow" 1383 - version = "0.4.7" 1715 + version = "0.5.40" 1384 1716 source = "registry+https://github.com/rust-lang/crates.io-index" 1385 - checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448" 1717 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 1386 1718 dependencies = [ 1387 1719 "memchr", 1388 1720 ] 1721 + 1722 + [[package]] 1723 + name = "winreg" 1724 + version = "0.50.0" 1725 + source = "registry+https://github.com/rust-lang/crates.io-index" 1726 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 1727 + dependencies = [ 1728 + "cfg-if", 1729 + "windows-sys", 1730 + ]
+9 -4
pkgs/development/python-modules/css-inline/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "css-inline"; 20 - version = "0.10.1"; 21 - format = "pyproject"; 20 + version = "0.13.0"; 21 + pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "Stranger6667"; 25 25 repo = "css-inline"; 26 26 rev = "python-v${version}"; 27 - hash = "sha256-oBAJv/hAz/itT2WakIw/1X1NvOHX108NoeS6V7k+aG8="; 27 + hash = "sha256-hhjeOr7EJc4Tmn/eQ1vF0xChSIlgfSmtqi6s7WCUq00="; 28 28 }; 29 29 30 30 postPatch = '' ··· 41 41 ln -s ${./Cargo.lock} Cargo.lock 42 42 ''; 43 43 name = "${pname}-${version}"; 44 - hash = "sha256-SFG1nsP4+I0zH8VeyL1eeaTx0tHNIvmx6M0cko0pqIA="; 44 + hash = "sha256-noYBSwCfdpuwb55toyx4K/16Z4A0NWjnMuzwTi5g8AU="; 45 45 }; 46 46 47 47 nativeBuildInputs = [ ··· 61 61 nativeCheckInputs = [ 62 62 hypothesis 63 63 pytestCheckHook 64 + ]; 65 + 66 + disabledTests = [ 67 + # fails to connect to local server 68 + "test_remote_stylesheet" 64 69 ]; 65 70 66 71 meta = with lib; {
+9 -4
pkgs/development/python-modules/django-formtools/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "django-formtools"; 12 - version = "2.4.1"; 13 - format = "setuptools"; 12 + version = "2.5.1"; 13 + pyproject = true; 14 14 15 - disabled = pythonOlder "3.6"; 15 + disabled = pythonOlder "3.8"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-IfjV2sc38eY2+ooKEJacHDL1JabfonwpWSgnunDZZDo="; 19 + hash = "sha256-R8s0VSxu/KCIhj1pMoTQT8NuqvNQ6yHhodk14N9SPJM="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 28 28 ]; 29 29 30 30 checkPhase = '' 31 + runHook preCheck 32 + 31 33 ${python.interpreter} -m django test --settings=tests.settings 34 + 35 + runHook postCheck 32 36 ''; 33 37 34 38 pythonImportsCheck = [ ··· 38 42 meta = with lib; { 39 43 description = "A set of high-level abstractions for Django forms"; 40 44 homepage = "https://github.com/jazzband/django-formtools"; 45 + changelog = "https://github.com/jazzband/django-formtools/blob/master/docs/changelog.rst"; 41 46 license = licenses.bsd3; 42 47 maintainers = with maintainers; [ greizgh schmittlauch ]; 43 48 };
+2 -2
pkgs/development/python-modules/keyring-pass/default.nix
··· 9 9 }: 10 10 buildPythonPackage rec { 11 11 pname = "keyring-pass"; 12 - version = "0.9.2"; 12 + version = "0.9.3"; 13 13 disabled = pythonOlder "3.6"; 14 14 15 15 pyproject = true; ··· 18 18 owner = "nazarewk"; 19 19 repo = "keyring_pass"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-Sf7eDOB3prH2s6BzdBtxewSweC0ibLXVxNHBJRRaJe4="; 21 + hash = "sha256-EsM+RUhYtelslRpxR5NQbqpOt8KaeCsFqkqZ1ZFx0I0="; 22 22 }; 23 23 24 24 postPatch = ''
+2 -2
pkgs/development/python-modules/linknlink/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "linknlink"; 11 - version = "0.1.9"; 11 + version = "0.2.0"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "xuanxuan000"; 18 18 repo = "python-linknlink"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-msKunZsAxA9xpCJmG4MVXuJDMEqrCeShvAqOw8zjSPM="; 20 + hash = "sha256-gQqBxV5hidMejYE3xdB13n0gb1T4kVl1oELZ3hVy60E="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pymodbus/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "pymodbus"; 22 - version = "3.6.5"; 22 + version = "3.6.6"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 28 28 owner = "pymodbus-dev"; 29 29 repo = "pymodbus"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-BWoonOmKTvl5pKvdysmrCTHL6Bf3NGULXI6dpP5t/C0="; 31 + hash = "sha256-CnMCHFwzNyzTgVyFDSlE7ggI6eXXYbtGuERIomUa3uA="; 32 32 }; 33 33 34 34 postPatch = ''
+2 -2
pkgs/development/python-modules/recipe-scrapers/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "recipe-scrapers"; 17 - version = "14.54.0"; 17 + version = "14.55.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "hhursev"; 24 24 repo = "recipe-scrapers"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-Q7ubT7SBHNxyvfqFhDmBjnW7ssoXBsMZR+eYg5CntHY="; 26 + hash = "sha256-HjR4Lwlcrpeqv6BXI+aYCL9e7ZTaTa522z0lSW03wW0="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+6 -4
pkgs/development/python-modules/reportlab/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , chardet 3 4 , fetchPypi 4 5 , freetype 5 6 , pillow ··· 13 14 ft = freetype.overrideAttrs (oldArgs: { dontDisableStatic = true; }); 14 15 in buildPythonPackage rec { 15 16 pname = "reportlab"; 16 - version = "4.0.7"; 17 - format = "pyproject"; 17 + version = "4.1.0"; 18 + pyproject = true; 18 19 19 20 # See https://bitbucket.org/pypy/compatibility/wiki/reportlab%20toolkit 20 21 disabled = isPyPy; 21 22 22 23 src = fetchPypi { 23 24 inherit pname version; 24 - hash = "sha256-lnx38A79kYzCMc+LbY9OR33Jc7XBZVfjvRjfrrWnAjQ="; 25 + hash = "sha256-Opn69BJpEVnAaLP/AcFTB84v0s9rhgGZQ0h04AIECoQ="; 25 26 }; 26 27 27 28 postPatch = '' ··· 44 45 ]; 45 46 46 47 propagatedBuildInputs = [ 48 + chardet 47 49 pillow 48 50 ]; 49 51 ··· 61 63 62 64 meta = with lib; { 63 65 description = "An Open Source Python library for generating PDFs and graphics"; 64 - homepage = "http://www.reportlab.com/"; 66 + homepage = "https://www.reportlab.com/"; 65 67 license = licenses.bsd3; 66 68 maintainers = with maintainers; [ ]; 67 69 };
+4 -4
pkgs/development/python-modules/whitenoise/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "whitenoise"; 14 - version = "6.5.0"; 15 - format = "pyproject"; 14 + version = "6.6.0"; 15 + pyproject = true; 16 16 17 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.8"; 18 18 19 19 __darwinAllowLocalNetworking = true; 20 20 ··· 22 22 owner = "evansd"; 23 23 repo = pname; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-g1D0tjGsAP3y1fWvODWwNvxnTSZJuTpyZ0Otk83Oq9E="; 25 + hash = "sha256-Z59GjrOL+BPHqBCirg9T4qBOrjiuBng6Q5lTuLQx9ac="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+22
pkgs/development/r-modules/default.nix
··· 309 309 }; 310 310 311 311 packagesWithNativeBuildInputs = { 312 + adbcpostgresql = [ pkgs.postgresql ]; 312 313 arrow = [ pkgs.pkg-config pkgs.arrow-cpp ]; 313 314 adimpro = [ pkgs.imagemagick ]; 314 315 animation = [ pkgs.which ]; ··· 316 317 BayesSAE = [ pkgs.gsl ]; 317 318 BayesVarSel = [ pkgs.gsl ]; 318 319 BayesXsrc = with pkgs; [ readline.dev ncurses gsl ]; 320 + bioacoustics = [ pkgs.fftw.dev pkgs.cmake ]; 319 321 bigGP = [ pkgs.mpi ]; 320 322 bio3d = [ pkgs.zlib ]; 321 323 BiocCheck = [ pkgs.which ]; 322 324 Biostrings = [ pkgs.zlib ]; 323 325 CellBarcode = [ pkgs.zlib ]; 326 + cld3 = [ pkgs.protobuf ]; 324 327 bnpmr = [ pkgs.gsl ]; 325 328 cairoDevice = [ pkgs.gtk2.dev ]; 326 329 Cairo = with pkgs; [ libtiff libjpeg cairo.dev xorg.libXt.dev fontconfig.lib ]; ··· 338 341 fftwtools = with pkgs; [ fftw.dev pkg-config ]; 339 342 Formula = [ pkgs.gmp ]; 340 343 gdtools = with pkgs; [ cairo.dev fontconfig.lib freetype.dev ]; 344 + GeneralizedWendland = [ pkgs.gsl ]; 341 345 ggiraph = with pkgs; [ pkgs.libpng.dev ]; 342 346 git2r = with pkgs; [ zlib.dev openssl.dev libssh2.dev libgit2 pkg-config ]; 343 347 GLAD = [ pkgs.gsl ]; ··· 346 350 GPBayes = [ pkgs.gsl ]; 347 351 graphscan = [ pkgs.gsl ]; 348 352 gsl = [ pkgs.gsl ]; 353 + gslnls = [ pkgs.gsl ]; 349 354 gert = [ pkgs.libgit2 ]; 350 355 haven = with pkgs; [ zlib.dev ]; 351 356 h5vc = [ pkgs.zlib.dev ]; 352 357 highs = [ pkgs.which pkgs.cmake ]; 358 + rbedrock = [ pkgs.zlib.dev pkgs.which pkgs.cmake ]; 353 359 HiCseg = [ pkgs.gsl ]; 354 360 imager = [ pkgs.xorg.libX11.dev ]; 355 361 iBMQ = [ pkgs.gsl ]; ··· 359 365 jqr = [ pkgs.jq.dev ]; 360 366 KFKSDS = [ pkgs.gsl ]; 361 367 kza = [ pkgs.fftw.dev ]; 368 + leidenAlg = [ pkgs.gmp.dev ]; 362 369 Libra = [ pkgs.gsl ]; 363 370 LOMAR = [ pkgs.gmp.dev ]; 364 371 lpsymphony = with pkgs; [ pkg-config gfortran gettext ]; ··· 380 387 pbdMPI = [ pkgs.mpi ]; 381 388 pbdPROF = [ pkgs.mpi ]; 382 389 pbdZMQ = [ pkgs.pkg-config ] ++ lib.optionals stdenv.isDarwin [ pkgs.which ]; 390 + pcaL1 = [ pkgs.pkg-config pkgs.clp ]; 383 391 pdftools = [ pkgs.poppler.dev ]; 384 392 phytools = [ pkgs.which ]; 385 393 PKI = [ pkgs.openssl.dev ]; ··· 426 434 httpuv = [ pkgs.zlib.dev ]; 427 435 clustermq = [ pkgs.zeromq ]; 428 436 SAVE = with pkgs; [ zlib bzip2 icu xz pcre ]; 437 + salso = [ pkgs.cargo ]; 429 438 sdcTable = with pkgs; [ gmp glpk ]; 430 439 seewave = with pkgs; [ fftw.dev libsndfile.dev ]; 431 440 seqinr = [ pkgs.zlib.dev ]; ··· 435 444 strawr = with pkgs; [ curl.dev ]; 436 445 terra = with pkgs; [ gdal proj geos ]; 437 446 apcf = with pkgs; [ geos ]; 447 + SemiCompRisks = [ pkgs.gsl ]; 438 448 showtext = with pkgs; [ zlib libpng icu freetype.dev ]; 439 449 simplexreg = [ pkgs.gsl ]; 440 450 spate = [ pkgs.fftw.dev ]; ··· 446 456 sysfonts = with pkgs; [ zlib libpng freetype.dev ]; 447 457 systemfonts = with pkgs; [ fontconfig.dev freetype.dev ]; 448 458 TAQMNGR = [ pkgs.zlib.dev ]; 459 + TDA = [ pkgs.gmp ]; 449 460 tesseract = with pkgs; [ tesseract leptonica ]; 450 461 tiff = [ pkgs.libtiff.dev ]; 451 462 tkrplot = with pkgs; [ xorg.libX11 tk.dev ]; ··· 501 512 RDieHarder = [ pkgs.gsl ]; 502 513 QF = [ pkgs.gsl ]; 503 514 PICS = [ pkgs.gsl ]; 515 + RationalMatrix = [ pkgs.pkg-config pkgs.gmp.dev]; 504 516 RcppCWB = [ pkgs.pkg-config pkgs.pcre2 ]; 505 517 redux = [ pkgs.pkg-config ]; 506 518 rrd = [ pkgs.pkg-config ]; ··· 513 525 textshaping = [ pkgs.pkg-config ]; 514 526 ragg = [ pkgs.pkg-config ]; 515 527 qqconf = [ pkgs.pkg-config ]; 528 + vapour = [ pkgs.pkg-config ]; 516 529 }; 517 530 518 531 packagesWithBuildInputs = { ··· 523 536 nat_templatebrains = [ pkgs.which ]; 524 537 pbdZMQ = [ pkgs.zeromq ] ++ lib.optionals stdenv.isDarwin [ pkgs.darwin.binutils ]; 525 538 bigmemory = lib.optionals stdenv.isLinux [ pkgs.libuuid.dev ]; 539 + bayesWatch = [ pkgs.boost.dev ]; 526 540 clustermq = [ pkgs.pkg-config ]; 541 + coga = [ pkgs.gsl.dev ]; 527 542 webp = [ pkgs.libwebp ]; 528 543 RMark = [ pkgs.which ]; 529 544 RPushbullet = [ pkgs.which ]; ··· 587 602 DiffBind = with pkgs; [ zlib.dev ]; 588 603 CNEr = with pkgs; [ zlib ]; 589 604 GMMAT = with pkgs; [ zlib.dev bzip2.dev ]; 605 + rmumps = with pkgs; [ zlib.dev ]; 590 606 HiCDCPlus = [ pkgs.zlib.dev ]; 591 607 PopGenome = [ pkgs.zlib.dev ]; 592 608 QuasR = [ pkgs.zlib.dev ]; ··· 641 657 redux = [ pkgs.hiredis ]; 642 658 RmecabKo = [ pkgs.mecab ]; 643 659 PoissonBinomial = [ pkgs.fftw.dev ]; 660 + poisbinom = [ pkgs.fftw.dev ]; 644 661 PoissonMultinomial = [ pkgs.fftw.dev ]; 645 662 rrd = [ pkgs.rrdtool ]; 646 663 flowWorkspace = [ pkgs.zlib.dev ]; ··· 656 673 ijtiff = [ pkgs.libtiff ]; 657 674 ragg = with pkgs; [ freetype.dev libpng.dev libtiff.dev zlib.dev libjpeg.dev bzip2.dev ]; 658 675 qqconf = [ pkgs.fftw.dev ]; 676 + vapour = with pkgs; [ proj.dev gdal ]; 659 677 }; 660 678 661 679 packagesRequiringX = [ ··· 834 852 "svWidgets" 835 853 "SYNCSA" 836 854 "SyNet" 855 + "switchboard" 837 856 "tcltk2" 838 857 "TestScorer" 839 858 "TIMP" ··· 866 885 "R_filesets" 867 886 "RKorAPClient" 868 887 "R_rsp" 888 + "salso" 869 889 "scholar" 870 890 "stepR" 871 891 "styler" 872 892 "TreeTools" 893 + "TreeSearch" 873 894 "ACNE" 874 895 "APAlyzer" 875 896 "EstMix" ··· 895 916 "fixest" 896 917 "paxtoolsr" 897 918 "systemPipeShiny" 919 + "matlab2r" 898 920 ]; 899 921 900 922 packagesToSkipCheck = [
+1 -1
pkgs/development/tools/build-managers/dub/default.nix
··· 151 151 description = "Package and build manager for D applications and libraries"; 152 152 homepage = "https://code.dlang.org/"; 153 153 license = licenses.mit; 154 - maintainers = with maintainers; [ ThomasMader jtbx ]; 154 + maintainers = with maintainers; [ jtbx ]; 155 155 platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 156 156 }; 157 157 }
+5 -5
pkgs/development/tools/build-managers/scala-cli/sources.json
··· 1 1 { 2 - "version": "1.1.3", 2 + "version": "1.2.0", 3 3 "assets": { 4 4 "aarch64-darwin": { 5 5 "asset": "scala-cli-aarch64-apple-darwin.gz", 6 - "sha256": "03rxllpnr93ms6j0fny7h2sym9pj1q8xrj0jmhapdjv582j4by82" 6 + "sha256": "1d9r45k9j7hniik5f6x9ym4lhkk6f1hs5rlxngsjb9v19jaik1nw" 7 7 }, 8 8 "aarch64-linux": { 9 9 "asset": "scala-cli-aarch64-pc-linux.gz", 10 - "sha256": "1msi2ylx2qf6k5gm1jj31qh9qbrxp5fydybzb25zclnpwwg1jlyc" 10 + "sha256": "0rvw4ahcq546nxcrkm16b9bra4398d3glgj3911bpp1zbyhzihz0" 11 11 }, 12 12 "x86_64-darwin": { 13 13 "asset": "scala-cli-x86_64-apple-darwin.gz", 14 - "sha256": "1sl3q59mb56g6795c8sm9kjpdgmpcdd23fxhaw49px2dvyryvxyy" 14 + "sha256": "1z3rgsny3fk3jqzqkyggvjx4ha1xj3v0f2ascd8a2qkxhzr6gl77" 15 15 }, 16 16 "x86_64-linux": { 17 17 "asset": "scala-cli-x86_64-pc-linux.gz", 18 - "sha256": "17cp6mq0046y21pd7cadxj90aqkqnlz7zx7sdp7mmn3pzjcaynqc" 18 + "sha256": "00vgp421967iyz13rhfhfbq6xqc2g17grm4vabh9dzb5rmrpga8g" 19 19 } 20 20 } 21 21 }
+1 -1
pkgs/development/tools/dtools/default.nix
··· 45 45 description = "Ancillary tools for the D programming language compiler"; 46 46 homepage = "https://github.com/dlang/tools"; 47 47 license = lib.licenses.boost; 48 - maintainers = with maintainers; [ ThomasMader jtbx ]; 48 + maintainers = with maintainers; [ jtbx ]; 49 49 platforms = lib.platforms.unix; 50 50 }; 51 51 }
+1 -1
pkgs/development/tools/infisical/default.nix
··· 15 15 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 16 16 17 17 # the version of infisical 18 - version = "0.17.1"; 18 + version = "0.18.0"; 19 19 20 20 # the platform-specific, statically linked binary 21 21 src =
+4 -4
pkgs/development/tools/infisical/hashes.json
··· 1 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 - , "x86_64-linux": "sha256-RfZP7au3F9GN7W8ksbqE167y28GhLMvX6Xy5qI920Vs=" 3 - , "x86_64-darwin": "sha256-Ye0hdk5m/LX7uAMdysSZmJihhV6+J35cn02M7PQziSk=" 4 - , "aarch64-linux": "sha256-6bcli2zJW6Y5zx860WFLqg0iPnvDKdq9RqnA5r8nv5E=" 5 - , "aarch64-darwin": "sha256-QaqYt0aPhPOuq4TY/kjSejnL5c3TrrYAVrLmYX6btuM=" 2 + , "x86_64-linux": "sha256-FDkDZJ4Uq/FZonfbuzYFbY7g00jGhyw36VizyqfkZO8=" 3 + , "x86_64-darwin": "sha256-gi/5W49tp3vhxDuMxooALKzt73jLFBtPonR/9ZExSgc=" 4 + , "aarch64-linux": "sha256-War89zjbKxDdyXa1AUhwpKCKbOPFaJR7lsDXUk+PmmI=" 5 + , "aarch64-darwin": "sha256-F3CD3gxBn0so89zImM6gi8+3WnNNuMdj/o3x3h1OrjM=" 6 6 }
-90
pkgs/development/tools/misc/d-feet/default.nix
··· 1 - { lib 2 - , pkg-config 3 - , fetchurl 4 - , fetchpatch 5 - , meson 6 - , ninja 7 - , glib 8 - , gtk3 9 - , python3 10 - , wrapGAppsHook 11 - , gnome 12 - , libwnck 13 - , gobject-introspection 14 - , gettext 15 - , itstool 16 - }: 17 - 18 - python3.pkgs.buildPythonApplication rec { 19 - pname = "d-feet"; 20 - version = "0.3.16"; 21 - 22 - format = "other"; 23 - 24 - src = fetchurl { 25 - url = "mirror://gnome/sources/d-feet/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 - sha256 = "hzPOS5qaVOwYWx2Fv02p2dEQUogqiAdg/2D5d5stHMs="; 27 - }; 28 - 29 - patches = [ 30 - # Fix build with meson 0.61 31 - # data/meson.build:15:0: ERROR: Function does not take positional arguments. 32 - # data/meson.build:27:0: ERROR: Function does not take positional arguments. 33 - # Patch taken from https://gitlab.gnome.org/GNOME/d-feet/-/merge_requests/32 34 - (fetchpatch { 35 - url = "https://gitlab.gnome.org/GNOME/d-feet/-/commit/05465d486afdba116dbc22fc22c1e6573aea4f22.patch"; 36 - sha256 = "sFI3nd0YE/deGws/YcTpzC/em9QNgicyb4j7cTfOdhY="; 37 - }) 38 - ]; 39 - 40 - nativeBuildInputs = [ 41 - gettext 42 - gobject-introspection 43 - itstool 44 - meson 45 - ninja 46 - pkg-config 47 - python3 48 - wrapGAppsHook 49 - ]; 50 - 51 - buildInputs = [ 52 - glib 53 - gnome.adwaita-icon-theme 54 - gtk3 55 - libwnck 56 - ]; 57 - 58 - propagatedBuildInputs = with python3.pkgs; [ 59 - pygobject3 60 - ]; 61 - 62 - mesonFlags = [ 63 - "-Dtests=false" # needs dbus 64 - ]; 65 - 66 - postPatch = '' 67 - chmod +x meson_post_install.py 68 - patchShebangs meson_post_install.py 69 - ''; 70 - 71 - passthru = { 72 - updateScript = gnome.updateScript { 73 - packageName = pname; 74 - attrPath = "dfeet"; 75 - versionPolicy = "none"; 76 - }; 77 - }; 78 - 79 - meta = with lib; { 80 - description = "D-Feet is an easy to use D-Bus debugger"; 81 - longDescription = '' 82 - D-Feet can be used to inspect D-Bus interfaces of running programs 83 - and invoke methods on those interfaces. 84 - ''; 85 - homepage = "https://wiki.gnome.org/Apps/DFeet"; 86 - platforms = platforms.linux; 87 - license = licenses.gpl2; 88 - maintainers = teams.gnome.members; 89 - }; 90 - }
+1053
pkgs/development/tools/sshs/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 = "ahash" 7 + version = "0.8.11" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 10 + dependencies = [ 11 + "cfg-if", 12 + "once_cell", 13 + "version_check", 14 + "zerocopy", 15 + ] 16 + 17 + [[package]] 18 + name = "aho-corasick" 19 + version = "1.1.2" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 22 + dependencies = [ 23 + "memchr", 24 + ] 25 + 26 + [[package]] 27 + name = "allocator-api2" 28 + version = "0.2.16" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 31 + 32 + [[package]] 33 + name = "anstream" 34 + version = "0.6.13" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" 37 + dependencies = [ 38 + "anstyle", 39 + "anstyle-parse", 40 + "anstyle-query", 41 + "anstyle-wincon", 42 + "colorchoice", 43 + "utf8parse", 44 + ] 45 + 46 + [[package]] 47 + name = "anstyle" 48 + version = "1.0.6" 49 + source = "registry+https://github.com/rust-lang/crates.io-index" 50 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 51 + 52 + [[package]] 53 + name = "anstyle-parse" 54 + version = "0.2.3" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 57 + dependencies = [ 58 + "utf8parse", 59 + ] 60 + 61 + [[package]] 62 + name = "anstyle-query" 63 + version = "1.0.2" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 66 + dependencies = [ 67 + "windows-sys 0.52.0", 68 + ] 69 + 70 + [[package]] 71 + name = "anstyle-wincon" 72 + version = "3.0.2" 73 + source = "registry+https://github.com/rust-lang/crates.io-index" 74 + checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 75 + dependencies = [ 76 + "anstyle", 77 + "windows-sys 0.52.0", 78 + ] 79 + 80 + [[package]] 81 + name = "anyhow" 82 + version = "1.0.80" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" 85 + 86 + [[package]] 87 + name = "autocfg" 88 + version = "1.1.0" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 91 + 92 + [[package]] 93 + name = "bitflags" 94 + version = "1.3.2" 95 + source = "registry+https://github.com/rust-lang/crates.io-index" 96 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 97 + 98 + [[package]] 99 + name = "bitflags" 100 + version = "2.4.2" 101 + source = "registry+https://github.com/rust-lang/crates.io-index" 102 + checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" 103 + 104 + [[package]] 105 + name = "block-buffer" 106 + version = "0.10.4" 107 + source = "registry+https://github.com/rust-lang/crates.io-index" 108 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 109 + dependencies = [ 110 + "generic-array", 111 + ] 112 + 113 + [[package]] 114 + name = "cassowary" 115 + version = "0.3.0" 116 + source = "registry+https://github.com/rust-lang/crates.io-index" 117 + checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 118 + 119 + [[package]] 120 + name = "castaway" 121 + version = "0.2.2" 122 + source = "registry+https://github.com/rust-lang/crates.io-index" 123 + checksum = "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc" 124 + dependencies = [ 125 + "rustversion", 126 + ] 127 + 128 + [[package]] 129 + name = "cfg-if" 130 + version = "1.0.0" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 133 + 134 + [[package]] 135 + name = "clap" 136 + version = "4.5.1" 137 + source = "registry+https://github.com/rust-lang/crates.io-index" 138 + checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da" 139 + dependencies = [ 140 + "clap_builder", 141 + "clap_derive", 142 + ] 143 + 144 + [[package]] 145 + name = "clap_builder" 146 + version = "4.5.1" 147 + source = "registry+https://github.com/rust-lang/crates.io-index" 148 + checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb" 149 + dependencies = [ 150 + "anstream", 151 + "anstyle", 152 + "clap_lex", 153 + "strsim", 154 + ] 155 + 156 + [[package]] 157 + name = "clap_derive" 158 + version = "4.5.0" 159 + source = "registry+https://github.com/rust-lang/crates.io-index" 160 + checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" 161 + dependencies = [ 162 + "heck", 163 + "proc-macro2", 164 + "quote", 165 + "syn 2.0.52", 166 + ] 167 + 168 + [[package]] 169 + name = "clap_lex" 170 + version = "0.7.0" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 173 + 174 + [[package]] 175 + name = "colorchoice" 176 + version = "1.0.0" 177 + source = "registry+https://github.com/rust-lang/crates.io-index" 178 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 179 + 180 + [[package]] 181 + name = "compact_str" 182 + version = "0.7.1" 183 + source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f" 185 + dependencies = [ 186 + "castaway", 187 + "cfg-if", 188 + "itoa", 189 + "ryu", 190 + "static_assertions", 191 + ] 192 + 193 + [[package]] 194 + name = "cpufeatures" 195 + version = "0.2.12" 196 + source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 198 + dependencies = [ 199 + "libc", 200 + ] 201 + 202 + [[package]] 203 + name = "crossterm" 204 + version = "0.27.0" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" 207 + dependencies = [ 208 + "bitflags 2.4.2", 209 + "crossterm_winapi", 210 + "libc", 211 + "mio", 212 + "parking_lot", 213 + "signal-hook", 214 + "signal-hook-mio", 215 + "winapi", 216 + ] 217 + 218 + [[package]] 219 + name = "crossterm_winapi" 220 + version = "0.9.1" 221 + source = "registry+https://github.com/rust-lang/crates.io-index" 222 + checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 223 + dependencies = [ 224 + "winapi", 225 + ] 226 + 227 + [[package]] 228 + name = "crypto-common" 229 + version = "0.1.6" 230 + source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 232 + dependencies = [ 233 + "generic-array", 234 + "typenum", 235 + ] 236 + 237 + [[package]] 238 + name = "digest" 239 + version = "0.10.7" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 242 + dependencies = [ 243 + "block-buffer", 244 + "crypto-common", 245 + ] 246 + 247 + [[package]] 248 + name = "dirs" 249 + version = "5.0.1" 250 + source = "registry+https://github.com/rust-lang/crates.io-index" 251 + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 252 + dependencies = [ 253 + "dirs-sys", 254 + ] 255 + 256 + [[package]] 257 + name = "dirs-sys" 258 + version = "0.4.1" 259 + source = "registry+https://github.com/rust-lang/crates.io-index" 260 + checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 261 + dependencies = [ 262 + "libc", 263 + "option-ext", 264 + "redox_users", 265 + "windows-sys 0.48.0", 266 + ] 267 + 268 + [[package]] 269 + name = "either" 270 + version = "1.10.0" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 273 + 274 + [[package]] 275 + name = "fuzzy-matcher" 276 + version = "0.3.7" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94" 279 + dependencies = [ 280 + "thread_local", 281 + ] 282 + 283 + [[package]] 284 + name = "generic-array" 285 + version = "0.14.7" 286 + source = "registry+https://github.com/rust-lang/crates.io-index" 287 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 288 + dependencies = [ 289 + "typenum", 290 + "version_check", 291 + ] 292 + 293 + [[package]] 294 + name = "getrandom" 295 + version = "0.2.12" 296 + source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" 298 + dependencies = [ 299 + "cfg-if", 300 + "libc", 301 + "wasi", 302 + ] 303 + 304 + [[package]] 305 + name = "glob" 306 + version = "0.3.1" 307 + source = "registry+https://github.com/rust-lang/crates.io-index" 308 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 309 + 310 + [[package]] 311 + name = "handlebars" 312 + version = "5.1.0" 313 + source = "registry+https://github.com/rust-lang/crates.io-index" 314 + checksum = "ab283476b99e66691dee3f1640fea91487a8d81f50fb5ecc75538f8f8879a1e4" 315 + dependencies = [ 316 + "log", 317 + "pest", 318 + "pest_derive", 319 + "serde", 320 + "serde_json", 321 + "thiserror", 322 + ] 323 + 324 + [[package]] 325 + name = "hashbrown" 326 + version = "0.14.3" 327 + source = "registry+https://github.com/rust-lang/crates.io-index" 328 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 329 + dependencies = [ 330 + "ahash", 331 + "allocator-api2", 332 + ] 333 + 334 + [[package]] 335 + name = "heck" 336 + version = "0.4.1" 337 + source = "registry+https://github.com/rust-lang/crates.io-index" 338 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 339 + 340 + [[package]] 341 + name = "indoc" 342 + version = "2.0.4" 343 + source = "registry+https://github.com/rust-lang/crates.io-index" 344 + checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" 345 + 346 + [[package]] 347 + name = "itertools" 348 + version = "0.12.1" 349 + source = "registry+https://github.com/rust-lang/crates.io-index" 350 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 351 + dependencies = [ 352 + "either", 353 + ] 354 + 355 + [[package]] 356 + name = "itoa" 357 + version = "1.0.10" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 360 + 361 + [[package]] 362 + name = "libc" 363 + version = "0.2.153" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 366 + 367 + [[package]] 368 + name = "libredox" 369 + version = "0.0.1" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" 372 + dependencies = [ 373 + "bitflags 2.4.2", 374 + "libc", 375 + "redox_syscall", 376 + ] 377 + 378 + [[package]] 379 + name = "lock_api" 380 + version = "0.4.11" 381 + source = "registry+https://github.com/rust-lang/crates.io-index" 382 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 383 + dependencies = [ 384 + "autocfg", 385 + "scopeguard", 386 + ] 387 + 388 + [[package]] 389 + name = "log" 390 + version = "0.4.21" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 393 + 394 + [[package]] 395 + name = "lru" 396 + version = "0.12.3" 397 + source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 399 + dependencies = [ 400 + "hashbrown", 401 + ] 402 + 403 + [[package]] 404 + name = "memchr" 405 + version = "2.7.1" 406 + source = "registry+https://github.com/rust-lang/crates.io-index" 407 + checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" 408 + 409 + [[package]] 410 + name = "mio" 411 + version = "0.8.11" 412 + source = "registry+https://github.com/rust-lang/crates.io-index" 413 + checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 414 + dependencies = [ 415 + "libc", 416 + "log", 417 + "wasi", 418 + "windows-sys 0.48.0", 419 + ] 420 + 421 + [[package]] 422 + name = "once_cell" 423 + version = "1.19.0" 424 + source = "registry+https://github.com/rust-lang/crates.io-index" 425 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 426 + 427 + [[package]] 428 + name = "option-ext" 429 + version = "0.2.0" 430 + source = "registry+https://github.com/rust-lang/crates.io-index" 431 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 432 + 433 + [[package]] 434 + name = "parking_lot" 435 + version = "0.12.1" 436 + source = "registry+https://github.com/rust-lang/crates.io-index" 437 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 438 + dependencies = [ 439 + "lock_api", 440 + "parking_lot_core", 441 + ] 442 + 443 + [[package]] 444 + name = "parking_lot_core" 445 + version = "0.9.9" 446 + source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 448 + dependencies = [ 449 + "cfg-if", 450 + "libc", 451 + "redox_syscall", 452 + "smallvec", 453 + "windows-targets 0.48.5", 454 + ] 455 + 456 + [[package]] 457 + name = "paste" 458 + version = "1.0.14" 459 + source = "registry+https://github.com/rust-lang/crates.io-index" 460 + checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 461 + 462 + [[package]] 463 + name = "pest" 464 + version = "2.7.8" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8" 467 + dependencies = [ 468 + "memchr", 469 + "thiserror", 470 + "ucd-trie", 471 + ] 472 + 473 + [[package]] 474 + name = "pest_derive" 475 + version = "2.7.8" 476 + source = "registry+https://github.com/rust-lang/crates.io-index" 477 + checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026" 478 + dependencies = [ 479 + "pest", 480 + "pest_generator", 481 + ] 482 + 483 + [[package]] 484 + name = "pest_generator" 485 + version = "2.7.8" 486 + source = "registry+https://github.com/rust-lang/crates.io-index" 487 + checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80" 488 + dependencies = [ 489 + "pest", 490 + "pest_meta", 491 + "proc-macro2", 492 + "quote", 493 + "syn 2.0.52", 494 + ] 495 + 496 + [[package]] 497 + name = "pest_meta" 498 + version = "2.7.8" 499 + source = "registry+https://github.com/rust-lang/crates.io-index" 500 + checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293" 501 + dependencies = [ 502 + "once_cell", 503 + "pest", 504 + "sha2", 505 + ] 506 + 507 + [[package]] 508 + name = "proc-macro2" 509 + version = "1.0.78" 510 + source = "registry+https://github.com/rust-lang/crates.io-index" 511 + checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" 512 + dependencies = [ 513 + "unicode-ident", 514 + ] 515 + 516 + [[package]] 517 + name = "quote" 518 + version = "1.0.35" 519 + source = "registry+https://github.com/rust-lang/crates.io-index" 520 + checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 521 + dependencies = [ 522 + "proc-macro2", 523 + ] 524 + 525 + [[package]] 526 + name = "ratatui" 527 + version = "0.26.1" 528 + source = "registry+https://github.com/rust-lang/crates.io-index" 529 + checksum = "bcb12f8fbf6c62614b0d56eb352af54f6a22410c3b079eb53ee93c7b97dd31d8" 530 + dependencies = [ 531 + "bitflags 2.4.2", 532 + "cassowary", 533 + "compact_str", 534 + "crossterm", 535 + "indoc", 536 + "itertools", 537 + "lru", 538 + "paste", 539 + "stability", 540 + "strum", 541 + "unicode-segmentation", 542 + "unicode-width", 543 + ] 544 + 545 + [[package]] 546 + name = "redox_syscall" 547 + version = "0.4.1" 548 + source = "registry+https://github.com/rust-lang/crates.io-index" 549 + checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 550 + dependencies = [ 551 + "bitflags 1.3.2", 552 + ] 553 + 554 + [[package]] 555 + name = "redox_users" 556 + version = "0.4.4" 557 + source = "registry+https://github.com/rust-lang/crates.io-index" 558 + checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" 559 + dependencies = [ 560 + "getrandom", 561 + "libredox", 562 + "thiserror", 563 + ] 564 + 565 + [[package]] 566 + name = "regex" 567 + version = "1.10.3" 568 + source = "registry+https://github.com/rust-lang/crates.io-index" 569 + checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" 570 + dependencies = [ 571 + "aho-corasick", 572 + "memchr", 573 + "regex-automata", 574 + "regex-syntax", 575 + ] 576 + 577 + [[package]] 578 + name = "regex-automata" 579 + version = "0.4.6" 580 + source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 582 + dependencies = [ 583 + "aho-corasick", 584 + "memchr", 585 + "regex-syntax", 586 + ] 587 + 588 + [[package]] 589 + name = "regex-syntax" 590 + version = "0.8.2" 591 + source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 593 + 594 + [[package]] 595 + name = "rustversion" 596 + version = "1.0.14" 597 + source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 599 + 600 + [[package]] 601 + name = "ryu" 602 + version = "1.0.17" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 605 + 606 + [[package]] 607 + name = "scopeguard" 608 + version = "1.2.0" 609 + source = "registry+https://github.com/rust-lang/crates.io-index" 610 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 611 + 612 + [[package]] 613 + name = "serde" 614 + version = "1.0.197" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 617 + dependencies = [ 618 + "serde_derive", 619 + ] 620 + 621 + [[package]] 622 + name = "serde_derive" 623 + version = "1.0.197" 624 + source = "registry+https://github.com/rust-lang/crates.io-index" 625 + checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 626 + dependencies = [ 627 + "proc-macro2", 628 + "quote", 629 + "syn 2.0.52", 630 + ] 631 + 632 + [[package]] 633 + name = "serde_json" 634 + version = "1.0.114" 635 + source = "registry+https://github.com/rust-lang/crates.io-index" 636 + checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" 637 + dependencies = [ 638 + "itoa", 639 + "ryu", 640 + "serde", 641 + ] 642 + 643 + [[package]] 644 + name = "sha2" 645 + version = "0.10.8" 646 + source = "registry+https://github.com/rust-lang/crates.io-index" 647 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 648 + dependencies = [ 649 + "cfg-if", 650 + "cpufeatures", 651 + "digest", 652 + ] 653 + 654 + [[package]] 655 + name = "shellexpand" 656 + version = "3.1.0" 657 + source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b" 659 + dependencies = [ 660 + "dirs", 661 + ] 662 + 663 + [[package]] 664 + name = "shlex" 665 + version = "1.3.0" 666 + source = "registry+https://github.com/rust-lang/crates.io-index" 667 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 668 + 669 + [[package]] 670 + name = "signal-hook" 671 + version = "0.3.17" 672 + source = "registry+https://github.com/rust-lang/crates.io-index" 673 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 674 + dependencies = [ 675 + "libc", 676 + "signal-hook-registry", 677 + ] 678 + 679 + [[package]] 680 + name = "signal-hook-mio" 681 + version = "0.2.3" 682 + source = "registry+https://github.com/rust-lang/crates.io-index" 683 + checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 684 + dependencies = [ 685 + "libc", 686 + "mio", 687 + "signal-hook", 688 + ] 689 + 690 + [[package]] 691 + name = "signal-hook-registry" 692 + version = "1.4.1" 693 + source = "registry+https://github.com/rust-lang/crates.io-index" 694 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 695 + dependencies = [ 696 + "libc", 697 + ] 698 + 699 + [[package]] 700 + name = "smallvec" 701 + version = "1.13.1" 702 + source = "registry+https://github.com/rust-lang/crates.io-index" 703 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 704 + 705 + [[package]] 706 + name = "sshs" 707 + version = "4.2.1" 708 + dependencies = [ 709 + "anyhow", 710 + "clap", 711 + "crossterm", 712 + "fuzzy-matcher", 713 + "glob", 714 + "handlebars", 715 + "itertools", 716 + "ratatui", 717 + "regex", 718 + "serde", 719 + "shellexpand", 720 + "shlex", 721 + "strum", 722 + "strum_macros", 723 + "tui-input", 724 + "unicode-width", 725 + ] 726 + 727 + [[package]] 728 + name = "stability" 729 + version = "0.1.1" 730 + source = "registry+https://github.com/rust-lang/crates.io-index" 731 + checksum = "ebd1b177894da2a2d9120208c3386066af06a488255caabc5de8ddca22dbc3ce" 732 + dependencies = [ 733 + "quote", 734 + "syn 1.0.109", 735 + ] 736 + 737 + [[package]] 738 + name = "static_assertions" 739 + version = "1.1.0" 740 + source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 742 + 743 + [[package]] 744 + name = "strsim" 745 + version = "0.11.0" 746 + source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" 748 + 749 + [[package]] 750 + name = "strum" 751 + version = "0.26.1" 752 + source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" 754 + dependencies = [ 755 + "strum_macros", 756 + ] 757 + 758 + [[package]] 759 + name = "strum_macros" 760 + version = "0.26.1" 761 + source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "7a3417fc93d76740d974a01654a09777cb500428cc874ca9f45edfe0c4d4cd18" 763 + dependencies = [ 764 + "heck", 765 + "proc-macro2", 766 + "quote", 767 + "rustversion", 768 + "syn 2.0.52", 769 + ] 770 + 771 + [[package]] 772 + name = "syn" 773 + version = "1.0.109" 774 + source = "registry+https://github.com/rust-lang/crates.io-index" 775 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 776 + dependencies = [ 777 + "proc-macro2", 778 + "quote", 779 + "unicode-ident", 780 + ] 781 + 782 + [[package]] 783 + name = "syn" 784 + version = "2.0.52" 785 + source = "registry+https://github.com/rust-lang/crates.io-index" 786 + checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" 787 + dependencies = [ 788 + "proc-macro2", 789 + "quote", 790 + "unicode-ident", 791 + ] 792 + 793 + [[package]] 794 + name = "thiserror" 795 + version = "1.0.57" 796 + source = "registry+https://github.com/rust-lang/crates.io-index" 797 + checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" 798 + dependencies = [ 799 + "thiserror-impl", 800 + ] 801 + 802 + [[package]] 803 + name = "thiserror-impl" 804 + version = "1.0.57" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" 807 + dependencies = [ 808 + "proc-macro2", 809 + "quote", 810 + "syn 2.0.52", 811 + ] 812 + 813 + [[package]] 814 + name = "thread_local" 815 + version = "1.1.8" 816 + source = "registry+https://github.com/rust-lang/crates.io-index" 817 + checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 818 + dependencies = [ 819 + "cfg-if", 820 + "once_cell", 821 + ] 822 + 823 + [[package]] 824 + name = "tui-input" 825 + version = "0.8.0" 826 + source = "registry+https://github.com/rust-lang/crates.io-index" 827 + checksum = "b3e785f863a3af4c800a2a669d0b64c879b538738e352607e2624d03f868dc01" 828 + dependencies = [ 829 + "crossterm", 830 + "unicode-width", 831 + ] 832 + 833 + [[package]] 834 + name = "typenum" 835 + version = "1.17.0" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 838 + 839 + [[package]] 840 + name = "ucd-trie" 841 + version = "0.1.6" 842 + source = "registry+https://github.com/rust-lang/crates.io-index" 843 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 844 + 845 + [[package]] 846 + name = "unicode-ident" 847 + version = "1.0.12" 848 + source = "registry+https://github.com/rust-lang/crates.io-index" 849 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 850 + 851 + [[package]] 852 + name = "unicode-segmentation" 853 + version = "1.11.0" 854 + source = "registry+https://github.com/rust-lang/crates.io-index" 855 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 856 + 857 + [[package]] 858 + name = "unicode-width" 859 + version = "0.1.11" 860 + source = "registry+https://github.com/rust-lang/crates.io-index" 861 + checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 862 + 863 + [[package]] 864 + name = "utf8parse" 865 + version = "0.2.1" 866 + source = "registry+https://github.com/rust-lang/crates.io-index" 867 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 868 + 869 + [[package]] 870 + name = "version_check" 871 + version = "0.9.4" 872 + source = "registry+https://github.com/rust-lang/crates.io-index" 873 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 874 + 875 + [[package]] 876 + name = "wasi" 877 + version = "0.11.0+wasi-snapshot-preview1" 878 + source = "registry+https://github.com/rust-lang/crates.io-index" 879 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 880 + 881 + [[package]] 882 + name = "winapi" 883 + version = "0.3.9" 884 + source = "registry+https://github.com/rust-lang/crates.io-index" 885 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 886 + dependencies = [ 887 + "winapi-i686-pc-windows-gnu", 888 + "winapi-x86_64-pc-windows-gnu", 889 + ] 890 + 891 + [[package]] 892 + name = "winapi-i686-pc-windows-gnu" 893 + version = "0.4.0" 894 + source = "registry+https://github.com/rust-lang/crates.io-index" 895 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 896 + 897 + [[package]] 898 + name = "winapi-x86_64-pc-windows-gnu" 899 + version = "0.4.0" 900 + source = "registry+https://github.com/rust-lang/crates.io-index" 901 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 902 + 903 + [[package]] 904 + name = "windows-sys" 905 + version = "0.48.0" 906 + source = "registry+https://github.com/rust-lang/crates.io-index" 907 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 908 + dependencies = [ 909 + "windows-targets 0.48.5", 910 + ] 911 + 912 + [[package]] 913 + name = "windows-sys" 914 + version = "0.52.0" 915 + source = "registry+https://github.com/rust-lang/crates.io-index" 916 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 917 + dependencies = [ 918 + "windows-targets 0.52.4", 919 + ] 920 + 921 + [[package]] 922 + name = "windows-targets" 923 + version = "0.48.5" 924 + source = "registry+https://github.com/rust-lang/crates.io-index" 925 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 926 + dependencies = [ 927 + "windows_aarch64_gnullvm 0.48.5", 928 + "windows_aarch64_msvc 0.48.5", 929 + "windows_i686_gnu 0.48.5", 930 + "windows_i686_msvc 0.48.5", 931 + "windows_x86_64_gnu 0.48.5", 932 + "windows_x86_64_gnullvm 0.48.5", 933 + "windows_x86_64_msvc 0.48.5", 934 + ] 935 + 936 + [[package]] 937 + name = "windows-targets" 938 + version = "0.52.4" 939 + source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 941 + dependencies = [ 942 + "windows_aarch64_gnullvm 0.52.4", 943 + "windows_aarch64_msvc 0.52.4", 944 + "windows_i686_gnu 0.52.4", 945 + "windows_i686_msvc 0.52.4", 946 + "windows_x86_64_gnu 0.52.4", 947 + "windows_x86_64_gnullvm 0.52.4", 948 + "windows_x86_64_msvc 0.52.4", 949 + ] 950 + 951 + [[package]] 952 + name = "windows_aarch64_gnullvm" 953 + version = "0.48.5" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 956 + 957 + [[package]] 958 + name = "windows_aarch64_gnullvm" 959 + version = "0.52.4" 960 + source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 962 + 963 + [[package]] 964 + name = "windows_aarch64_msvc" 965 + version = "0.48.5" 966 + source = "registry+https://github.com/rust-lang/crates.io-index" 967 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 968 + 969 + [[package]] 970 + name = "windows_aarch64_msvc" 971 + version = "0.52.4" 972 + source = "registry+https://github.com/rust-lang/crates.io-index" 973 + checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 974 + 975 + [[package]] 976 + name = "windows_i686_gnu" 977 + version = "0.48.5" 978 + source = "registry+https://github.com/rust-lang/crates.io-index" 979 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 980 + 981 + [[package]] 982 + name = "windows_i686_gnu" 983 + version = "0.52.4" 984 + source = "registry+https://github.com/rust-lang/crates.io-index" 985 + checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 986 + 987 + [[package]] 988 + name = "windows_i686_msvc" 989 + version = "0.48.5" 990 + source = "registry+https://github.com/rust-lang/crates.io-index" 991 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 992 + 993 + [[package]] 994 + name = "windows_i686_msvc" 995 + version = "0.52.4" 996 + source = "registry+https://github.com/rust-lang/crates.io-index" 997 + checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 998 + 999 + [[package]] 1000 + name = "windows_x86_64_gnu" 1001 + version = "0.48.5" 1002 + source = "registry+https://github.com/rust-lang/crates.io-index" 1003 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1004 + 1005 + [[package]] 1006 + name = "windows_x86_64_gnu" 1007 + version = "0.52.4" 1008 + source = "registry+https://github.com/rust-lang/crates.io-index" 1009 + checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 1010 + 1011 + [[package]] 1012 + name = "windows_x86_64_gnullvm" 1013 + version = "0.48.5" 1014 + source = "registry+https://github.com/rust-lang/crates.io-index" 1015 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1016 + 1017 + [[package]] 1018 + name = "windows_x86_64_gnullvm" 1019 + version = "0.52.4" 1020 + source = "registry+https://github.com/rust-lang/crates.io-index" 1021 + checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 1022 + 1023 + [[package]] 1024 + name = "windows_x86_64_msvc" 1025 + version = "0.48.5" 1026 + source = "registry+https://github.com/rust-lang/crates.io-index" 1027 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1028 + 1029 + [[package]] 1030 + name = "windows_x86_64_msvc" 1031 + version = "0.52.4" 1032 + source = "registry+https://github.com/rust-lang/crates.io-index" 1033 + checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 1034 + 1035 + [[package]] 1036 + name = "zerocopy" 1037 + version = "0.7.32" 1038 + source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 1040 + dependencies = [ 1041 + "zerocopy-derive", 1042 + ] 1043 + 1044 + [[package]] 1045 + name = "zerocopy-derive" 1046 + version = "0.7.32" 1047 + source = "registry+https://github.com/rust-lang/crates.io-index" 1048 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 1049 + dependencies = [ 1050 + "proc-macro2", 1051 + "quote", 1052 + "syn 2.0.52", 1053 + ]
+31
pkgs/development/tools/sshs/Cargo.toml
··· 1 + [package] 2 + name = "sshs" 3 + version = "4.2.1" 4 + edition = "2021" 5 + 6 + [[bin]] 7 + name = "sshs" 8 + path = "src/main.rs" 9 + 10 + [profile.release] 11 + strip = true 12 + lto = true 13 + codegen-units = 1 14 + 15 + [dependencies] 16 + anyhow = "1.0.80" 17 + clap = { version = "4.5.0", features = ["derive"] } 18 + crossterm = "0.27.0" 19 + fuzzy-matcher = "0.3.7" 20 + glob = "0.3.1" 21 + handlebars = "5.1.0" 22 + itertools = "0.12.1" 23 + ratatui = "0.26.1" 24 + regex = { version = "1.10.3", default-features = false, features = ["std"] } 25 + serde = { version = "1.0.197", features = ["derive"] } 26 + shellexpand = "3.1.0" 27 + shlex = "1.3.0" 28 + strum = "0.26.1" 29 + strum_macros = "0.26.1" 30 + tui-input = "0.8.0" 31 + unicode-width = "0.1.11"
+18 -8
pkgs/development/tools/sshs/default.nix
··· 1 1 { lib 2 - , buildGoModule 2 + , rustPlatform 3 3 , fetchFromGitHub 4 - , nix-update-script 4 + , testers 5 + , sshs 5 6 }: 6 7 7 - buildGoModule rec { 8 + rustPlatform.buildRustPackage rec { 8 9 pname = "sshs"; 9 - version = "3.4.0"; 10 + version = "4.2.1"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "quantumsheep"; 13 14 repo = pname; 14 15 rev = version; 15 - hash = "sha256-KD971dGm1oQt9GbiUGZm2k4SJrBAA9rnHj7Gu0t3SJw="; 16 + hash = "sha256-phVwNPElQOTgsrDxzyUcDMByxi7t1IIPFCEHJTXiBdY="; 16 17 }; 17 18 18 - vendorHash = "sha256-OCh37wjSs40Q0VQmoc1nXQ4nWddnoUCrI5xgxpxR/Ec="; 19 + cargoLock = { 20 + # Patch version output 21 + lockFile = ./Cargo.lock; 22 + }; 19 23 20 - ldflags = [ "-s" "-w" "-X github.com/quantumsheep/sshs/cmd.Version=${version}" ]; 24 + postPatch = '' 25 + ln -sf ${./Cargo.toml} Cargo.toml 26 + ln -sf ${./Cargo.lock} Cargo.lock 27 + ''; 21 28 22 - passthru.updateScript = nix-update-script { }; 29 + passthru.tests.version = testers.testVersion { 30 + package = sshs; 31 + }; 23 32 24 33 meta = with lib; { 25 34 description = "Terminal user interface for SSH"; 26 35 homepage = "https://github.com/quantumsheep/sshs"; 27 36 license = licenses.mit; 28 37 maintainers = with maintainers; [ not-my-segfault ]; 38 + mainProgram = "sshs"; 29 39 }; 30 40 }
+10 -10
pkgs/development/tools/vagrant/0001-Revert-Merge-pull-request-12225-from-chrisroberts-re.patch
··· 78 78 at_exit(&Vagrant::Bundler.instance.method(:deinit)) 79 79 80 80 diff --git a/lib/vagrant.rb b/lib/vagrant.rb 81 - index f3dcba0bc..d696bdff8 100644 81 + index f790039d3..97e67e3b8 100644 82 82 --- a/lib/vagrant.rb 83 83 +++ b/lib/vagrant.rb 84 - @@ -81,7 +81,7 @@ if ENV["VAGRANT_LOG"] && ENV["VAGRANT_LOG"] != "" 85 - # See https://github.com/rest-client/rest-client/issues/34#issuecomment-290858 86 - # for more information 87 - class VagrantLogger < Log4r::Logger 88 - - def << msg 89 - + def << (msg) 90 - debug(msg.strip) 91 - end 92 - end 84 + @@ -59,7 +59,7 @@ require "vagrant/plugin/manager" 85 + # See https://github.com/rest-client/rest-client/issues/34#issuecomment-290858 86 + # for more information 87 + class VagrantLogger < Log4r::Logger 88 + - def << msg 89 + + def << (msg) 90 + debug(msg.strip) 91 + end 92 + end 93 93 diff --git a/lib/vagrant/bundler.rb b/lib/vagrant/bundler.rb 94 94 index eb2caabb0..d75f54362 100644 95 95 --- a/lib/vagrant/bundler.rb
+10 -4
pkgs/development/tools/vagrant/default.nix
··· 1 1 { stdenv, lib, fetchurl, buildRubyGem, bundlerEnv, ruby, libarchive 2 2 , libguestfs, qemu, writeText, withLibvirt ? stdenv.isLinux 3 + , openssl 3 4 }: 4 5 5 6 let 6 7 # NOTE: bumping the version and updating the hash is insufficient; 7 8 # you must use bundix to generate a new gemset.nix in the Vagrant source. 8 - version = "2.3.7"; 9 + version = "2.4.1"; 9 10 url = "https://github.com/hashicorp/vagrant/archive/v${version}.tar.gz"; 10 - hash = "sha256-+oqWMZqnuf9fSpkbd8vzf1SVSdhHN2JLzr76jyAEv0U="; 11 + hash = "sha256-Gc+jBuP/rl3b8wUE9hoaMSSqmodyGxMKFAmNTqH+v4k="; 11 12 12 13 deps = bundlerEnv rec { 13 14 name = "${pname}-${version}"; ··· 50 51 dontBuild = false; 51 52 src = fetchurl { inherit url hash; }; 52 53 54 + # Some reports indicate that some connection types, particularly 55 + # WinRM, suffer from "Digest initialization failed" errors. Adding 56 + # openssl as a build input resolves this runtime error. 57 + buildInputs = [ openssl ]; 58 + 53 59 patches = [ 54 60 ./unofficial-installation-nowarn.patch 55 61 ./use-system-bundler-version.patch ··· 105 111 meta = with lib; { 106 112 description = "A tool for building complete development environments"; 107 113 homepage = "https://www.vagrantup.com/"; 108 - license = licenses.mit; 109 - maintainers = with maintainers; [ ]; 114 + license = licenses.bsl11; 115 + maintainers = with maintainers; [ tylerjl ]; 110 116 platforms = with platforms; linux ++ darwin; 111 117 }; 112 118 }
+82 -60
pkgs/development/tools/vagrant/gemset.nix
··· 9 9 }; 10 10 version = "1.1.0"; 11 11 }; 12 + bigdecimal = { 13 + groups = ["default"]; 14 + platforms = []; 15 + source = { 16 + remotes = ["https://rubygems.org"]; 17 + sha256 = "00db5v09k1z3539g1zrk7vkjrln9967k08adh6qx33ng97a2gg5w"; 18 + type = "gem"; 19 + }; 20 + version = "3.1.6"; 21 + }; 12 22 builder = { 13 23 groups = ["default"]; 14 24 platforms = []; ··· 34 44 platforms = []; 35 45 source = { 36 46 remotes = ["https://rubygems.org"]; 37 - sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q"; 47 + sha256 = "1qh1b14jwbbj242klkyz5fc7npd4j0mvndz62gajhvl1l3wd7zc2"; 38 48 type = "gem"; 39 49 }; 40 - version = "1.2.2"; 50 + version = "1.2.3"; 41 51 }; 42 52 date = { 43 53 groups = ["default"]; 44 54 platforms = []; 45 55 source = { 46 56 remotes = ["https://rubygems.org"]; 47 - sha256 = "03skfikihpx37rc27vr3hwrb057gxnmdzxhmzd4bf4jpkl0r55w1"; 57 + sha256 = "149jknsq999gnhy865n33fkk22s0r447k76x9pmcnnwldfv2q7wp"; 48 58 type = "gem"; 49 59 }; 50 - version = "3.3.3"; 60 + version = "3.3.4"; 51 61 }; 52 62 diff-lcs = { 53 63 groups = ["default" "development"]; 54 64 platforms = []; 55 65 source = { 56 66 remotes = ["https://rubygems.org"]; 57 - sha256 = "0rwvjahnp7cpmracd8x732rjgnilqv2sx7d1gfrysslc3h039fa9"; 67 + sha256 = "1znxccz83m4xgpd239nyqxlifdb7m8rlfayk6s259186nkgj6ci7"; 58 68 type = "gem"; 59 69 }; 60 - version = "1.5.0"; 70 + version = "1.5.1"; 61 71 }; 62 72 ed25519 = { 63 73 groups = ["default"]; ··· 84 94 platforms = []; 85 95 source = { 86 96 remotes = ["https://rubygems.org"]; 87 - sha256 = "0j826kfvzn7nc5pv950n270r0sx1702k988ad11cdlav3dcxxw09"; 97 + sha256 = "1kmmwgjzlrnc3nnrdnw1z67c95nbw0hv54a73yj8jw6pcvl9585x"; 88 98 type = "gem"; 89 99 }; 90 - version = "0.99.0"; 100 + version = "0.109.0"; 91 101 }; 92 102 fake_ftp = { 93 103 groups = ["development"]; ··· 104 114 platforms = []; 105 115 source = { 106 116 remotes = ["https://rubygems.org"]; 107 - sha256 = "1862ydmclzy1a0cjbvm8dz7847d9rch495ib0zb64y84d3xd4bkg"; 117 + sha256 = "1yvii03hcgqj30maavddqamqy50h7y6xcn2wcyq72wn823zl4ckd"; 108 118 type = "gem"; 109 119 }; 110 - version = "1.15.5"; 120 + version = "1.16.3"; 111 121 }; 112 122 google-protobuf = { 113 123 groups = ["default"]; 114 124 platforms = []; 115 125 source = { 116 126 remotes = ["https://rubygems.org"]; 117 - sha256 = "1zqyy07ps6zh0gi9nppmnsngzv5nx1qjv726mzhv83sh90rc25nm"; 127 + sha256 = "1mnxzcq8kmyfb9bkzqnp019d1hx1vprip3yzdkkha6b3qz5rgg9r"; 118 128 type = "gem"; 119 129 }; 120 - version = "3.22.2"; 130 + version = "3.25.3"; 121 131 }; 122 132 googleapis-common-protos-types = { 123 133 dependencies = ["google-protobuf"]; ··· 125 135 platforms = []; 126 136 source = { 127 137 remotes = ["https://rubygems.org"]; 128 - sha256 = "12w5bwaziz2iqb9dvgnskp2a7ifml6n4lyl9ypvnxj5bfrrwysap"; 138 + sha256 = "1zrxnv9s2q39f2nh32x7nbfi8lpwzmmn3ji4adglg8dlfr1xrz16"; 129 139 type = "gem"; 130 140 }; 131 - version = "1.5.0"; 141 + version = "1.13.0"; 132 142 }; 133 143 grpc = { 134 144 dependencies = ["google-protobuf" "googleapis-common-protos-types"]; ··· 136 146 platforms = []; 137 147 source = { 138 148 remotes = ["https://rubygems.org"]; 139 - sha256 = "0kj4j1g6l9v92k3byqyfq2kmawy12cj898daxqn1jsw0b458k0dh"; 149 + sha256 = "1ndyis4hyq5wyypvy5j2pxaax73k9xd9cdsc5hyvpk3vbnn26rdb"; 140 150 type = "gem"; 141 151 }; 142 - version = "1.53.0"; 152 + version = "1.56.2"; 143 153 }; 144 154 grpc-tools = { 145 155 groups = ["development"]; 146 156 platforms = []; 147 157 source = { 148 158 remotes = ["https://rubygems.org"]; 149 - sha256 = "0dal0xca2f301jrh049agmrbab21yjqd8npizzz55dhqn9dkwdsl"; 159 + sha256 = "0pwwsmw402y8f8l3s3v433lx1f3cahzh2bj3i6jhkg1z87z83pqm"; 150 160 type = "gem"; 151 161 }; 152 - version = "1.53.0"; 162 + version = "1.62.0"; 153 163 }; 154 164 gssapi = { 155 165 dependencies = ["ffi"]; ··· 199 209 platforms = []; 200 210 source = { 201 211 remotes = ["https://rubygems.org"]; 202 - sha256 = "1vdcchz7jli1p0gnc669a7bj3q1fv09y9ppf0y3k0vb1jwdwrqwi"; 212 + sha256 = "0qaamqsh5f3szhcakkak8ikxlzxqnv49n2p7504hcz2l0f4nj0wx"; 203 213 type = "gem"; 204 214 }; 205 - version = "1.12.0"; 215 + version = "1.14.1"; 206 216 }; 207 217 ipaddr = { 208 218 groups = ["default"]; 209 219 platforms = []; 210 220 source = { 211 221 remotes = ["https://rubygems.org"]; 212 - sha256 = "0ypic2hrmvvcgw7al72raphqv5cs1zvq4w284pwrkvfqsrqrqrsf"; 222 + sha256 = "0p98v9b6rn5ma04qwvzs0nrg0hmnwpm70s9jshzdsrkqapcw4sh2"; 213 223 type = "gem"; 214 224 }; 215 - version = "1.2.5"; 225 + version = "1.2.6"; 216 226 }; 217 227 listen = { 218 228 dependencies = ["rb-fsevent" "rb-inotify"]; ··· 220 230 platforms = []; 221 231 source = { 222 232 remotes = ["https://rubygems.org"]; 223 - sha256 = "13rgkfar8pp31z1aamxf5y7cfq88wv6rxxcwy7cmm177qq508ycn"; 233 + sha256 = "0rwwsmvq79qwzl6324yc53py02kbrcww35si720490z5w0j497nv"; 224 234 type = "gem"; 225 235 }; 226 - version = "3.8.0"; 236 + version = "3.9.0"; 227 237 }; 228 238 little-plugger = { 229 239 groups = ["default"]; ··· 262 272 platforms = []; 263 273 source = { 264 274 remotes = ["https://rubygems.org"]; 265 - sha256 = "0ipw892jbksbxxcrlx9g5ljq60qx47pm24ywgfbyjskbcl78pkvb"; 275 + sha256 = "1r64z0m5zrn4k37wabfnv43wa6yivgdfk6cf2rpmmirlz889yaf1"; 266 276 type = "gem"; 267 277 }; 268 - version = "3.4.1"; 278 + version = "3.5.2"; 269 279 }; 270 280 mime-types-data = { 271 281 groups = ["default"]; 272 282 platforms = []; 273 283 source = { 274 284 remotes = ["https://rubygems.org"]; 275 - sha256 = "1pky3vzaxlgm9gw5wlqwwi7wsw3jrglrfflrppvvnsrlaiz043z9"; 285 + sha256 = "0zpn5brxdf5akh7ij511bkrd30fxd7697shmxxszahqj9m62zvn5"; 276 286 type = "gem"; 277 287 }; 278 - version = "3.2023.0218.1"; 288 + version = "3.2024.0206"; 279 289 }; 280 290 multi_json = { 281 291 groups = ["default"]; ··· 293 303 platforms = []; 294 304 source = { 295 305 remotes = ["https://rubygems.org"]; 296 - sha256 = "0bqy9xg5225x102873j1qqq1bvnwfbi8lnf4357mpq6wimnw9pf9"; 306 + sha256 = "1pi67ywf8yvv18vr8kvyb1igdv8nsjafyy9c86fny5wvi10qcwqv"; 297 307 type = "gem"; 298 308 }; 299 - version = "0.2.0"; 309 + version = "0.3.4"; 300 310 }; 301 311 net-protocol = { 302 312 dependencies = ["timeout"]; ··· 304 314 platforms = []; 305 315 source = { 306 316 remotes = ["https://rubygems.org"]; 307 - sha256 = "0dxckrlw4q1lcn3qg4mimmjazmg9bma5gllv72f8js3p36fb3b91"; 317 + sha256 = "1a32l4x73hz200cm587bc29q8q9az278syw3x6fkc9d1lv5y0wxa"; 308 318 type = "gem"; 309 319 }; 310 - version = "0.2.1"; 320 + version = "0.2.2"; 311 321 }; 312 322 net-scp = { 313 323 dependencies = ["net-ssh"]; ··· 336 346 platforms = []; 337 347 source = { 338 348 remotes = ["https://rubygems.org"]; 339 - sha256 = "0yx0pb5fmziz92bw8qzbh8vf20lr56nd3s6q8h0gsgr307lki687"; 349 + sha256 = "1i01340c4i144vvn3x54lc2rb77ch829qipl1rh6rqwm3yxzml9w"; 340 350 type = "gem"; 341 351 }; 342 - version = "7.1.0"; 352 + version = "7.2.1"; 343 353 }; 344 354 nori = { 355 + dependencies = ["bigdecimal"]; 345 356 groups = ["default"]; 346 357 platforms = []; 347 358 source = { 348 359 remotes = ["https://rubygems.org"]; 349 - sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn"; 360 + sha256 = "12wfv36jzc0978ij5c56nnfh5k8ax574njawigs98ysmp1x5s2ql"; 350 361 type = "gem"; 351 362 }; 352 - version = "2.6.0"; 363 + version = "2.7.0"; 353 364 }; 354 365 pairing_heap = { 355 366 groups = ["default"]; 356 367 platforms = []; 357 368 source = { 358 369 remotes = ["https://rubygems.org"]; 359 - sha256 = "15rcn0bd9z25dgbrsnjp9zva1hs22vnr54pzi9wjy62js2nfmx9r"; 370 + sha256 = "059kqpw53cancnp0bp7y1s74y1955riw33w3lqfbnms4b4mdh5zj"; 360 371 type = "gem"; 361 372 }; 362 - version = "3.0.0"; 373 + version = "3.1.0"; 363 374 }; 364 375 rake = { 365 376 groups = ["development"]; 366 377 platforms = []; 367 378 source = { 368 379 remotes = ["https://rubygems.org"]; 369 - sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w"; 380 + sha256 = "1ilr853hawi09626axx0mps4rkkmxcs54mapz9jnqvpnlwd3wsmy"; 370 381 type = "gem"; 371 382 }; 372 - version = "13.0.6"; 383 + version = "13.1.0"; 384 + }; 385 + rake-compiler = { 386 + dependencies = ["rake"]; 387 + groups = ["development"]; 388 + platforms = []; 389 + source = { 390 + remotes = ["https://rubygems.org"]; 391 + sha256 = "1vhdkwblhzp4wp1jh95qiibly2zsnmg3659r6d5xp1mzgd9ghxji"; 392 + type = "gem"; 393 + }; 394 + version = "1.2.7"; 373 395 }; 374 396 rb-fsevent = { 375 397 groups = ["default"]; ··· 408 430 platforms = []; 409 431 source = { 410 432 remotes = ["https://rubygems.org"]; 411 - sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53"; 433 + sha256 = "05i8518ay14kjbma550mv0jm8a6di8yp5phzrd8rj44z9qnrlrp0"; 412 434 type = "gem"; 413 435 }; 414 - version = "3.2.5"; 436 + version = "3.2.6"; 415 437 }; 416 438 rgl = { 417 439 dependencies = ["pairing_heap" "rexml" "stream"]; ··· 430 452 platforms = []; 431 453 source = { 432 454 remotes = ["https://rubygems.org"]; 433 - sha256 = "171rc90vcgjl8p1bdrqa92ymrj8a87qf6w20x05xq29mljcigi6c"; 455 + sha256 = "14xrp8vq6i9zx37vh0yp4h9m0anx9paw200l1r5ad9fmq559346l"; 434 456 type = "gem"; 435 457 }; 436 - version = "3.12.0"; 458 + version = "3.13.0"; 437 459 }; 438 460 rspec-core = { 439 461 dependencies = ["rspec-support"]; ··· 441 463 platforms = []; 442 464 source = { 443 465 remotes = ["https://rubygems.org"]; 444 - sha256 = "0da45cvllbv39sdbsl65vp5djb2xf5m10mxc9jm7rsqyyxjw4h1f"; 466 + sha256 = "0k252n7s80bvjvpskgfm285a3djjjqyjcarlh3aq7a4dx2s94xsm"; 445 467 type = "gem"; 446 468 }; 447 - version = "3.12.1"; 469 + version = "3.13.0"; 448 470 }; 449 471 rspec-expectations = { 450 472 dependencies = ["diff-lcs" "rspec-support"]; ··· 452 474 platforms = []; 453 475 source = { 454 476 remotes = ["https://rubygems.org"]; 455 - sha256 = "03ba3lfdsj9zl00v1yvwgcx87lbadf87livlfa5kgqssn9qdnll6"; 477 + sha256 = "0bhhjzwdk96vf3gq3rs7mln80q27fhq82hda3r15byb24b34h7b2"; 456 478 type = "gem"; 457 479 }; 458 - version = "3.12.2"; 480 + version = "3.13.0"; 459 481 }; 460 482 rspec-its = { 461 483 dependencies = ["rspec-core" "rspec-expectations"]; ··· 474 496 platforms = []; 475 497 source = { 476 498 remotes = ["https://rubygems.org"]; 477 - sha256 = "1hfm17xakfvwya236graj6c2arr4sb9zasp35q5fykhyz8mhs0w2"; 499 + sha256 = "0rkzkcfk2x0qjr5fxw6ib4wpjy0hqbziywplnp6pg3bm2l98jnkk"; 478 500 type = "gem"; 479 501 }; 480 - version = "3.12.5"; 502 + version = "3.13.0"; 481 503 }; 482 504 rspec-support = { 483 505 groups = ["default" "development"]; 484 506 platforms = []; 485 507 source = { 486 508 remotes = ["https://rubygems.org"]; 487 - sha256 = "12y52zwwb3xr7h91dy9k3ndmyyhr3mjcayk0nnarnrzz8yr48kfx"; 509 + sha256 = "03z7gpqz5xkw9rf53835pa8a9vgj4lic54rnix9vfwmp2m7pv1s8"; 488 510 type = "gem"; 489 511 }; 490 - version = "3.12.0"; 512 + version = "3.13.1"; 491 513 }; 492 514 rubyntlm = { 493 515 groups = ["default"]; ··· 535 557 platforms = []; 536 558 source = { 537 559 remotes = ["https://rubygems.org"]; 538 - sha256 = "13pzdsgf3v06mymzipcpa7p80shyw328ybn775nzpnhc6n8y9g30"; 560 + sha256 = "0c15v19hyxjcfzaviqlwhgajgyrrlb0pjilza6mkv49bhspy6av6"; 539 561 type = "gem"; 540 562 }; 541 - version = "0.2.2"; 563 + version = "0.3.0"; 542 564 }; 543 565 timeout = { 544 566 groups = ["default"]; 545 567 platforms = []; 546 568 source = { 547 569 remotes = ["https://rubygems.org"]; 548 - sha256 = "1pfddf51n5fnj4f9ggwj3wbf23ynj0nbxlxqpz12y1gvl9g7d6r6"; 570 + sha256 = "16mvvsmx90023wrhf8dxc1lpqh0m8alk65shb7xcya6a9gflw7vg"; 549 571 type = "gem"; 550 572 }; 551 - version = "0.3.2"; 573 + version = "0.4.1"; 552 574 }; 553 575 vagrant-spec = { 554 576 dependencies = ["childprocess" "log4r" "rspec" "thor"]; ··· 556 578 platforms = []; 557 579 source = { 558 580 fetchSubmodules = false; 559 - rev = "708be5c53ea10131b19921c536eae012d1396a96"; 560 - sha256 = "0xnyai6wdx3xi5nhdvn7bpz73dlvnam4dckkwzd03apdssg6pnr6"; 581 + rev = "2a5afa7512753288b4ec1e26ec13bc6479b2fabb"; 582 + sha256 = "08l0qc7566126pqwn3cr91j5wgd2zqij8sacngr5yfsk2anl8fw0"; 561 583 type = "git"; 562 584 url = "https://github.com/hashicorp/vagrant-spec.git"; 563 585 }; ··· 569 591 platforms = []; 570 592 source = { 571 593 remotes = ["https://rubygems.org"]; 572 - sha256 = "0np0d8rjca130si5iaxasbqmfbbx4l3kd9mxdsa3p5mqiia7za3b"; 594 + sha256 = "0jhwciki5i8hjbgv2f1p544bi92s9wdsfrjympzslysdzk95djpg"; 573 595 type = "gem"; 574 596 }; 575 - version = "3.0.5"; 597 + version = "3.1.1"; 576 598 }; 577 599 wdm = { 578 600 groups = ["default"];
+9 -8
pkgs/games/lgames/barrage/default.nix pkgs/by-name/ba/barrage/package.nix
··· 1 1 { lib 2 - , stdenv 3 - , fetchurl 4 2 , SDL 5 3 , SDL_mixer 4 + , fetchurl 5 + , stdenv 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 9 9 pname = "barrage"; 10 10 version = "1.0.7"; 11 11 12 12 src = fetchurl { 13 - url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz"; 13 + url = "mirror://sourceforge/lgames/barrage-${finalAttrs.version}.tar.gz"; 14 14 hash = "sha256-cGYrG7A4Ffh51KyR+UpeWu7A40eqxI8g4LefBIs18kg="; 15 15 }; 16 16 ··· 21 21 22 22 hardeningDisable = [ "format" ]; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 homepage = "https://lgames.sourceforge.io/Barrage/"; 26 26 description = "A destructive action game"; 27 - license = licenses.gpl2Plus; 28 - maintainers = with maintainers; [ AndersonTorres ]; 27 + license = with lib.licenses; [ gpl2Plus ]; 28 + mainProgram = "barrage"; 29 + maintainers = with lib.maintainers; [ AndersonTorres ]; 29 30 inherit (SDL.meta) platforms; 30 31 broken = stdenv.isDarwin; 31 32 }; 32 - } 33 + })
-48
pkgs/games/lgames/lbreakout2/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , fetchpatch 5 - , SDL 6 - , SDL_mixer 7 - , libintl 8 - , libpng 9 - , zlib 10 - }: 11 - 12 - stdenv.mkDerivation rec { 13 - pname = "lbreakout2"; 14 - version = "2.6.5"; 15 - 16 - src = fetchurl { 17 - url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz"; 18 - sha256 = "0vwdlyvh7c4y80q5vp7fyfpzbqk9lq3w8pvavi139njkalbxc14i"; 19 - }; 20 - 21 - # Can't exit from pause without this patch 22 - patches = [(fetchpatch { 23 - url = "https://sources.debian.org/data/main/l/lbreakout2/2.6.5-2/debian/patches/sdl_fix_pauses.patch"; 24 - hash = "sha256-ycsuxfokpOblLky42MwtJowdEp7v5dZRMFIR4id4ZBI="; 25 - })]; 26 - 27 - buildInputs = [ 28 - SDL 29 - SDL_mixer 30 - libintl 31 - libpng 32 - zlib 33 - ]; 34 - 35 - # With fortify it crashes at runtime: 36 - # *** buffer overflow detected ***: terminated 37 - # Aborted (core dumped) 38 - hardeningDisable = [ "fortify" ]; 39 - 40 - meta = with lib; { 41 - homepage = "http://lgames.sourceforge.net/LBreakout2/"; 42 - description = "Breakout clone from the LGames series"; 43 - license = licenses.gpl2Plus; 44 - maintainers = [ maintainers.ciil ]; 45 - platforms = platforms.unix; 46 - hydraPlatforms = lib.platforms.linux; # sdl-config times out on darwin 47 - }; 48 - }
+4 -3
pkgs/games/lgames/lbreakouthd/default.nix pkgs/by-name/lb/lbreakouthd/package.nix
··· 1 1 { lib 2 - , stdenv 3 - , fetchurl 4 - , directoryListingUpdater 5 2 , SDL2 6 3 , SDL2_image 7 4 , SDL2_mixer 8 5 , SDL2_ttf 6 + , directoryListingUpdater 7 + , fetchurl 8 + , stdenv 9 9 }: 10 10 11 11 stdenv.mkDerivation (finalAttrs: { ··· 36 36 homepage = "https://lgames.sourceforge.io/LBreakoutHD/"; 37 37 description = "A widescreen Breakout clone"; 38 38 license = lib.licenses.gpl2Plus; 39 + mainProgram = "lbreakouthd"; 39 40 maintainers = with lib.maintainers; [ AndersonTorres ]; 40 41 inherit (SDL2.meta) platforms; 41 42 broken = stdenv.isDarwin;
+12 -11
pkgs/games/lgames/lpairs2/default.nix pkgs/by-name/lp/lpairs2/package.nix
··· 1 1 { lib 2 - , stdenv 3 - , fetchurl 4 2 , SDL2 5 3 , SDL2_image 6 4 , SDL2_mixer 7 5 , SDL2_ttf 8 6 , directoryListingUpdater 7 + , fetchurl 8 + , stdenv 9 9 }: 10 10 11 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 12 12 pname = "lpairs2"; 13 13 version = "2.3"; 14 14 15 15 src = fetchurl { 16 - url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz"; 16 + url = "mirror://sourceforge/lgames/lpairs2-${finalAttrs.version}.tar.gz"; 17 17 hash = "sha256-gw1BNkcztyTuoXRdx5+TBZNJEJNrLCfEUCQ1JzROogA="; 18 18 }; 19 19 ··· 25 25 ]; 26 26 27 27 passthru.updateScript = directoryListingUpdater { 28 - inherit pname version; 28 + inherit (finalAttrs) pname version; 29 29 url = "https://lgames.sourceforge.io/LPairs/"; 30 30 extraRegex = "(?!.*-win(32|64)).*"; 31 31 }; 32 32 33 - meta = with lib; { 34 - broken = stdenv.isDarwin; 33 + meta = { 35 34 homepage = "http://lgames.sourceforge.net/LPairs/"; 36 35 description = "Matching the pairs - a typical Memory Game"; 37 - license = licenses.gpl2Plus; 38 - maintainers = with maintainers; [ AndersonTorres ]; 39 - platforms = platforms.unix; 36 + license = with lib.licenses; [ gpl2Plus ]; 37 + mainProgram = "lpairs2"; 38 + maintainers = with lib.maintainers; [ AndersonTorres ]; 39 + platforms = lib.platforms.unix; 40 + broken = stdenv.isDarwin; 40 41 }; 41 - } 42 + })
+3 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 66 66 # Vulkan developer beta driver 67 67 # See here for more information: https://developer.nvidia.com/vulkan-driver 68 68 vulkan_beta = generic rec { 69 - version = "550.40.53"; 69 + version = "550.40.55"; 70 70 persistencedVersion = "550.54.14"; 71 71 settingsVersion = "550.54.14"; 72 - sha256_64bit = "sha256-ZA5pb1xjzDyEBrf3UYHta4T9laCOCW7LHJwhcdjw6MA="; 73 - openSha256 = "sha256-p4FL0j9Ev4SJ3YcjfhFLxbMbc77dBblkrTYK50+OYqA="; 72 + sha256_64bit = "sha256-i9FYgSZW0vLMEORg16+LxFBOacXXrAfWKbtCFuD8+IQ="; 73 + openSha256 = "sha256-slb058rNKk/TEltGkdw6Shn/3SF3kjgsXQc8IyFMUB8="; 74 74 settingsSha256 = "sha256-m2rNASJp0i0Ez2OuqL+JpgEF0Yd8sYVCyrOoo/ln2a4="; 75 75 persistencedSha256 = "sha256-XaPN8jVTjdag9frLPgBtqvO/goB5zxeGzaTU0CdL6C4="; 76 76 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux";
+2 -2
pkgs/servers/geospatial/mapproxy/default.nix
··· 6 6 with python3.pkgs; 7 7 buildPythonApplication rec { 8 8 pname = "MapProxy"; 9 - version = "1.15.1"; 9 + version = "2.0.2"; 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "sha256-SVKZDLH8IfdND0/BFj/lrqp7BNanpzkjuTxlSMGjuiY="; 12 + sha256 = "sha256-HwO5gvrsW9pArz4RLtxNfCmiFqa85AAi6wBJI+F9GE8="; 13 13 }; 14 14 prePatch = '' 15 15 substituteInPlace mapproxy/util/ext/serving.py --replace "args = [sys.executable] + sys.argv" "args = sys.argv"
+4 -4
pkgs/servers/home-automation/evcc/default.nix
··· 21 21 22 22 buildGoModule rec { 23 23 pname = "evcc"; 24 - version = "0.124.6"; 24 + version = "0.124.8"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "evcc-io"; 28 28 repo = "evcc"; 29 29 rev = version; 30 - hash = "sha256-mZSJ8RKO2olPsbxuVyAFCyvgxkth4XatRXwaQQ0z/Do="; 30 + hash = "sha256-u4p22efkwpIY447O+F83pcz8C+iSwLHocsbZdRpgSmE="; 31 31 }; 32 32 33 - vendorHash = "sha256-tu1rV5TWAOHidnDvjsyqFady8TrnPOoAoEEDugYYwLM="; 33 + vendorHash = "sha256-PZWMqv3R4Dq4cLtGNuvHCQ/GiYvlKJfSKEmBn0JYnb8="; 34 34 35 35 npmDeps = fetchNpmDeps { 36 36 inherit src; 37 - hash = "sha256-Uu1idwI3zRQmu2xBrbMcFBmJuO/z+N5+6eSRK+n1pg8="; 37 + hash = "sha256-FWnRZ/NI49QZj8Uv6IbHc8IPAh3F5u4S6hY64B8+Uvk="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+1
pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
··· 25 25 mipsel-unknown-linux-gnu = mipsel-linux-gnu; 26 26 mips64el-unknown-linux-gnuabin32 = mips64el-linux-gnuabin32; 27 27 mips64el-unknown-linux-gnuabi64 = mips64el-linux-gnuabi64; 28 + powerpc64-unknown-linux-gnuabielfv2 = ppc64; 28 29 powerpc64le-unknown-linux-gnu = powernv; 29 30 riscv64-unknown-linux-gnu = riscv64; 30 31
+2 -2
pkgs/tools/audio/abcmidi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "abcMIDI"; 5 - version = "2024.03.02"; 5 + version = "2024.03.05"; 6 6 7 7 src = fetchzip { 8 8 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; 9 - hash = "sha256-LWVU6OZc4hTjYY7Q8zjlR4vMqRc2Y+8QGFST543FR1I="; 9 + hash = "sha256-nZVI+fIS5av+RUX4P1CsncnQUuqDmIRoT1TGRLdg2Bg="; 10 10 }; 11 11 12 12 meta = with lib; {
+9 -3
pkgs/tools/misc/tgpt/default.nix pkgs/by-name/tg/tgpt/package.nix
··· 1 1 { lib 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 + , nix-update-script 4 5 }: 5 6 6 7 buildGoModule rec { 7 8 pname = "tgpt"; 8 - version = "2.0.4"; 9 + version = "2.7.1"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "aandrew-me"; 12 13 repo = "tgpt"; 13 14 rev = "refs/tags/v${version}"; 14 - hash = "sha256-+5hNcemVVuCX1FCL6U9SoJ/Jsef9exQXQFCdPj8qhCk="; 15 + hash = "sha256-XuTDEcs1wIrAe7Oaok4aFP01jDcyWB01R3HNrx6UEpo="; 15 16 }; 16 17 17 - vendorHash = "sha256-HXpSoihk0s218DVCHe9VCGLBggWY8I25sw2qSaiUz4I="; 18 + vendorHash = "sha256-docq/r6yyMPsuUyFbtCMaYfEVL0gLmyTy4PbrAemR00="; 18 19 19 20 ldflags = [ 20 21 "-s" 21 22 "-w" 22 23 ]; 24 + 25 + # test tries to access the network 26 + doCheck = false; 27 + 28 + passthru.updateScript = nix-update-script { }; 23 29 24 30 meta = with lib; { 25 31 description = "ChatGPT in terminal without needing API keys";
+4 -4
pkgs/tools/misc/tmuxinator/default.nix
··· 8 8 inherit ruby; 9 9 name = "${gemName}-${version}"; 10 10 gemName = "tmuxinator"; 11 - version = "3.0.5"; 12 - source.sha256 = "1ycsx9mvl0jsds4igi6avxclsyl5lndh1mpj2ykvzfz26wdddg6p"; 11 + version = "3.1.2"; 12 + source.sha256 = "t96v3RwBfezB644RVbTmO8i/xh1F23WQC8PBxc/msjg="; 13 13 14 14 erubis = buildRubyGem rec { 15 15 inherit ruby; ··· 23 23 inherit ruby; 24 24 name = "ruby${ruby.version}-${gemName}-${version}"; 25 25 gemName = "thor"; 26 - version = "1.2.1"; 27 - source.sha256 = "0inl77jh4ia03jw3iqm5ipr76ghal3hyjrd6r8zqsswwvi9j2xdi"; 26 + version = "1.3.0"; 27 + source.sha256 = "sha256-Gtx/nls2VaaMcTk/7ovQrQiNFO6Og6C3NybyPLs8p8M="; 28 28 }; 29 29 30 30 xdg = buildRubyGem rec {
+3 -3
pkgs/tools/security/vaultwarden/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "vaultwarden"; 12 - version = "1.30.3"; 12 + version = "1.30.5"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "dani-garcia"; 16 16 repo = pname; 17 17 rev = version; 18 - hash = "sha256-vUAgW/kTFO9yzWFIWqM1f6xEZYH8ojIdt2eOhP9ID8g="; 18 + hash = "sha256-OwFB5ULWBefDHSkUM3nT0v2jcc5vHUvs8Ex0JauDu8w="; 19 19 }; 20 20 21 - cargoHash = "sha256-+FmVkemZTlFOf+fnTJED3u13pXeAuP/wIvEb96Vwa6I="; 21 + cargoHash = "sha256-K0T0uTERjxlI3bGG/Tz6sJ0A08J0ROAhpppdZcdQPB8="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24 buildInputs = with lib; [ openssl ]
+7 -5
pkgs/tools/system/dell-command-configure/default.nix
··· 17 17 # the dependencies from other pkgs. 18 18 19 19 let 20 - version = "4.8.0-494"; 20 + version = "4.11.0-6"; 21 21 22 22 unpacked = stdenv.mkDerivation rec { 23 23 inherit version; 24 24 pname = "dell-command-configure-unpacked"; 25 25 26 26 src = fetchurl { 27 - url = 28 - "https://dl.dell.com/FOLDER08911312M/1/command-configure_${version}.ubuntu20_amd64.tar.gz"; 27 + urls = [ 28 + "https://dl.dell.com/FOLDER10469726M/1/command-configure_${version}.ubuntu22_amd64.tar.gz" 29 + "https://web.archive.org/web/20240228233129/https://dl.dell.com/FOLDER10469726M/1/command-configure_4.11.0-6.ubuntu22_amd64.tar.gz" 30 + ]; 29 31 # The CDN blocks the Curl user-agent, so set to blank instead. 30 32 curlOpts = ''-A=""''; 31 - hash = "sha256-l5oHgDkFBF6llNsHufTmuDzjkhGmXHYXlOJ4hvZfRoE="; 33 + hash = "sha256-Bwa4sYguYwEBKEJSP3wzHhzjuDeaGQN8fKeooWHX18E="; 32 34 }; 33 35 34 36 dontBuild = true; ··· 37 39 38 40 unpackPhase = '' 39 41 tar -xzf ${src} 40 - dpkg-deb -x command-configure_${version}.ubuntu20_amd64.deb command-configure 42 + dpkg-deb -x command-configure_${version}.ubuntu22_amd64.deb command-configure 41 43 dpkg-deb -x srvadmin-hapi_9.5.0_amd64.deb srvadmin-hapi 42 44 ''; 43 45
+3 -3
pkgs/tools/text/ruplacer/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "ruplacer"; 5 - version = "0.8.2"; 5 + version = "0.8.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "TankerHQ"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-xuq+Scy5MyyGvI51Vs26pk9+NnlghzGEJDHYC3kSXNw="; 11 + sha256 = "sha256-rndWKi/EDQzTWAw2deddhTXdmIfuEVM54MOfS4mNf+Y="; 12 12 }; 13 13 14 - cargoHash = "sha256-Kevwpkvgq40LhWxhW9ra2Nd1zEiAF372DM1sY9hnQb0="; 14 + cargoHash = "sha256-DkhmMdpUcka6Wkyz6hEfqB2gUpsGNziGv+23rVfwXN8="; 15 15 16 16 buildInputs = (lib.optional stdenv.isDarwin Security); 17 17
+2
pkgs/top-level/aliases.nix
··· 223 223 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 224 224 dep = throw "'dep' has been removed, because it is deprecated and archived in favor of Go modules"; # Added 2023-12-26 225 225 devserver = throw "'devserver' has been removed in favor of 'miniserve' or other alternatives"; # Added 2023-01-13 226 + dfeet = throw "'dfeet' has been removed because it is archived upstream. Please use 'd-spy' instead"; # Added 2024-03-07 226 227 dhcp = throw "dhcp (ISC DHCP) has been removed from nixpkgs, because it reached its end of life"; # Added 2023-04-04 227 228 dnnl = oneDNN; # Added 2020-04-22 228 229 docker-machine = throw "'docker-machine' has been removed, because the upstream project was archived"; # Added 2023-12-27 ··· 965 966 restya-board = throw "'restya-board' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-01-22 966 967 retdec-full = throw "'retdec-full' is no longer needed, please use 'retdec'"; # Added 2024-02-05 967 968 retroshare06 = retroshare; 969 + ricochet = throw "ricochet has been deprecated in favor of ricochet-refresh"; # Added 2024-02-26 968 970 rigsofrods = rigsofrods-bin; # Added 2023-03-22 969 971 ring-daemon = jami-daemon; # Added 2021-10-26 970 972 rockbox_utility = rockbox-utility; # Added 2022-03-17
+5 -26
pkgs/top-level/all-packages.nix
··· 18821 18821 18822 18822 devtodo = callPackage ../development/tools/devtodo { }; 18823 18823 18824 - dfeet = callPackage ../development/tools/misc/d-feet { }; 18825 - 18826 18824 d-spy = callPackage ../development/tools/misc/d-spy { }; 18827 18825 18828 18826 dfu-programmer = callPackage ../development/tools/misc/dfu-programmer { }; ··· 20481 20479 then pkgs."androidndkPkgs_${stdenv.hostPlatform.ndkVer}".libraries 20482 20480 else callPackage ../os-specific/linux/bionic-prebuilt { }; 20483 20481 20484 - 20485 - boehmgc = callPackage ../development/libraries/boehm-gc { }; 20486 - 20487 20482 boolstuff = callPackage ../development/libraries/boolstuff { }; 20488 20483 20489 20484 inherit (callPackage ../development/libraries/boost { inherit (buildPackages) boost-build; }) ··· 23523 23518 yaml-cpp_0_3 = callPackage ../development/libraries/yaml-cpp/0.3.0.nix { }; 23524 23519 23525 23520 yas = callPackage ../development/libraries/yas { }; 23526 - 23527 - libyang = callPackage ../development/libraries/libyang { }; 23528 23521 23529 23522 libcyaml = callPackage ../development/libraries/libcyaml { }; 23530 23523 ··· 27750 27743 27751 27744 smemstat = callPackage ../os-specific/linux/smemstat { }; 27752 27745 27753 - tgpt = callPackage ../tools/misc/tgpt { }; 27754 - 27755 27746 tgt = callPackage ../tools/networking/tgt { }; 27756 27747 27757 27748 lkl = callPackage ../applications/virtualization/lkl { }; ··· 33832 33823 33833 33824 shod = callPackage ../applications/window-managers/shod { }; 33834 33825 33835 - shotcut = qt6Packages.callPackage ../applications/video/shotcut { }; 33826 + shotcut = qt6Packages.callPackage ../applications/video/shotcut { 33827 + inherit (darwin.apple_sdk.frameworks) Cocoa; 33828 + }; 33836 33829 33837 33830 shogun = callPackage ../applications/science/machine-learning/shogun { 33838 33831 protobuf = protobuf_21; ··· 34722 34715 34723 34716 rgp = libsForQt5.callPackage ../development/tools/rgp { }; 34724 34717 34725 - ricochet = libsForQt5.callPackage ../applications/networking/instant-messengers/ricochet { 34726 - protobuf = protobuf_21; 34727 - }; 34728 - 34729 34718 ries = callPackage ../applications/science/math/ries { }; 34730 34719 34731 34720 ripcord = if stdenv.isLinux then ··· 35913 35902 35914 35903 vkeybd = callPackage ../applications/audio/vkeybd { }; 35915 35904 35905 + vlc-bin-universal = vlc-bin.override { variant = "universal"; }; 35906 + 35916 35907 libvlc = vlc.override { 35917 35908 withQt5 = false; 35918 35909 onlyLibVLC = true; ··· 36875 36866 36876 36867 conmon-rs = callPackage ../applications/virtualization/conmon-rs { }; 36877 36868 36878 - digikam = libsForQt5.callPackage ../applications/graphics/digikam { }; 36879 - 36880 36869 drumkv1 = libsForQt5.callPackage ../applications/audio/drumkv1 { }; 36881 36870 36882 36871 eureka-ideas = callPackage ../applications/misc/eureka-ideas { ··· 37044 37033 zdbsp = callPackage ../games/doom-ports/zdoom/zdbsp.nix { }; 37045 37034 37046 37035 zdoom = callPackage ../games/doom-ports/zdoom { }; 37047 - 37048 - ### GAMES/LGAMES 37049 - 37050 - barrage = callPackage ../games/lgames/barrage { }; 37051 - 37052 - lbreakout2 = callPackage ../games/lgames/lbreakout2 { }; 37053 - 37054 - lbreakouthd = callPackage ../games/lgames/lbreakouthd { }; 37055 - 37056 - lpairs2 = callPackage ../games/lgames/lpairs2 { }; 37057 37036 37058 37037 maelstrom = callPackage ../games/maelstrom { }; 37059 37038