lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
2f5fa4a6 5f6ff7e8

+837 -475
+5 -2
nixos/modules/virtualisation/cri-o.nix
··· 4 let 5 cfg = config.virtualisation.cri-o; 6 7 - crioPackage = (pkgs.cri-o.override { inherit (cfg) extraPackages; }); 8 9 format = pkgs.formats.toml { }; 10 ··· 19 enable = mkEnableOption (lib.mdDoc "Container Runtime Interface for OCI (CRI-O)"); 20 21 storageDriver = mkOption { 22 - type = types.enum [ "btrfs" "overlay" "vfs" ]; 23 default = "overlay"; 24 description = lib.mdDoc "Storage driver to be used"; 25 };
··· 4 let 5 cfg = config.virtualisation.cri-o; 6 7 + crioPackage = pkgs.cri-o.override { 8 + extraPackages = cfg.extraPackages 9 + ++ lib.optional (builtins.elem "zfs" config.boot.supportedFilesystems) config.boot.zfs.package; 10 + }; 11 12 format = pkgs.formats.toml { }; 13 ··· 22 enable = mkEnableOption (lib.mdDoc "Container Runtime Interface for OCI (CRI-O)"); 23 24 storageDriver = mkOption { 25 + type = types.enum [ "aufs" "btrfs" "devmapper" "overlay" "vfs" "zfs" ]; 26 default = "overlay"; 27 description = lib.mdDoc "Storage driver to be used"; 28 };
+2 -2
pkgs/applications/audio/go-musicfox/default.nix
··· 10 # gcc only supports objc on darwin 11 buildGoModule.override { stdenv = clangStdenv; } rec { 12 pname = "go-musicfox"; 13 - version = "4.0.2"; 14 15 src = fetchFromGitHub { 16 owner = "anhoder"; 17 repo = pname; 18 rev = "v${version}"; 19 - hash = "sha256-ZxyW/NUKSCcx/KGgFV2pt5ucTBP7BE7qFeTvBoRmUvQ="; 20 }; 21 22 deleteVendor = true;
··· 10 # gcc only supports objc on darwin 11 buildGoModule.override { stdenv = clangStdenv; } rec { 12 pname = "go-musicfox"; 13 + version = "4.0.3"; 14 15 src = fetchFromGitHub { 16 owner = "anhoder"; 17 repo = pname; 18 rev = "v${version}"; 19 + hash = "sha256-6JOD0RsZY79jLYJqPrzc43jgR03XQEfa8B0mGvlIkF4="; 20 }; 21 22 deleteVendor = true;
+2 -2
pkgs/applications/audio/tageditor/default.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "tageditor"; 20 - version = "3.7.8"; 21 22 src = fetchFromGitHub { 23 owner = "martchus"; 24 repo = pname; 25 rev = "v${version}"; 26 - hash = "sha256-/34KS6nxpIsKEklSRpO+AmGAdpJhapoGe24DCCodU38="; 27 }; 28 29 nativeBuildInputs = [
··· 17 18 stdenv.mkDerivation rec { 19 pname = "tageditor"; 20 + version = "3.7.9"; 21 22 src = fetchFromGitHub { 23 owner = "martchus"; 24 repo = pname; 25 rev = "v${version}"; 26 + hash = "sha256-QQvc9S+9h0Qy/qBROwJMZIALf/Rbj/9my4PZGxQzlnM="; 27 }; 28 29 nativeBuildInputs = [
+6 -4
pkgs/applications/backup/vorta/default.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "vorta"; 11 - version = "0.8.10"; 12 13 src = fetchFromGitHub { 14 owner = "borgbase"; 15 repo = "vorta"; 16 - rev = "refs/tags/v${version}"; 17 - hash = "sha256-okxZ1kALB5l94ShStAJLfzD37MLhob8MCzhbqfVISkw="; 18 }; 19 20 nativeBuildInputs = [ wrapQtAppsHook ]; 21 22 propagatedBuildInputs = with python3Packages; [ 23 - paramiko 24 peewee 25 pyqt5 26 python-dateutil ··· 29 secretstorage 30 appdirs 31 setuptools 32 ]; 33 34 postPatch = ''
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "vorta"; 11 + version = "0.8.12"; 12 13 src = fetchFromGitHub { 14 owner = "borgbase"; 15 repo = "vorta"; 16 + rev = "v${version}"; 17 + hash = "sha256-nLdLTh1qSKvOR2cE9HWQrIWQ9L+ynX4qF+lTtKn/Ubs="; 18 }; 19 20 nativeBuildInputs = [ wrapQtAppsHook ]; 21 22 propagatedBuildInputs = with python3Packages; [ 23 peewee 24 pyqt5 25 python-dateutil ··· 28 secretstorage 29 appdirs 30 setuptools 31 + platformdirs 32 + ] ++ lib.optionals stdenv.isLinux [ 33 + qt5.qtwayland 34 ]; 35 36 postPatch = ''
+2 -14
pkgs/applications/graphics/komikku/default.nix
··· 19 20 python3.pkgs.buildPythonApplication rec { 21 pname = "komikku"; 22 - version = "1.17.0"; 23 24 format = "other"; 25 ··· 27 owner = "valos"; 28 repo = "Komikku"; 29 rev = "v${version}"; 30 - hash = "sha256-DxW9uefY6Fks3qSUeLMp3BB85SfLgzwBr4KO9do2y2o="; 31 }; 32 - 33 - patches = [ 34 - # https://gitlab.com/valos/Komikku/-/merge_requests/208 35 - (fetchpatch { 36 - url = "https://gitlab.com/valos/Komikku/-/commit/c9a09817acd767a7cb4ceea9b212fffd798eae61.patch"; 37 - hash = "sha256-McjQApLY7OKbdelrTeh3aRw90B6T9V5FtLL5Y62BmGA="; 38 - }) 39 - (fetchpatch { 40 - url = "https://gitlab.com/valos/Komikku/-/commit/bda93631420f6a69a50be0068f259d60b9558930.patch"; 41 - hash = "sha256-Xu+IaQKf0I99a2uh97j8xSlGYSJHuNPMy/zZtWRxLaM="; 42 - }) 43 - ]; 44 45 nativeBuildInputs = [ 46 meson
··· 19 20 python3.pkgs.buildPythonApplication rec { 21 pname = "komikku"; 22 + version = "1.18.0"; 23 24 format = "other"; 25 ··· 27 owner = "valos"; 28 repo = "Komikku"; 29 rev = "v${version}"; 30 + hash = "sha256-suqoYV+YsbCB7sUNzds6OoEMH9KO3bt2udok6oXXyls="; 31 }; 32 33 nativeBuildInputs = [ 34 meson
+2 -2
pkgs/applications/misc/logseq/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "logseq"; 13 - version = "0.9.1"; 14 15 src = fetchurl { 16 url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage"; 17 - hash = "sha256-8jplCIylG1xbpp/VGnU06MwfqWe2E9iVQApZaWbhuVc="; 18 name = "${pname}-${version}.AppImage"; 19 }; 20
··· 10 11 stdenv.mkDerivation rec { 12 pname = "logseq"; 13 + version = "0.9.2"; 14 15 src = fetchurl { 16 url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage"; 17 + hash = "sha256-nXNzUHZXh2NGcg/OXRKhag/BWLB/YOAkCPITiBiMIIE="; 18 name = "${pname}-${version}.AppImage"; 19 }; 20
+18 -4
pkgs/applications/science/astronomy/stellarium/default.nix
··· 30 hash = "sha256-7jzS3pRklPsCTgCr3nrywfHCNlBDHuyuGGvrVoI9+A0="; 31 }; 32 33 nativeBuildInputs = [ 34 cmake 35 perl ··· 44 qtmultimedia 45 qtserialport 46 qttranslations 47 - qtwayland 48 qtwebengine 49 calcmysky 50 qxlsx 51 indilib 52 libnova 53 ]; 54 55 preConfigure = lib.optionalString stdenv.isDarwin '' 56 - substituteInPlace CMakeLists.txt \ 57 - --replace 'SET(CMAKE_INSTALL_PREFIX "''${PROJECT_BINARY_DIR}/Stellarium.app/Contents")' \ 58 - 'SET(CMAKE_INSTALL_PREFIX "${placeholder "out"}/Applications/Stellarium.app/Contents")' 59 ''; 60 61 dontWrapGApps = true; 62 63 preFixup = '' 64 qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
··· 30 hash = "sha256-7jzS3pRklPsCTgCr3nrywfHCNlBDHuyuGGvrVoI9+A0="; 31 }; 32 33 + postPatch = lib.optionalString stdenv.isDarwin '' 34 + substituteInPlace CMakeLists.txt \ 35 + --replace 'SET(CMAKE_INSTALL_PREFIX "''${PROJECT_BINARY_DIR}/Stellarium.app/Contents")' \ 36 + 'SET(CMAKE_INSTALL_PREFIX "${placeholder "out"}/Applications/Stellarium.app/Contents")' 37 + substituteInPlace src/CMakeLists.txt \ 38 + --replace "\''${_qt_bin_dir}/../" "${qtmultimedia}/lib/qt-6/" 39 + ''; 40 + 41 nativeBuildInputs = [ 42 cmake 43 perl ··· 52 qtmultimedia 53 qtserialport 54 qttranslations 55 qtwebengine 56 calcmysky 57 qxlsx 58 indilib 59 libnova 60 + ] ++ lib.optionals stdenv.isLinux [ 61 + qtwayland 62 ]; 63 64 preConfigure = lib.optionalString stdenv.isDarwin '' 65 + export LC_ALL=en_US.UTF-8 66 ''; 67 68 + # fatal error: 'QtSerialPort/QSerialPortInfo' file not found 69 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-F${qtserialport}/lib"; 70 + 71 dontWrapGApps = true; 72 + 73 + postInstall = lib.optionalString stdenv.isDarwin '' 74 + makeWrapper $out/Applications/Stellarium.app/Contents/MacOS/Stellarium $out/bin/stellarium 75 + ''; 76 77 preFixup = '' 78 qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
+4 -4
pkgs/applications/science/electronics/dataexplorer/default.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "dataexplorer"; 11 - version = "3.7.4"; 12 13 src = fetchurl { 14 url = "mirror://savannah/dataexplorer/dataexplorer-${version}-src.tar.gz"; 15 - sha256 = "sha256-bghI7Hun7ZKUVEj7T58K0oaclnhUGd4z+eIqZF3eXHQ="; 16 }; 17 18 nativeBuildInputs = [ ant makeWrapper ]; ··· 45 --set SWT_GTK3 0 \ 46 --set LIBOVERLAY_SCROLLBAR 0 47 48 - install -Dvm644 build/misc/GNU_LINUX_JUNSI_ICHARER_DUO_UDEV_RULE/50-Junsi-iCharger-DUO.rules \ 49 - $out/etc/udev/rules.d/50-Junsi-iCharger-DUO.rules 50 install -Dvm644 build/misc/GNU_LINUX_SKYRC_UDEV_RULE/50-SkyRC-Charger.rules \ 51 $out/etc/udev/rules.d/50-SkyRC-Charger.rules 52 '';
··· 8 9 stdenv.mkDerivation rec { 10 pname = "dataexplorer"; 11 + version = "3.7.6"; 12 13 src = fetchurl { 14 url = "mirror://savannah/dataexplorer/dataexplorer-${version}-src.tar.gz"; 15 + sha256 = "sha256-mwz4o1m2ldjyD4pbwMQxeaI8a8JXzis+s0I+6GW8WaY="; 16 }; 17 18 nativeBuildInputs = [ ant makeWrapper ]; ··· 45 --set SWT_GTK3 0 \ 46 --set LIBOVERLAY_SCROLLBAR 0 47 48 + install -Dvm644 build/misc/GNU_LINUX_JUNSI_ICHARER_USB_UDEV_RULE/50-Junsi-iCharger-USB.rules \ 49 + $out/etc/udev/rules.d/50-Junsi-iCharger-USB.rules 50 install -Dvm644 build/misc/GNU_LINUX_SKYRC_UDEV_RULE/50-SkyRC-Charger.rules \ 51 $out/etc/udev/rules.d/50-SkyRC-Charger.rules 52 '';
+2
pkgs/applications/virtualization/cri-o/wrapper.nix
··· 4 , lib 5 , extraPackages ? [] 6 , runc # Default container runtime 7 , crun # Container runtime (default with cgroups v2 for podman/buildah) 8 , conmon # Container runtime monitor 9 , util-linux # nsenter ··· 13 let 14 binPath = lib.makeBinPath ([ 15 runc 16 crun 17 conmon 18 util-linux
··· 4 , lib 5 , extraPackages ? [] 6 , runc # Default container runtime 7 + , conntrack-tools 8 , crun # Container runtime (default with cgroups v2 for podman/buildah) 9 , conmon # Container runtime monitor 10 , util-linux # nsenter ··· 14 let 15 binPath = lib.makeBinPath ([ 16 runc 17 + conntrack-tools 18 crun 19 conmon 20 util-linux
+16 -6
pkgs/desktops/deepin/apps/deepin-movie-reborn/default.nix
··· 46 47 patches = [ 48 (fetchpatch { 49 - name = "chore: dont use </usr/include/linux/cdrom.h>"; 50 - url = "https://github.com/linuxdeepin/deepin-movie-reborn/commit/2afc63541589adab8b0c8c48e290f03535ec2996.patch"; 51 - sha256 = "sha256-Q9dv5L5sUGeuvNxF8ypQlZuZVuU4NIR/8d8EyP/Q5wk="; 52 - }) 53 - (fetchpatch { 54 - name = "feat: rewrite libPath to read LD_LIBRARY_PATH"; 55 url = "https://github.com/linuxdeepin/deepin-movie-reborn/commit/432bf452ed244c256e99ecaf80bb6a0eef9b4a74.patch"; 56 sha256 = "sha256-5hRQ8D9twBKgouVpIBa1pdAGk0lI/wEdQaHBBHFCZBA"; 57 }) 58 ]; 59 60 postPatch = '' 61 substituteInPlace src/widgets/toolbox_proxy.cpp \ 62 --replace "/bin/bash" "${runtimeShell}" 63 ''; 64 65 outputs = [ "out" "dev" ];
··· 46 47 patches = [ 48 (fetchpatch { 49 + name = "feat-rewrite-libPath-to-read-LD_LIBRARY_PATH.patch"; 50 url = "https://github.com/linuxdeepin/deepin-movie-reborn/commit/432bf452ed244c256e99ecaf80bb6a0eef9b4a74.patch"; 51 sha256 = "sha256-5hRQ8D9twBKgouVpIBa1pdAGk0lI/wEdQaHBBHFCZBA"; 52 }) 53 ]; 54 55 postPatch = '' 56 + # https://github.com/linuxdeepin/deepin-movie-reborn/pull/198 57 + substituteInPlace src/common/diskcheckthread.cpp \ 58 + --replace "/usr/include/linux/cdrom.h" "linux/cdrom.h" 59 substituteInPlace src/widgets/toolbox_proxy.cpp \ 60 --replace "/bin/bash" "${runtimeShell}" 61 + 62 + # libdmr always assume that these libraries exist 63 + # otherwise it will lead to coredump 64 + # This affects the preview plugin for dde-file-manager 65 + 66 + substituteInPlace src/libdmr/{filefilter.cpp,playlist_model.cpp,gstutils.cpp} \ 67 + --replace 'LibraryLoader::libPath("libavcodec.so")' '"${lib.getLib ffmpeg}/lib/libavcodec.so"' \ 68 + --replace 'LibraryLoader::libPath("libavformat.so")' '"${lib.getLib ffmpeg}/lib/libavformat.so"' \ 69 + --replace 'LibraryLoader::libPath("libavutil.so")' '"${lib.getLib ffmpeg}/lib/libavutil.so"' \ 70 + --replace 'LibraryLoader::libPath("libffmpegthumbnailer.so")' '"${lib.getLib ffmpegthumbnailer}/lib/libffmpegthumbnailer.so"' \ 71 + --replace 'LibraryLoader::libPath("libgstreamer-1.0.so")' '"${lib.getLib gst_all_1.gstreamer}/lib/libgstreamer-1.0.so"' \ 72 + --replace 'LibraryLoader::libPath("libgstpbutils-1.0.so")' '"${lib.getLib gst_all_1.gst-plugins-base}/lib/libgstpbutils-1.0.so"' 73 ''; 74 75 outputs = [ "out" "dev" ];
+171
pkgs/desktops/deepin/core/dde-file-manager/default.nix
···
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , runtimeShell 6 + , dtkwidget 7 + , qt5integration 8 + , qt5platform-plugins 9 + , dde-qt-dbus-factory 10 + , docparser 11 + , dde-dock 12 + , deepin-movie-reborn 13 + , cmake 14 + , qttools 15 + , qtx11extras 16 + , qtmultimedia 17 + , kcodecs 18 + , pkg-config 19 + , ffmpegthumbnailer 20 + , libsecret 21 + , libmediainfo 22 + , mediainfo 23 + , libzen 24 + , poppler 25 + , polkit-qt 26 + , polkit 27 + , wrapQtAppsHook 28 + , wrapGAppsHook 29 + , lucenepp 30 + , boost 31 + , taglib 32 + , cryptsetup 33 + , glib 34 + , qtbase 35 + , util-dfm 36 + , deepin-pdfium 37 + , libuuid 38 + , libselinux 39 + , glibmm 40 + , pcre 41 + , udisks2 42 + , libisoburn 43 + }: 44 + 45 + stdenv.mkDerivation rec { 46 + pname = "dde-file-manager"; 47 + version = "6.0.13"; 48 + 49 + src = fetchFromGitHub { 50 + owner = "linuxdeepin"; 51 + repo = pname; 52 + rev = version; 53 + sha256 = "sha256-Kn8LuAQNWY2SwzKjMyylEAlQNxsP+3bl5hM83yHfjvo="; 54 + }; 55 + 56 + nativeBuildInputs = [ 57 + cmake 58 + qttools 59 + pkg-config 60 + wrapQtAppsHook 61 + wrapGAppsHook 62 + ]; 63 + dontWrapGApps = true; 64 + 65 + patches = [ 66 + (fetchpatch { 67 + name = "chore-cmake-use_CMAKE_INSTALL_SYSCONFDIR.patch"; 68 + url = "https://github.com/linuxdeepin/dde-file-manager/commit/b3b6b1e5ace0fdd86d0a94687a4e60e7bdfb1086.patch"; 69 + sha256 = "sha256-GEMuMa1UMSGf0dlHZRQyR1hC08U0GlAlmUKLIxzzoc4="; 70 + }) 71 + (fetchpatch { 72 + name = "feat-GRANDSEARCHDAEMON_LIB_DIR-use-CMAKE_INSTALL_FULL_LIBDIR.patch"; 73 + url = "https://github.com/linuxdeepin/dde-file-manager/commit/58e3826fc4ad46145b57c2b6f8ca2c74efd8d4d3.patch"; 74 + sha256 = "sha256-athDoFhQ9v9cXOf4YKmZld1RScX43+6/q1zBa/1yAgQ="; 75 + }) 76 + (fetchpatch { 77 + name = "fix-include-path-should-follow-Qt5Widgets_PRIVATE_INCLUDE_DIRS.patch"; 78 + url = "https://github.com/linuxdeepin/dde-file-manager/commit/19fdfffc6ddba2844176ee8384e4147bebee9be4.patch"; 79 + sha256 = "sha256-VPyiKKxFgNsY70ZdYE5oNF8BFosq/92YrZuZ882Fj4E="; 80 + }) 81 + (fetchpatch { 82 + name = "chore-do-not-hardcode-APPSHAREDIR.patch"; 83 + url = "https://github.com/linuxdeepin/dde-file-manager/commit/74f5cbda8114e24259b6fd998ade794e7880c725.patch"; 84 + sha256 = "sha256-oZQcuPP9JTZ7aybPnmY/6RyqmJhvpxer4mhv+XpqeQY="; 85 + }) 86 + (fetchpatch { 87 + name = "fix-use-pkgconfig-to-check-mount.patch"; 88 + url = "https://github.com/linuxdeepin/dde-file-manager/commit/4d5be539ba2c567bee1ec4aad90ecda0b87878d5.patch"; 89 + sha256 = "sha256-k808IsaV/RJg7bYNmUnhcFZMnMRQ8sGRagMlx5i4h4Q="; 90 + }) 91 + ]; 92 + 93 + postPatch = '' 94 + patchShebangs . 95 + 96 + substituteInPlace src/plugins/filemanager/dfmplugin-vault/utils/vaultdefine.h \ 97 + --replace "/usr/bin/deepin-compressor" "deepin-compressor" 98 + 99 + substituteInPlace src/plugins/filemanager/dfmplugin-avfsbrowser/utils/avfsutils.cpp \ 100 + --replace "/usr/bin/mountavfs" "mountavfs" \ 101 + --replace "/usr/bin/umountavfs" "umountavfs" 102 + 103 + substituteInPlace src/plugins/common/core/dfmplugin-menu/{extendmenuscene/extendmenu/dcustomactionparser.cpp,oemmenuscene/oemmenu.cpp} \ 104 + --replace "/usr" "$out" 105 + 106 + substituteInPlace src/tools/upgrade/dialog/processdialog.cpp \ 107 + --replace "/usr/bin/dde-file-manager" "dde-file-manager" \ 108 + --replace "/usr/bin/dde-desktop" "dde-desktop" 109 + 110 + substituteInPlace src/dfm-base/file/local/localfilehandler.cpp \ 111 + --replace "/usr/lib/deepin-daemon" "/run/current-system/sw/lib/deepin-daemon" 112 + 113 + substituteInPlace src/plugins/desktop/ddplugin-background/backgroundservice.cpp \ 114 + src/plugins/desktop/ddplugin-wallpapersetting/wallpapersettings.cpp \ 115 + --replace "/usr/share/backgrounds" "/run/current-system/sw/share/backgrounds" 116 + 117 + find . -type f -regex ".*\\.\\(service\\|policy\\|desktop\\)" -exec sed -i -e "s|/usr/|$out/|g" {} \; 118 + ''; 119 + 120 + buildInputs = [ 121 + dtkwidget 122 + qt5platform-plugins 123 + qt5integration 124 + deepin-pdfium 125 + util-dfm 126 + dde-qt-dbus-factory 127 + glibmm 128 + docparser 129 + dde-dock 130 + deepin-movie-reborn 131 + qtx11extras 132 + qtmultimedia 133 + kcodecs 134 + ffmpegthumbnailer 135 + libsecret 136 + libmediainfo 137 + mediainfo 138 + poppler 139 + polkit-qt 140 + polkit 141 + lucenepp 142 + boost 143 + taglib 144 + cryptsetup 145 + libuuid 146 + libselinux 147 + pcre 148 + udisks2 149 + libisoburn 150 + ]; 151 + 152 + cmakeFlags = [ 153 + "-DVERSION=${version}" 154 + "-DDEEPIN_OS_VERSION=20" 155 + ]; 156 + 157 + enableParallelBuilding = true; 158 + 159 + preFixup = '' 160 + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") 161 + ''; 162 + 163 + meta = with lib; { 164 + description = "File manager for deepin desktop environment"; 165 + homepage = "https://github.com/linuxdeepin/dde-file-manager"; 166 + license = licenses.gpl3Plus; 167 + platforms = platforms.linux; 168 + maintainers = teams.deepin.members; 169 + }; 170 + } 171 +
+1
pkgs/desktops/deepin/default.nix
··· 28 dde-calendar = callPackage ./core/dde-calendar { }; 29 dde-clipboard = callPackage ./core/dde-clipboard { }; 30 dde-dock = callPackage ./core/dde-dock { }; 31 dde-launcher = callPackage ./core/dde-launcher { }; 32 dde-network-core = callPackage ./core/dde-network-core { }; 33 dde-session-shell = callPackage ./core/dde-session-shell { };
··· 28 dde-calendar = callPackage ./core/dde-calendar { }; 29 dde-clipboard = callPackage ./core/dde-clipboard { }; 30 dde-dock = callPackage ./core/dde-dock { }; 31 + dde-file-manager = callPackage ./core/dde-file-manager { }; 32 dde-launcher = callPackage ./core/dde-launcher { }; 33 dde-network-core = callPackage ./core/dde-network-core { }; 34 dde-session-shell = callPackage ./core/dde-session-shell { };
+6 -3
pkgs/development/compilers/openjdk/11.nix
··· 14 update = "18"; 15 build = "10"; 16 17 openjdk = stdenv.mkDerivation rec { 18 pname = "openjdk" + lib.optionalString headless "-headless"; 19 version = "${major}.${minor}.${update}+${build}"; ··· 29 buildInputs = [ 30 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 31 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 32 - libXi libXinerama libXcursor libXrandr fontconfig openjdk11-bootstrap 33 ] ++ lib.optionals (!headless && enableGnome2) [ 34 gtk3 gnome_vfs GConf glib 35 ]; ··· 58 ''; 59 60 configureFlags = [ 61 - "--with-boot-jdk=${openjdk11-bootstrap.home}" 62 "--with-version-pre=" 63 "--enable-unlimited-crypto" 64 "--with-native-debug-symbols=internal" ··· 155 done 156 ''; 157 158 - disallowedReferences = [ openjdk11-bootstrap ]; 159 160 meta = import ./meta.nix lib version; 161
··· 14 update = "18"; 15 build = "10"; 16 17 + # when building a headless jdk, also bootstrap it with a headless jdk 18 + openjdk-bootstrap = openjdk11-bootstrap.override { gtkSupport = !headless; }; 19 + 20 openjdk = stdenv.mkDerivation rec { 21 pname = "openjdk" + lib.optionalString headless "-headless"; 22 version = "${major}.${minor}.${update}+${build}"; ··· 32 buildInputs = [ 33 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 34 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 35 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 36 ] ++ lib.optionals (!headless && enableGnome2) [ 37 gtk3 gnome_vfs GConf glib 38 ]; ··· 61 ''; 62 63 configureFlags = [ 64 + "--with-boot-jdk=${openjdk-bootstrap.home}" 65 "--with-version-pre=" 66 "--enable-unlimited-crypto" 67 "--with-native-debug-symbols=internal" ··· 158 done 159 ''; 160 161 + disallowedReferences = [ openjdk-bootstrap ]; 162 163 meta = import ./meta.nix lib version; 164
+7 -4
pkgs/development/compilers/openjdk/12.nix
··· 1 { stdenv, lib, fetchurl, bash, pkg-config, autoconf, cpio, file, which, unzip 2 , zip, perl, cups, freetype, harfbuzz, alsa-lib, libjpeg, giflib, libpng, zlib, lcms2 3 , libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama 4 - , libXcursor, libXrandr, fontconfig, openjdk11, fetchpatch 5 , setJavaClassPath 6 , headless ? false 7 , enableJavaFX ? false, openjfx ··· 13 update = ".0.2"; 14 build = "ga"; 15 16 openjdk = stdenv.mkDerivation rec { 17 pname = "openjdk" + lib.optionalString headless "-headless"; 18 version = "${major}${update}-${build}"; ··· 26 buildInputs = [ 27 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 28 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 29 - libXi libXinerama libXcursor libXrandr fontconfig openjdk11 30 ] ++ lib.optionals (!headless && enableGnome2) [ 31 gtk3 gnome_vfs GConf glib 32 ]; ··· 59 ''; 60 61 configureFlags = [ 62 - "--with-boot-jdk=${openjdk11.home}" 63 "--with-version-pre=" 64 "--enable-unlimited-crypto" 65 "--with-native-debug-symbols=internal" ··· 151 done 152 ''; 153 154 - disallowedReferences = [ openjdk11 ]; 155 156 meta = import ./meta.nix lib version; 157
··· 1 { stdenv, lib, fetchurl, bash, pkg-config, autoconf, cpio, file, which, unzip 2 , zip, perl, cups, freetype, harfbuzz, alsa-lib, libjpeg, giflib, libpng, zlib, lcms2 3 , libX11, libICE, libXrender, libXext, libXt, libXtst, libXi, libXinerama 4 + , libXcursor, libXrandr, fontconfig, openjdk11-bootstrap, fetchpatch 5 , setJavaClassPath 6 , headless ? false 7 , enableJavaFX ? false, openjfx ··· 13 update = ".0.2"; 14 build = "ga"; 15 16 + # when building a headless jdk, also bootstrap it with a headless jdk 17 + openjdk-bootstrap = openjdk11-bootstrap.override { gtkSupport = !headless; }; 18 + 19 openjdk = stdenv.mkDerivation rec { 20 pname = "openjdk" + lib.optionalString headless "-headless"; 21 version = "${major}${update}-${build}"; ··· 29 buildInputs = [ 30 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 31 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 32 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 33 ] ++ lib.optionals (!headless && enableGnome2) [ 34 gtk3 gnome_vfs GConf glib 35 ]; ··· 62 ''; 63 64 configureFlags = [ 65 + "--with-boot-jdk=${openjdk-bootstrap.home}" 66 "--with-version-pre=" 67 "--enable-unlimited-crypto" 68 "--with-native-debug-symbols=internal" ··· 154 done 155 ''; 156 157 + disallowedReferences = [ openjdk-bootstrap ]; 158 159 meta = import ./meta.nix lib version; 160
+6 -3
pkgs/development/compilers/openjdk/13.nix
··· 13 update = ".0.2"; 14 build = "-ga"; 15 16 openjdk = stdenv.mkDerivation rec { 17 pname = "openjdk" + lib.optionalString headless "-headless"; 18 version = "${major}${update}${build}"; ··· 26 buildInputs = [ 27 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 28 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 29 - libXi libXinerama libXcursor libXrandr fontconfig openjdk13-bootstrap 30 ] ++ lib.optionals (!headless && enableGnome2) [ 31 gtk3 gnome_vfs GConf glib 32 ]; ··· 59 ''; 60 61 configureFlags = [ 62 - "--with-boot-jdk=${openjdk13-bootstrap.home}" 63 "--with-version-pre=" 64 "--enable-unlimited-crypto" 65 "--with-native-debug-symbols=internal" ··· 151 done 152 ''; 153 154 - disallowedReferences = [ openjdk13-bootstrap ]; 155 156 meta = import ./meta.nix lib version; 157
··· 13 update = ".0.2"; 14 build = "-ga"; 15 16 + # when building a headless jdk, also bootstrap it with a headless jdk 17 + openjdk-bootstrap = openjdk13-bootstrap.override { gtkSupport = !headless; }; 18 + 19 openjdk = stdenv.mkDerivation rec { 20 pname = "openjdk" + lib.optionalString headless "-headless"; 21 version = "${major}${update}${build}"; ··· 29 buildInputs = [ 30 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 31 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 32 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 33 ] ++ lib.optionals (!headless && enableGnome2) [ 34 gtk3 gnome_vfs GConf glib 35 ]; ··· 62 ''; 63 64 configureFlags = [ 65 + "--with-boot-jdk=${openjdk-bootstrap.home}" 66 "--with-version-pre=" 67 "--enable-unlimited-crypto" 68 "--with-native-debug-symbols=internal" ··· 154 done 155 ''; 156 157 + disallowedReferences = [ openjdk-bootstrap ]; 158 159 meta = import ./meta.nix lib version; 160
+6 -3
pkgs/development/compilers/openjdk/14.nix
··· 13 update = ".0.2"; 14 build = "-ga"; 15 16 openjdk = stdenv.mkDerivation rec { 17 pname = "openjdk" + lib.optionalString headless "-headless"; 18 version = "${major}${update}${build}"; ··· 26 buildInputs = [ 27 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 28 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 29 - libXi libXinerama libXcursor libXrandr fontconfig openjdk14-bootstrap 30 ] ++ lib.optionals (!headless && enableGnome2) [ 31 gtk3 gnome_vfs GConf glib 32 ]; ··· 54 ''; 55 56 configureFlags = [ 57 - "--with-boot-jdk=${openjdk14-bootstrap.home}" 58 "--with-version-pre=" 59 "--enable-unlimited-crypto" 60 "--with-native-debug-symbols=internal" ··· 147 done 148 ''; 149 150 - disallowedReferences = [ openjdk14-bootstrap ]; 151 152 meta = import ./meta.nix lib version; 153
··· 13 update = ".0.2"; 14 build = "-ga"; 15 16 + # when building a headless jdk, also bootstrap it with a headless jdk 17 + openjdk-bootstrap = openjdk14-bootstrap.override { gtkSupport = !headless; }; 18 + 19 openjdk = stdenv.mkDerivation rec { 20 pname = "openjdk" + lib.optionalString headless "-headless"; 21 version = "${major}${update}${build}"; ··· 29 buildInputs = [ 30 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 31 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 32 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 33 ] ++ lib.optionals (!headless && enableGnome2) [ 34 gtk3 gnome_vfs GConf glib 35 ]; ··· 57 ''; 58 59 configureFlags = [ 60 + "--with-boot-jdk=${openjdk-bootstrap.home}" 61 "--with-version-pre=" 62 "--enable-unlimited-crypto" 63 "--with-native-debug-symbols=internal" ··· 150 done 151 ''; 152 153 + disallowedReferences = [ openjdk-bootstrap ]; 154 155 meta = import ./meta.nix lib version; 156
+6 -3
pkgs/development/compilers/openjdk/15.nix
··· 16 __toString = self: "${self.major}${self.update}${self.build}"; 17 }; 18 19 openjdk = stdenv.mkDerivation { 20 pname = "openjdk" + lib.optionalString headless "-headless"; 21 inherit version; ··· 29 buildInputs = [ 30 cpio perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 31 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 32 - libXi libXinerama libXcursor libXrandr fontconfig openjdk15-bootstrap 33 ] ++ lib.optionals (!headless && enableGnome2) [ 34 gtk3 gnome_vfs GConf glib 35 ]; ··· 57 ''; 58 59 configureFlags = [ 60 - "--with-boot-jdk=${openjdk15-bootstrap.home}" 61 "--with-version-pre=" 62 "--enable-unlimited-crypto" 63 "--with-native-debug-symbols=internal" ··· 150 done 151 ''; 152 153 - disallowedReferences = [ openjdk15-bootstrap ]; 154 155 pos = builtins.unsafeGetAttrPos "major" version; 156 meta = import ./meta.nix lib version.major;
··· 16 __toString = self: "${self.major}${self.update}${self.build}"; 17 }; 18 19 + # when building a headless jdk, also bootstrap it with a headless jdk 20 + openjdk-bootstrap = openjdk15-bootstrap.override { gtkSupport = !headless; }; 21 + 22 openjdk = stdenv.mkDerivation { 23 pname = "openjdk" + lib.optionalString headless "-headless"; 24 inherit version; ··· 32 buildInputs = [ 33 cpio perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 34 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 35 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 36 ] ++ lib.optionals (!headless && enableGnome2) [ 37 gtk3 gnome_vfs GConf glib 38 ]; ··· 60 ''; 61 62 configureFlags = [ 63 + "--with-boot-jdk=${openjdk-bootstrap.home}" 64 "--with-version-pre=" 65 "--enable-unlimited-crypto" 66 "--with-native-debug-symbols=internal" ··· 153 done 154 ''; 155 156 + disallowedReferences = [ openjdk-bootstrap ]; 157 158 pos = builtins.unsafeGetAttrPos "major" version; 159 meta = import ./meta.nix lib version.major;
+6 -3
pkgs/development/compilers/openjdk/16.nix
··· 15 build = "36"; 16 }; 17 18 openjdk = stdenv.mkDerivation { 19 pname = "openjdk" + lib.optionalString headless "-headless"; 20 version = "${version.feature}+${version.build}"; ··· 30 buildInputs = [ 31 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 32 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 33 - libXi libXinerama libXcursor libXrandr fontconfig openjdk16-bootstrap 34 ] ++ lib.optionals (!headless && enableGnome2) [ 35 gtk3 gnome_vfs GConf glib 36 ]; ··· 59 ''; 60 61 configureFlags = [ 62 - "--with-boot-jdk=${openjdk16-bootstrap.home}" 63 "--with-version-build=${version.build}" 64 "--with-version-opt=nixos" 65 "--with-version-pre=" ··· 154 done 155 ''; 156 157 - disallowedReferences = [ openjdk16-bootstrap ]; 158 159 pos = builtins.unsafeGetAttrPos "feature" version; 160 meta = import ./meta.nix lib version.feature;
··· 15 build = "36"; 16 }; 17 18 + # when building a headless jdk, also bootstrap it with a headless jdk 19 + openjdk-bootstrap = openjdk16-bootstrap.override { gtkSupport = !headless; }; 20 + 21 openjdk = stdenv.mkDerivation { 22 pname = "openjdk" + lib.optionalString headless "-headless"; 23 version = "${version.feature}+${version.build}"; ··· 33 buildInputs = [ 34 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 35 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 36 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 37 ] ++ lib.optionals (!headless && enableGnome2) [ 38 gtk3 gnome_vfs GConf glib 39 ]; ··· 62 ''; 63 64 configureFlags = [ 65 + "--with-boot-jdk=${openjdk-bootstrap.home}" 66 "--with-version-build=${version.build}" 67 "--with-version-opt=nixos" 68 "--with-version-pre=" ··· 157 done 158 ''; 159 160 + disallowedReferences = [ openjdk-bootstrap ]; 161 162 pos = builtins.unsafeGetAttrPos "feature" version; 163 meta = import ./meta.nix lib version.feature;
+6 -3
pkgs/development/compilers/openjdk/17.nix
··· 15 build = "10"; 16 }; 17 18 openjdk = stdenv.mkDerivation { 19 pname = "openjdk" + lib.optionalString headless "-headless"; 20 version = "${version.feature}${version.interim}+${version.build}"; ··· 30 buildInputs = [ 31 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 32 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 33 - libXi libXinerama libXcursor libXrandr fontconfig openjdk17-bootstrap 34 ] ++ lib.optionals (!headless && enableGnome2) [ 35 gtk3 gnome_vfs GConf glib 36 ]; ··· 76 ''; 77 78 configureFlags = [ 79 - "--with-boot-jdk=${openjdk17-bootstrap.home}" 80 "--with-version-build=${version.build}" 81 "--with-version-opt=nixos" 82 "--with-version-pre=" ··· 173 done 174 ''; 175 176 - disallowedReferences = [ openjdk17-bootstrap ]; 177 178 pos = builtins.unsafeGetAttrPos "feature" version; 179 meta = import ./meta.nix lib version.feature;
··· 15 build = "10"; 16 }; 17 18 + # when building a headless jdk, also bootstrap it with a headless jdk 19 + openjdk-bootstrap = openjdk17-bootstrap.override { gtkSupport = !headless; }; 20 + 21 openjdk = stdenv.mkDerivation { 22 pname = "openjdk" + lib.optionalString headless "-headless"; 23 version = "${version.feature}${version.interim}+${version.build}"; ··· 33 buildInputs = [ 34 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 35 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 36 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 37 ] ++ lib.optionals (!headless && enableGnome2) [ 38 gtk3 gnome_vfs GConf glib 39 ]; ··· 79 ''; 80 81 configureFlags = [ 82 + "--with-boot-jdk=${openjdk-bootstrap.home}" 83 "--with-version-build=${version.build}" 84 "--with-version-opt=nixos" 85 "--with-version-pre=" ··· 176 done 177 ''; 178 179 + disallowedReferences = [ openjdk-bootstrap ]; 180 181 pos = builtins.unsafeGetAttrPos "feature" version; 182 meta = import ./meta.nix lib version.feature;
+6 -3
pkgs/development/compilers/openjdk/18.nix
··· 14 build = "36"; 15 }; 16 17 openjdk = stdenv.mkDerivation { 18 pname = "openjdk" + lib.optionalString headless "-headless"; 19 version = "${version.feature}+${version.build}"; ··· 29 buildInputs = [ 30 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 31 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 32 - libXi libXinerama libXcursor libXrandr fontconfig openjdk18-bootstrap 33 ] ++ lib.optionals (!headless && enableGnome2) [ 34 gtk3 gnome_vfs GConf glib 35 ]; ··· 66 ''; 67 68 configureFlags = [ 69 - "--with-boot-jdk=${openjdk18-bootstrap.home}" 70 "--with-version-build=${version.build}" 71 "--with-version-opt=nixos" 72 "--with-version-pre=" ··· 163 done 164 ''; 165 166 - disallowedReferences = [ openjdk18-bootstrap ]; 167 168 pos = builtins.unsafeGetAttrPos "feature" version; 169 meta = import ./meta.nix lib version.feature;
··· 14 build = "36"; 15 }; 16 17 + # when building a headless jdk, also bootstrap it with a headless jdk 18 + openjdk-bootstrap = openjdk18-bootstrap.override { gtkSupport = !headless; }; 19 + 20 openjdk = stdenv.mkDerivation { 21 pname = "openjdk" + lib.optionalString headless "-headless"; 22 version = "${version.feature}+${version.build}"; ··· 32 buildInputs = [ 33 cpio file which zip perl zlib cups freetype harfbuzz alsa-lib libjpeg giflib 34 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 35 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 36 ] ++ lib.optionals (!headless && enableGnome2) [ 37 gtk3 gnome_vfs GConf glib 38 ]; ··· 69 ''; 70 71 configureFlags = [ 72 + "--with-boot-jdk=${openjdk-bootstrap.home}" 73 "--with-version-build=${version.build}" 74 "--with-version-opt=nixos" 75 "--with-version-pre=" ··· 166 done 167 ''; 168 169 + disallowedReferences = [ openjdk-bootstrap ]; 170 171 pos = builtins.unsafeGetAttrPos "feature" version; 172 meta = import ./meta.nix lib version.feature;
+6 -3
pkgs/development/compilers/openjdk/19.nix
··· 18 build = "7"; 19 }; 20 21 openjdk = stdenv.mkDerivation { 22 pname = "openjdk" + lib.optionalString headless "-headless"; 23 version = "${version.feature}${version.interim}+${version.build}"; ··· 33 buildInputs = [ 34 cpio file which zip perl zlib cups freetype alsa-lib libjpeg giflib 35 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 36 - libXi libXinerama libXcursor libXrandr fontconfig openjdk19-bootstrap 37 ] ++ lib.optionals (!headless && enableGnome2) [ 38 gtk3 gnome_vfs GConf glib 39 ]; ··· 78 ''; 79 80 configureFlags = [ 81 - "--with-boot-jdk=${openjdk19-bootstrap.home}" 82 "--with-version-build=${version.build}" 83 "--with-version-opt=nixos" 84 "--with-version-pre=" ··· 173 done 174 ''; 175 176 - disallowedReferences = [ openjdk19-bootstrap ]; 177 178 pos = builtins.unsafeGetAttrPos "feature" version; 179 meta = import ./meta.nix lib version.feature;
··· 18 build = "7"; 19 }; 20 21 + # when building a headless jdk, also bootstrap it with a headless jdk 22 + openjdk-bootstrap = openjdk19-bootstrap.override { gtkSupport = !headless; }; 23 + 24 openjdk = stdenv.mkDerivation { 25 pname = "openjdk" + lib.optionalString headless "-headless"; 26 version = "${version.feature}${version.interim}+${version.build}"; ··· 36 buildInputs = [ 37 cpio file which zip perl zlib cups freetype alsa-lib libjpeg giflib 38 libpng zlib lcms2 libX11 libICE libXrender libXext libXtst libXt libXtst 39 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 40 ] ++ lib.optionals (!headless && enableGnome2) [ 41 gtk3 gnome_vfs GConf glib 42 ]; ··· 81 ''; 82 83 configureFlags = [ 84 + "--with-boot-jdk=${openjdk-bootstrap.home}" 85 "--with-version-build=${version.build}" 86 "--with-version-opt=nixos" 87 "--with-version-pre=" ··· 176 done 177 ''; 178 179 + disallowedReferences = [ openjdk-bootstrap ]; 180 181 pos = builtins.unsafeGetAttrPos "feature" version; 182 meta = import ./meta.nix lib version.feature;
+6 -3
pkgs/development/compilers/openjdk/8.nix
··· 23 update = "362"; 24 build = "ga"; 25 26 openjdk8 = stdenv.mkDerivation rec { 27 pname = "openjdk" + lib.optionalString headless "-headless"; 28 version = "8u${update}-${build}"; ··· 37 38 nativeBuildInputs = [ pkg-config lndir unzip ]; 39 buildInputs = [ 40 - cpio file which zip perl openjdk8-bootstrap zlib cups freetype alsa-lib 41 libjpeg giflib libX11 libICE libXext libXrender libXtst libXt libXtst 42 - libXi libXinerama libXcursor libXrandr fontconfig 43 ] ++ lib.optionals (!headless && enableGnome2) [ 44 gtk2 gnome_vfs GConf glib 45 ]; ··· 64 ''; 65 66 configureFlags = [ 67 - "--with-boot-jdk=${openjdk8-bootstrap.home}" 68 "--with-update-version=${update}" 69 "--with-build-number=${build}" 70 "--with-milestone=fcs"
··· 23 update = "362"; 24 build = "ga"; 25 26 + # when building a headless jdk, also bootstrap it with a headless jdk 27 + openjdk-bootstrap = openjdk8-bootstrap.override { gtkSupport = !headless; }; 28 + 29 openjdk8 = stdenv.mkDerivation rec { 30 pname = "openjdk" + lib.optionalString headless "-headless"; 31 version = "8u${update}-${build}"; ··· 40 41 nativeBuildInputs = [ pkg-config lndir unzip ]; 42 buildInputs = [ 43 + cpio file which zip perl zlib cups freetype alsa-lib 44 libjpeg giflib libX11 libICE libXext libXrender libXtst libXt libXtst 45 + libXi libXinerama libXcursor libXrandr fontconfig openjdk-bootstrap 46 ] ++ lib.optionals (!headless && enableGnome2) [ 47 gtk2 gnome_vfs GConf glib 48 ]; ··· 67 ''; 68 69 configureFlags = [ 70 + "--with-boot-jdk=${openjdk-bootstrap.home}" 71 "--with-update-version=${update}" 72 "--with-build-number=${build}" 73 "--with-milestone=fcs"
+1 -1
pkgs/development/compilers/temurin-bin/jdk-linux-base.nix
··· 40 providedCpuTypes = builtins.filter 41 (arch: builtins.elem arch validCpuTypes) 42 (builtins.attrNames sourcePerArch); 43 - result = stdenv.mkDerivation rec { 44 pname = if sourcePerArch.packageType == "jdk" 45 then "${name-prefix}-bin" 46 else "${name-prefix}-${sourcePerArch.packageType}-bin";
··· 40 providedCpuTypes = builtins.filter 41 (arch: builtins.elem arch validCpuTypes) 42 (builtins.attrNames sourcePerArch); 43 + result = stdenv.mkDerivation { 44 pname = if sourcePerArch.packageType == "jdk" 45 then "${name-prefix}-bin" 46 else "${name-prefix}-${sourcePerArch.packageType}-bin";
+5 -2
pkgs/development/libraries/gpgme/default.nix
··· 17 , qtbase ? null 18 , pythonSupport ? false 19 , swig2 ? null 20 - , python ? null 21 # only for passthru.tests 22 , libsForQt5 23 , python3 ··· 51 pkg-config 52 texinfo 53 ] ++ lib.optionals pythonSupport [ 54 ncurses 55 - python 56 swig2 57 which 58 ]; 59 60 propagatedBuildInputs = [
··· 17 , qtbase ? null 18 , pythonSupport ? false 19 , swig2 ? null 20 # only for passthru.tests 21 , libsForQt5 22 , python3 ··· 50 pkg-config 51 texinfo 52 ] ++ lib.optionals pythonSupport [ 53 + python3.pythonForBuild 54 ncurses 55 swig2 56 which 57 + ]; 58 + 59 + buildInputs = lib.optionals pythonSupport [ 60 + python3 61 ]; 62 63 propagatedBuildInputs = [
+3 -1
pkgs/development/libraries/science/astronomy/indilib/default.nix
··· 53 changelog = "https://github.com/indilib/indi/releases/tag/v${version}"; 54 license = licenses.lgpl2Plus; 55 maintainers = with maintainers; [ hjones2199 ]; 56 - platforms = platforms.linux; 57 }; 58 }
··· 53 changelog = "https://github.com/indilib/indi/releases/tag/v${version}"; 54 license = licenses.lgpl2Plus; 55 maintainers = with maintainers; [ hjones2199 ]; 56 + platforms = platforms.unix; 57 + # error: use of undeclared identifier 'MSG_NOSIGNAL' 58 + broken = stdenv.isDarwin && stdenv.isx86_64; 59 }; 60 }
+2 -2
pkgs/development/libraries/simdjson/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "simdjson"; 5 - version = "3.1.6"; 6 7 src = fetchFromGitHub { 8 owner = "simdjson"; 9 repo = "simdjson"; 10 rev = "v${version}"; 11 - sha256 = "sha256-9WVLvyehbXSLD7HNIwMkkq1XzF0jB8PkltsWSNfXaDk="; 12 }; 13 14 nativeBuildInputs = [ cmake ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "simdjson"; 5 + version = "3.1.7"; 6 7 src = fetchFromGitHub { 8 owner = "simdjson"; 9 repo = "simdjson"; 10 rev = "v${version}"; 11 + sha256 = "sha256-a6I1qcuBSkwQxuU4T7tKrqouhLMJsY/rfCKqhGGvkjQ="; 12 }; 13 14 nativeBuildInputs = [ cmake ];
+3 -10
pkgs/development/python-modules/accuweather/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "accuweather"; 15 - version = "0.5.0"; 16 format = "setuptools"; 17 18 - disabled = pythonOlder "3.8"; 19 20 src = fetchFromGitHub { 21 owner = "bieniu"; 22 repo = pname; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-v4mFvW+p0g+5IeZT8o0Z60MafHyYZ62d4lNH27wlAeI="; 25 }; 26 - 27 - postPatch = '' 28 - substituteInPlace setup.py \ 29 - --replace "pytest-runner" "" 30 - substituteInPlace setup.cfg \ 31 - --replace "--cov --cov-report term-missing" "" 32 - ''; 33 34 propagatedBuildInputs = [ 35 aiohttp
··· 12 13 buildPythonPackage rec { 14 pname = "accuweather"; 15 + version = "0.5.1"; 16 format = "setuptools"; 17 18 + disabled = pythonOlder "3.9"; 19 20 src = fetchFromGitHub { 21 owner = "bieniu"; 22 repo = pname; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-kWhb9tDp7/p5iCXTpf4/fjSo1ceuA9I2eqSprt50rWU="; 25 }; 26 27 propagatedBuildInputs = [ 28 aiohttp
+2
pkgs/development/python-modules/cwl-upgrader/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pytest-xdist 5 , pytestCheckHook 6 , pythonOlder ··· 30 ''; 31 32 propagatedBuildInputs = [ 33 ruamel-yaml 34 schema-salad 35 ];
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , mypy-extensions 5 , pytest-xdist 6 , pytestCheckHook 7 , pythonOlder ··· 31 ''; 32 33 propagatedBuildInputs = [ 34 + mypy-extensions 35 ruamel-yaml 36 schema-salad 37 ];
+2 -2
pkgs/development/python-modules/cwl-utils/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "cwl-utils"; 19 - version = "0.23"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "common-workflow-language"; 26 repo = pname; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-tr4QQ/p0jx/e5kHx4WSYfo06/qMNFyxIGsaAA8nBBoA="; 29 }; 30 31 propagatedBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "cwl-utils"; 19 + version = "0.24"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "common-workflow-language"; 26 repo = pname; 27 rev = "refs/tags/v${version}"; 28 + hash = "sha256-g8HnY5/UDmujijXStNRwKBGMZ3soUHKPIlpJdIQaAlE="; 29 }; 30 31 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dicom2nifti/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "dicom2nifti"; 16 - version = "2.4.3"; 17 disabled = pythonOlder "3.6"; 18 19 # no tests in PyPI dist ··· 21 owner = "icometrix"; 22 repo = pname; 23 rev = version; 24 - hash = "sha256-za2+HdnUhPu3+p29JsF4iL1lyPQVmEv3fam0Yf1oeMQ="; 25 }; 26 27 propagatedBuildInputs = [ gdcm nibabel numpy pydicom scipy setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "dicom2nifti"; 16 + version = "2.4.8"; 17 disabled = pythonOlder "3.6"; 18 19 # no tests in PyPI dist ··· 21 owner = "icometrix"; 22 repo = pname; 23 rev = version; 24 + hash = "sha256-2Pspxdeu3pHwXpbjS6bQQnvdeMuITRwYarPuLlmNcv8"; 25 }; 26 27 propagatedBuildInputs = [ gdcm nibabel numpy pydicom scipy setuptools ];
+2 -4
pkgs/development/python-modules/frigidaire/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "frigidaire"; 14 - version = "0.18.5"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "bm1549"; 21 repo = pname; 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-mmHcS0cjj43hCHLiCO8cGPfQoh+nqlNK3MdFP8IhD4w="; 24 }; 25 26 postPatch = '' 27 - # https://github.com/bm1549/frigidaire/issues/14 28 substituteInPlace setup.py \ 29 - --replace "urllib3>=1.26.42" "urllib3" \ 30 --replace 'version = "SNAPSHOT"' 'version = "${version}"' 31 ''; 32
··· 11 12 buildPythonPackage rec { 13 pname = "frigidaire"; 14 + version = "0.18.12"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "bm1549"; 21 repo = pname; 22 rev = "refs/tags/${version}"; 23 + hash = "sha256-U6ko6P5/ANGy84GQDuSQq+YArou0TrXH5SIc5x4euvU="; 24 }; 25 26 postPatch = '' 27 substituteInPlace setup.py \ 28 --replace 'version = "SNAPSHOT"' 'version = "${version}"' 29 ''; 30
+2 -2
pkgs/development/python-modules/ocrmypdf/default.nix
··· 29 30 buildPythonPackage rec { 31 pname = "ocrmypdf"; 32 - version = "14.0.4"; 33 34 disabled = pythonOlder "3.8"; 35 ··· 45 postFetch = '' 46 rm "$out/.git_archival.txt" 47 ''; 48 - hash = "sha256-SLWpMkXq5DlmVgDfRAHtYfEUAVpVKgtnJKO2ffyH5cU="; 49 }; 50 51 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 29 30 buildPythonPackage rec { 31 pname = "ocrmypdf"; 32 + version = "14.1.0"; 33 34 disabled = pythonOlder "3.8"; 35 ··· 45 postFetch = '' 46 rm "$out/.git_archival.txt" 47 ''; 48 + hash = "sha256-Jyx9FPXNjcA04s+l2wY/LVX83RqExt78/EAHsL1VNMU="; 49 }; 50 51 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/pikepdf/default.nix
··· 26 27 buildPythonPackage rec { 28 pname = "pikepdf"; 29 - version = "7.1.2"; 30 format = "pyproject"; 31 32 disabled = pythonOlder "3.8"; ··· 41 postFetch = '' 42 rm "$out/.git_archival.txt" 43 ''; 44 - hash = "sha256-Lm05lqqZM1zucdIDgSnYsCcfo7wCDLcY02vv7CyHTGo="; 45 }; 46 47 patches = [
··· 26 27 buildPythonPackage rec { 28 pname = "pikepdf"; 29 + version = "7.2.0"; 30 format = "pyproject"; 31 32 disabled = pythonOlder "3.8"; ··· 41 postFetch = '' 42 rm "$out/.git_archival.txt" 43 ''; 44 + hash = "sha256-acGIhIWC1nUQiN0iwb1kLKxz+ytIqYIW4VXF45Tx50g="; 45 }; 46 47 patches = [
+6
pkgs/development/python-modules/pyqt/6.x.nix
··· 20 #, withLocation ? true 21 # Not currently part of PyQt6 22 #, withConnectivity ? true 23 }: 24 25 buildPythonPackage rec { ··· 102 dbus-python 103 pyqt6-sip 104 setuptools 105 ]; 106 107 passthru = {
··· 20 #, withLocation ? true 21 # Not currently part of PyQt6 22 #, withConnectivity ? true 23 + , withPrintSupport ? true 24 + , cups 25 }: 26 27 buildPythonPackage rec { ··· 104 dbus-python 105 pyqt6-sip 106 setuptools 107 + ] 108 + # ld: library not found for -lcups 109 + ++ lib.optionals (withPrintSupport && stdenv.isDarwin) [ 110 + cups 111 ]; 112 113 passthru = {
+2 -2
pkgs/development/tools/analysis/cppcheck/default.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "cppcheck"; 16 - version = "2.10.2"; 17 18 src = fetchFromGitHub { 19 owner = "danmar"; 20 repo = "cppcheck"; 21 rev = version; 22 - hash = "sha256-wr2O9EqDvHaMQwnjFLLtP1XxfUwFa/P6gGqYNNPVyaA="; 23 }; 24 25 strictDeps = true;
··· 13 14 stdenv.mkDerivation rec { 15 pname = "cppcheck"; 16 + version = "2.10.3"; 17 18 src = fetchFromGitHub { 19 owner = "danmar"; 20 repo = "cppcheck"; 21 rev = version; 22 + hash = "sha256-M63uHhyEDmuWrEu7Y3Zks1Eq5WgenSlqWln2DMBj3fU="; 23 }; 24 25 strictDeps = true;
+2 -2
pkgs/development/tools/database/sqlfluff/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "sqlfluff"; 8 - version = "2.0.3"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-PG+4PibJE7mka+1ann88AgqNTI+BeE0IxHpVJRG4Iuk="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "sqlfluff"; 8 + version = "2.0.4"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-HrkSwaLBhjotQYkkpFpRF8NXgPAeugvINBSCKS2l2I4="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/development/tools/language-servers/kotlin-language-server/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "kotlin-language-server"; 5 - version = "1.3.1"; 6 src = fetchzip { 7 url = "https://github.com/fwcd/kotlin-language-server/releases/download/${version}/server.zip"; 8 - hash = "sha256-FxpNA4OGSgFdILl0yKBDTtVdQl6Bw9tm2eURbsJdZzI="; 9 }; 10 11 dontBuild = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "kotlin-language-server"; 5 + version = "1.3.3"; 6 src = fetchzip { 7 url = "https://github.com/fwcd/kotlin-language-server/releases/download/${version}/server.zip"; 8 + hash = "sha256-m0AgPJ8KgzOxHPB33pgSFe7JQxidPkhDUga56LuaDBA="; 9 }; 10 11 dontBuild = true;
+3 -3
pkgs/development/tools/rust/probe-run/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "probe-run"; 15 - version = "0.3.7"; 16 17 src = fetchCrate { 18 inherit pname version; 19 - hash = "sha256-GLJrM5vIGYH5lNvwmpYKE/ISTRUwikCCj2o5h6Y9kW4="; 20 }; 21 22 - cargoHash = "sha256-YevCel3HqwslwVmEA1vncsYYPMGQPUnwlkxLNQsnKG0="; 23 24 nativeBuildInputs = [ 25 pkg-config
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "probe-run"; 15 + version = "0.3.8"; 16 17 src = fetchCrate { 18 inherit pname version; 19 + hash = "sha256-e5HXqqnRnz+6RHOZnZ4VTJhiYKeBSHEjdKBAPKLXf5Q="; 20 }; 21 22 + cargoHash = "sha256-8Hpjrjd+dCu9eaFxJ3SRHNBuRaNmvt42vkN2ls3hskA="; 23 24 nativeBuildInputs = [ 25 pkg-config
+3 -3
pkgs/development/tools/rust/rust-script/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "rust-script"; 5 - version = "0.25.0"; 6 7 src = fetchFromGitHub { 8 owner = "fornwall"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-oY971/+3PizyOtKSXeyHUlC+Rf+qS+Zf5Ls+OL6rIgE="; 12 }; 13 14 - cargoSha256 = "sha256-NtYmJS9SBNZkF5hv5IcPzk6DxYLAu1/nBexahdjUYgY="; 15 16 # tests require network access 17 doCheck = false;
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "rust-script"; 5 + version = "0.26.0"; 6 7 src = fetchFromGitHub { 8 owner = "fornwall"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-2ZEFtpaKBhF8puYB5gqttrdxKI2zrm6wjukRM+mBeF0="; 12 }; 13 14 + cargoSha256 = "sha256-HRT0PSI0x2I/zuKKDcn08cyBC8gxkC5XXRFle/Ayrkg="; 15 16 # tests require network access 17 doCheck = false;
+3 -3
pkgs/development/tools/rust/typeshare/default.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "typeshare"; 9 - version = "1.4.0"; 10 11 src = fetchFromGitHub { 12 owner = "1password"; 13 repo = "typeshare"; 14 rev = "v${version}"; 15 - hash = "sha256-TGs7Czq13ghifKUhoz+n9I4UlOrzQosWTwBqBWv572E="; 16 }; 17 18 - cargoHash = "sha256-hF+1v9bHioKQixg0C46ligLy/ibU+iI/H85g4wQhne4="; 19 20 nativeBuildInputs = [ installShellFiles ]; 21
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "typeshare"; 9 + version = "1.5.0"; 10 11 src = fetchFromGitHub { 12 owner = "1password"; 13 repo = "typeshare"; 14 rev = "v${version}"; 15 + hash = "sha256-Zmb6GZVtjx/PXOT1vaxKjPObY902pRqttOYExDx5UvI="; 16 }; 17 18 + cargoHash = "sha256-83LAZ7b1j/iBnYmY0oSSWDH0w7WPU1O85X+IBwSe1bs="; 19 20 nativeBuildInputs = [ installShellFiles ]; 21
+5 -7
pkgs/servers/home-automation/evcc/default.nix
··· 16 17 buildGo120Module rec { 18 pname = "evcc"; 19 - version = "0.115.0"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-vA2HpkzNuHulUUZKL6Wm2Y052v4JdC5V8hADq78rK5c="; 26 }; 27 28 - vendorHash = "sha256-/TqA2WTNJ3cSrqLgEly1KHGvMA/MQ+p364G0ne0ezfQ="; 29 30 npmDeps = fetchNpmDeps { 31 inherit src; 32 - hash = "sha256-LGlM+itulqtlwyVKfVGiZtTpcCmx+lVvE3JOFkYRHXk="; 33 }; 34 35 nativeBuildInputs = [ ··· 53 54 tags = [ 55 "release" 56 ]; 57 58 ldflags = [ ··· 72 # requires network access 73 rm meter/template_test.go 74 rm charger/template_test.go 75 - rm vehicle/template_test.go 76 - # times out (since 0.115.0, bisected to 31ab90e6381b30278731bd01effa62bdfb884ebc) 77 - rm util/templates/render_testing.go 78 ''; 79 80 passthru = {
··· 16 17 buildGo120Module rec { 18 pname = "evcc"; 19 + version = "0.116.0"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-YM6E1g6lrgDTMrfSRacbPM0yXPAgBzGvLHdyaqncuWc="; 26 }; 27 28 + vendorHash = "sha256-O13m6yQvPha1AToK3Y2naeA70BUx+WBv6D8YniMSk7s="; 29 30 npmDeps = fetchNpmDeps { 31 inherit src; 32 + hash = "sha256-OqY1pAkr/0uRzD2/wLwNYCV6XQLRsG+Jc5ST+04NFuE="; 33 }; 34 35 nativeBuildInputs = [ ··· 53 54 tags = [ 55 "release" 56 + "test" 57 ]; 58 59 ldflags = [ ··· 73 # requires network access 74 rm meter/template_test.go 75 rm charger/template_test.go 76 ''; 77 78 passthru = {
+2 -2
pkgs/servers/misc/oven-media-engine/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "oven-media-engine"; 22 - version = "0.15.7"; 23 24 src = fetchFromGitHub { 25 owner = "AirenSoft"; 26 repo = "OvenMediaEngine"; 27 rev = "v${version}"; 28 - sha256 = "sha256-Zn2zUR3YvZw6xdebPidD7lKWvvvS2XVo/Vy0yn+bTRY="; 29 }; 30 31 sourceRoot = "source/src";
··· 19 20 stdenv.mkDerivation rec { 21 pname = "oven-media-engine"; 22 + version = "0.15.8"; 23 24 src = fetchFromGitHub { 25 owner = "AirenSoft"; 26 repo = "OvenMediaEngine"; 27 rev = "v${version}"; 28 + sha256 = "sha256-8aR/v0xrHRLkoq0+VYLSMzDeRva5+6XFkrXZgu1tG8o="; 29 }; 30 31 sourceRoot = "source/src";
+3 -3
pkgs/tools/admin/aliyun-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "aliyun-cli"; 5 - version = "3.0.160"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "aliyun"; 10 repo = pname; 11 fetchSubmodules = true; 12 - sha256 = "sha256-gMAYtvmP8dKiLITPx5sWkj3vRJNT468kEA2obCIDER4="; 13 }; 14 15 - vendorHash = "sha256-H1qeJ37FaQY/EQtg3467gG8tA1PLyXaF8Sb5qKLf4wU="; 16 17 subPackages = [ "main" ]; 18
··· 2 3 buildGoModule rec { 4 pname = "aliyun-cli"; 5 + version = "3.0.161"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "aliyun"; 10 repo = pname; 11 fetchSubmodules = true; 12 + sha256 = "sha256-UYRCVkeNLaTqjcf3cxIXoT+t1ZhDKUsxsbfJzRMaYVI="; 13 }; 14 15 + vendorHash = "sha256-EyaJxlif+jo8N7oi6VCJx/kO+ZR4Mb3od8jJFWbwEoo="; 16 17 subPackages = [ "main" ]; 18
+475 -333
pkgs/tools/misc/asciinema-agg/Cargo.lock
··· 10 11 [[package]] 12 name = "agg" 13 - version = "1.4.0" 14 dependencies = [ 15 "anyhow", 16 "avt", 17 - "clap", 18 "env_logger", 19 "fontdb", 20 "fontdue", ··· 43 ] 44 45 [[package]] 46 name = "aho-corasick" 47 - version = "0.7.18" 48 source = "registry+https://github.com/rust-lang/crates.io-index" 49 - checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 50 dependencies = [ 51 "memchr", 52 ] 53 54 [[package]] 55 name = "anyhow" 56 - version = "1.0.58" 57 source = "registry+https://github.com/rust-lang/crates.io-index" 58 - checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" 59 60 [[package]] 61 name = "arrayref" 62 - version = "0.3.6" 63 source = "registry+https://github.com/rust-lang/crates.io-index" 64 - checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 65 66 [[package]] 67 name = "arrayvec" ··· 71 72 [[package]] 73 name = "async-compression" 74 - version = "0.3.14" 75 source = "registry+https://github.com/rust-lang/crates.io-index" 76 - checksum = "345fd392ab01f746c717b1357165b76f0b67a60192007b234058c9045fdcf695" 77 dependencies = [ 78 "flate2", 79 "futures-core", ··· 88 source = "registry+https://github.com/rust-lang/crates.io-index" 89 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 90 dependencies = [ 91 - "hermit-abi", 92 "libc", 93 "winapi", 94 ] ··· 101 102 [[package]] 103 name = "avt" 104 - version = "0.5.1" 105 - source = "git+https://github.com/asciinema/avt.git?tag=v0.5.1#917a3b881043fe9a33b42aa10bb374343c37e2cf" 106 dependencies = [ 107 "rgb", 108 "serde", ··· 110 111 [[package]] 112 name = "base64" 113 - version = "0.13.0" 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 116 117 [[package]] 118 name = "bitflags" ··· 122 123 [[package]] 124 name = "bumpalo" 125 - version = "3.11.0" 126 source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" 128 129 [[package]] 130 name = "bytemuck" ··· 134 135 [[package]] 136 name = "bytes" 137 - version = "1.2.1" 138 source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 140 141 [[package]] 142 name = "cc" 143 - version = "1.0.73" 144 source = "registry+https://github.com/rust-lang/crates.io-index" 145 - checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 146 147 [[package]] 148 name = "cfg-if" ··· 152 153 [[package]] 154 name = "clap" 155 - version = "3.2.15" 156 source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "44bbe24bbd31a185bc2c4f7c2abe80bea13a20d57ee4e55be70ac512bdc76417" 158 dependencies = [ 159 "atty", 160 "bitflags", 161 "clap_derive", 162 - "clap_lex", 163 "indexmap", 164 "once_cell", 165 "strsim", ··· 168 ] 169 170 [[package]] 171 name = "clap_derive" 172 - version = "3.2.15" 173 source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "9ba52acd3b0a5c33aeada5cdaa3267cdc7c594a98731d4268cdc1532f4264cb4" 175 dependencies = [ 176 "heck", 177 "proc-macro-error", 178 "proc-macro2", 179 "quote", 180 - "syn", 181 ] 182 183 [[package]] 184 name = "clap_lex" 185 - version = "0.2.3" 186 source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "87eba3c8c7f42ef17f6c659fc7416d0f4758cd3e58861ee63c5fa4a4dde649e4" 188 dependencies = [ 189 "os_str_bytes", 190 ] 191 192 [[package]] 193 name = "color_quant" 194 version = "1.1.0" 195 source = "registry+https://github.com/rust-lang/crates.io-index" 196 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 197 198 [[package]] 199 name = "crc32fast" 200 version = "1.3.2" 201 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 206 207 [[package]] 208 name = "crossbeam-channel" 209 - version = "0.5.5" 210 source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c" 212 dependencies = [ 213 "cfg-if", 214 "crossbeam-utils", ··· 216 217 [[package]] 218 name = "crossbeam-deque" 219 - version = "0.8.1" 220 source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 222 dependencies = [ 223 "cfg-if", 224 "crossbeam-epoch", ··· 227 228 [[package]] 229 name = "crossbeam-epoch" 230 - version = "0.9.9" 231 source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "07db9d94cbd326813772c968ccd25999e5f8ae22f4f8d1b11effa37ef6ce281d" 233 dependencies = [ 234 "autocfg", 235 "cfg-if", 236 "crossbeam-utils", 237 "memoffset", 238 - "once_cell", 239 "scopeguard", 240 ] 241 242 [[package]] 243 name = "crossbeam-utils" 244 - version = "0.8.11" 245 source = "registry+https://github.com/rust-lang/crates.io-index" 246 - checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 247 dependencies = [ 248 "cfg-if", 249 - "once_cell", 250 ] 251 252 [[package]] ··· 272 dependencies = [ 273 "libc", 274 "redox_users", 275 - "windows-sys 0.45.0", 276 ] 277 278 [[package]] 279 name = "dunce" 280 - version = "1.0.2" 281 source = "registry+https://github.com/rust-lang/crates.io-index" 282 - checksum = "453440c271cf5577fd2a40e4942540cb7d0d2f85e27c8d07dd0023c925a67541" 283 284 [[package]] 285 name = "either" 286 - version = "1.6.1" 287 source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 289 290 [[package]] 291 name = "encoding_rs" 292 - version = "0.8.31" 293 source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 295 dependencies = [ 296 "cfg-if", 297 ] 298 299 [[package]] 300 name = "env_logger" 301 - version = "0.9.0" 302 source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" 304 dependencies = [ 305 - "atty", 306 "humantime", 307 "log", 308 "regex", 309 "termcolor", 310 ] 311 312 [[package]] 313 name = "fallible_collections" 314 - version = "0.4.5" 315 source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "c195cf4b2285d3c993eb887b4dc56b0d5728bbe1d0f9a99c0ac6bec2da3e4d85" 317 dependencies = [ 318 - "hashbrown 0.12.1", 319 ] 320 321 [[package]] 322 name = "flate2" 323 - version = "1.0.24" 324 source = "registry+https://github.com/rust-lang/crates.io-index" 325 - checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 326 dependencies = [ 327 "crc32fast", 328 - "miniz_oxide", 329 ] 330 331 [[package]] ··· 342 343 [[package]] 344 name = "fontconfig-parser" 345 - version = "0.5.0" 346 source = "registry+https://github.com/rust-lang/crates.io-index" 347 - checksum = "82cea2adebf32a9b104b8ffb308b5fb3b456f04cc76c294c3c85025c8a5d75f4" 348 dependencies = [ 349 - "roxmltree 0.14.1", 350 ] 351 352 [[package]] ··· 373 374 [[package]] 375 name = "form_urlencoded" 376 - version = "1.0.1" 377 source = "registry+https://github.com/rust-lang/crates.io-index" 378 - checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 379 dependencies = [ 380 - "matches", 381 "percent-encoding", 382 ] 383 384 [[package]] 385 name = "futures-channel" 386 - version = "0.3.23" 387 source = "registry+https://github.com/rust-lang/crates.io-index" 388 - checksum = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1" 389 dependencies = [ 390 "futures-core", 391 ] 392 393 [[package]] 394 name = "futures-core" 395 - version = "0.3.23" 396 source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115" 398 399 [[package]] 400 name = "futures-io" 401 - version = "0.3.23" 402 source = "registry+https://github.com/rust-lang/crates.io-index" 403 - checksum = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5" 404 405 [[package]] 406 name = "futures-sink" 407 - version = "0.3.23" 408 source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765" 410 411 [[package]] 412 name = "futures-task" 413 - version = "0.3.23" 414 source = "registry+https://github.com/rust-lang/crates.io-index" 415 - checksum = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306" 416 417 [[package]] 418 name = "futures-util" 419 - version = "0.3.23" 420 source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577" 422 dependencies = [ 423 "futures-core", 424 "futures-io", ··· 431 432 [[package]] 433 name = "getrandom" 434 - version = "0.2.7" 435 source = "registry+https://github.com/rust-lang/crates.io-index" 436 - checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 437 dependencies = [ 438 "cfg-if", 439 "libc", 440 - "wasi 0.11.0+wasi-snapshot-preview1", 441 ] 442 443 [[package]] 444 name = "gif" 445 - version = "0.11.3" 446 source = "registry+https://github.com/rust-lang/crates.io-index" 447 - checksum = "c3a7187e78088aead22ceedeee99779455b23fc231fe13ec443f99bb71694e5b" 448 dependencies = [ 449 "color_quant", 450 "weezl", ··· 452 453 [[package]] 454 name = "gif-dispose" 455 - version = "3.1.1" 456 source = "registry+https://github.com/rust-lang/crates.io-index" 457 - checksum = "243e0347e8f4384181cb12069d87b9dae021c41bdaada7bd0d6743ad6d95c1d7" 458 dependencies = [ 459 - "gif", 460 "imgref", 461 "rgb", 462 ] 463 464 [[package]] 465 name = "gifsicle" 466 - version = "1.92.5" 467 source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "36998a2316aad26c8bfd74c82a8809eaf12e2216a2938bc4dca5b83c59fb3e1a" 469 dependencies = [ 470 "cc", 471 "libc", ··· 473 474 [[package]] 475 name = "gifski" 476 - version = "1.7.2" 477 source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "5adcc09f56c151dca255c72710a7e6ab74a9ca050387c1851b1bdf4be25fff91" 479 dependencies = [ 480 - "clap", 481 "crossbeam-channel", 482 "crossbeam-utils", 483 "dunce", 484 - "gif", 485 "gif-dispose", 486 "gifsicle", 487 "imagequant", ··· 494 "quick-error", 495 "resize", 496 "rgb", 497 "wild", 498 ] 499 500 [[package]] 501 name = "glob" 502 - version = "0.3.0" 503 source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 505 506 [[package]] 507 name = "h2" 508 - version = "0.3.14" 509 source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be" 511 dependencies = [ 512 "bytes", 513 "fnv", ··· 528 source = "registry+https://github.com/rust-lang/crates.io-index" 529 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 530 dependencies = [ 531 - "ahash", 532 ] 533 534 [[package]] 535 name = "hashbrown" 536 - version = "0.12.1" 537 source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" 539 dependencies = [ 540 - "ahash", 541 ] 542 543 [[package]] 544 name = "heck" 545 - version = "0.4.0" 546 source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 548 549 [[package]] 550 name = "hermit-abi" ··· 556 ] 557 558 [[package]] 559 name = "http" 560 - version = "0.2.8" 561 source = "registry+https://github.com/rust-lang/crates.io-index" 562 - checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 563 dependencies = [ 564 "bytes", 565 "fnv", ··· 579 580 [[package]] 581 name = "httparse" 582 - version = "1.7.1" 583 source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 585 586 [[package]] 587 name = "httpdate" ··· 597 598 [[package]] 599 name = "hyper" 600 - version = "0.14.20" 601 source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" 603 dependencies = [ 604 "bytes", 605 "futures-channel", ··· 621 622 [[package]] 623 name = "hyper-rustls" 624 - version = "0.23.0" 625 source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac" 627 dependencies = [ 628 "http", 629 "hyper", ··· 634 635 [[package]] 636 name = "idna" 637 - version = "0.2.3" 638 source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 640 dependencies = [ 641 - "matches", 642 "unicode-bidi", 643 "unicode-normalization", 644 ] 645 646 [[package]] 647 name = "imagequant" 648 - version = "4.0.4" 649 source = "registry+https://github.com/rust-lang/crates.io-index" 650 - checksum = "75ee54f35d304758d5625121221ed2bd8258d022ff4b5d26b7b292e1ca0d5fc7" 651 dependencies = [ 652 "arrayvec", 653 "noisy_float", ··· 666 667 [[package]] 668 name = "imgref" 669 - version = "1.9.2" 670 source = "registry+https://github.com/rust-lang/crates.io-index" 671 - checksum = "7d6a8cd48d0dc604999b8beacfbfc2f4eb289a52af175029d4f79fb57b80c7d5" 672 673 [[package]] 674 name = "indexmap" 675 - version = "1.9.1" 676 source = "registry+https://github.com/rust-lang/crates.io-index" 677 - checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 678 dependencies = [ 679 "autocfg", 680 - "hashbrown 0.12.1", 681 ] 682 683 [[package]] 684 name = "ipnet" 685 - version = "2.5.0" 686 source = "registry+https://github.com/rust-lang/crates.io-index" 687 - checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 688 689 [[package]] 690 name = "itoa" 691 - version = "1.0.2" 692 source = "registry+https://github.com/rust-lang/crates.io-index" 693 - checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" 694 695 [[package]] 696 name = "jpeg-decoder" ··· 700 701 [[package]] 702 name = "js-sys" 703 - version = "0.3.59" 704 source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 706 dependencies = [ 707 "wasm-bindgen", 708 ] ··· 717 ] 718 719 [[package]] 720 - name = "lazy_static" 721 - version = "1.4.0" 722 source = "registry+https://github.com/rust-lang/crates.io-index" 723 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 724 725 [[package]] 726 - name = "libc" 727 - version = "0.2.126" 728 source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 730 731 [[package]] 732 name = "lodepng" 733 - version = "3.7.0" 734 source = "registry+https://github.com/rust-lang/crates.io-index" 735 - checksum = "ff45534ec797452c044fcd47861059eddb501e30a8fd9fdadea7957cdff3ebc7" 736 dependencies = [ 737 "crc32fast", 738 "fallible_collections", ··· 760 ] 761 762 [[package]] 763 - name = "matches" 764 - version = "0.1.9" 765 - source = "registry+https://github.com/rust-lang/crates.io-index" 766 - checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 767 - 768 - [[package]] 769 name = "memchr" 770 version = "2.5.0" 771 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 773 774 [[package]] 775 name = "memmap2" 776 - version = "0.5.4" 777 source = "registry+https://github.com/rust-lang/crates.io-index" 778 - checksum = "d5172b50c23043ff43dd53e51392f36519d9b35a8f3a410d30ece5d1aedd58ae" 779 dependencies = [ 780 "libc", 781 ] 782 783 [[package]] 784 name = "memoffset" 785 - version = "0.6.5" 786 source = "registry+https://github.com/rust-lang/crates.io-index" 787 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 788 dependencies = [ 789 "autocfg", 790 ] 791 792 [[package]] 793 name = "mime" 794 - version = "0.3.16" 795 source = "registry+https://github.com/rust-lang/crates.io-index" 796 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 797 798 [[package]] 799 name = "miniz_oxide" 800 - version = "0.5.3" 801 source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 803 dependencies = [ 804 "adler", 805 ] 806 807 [[package]] 808 name = "mio" 809 - version = "0.8.4" 810 source = "registry+https://github.com/rust-lang/crates.io-index" 811 - checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" 812 dependencies = [ 813 "libc", 814 "log", 815 - "wasi 0.11.0+wasi-snapshot-preview1", 816 - "windows-sys 0.36.1", 817 ] 818 819 [[package]] ··· 842 843 [[package]] 844 name = "num_cpus" 845 - version = "1.13.1" 846 source = "registry+https://github.com/rust-lang/crates.io-index" 847 - checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 848 dependencies = [ 849 - "hermit-abi", 850 "libc", 851 ] 852 853 [[package]] 854 name = "once_cell" 855 - version = "1.14.0" 856 source = "registry+https://github.com/rust-lang/crates.io-index" 857 - checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" 858 859 [[package]] 860 name = "os_str_bytes" 861 - version = "6.1.0" 862 source = "registry+https://github.com/rust-lang/crates.io-index" 863 - checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa" 864 865 [[package]] 866 name = "pbr" 867 - version = "1.0.4" 868 source = "registry+https://github.com/rust-lang/crates.io-index" 869 - checksum = "ff5751d87f7c00ae6403eb1fcbba229b9c76c9a30de8c1cf87182177b168cea2" 870 dependencies = [ 871 "crossbeam-channel", 872 "libc", 873 - "time", 874 "winapi", 875 ] 876 877 [[package]] 878 name = "percent-encoding" 879 - version = "2.1.0" 880 source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 882 883 [[package]] 884 name = "pico-args" ··· 907 "bitflags", 908 "crc32fast", 909 "flate2", 910 - "miniz_oxide", 911 ] 912 913 [[package]] ··· 919 "proc-macro-error-attr", 920 "proc-macro2", 921 "quote", 922 - "syn", 923 "version_check", 924 ] 925 ··· 936 937 [[package]] 938 name = "proc-macro2" 939 - version = "1.0.40" 940 source = "registry+https://github.com/rust-lang/crates.io-index" 941 - checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7" 942 dependencies = [ 943 "unicode-ident", 944 ] ··· 951 952 [[package]] 953 name = "quote" 954 - version = "1.0.20" 955 source = "registry+https://github.com/rust-lang/crates.io-index" 956 - checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" 957 dependencies = [ 958 "proc-macro2", 959 ] 960 961 [[package]] 962 name = "rayon" 963 - version = "1.5.3" 964 source = "registry+https://github.com/rust-lang/crates.io-index" 965 - checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" 966 dependencies = [ 967 - "autocfg", 968 - "crossbeam-deque", 969 "either", 970 "rayon-core", 971 ] 972 973 [[package]] 974 name = "rayon-core" 975 - version = "1.9.3" 976 source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" 978 dependencies = [ 979 "crossbeam-channel", 980 "crossbeam-deque", ··· 1010 1011 [[package]] 1012 name = "regex" 1013 - version = "1.6.0" 1014 source = "registry+https://github.com/rust-lang/crates.io-index" 1015 - checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 1016 dependencies = [ 1017 "aho-corasick", 1018 "memchr", ··· 1021 1022 [[package]] 1023 name = "regex-syntax" 1024 - version = "0.6.27" 1025 source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 1027 1028 [[package]] 1029 name = "reqwest" 1030 - version = "0.11.11" 1031 source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" 1033 dependencies = [ 1034 "async-compression", 1035 - "base64", 1036 "bytes", 1037 "encoding_rs", 1038 "futures-core", ··· 1044 "hyper-rustls", 1045 "ipnet", 1046 "js-sys", 1047 - "lazy_static", 1048 "log", 1049 "mime", 1050 "percent-encoding", 1051 "pin-project-lite", 1052 "rustls", ··· 1082 source = "registry+https://github.com/rust-lang/crates.io-index" 1083 checksum = "c115863f2d3621999cf187e318bc92b16402dfeff6a48c74df700d77381394c1" 1084 dependencies = [ 1085 - "gif", 1086 "jpeg-decoder", 1087 "log", 1088 "pico-args", ··· 1097 1098 [[package]] 1099 name = "rgb" 1100 - version = "0.8.33" 1101 source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "c3b221de559e4a29df3b957eec92bc0de6bc8eaf6ca9cfed43e5e1d67ff65a34" 1103 dependencies = [ 1104 "bytemuck", 1105 ] ··· 1121 1122 [[package]] 1123 name = "roxmltree" 1124 - version = "0.14.1" 1125 source = "registry+https://github.com/rust-lang/crates.io-index" 1126 - checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b" 1127 dependencies = [ 1128 "xmlparser", 1129 ] 1130 1131 [[package]] 1132 name = "roxmltree" 1133 - version = "0.15.1" 1134 source = "registry+https://github.com/rust-lang/crates.io-index" 1135 - checksum = "6b9de9831a129b122e7e61f242db509fa9d0838008bf0b29bb0624669edfe48a" 1136 dependencies = [ 1137 "xmlparser", 1138 ] 1139 1140 [[package]] 1141 name = "rustls" 1142 - version = "0.20.6" 1143 source = "registry+https://github.com/rust-lang/crates.io-index" 1144 - checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033" 1145 dependencies = [ 1146 "log", 1147 "ring", ··· 1151 1152 [[package]] 1153 name = "rustls-pemfile" 1154 - version = "1.0.1" 1155 source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" 1157 dependencies = [ 1158 - "base64", 1159 ] 1160 1161 [[package]] ··· 1176 1177 [[package]] 1178 name = "ryu" 1179 - version = "1.0.10" 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1181 - checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" 1182 1183 [[package]] 1184 name = "scopeguard" ··· 1198 1199 [[package]] 1200 name = "serde" 1201 - version = "1.0.137" 1202 source = "registry+https://github.com/rust-lang/crates.io-index" 1203 - checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" 1204 dependencies = [ 1205 "serde_derive", 1206 ] 1207 1208 [[package]] 1209 name = "serde_derive" 1210 - version = "1.0.137" 1211 source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" 1213 dependencies = [ 1214 "proc-macro2", 1215 "quote", 1216 - "syn", 1217 ] 1218 1219 [[package]] 1220 name = "serde_json" 1221 - version = "1.0.81" 1222 source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" 1224 dependencies = [ 1225 "itoa", 1226 "ryu", ··· 1265 1266 [[package]] 1267 name = "slab" 1268 - version = "0.4.7" 1269 source = "registry+https://github.com/rust-lang/crates.io-index" 1270 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 1271 dependencies = [ 1272 "autocfg", 1273 ] 1274 1275 [[package]] 1276 name = "smallvec" 1277 - version = "1.8.1" 1278 source = "registry+https://github.com/rust-lang/crates.io-index" 1279 - checksum = "cc88c725d61fc6c3132893370cac4a0200e3fedf5da8331c570664b1987f5ca2" 1280 1281 [[package]] 1282 name = "socket2" 1283 - version = "0.4.4" 1284 source = "registry+https://github.com/rust-lang/crates.io-index" 1285 - checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 1286 dependencies = [ 1287 "libc", 1288 "winapi", ··· 1330 1331 [[package]] 1332 name = "syn" 1333 - version = "1.0.98" 1334 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 - checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" 1336 dependencies = [ 1337 "proc-macro2", 1338 "quote", ··· 1341 1342 [[package]] 1343 name = "termcolor" 1344 - version = "1.1.3" 1345 source = "registry+https://github.com/rust-lang/crates.io-index" 1346 - checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1347 dependencies = [ 1348 "winapi-util", 1349 ] 1350 1351 [[package]] 1352 name = "textwrap" 1353 - version = "0.15.0" 1354 source = "registry+https://github.com/rust-lang/crates.io-index" 1355 - checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 1356 1357 [[package]] 1358 name = "thiserror" 1359 - version = "1.0.39" 1360 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" 1362 dependencies = [ 1363 "thiserror-impl", 1364 ] 1365 1366 [[package]] 1367 name = "thiserror-impl" 1368 - version = "1.0.39" 1369 source = "registry+https://github.com/rust-lang/crates.io-index" 1370 - checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" 1371 dependencies = [ 1372 "proc-macro2", 1373 "quote", 1374 - "syn", 1375 ] 1376 1377 [[package]] 1378 name = "thread_local" 1379 - version = "1.1.4" 1380 source = "registry+https://github.com/rust-lang/crates.io-index" 1381 - checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 1382 dependencies = [ 1383 "once_cell", 1384 - ] 1385 - 1386 - [[package]] 1387 - name = "time" 1388 - version = "0.1.44" 1389 - source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 1391 - dependencies = [ 1392 - "libc", 1393 - "wasi 0.10.0+wasi-snapshot-preview1", 1394 - "winapi", 1395 ] 1396 1397 [[package]] ··· 1430 1431 [[package]] 1432 name = "tinyvec_macros" 1433 - version = "0.1.0" 1434 source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1436 1437 [[package]] 1438 name = "tokio" 1439 - version = "1.20.1" 1440 source = "registry+https://github.com/rust-lang/crates.io-index" 1441 - checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 1442 dependencies = [ 1443 "autocfg", 1444 "bytes", 1445 "libc", 1446 - "memchr", 1447 "mio", 1448 "num_cpus", 1449 - "once_cell", 1450 "pin-project-lite", 1451 "socket2", 1452 - "winapi", 1453 ] 1454 1455 [[package]] ··· 1465 1466 [[package]] 1467 name = "tokio-util" 1468 - version = "0.7.3" 1469 source = "registry+https://github.com/rust-lang/crates.io-index" 1470 - checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 1471 dependencies = [ 1472 "bytes", 1473 "futures-core", ··· 1485 1486 [[package]] 1487 name = "tracing" 1488 - version = "0.1.35" 1489 source = "registry+https://github.com/rust-lang/crates.io-index" 1490 - checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160" 1491 dependencies = [ 1492 "cfg-if", 1493 "pin-project-lite", ··· 1496 1497 [[package]] 1498 name = "tracing-core" 1499 - version = "0.1.28" 1500 source = "registry+https://github.com/rust-lang/crates.io-index" 1501 - checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7" 1502 dependencies = [ 1503 "once_cell", 1504 ] 1505 1506 [[package]] 1507 name = "try-lock" 1508 - version = "0.2.3" 1509 source = "registry+https://github.com/rust-lang/crates.io-index" 1510 - checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 1511 1512 [[package]] 1513 name = "ttf-parser" ··· 1523 1524 [[package]] 1525 name = "unicode-bidi" 1526 - version = "0.3.8" 1527 source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 1529 1530 [[package]] 1531 name = "unicode-bidi-mirroring" ··· 1547 1548 [[package]] 1549 name = "unicode-ident" 1550 - version = "1.0.1" 1551 source = "registry+https://github.com/rust-lang/crates.io-index" 1552 - checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" 1553 1554 [[package]] 1555 name = "unicode-normalization" 1556 - version = "0.1.21" 1557 source = "registry+https://github.com/rust-lang/crates.io-index" 1558 - checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" 1559 dependencies = [ 1560 "tinyvec", 1561 ] 1562 1563 [[package]] 1564 name = "unicode-script" 1565 - version = "0.5.4" 1566 source = "registry+https://github.com/rust-lang/crates.io-index" 1567 - checksum = "58dd944fd05f2f0b5c674917aea8a4df6af84f2d8de3fe8d988b95d28fb8fb09" 1568 1569 [[package]] 1570 name = "unicode-vo" ··· 1580 1581 [[package]] 1582 name = "url" 1583 - version = "2.2.2" 1584 source = "registry+https://github.com/rust-lang/crates.io-index" 1585 - checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 1586 dependencies = [ 1587 "form_urlencoded", 1588 "idna", 1589 - "matches", 1590 "percent-encoding", 1591 ] 1592 ··· 1596 source = "registry+https://github.com/rust-lang/crates.io-index" 1597 checksum = "8b5b7c2b30845b3348c067ca3d09e20cc6e327c288f0ca4c48698712abf432e9" 1598 dependencies = [ 1599 - "base64", 1600 "data-url", 1601 "flate2", 1602 "imagesize", ··· 1627 ] 1628 1629 [[package]] 1630 name = "version_check" 1631 version = "0.9.4" 1632 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1644 1645 [[package]] 1646 name = "wasi" 1647 - version = "0.10.0+wasi-snapshot-preview1" 1648 - source = "registry+https://github.com/rust-lang/crates.io-index" 1649 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1650 - 1651 - [[package]] 1652 - name = "wasi" 1653 version = "0.11.0+wasi-snapshot-preview1" 1654 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1656 1657 [[package]] 1658 name = "wasm-bindgen" 1659 - version = "0.2.82" 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 - checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 1662 dependencies = [ 1663 "cfg-if", 1664 "wasm-bindgen-macro", ··· 1666 1667 [[package]] 1668 name = "wasm-bindgen-backend" 1669 - version = "0.2.82" 1670 source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 1672 dependencies = [ 1673 "bumpalo", 1674 "log", 1675 "once_cell", 1676 "proc-macro2", 1677 "quote", 1678 - "syn", 1679 "wasm-bindgen-shared", 1680 ] 1681 1682 [[package]] 1683 name = "wasm-bindgen-futures" 1684 - version = "0.4.32" 1685 source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "fa76fb221a1f8acddf5b54ace85912606980ad661ac7a503b4570ffd3a624dad" 1687 dependencies = [ 1688 "cfg-if", 1689 "js-sys", ··· 1693 1694 [[package]] 1695 name = "wasm-bindgen-macro" 1696 - version = "0.2.82" 1697 source = "registry+https://github.com/rust-lang/crates.io-index" 1698 - checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 1699 dependencies = [ 1700 "quote", 1701 "wasm-bindgen-macro-support", ··· 1703 1704 [[package]] 1705 name = "wasm-bindgen-macro-support" 1706 - version = "0.2.82" 1707 source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 1709 dependencies = [ 1710 "proc-macro2", 1711 "quote", 1712 - "syn", 1713 "wasm-bindgen-backend", 1714 "wasm-bindgen-shared", 1715 ] 1716 1717 [[package]] 1718 name = "wasm-bindgen-shared" 1719 - version = "0.2.82" 1720 source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 1722 1723 [[package]] 1724 name = "web-sys" 1725 - version = "0.3.59" 1726 source = "registry+https://github.com/rust-lang/crates.io-index" 1727 - checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1" 1728 dependencies = [ 1729 "js-sys", 1730 "wasm-bindgen", ··· 1742 1743 [[package]] 1744 name = "webpki-roots" 1745 - version = "0.22.4" 1746 source = "registry+https://github.com/rust-lang/crates.io-index" 1747 - checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf" 1748 dependencies = [ 1749 "webpki", 1750 ] 1751 1752 [[package]] 1753 name = "weezl" 1754 - version = "0.1.6" 1755 source = "registry+https://github.com/rust-lang/crates.io-index" 1756 - checksum = "9c97e489d8f836838d497091de568cf16b117486d529ec5579233521065bd5e4" 1757 1758 [[package]] 1759 name = "wild" 1760 - version = "2.0.4" 1761 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "035793abb854745033f01a07647a79831eba29ec0be377205f2a25b0aa830020" 1763 dependencies = [ 1764 "glob", 1765 ] ··· 1797 1798 [[package]] 1799 name = "windows-sys" 1800 - version = "0.36.1" 1801 - source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 1803 - dependencies = [ 1804 - "windows_aarch64_msvc 0.36.1", 1805 - "windows_i686_gnu 0.36.1", 1806 - "windows_i686_msvc 0.36.1", 1807 - "windows_x86_64_gnu 0.36.1", 1808 - "windows_x86_64_msvc 0.36.1", 1809 - ] 1810 - 1811 - [[package]] 1812 - name = "windows-sys" 1813 version = "0.45.0" 1814 source = "registry+https://github.com/rust-lang/crates.io-index" 1815 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" ··· 1824 checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1825 dependencies = [ 1826 "windows_aarch64_gnullvm", 1827 - "windows_aarch64_msvc 0.42.2", 1828 - "windows_i686_gnu 0.42.2", 1829 - "windows_i686_msvc 0.42.2", 1830 - "windows_x86_64_gnu 0.42.2", 1831 "windows_x86_64_gnullvm", 1832 - "windows_x86_64_msvc 0.42.2", 1833 ] 1834 1835 [[package]] ··· 1840 1841 [[package]] 1842 name = "windows_aarch64_msvc" 1843 - version = "0.36.1" 1844 - source = "registry+https://github.com/rust-lang/crates.io-index" 1845 - checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 1846 - 1847 - [[package]] 1848 - name = "windows_aarch64_msvc" 1849 version = "0.42.2" 1850 source = "registry+https://github.com/rust-lang/crates.io-index" 1851 checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1852 - 1853 - [[package]] 1854 - name = "windows_i686_gnu" 1855 - version = "0.36.1" 1856 - source = "registry+https://github.com/rust-lang/crates.io-index" 1857 - checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 1858 1859 [[package]] 1860 name = "windows_i686_gnu" 1861 version = "0.42.2" 1862 source = "registry+https://github.com/rust-lang/crates.io-index" 1863 checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1864 - 1865 - [[package]] 1866 - name = "windows_i686_msvc" 1867 - version = "0.36.1" 1868 - source = "registry+https://github.com/rust-lang/crates.io-index" 1869 - checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 1870 1871 [[package]] 1872 name = "windows_i686_msvc" ··· 1876 1877 [[package]] 1878 name = "windows_x86_64_gnu" 1879 - version = "0.36.1" 1880 - source = "registry+https://github.com/rust-lang/crates.io-index" 1881 - checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 1882 - 1883 - [[package]] 1884 - name = "windows_x86_64_gnu" 1885 version = "0.42.2" 1886 source = "registry+https://github.com/rust-lang/crates.io-index" 1887 checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" ··· 1891 version = "0.42.2" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1894 - 1895 - [[package]] 1896 - name = "windows_x86_64_msvc" 1897 - version = "0.36.1" 1898 - source = "registry+https://github.com/rust-lang/crates.io-index" 1899 - checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 1900 1901 [[package]] 1902 name = "windows_x86_64_msvc"
··· 10 11 [[package]] 12 name = "agg" 13 + version = "1.4.1" 14 dependencies = [ 15 "anyhow", 16 "avt", 17 + "clap 3.2.23", 18 "env_logger", 19 "fontdb", 20 "fontdue", ··· 43 ] 44 45 [[package]] 46 + name = "ahash" 47 + version = "0.8.3" 48 + source = "registry+https://github.com/rust-lang/crates.io-index" 49 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 50 + dependencies = [ 51 + "cfg-if", 52 + "once_cell", 53 + "version_check", 54 + ] 55 + 56 + [[package]] 57 name = "aho-corasick" 58 + version = "0.7.20" 59 source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 61 dependencies = [ 62 "memchr", 63 ] 64 65 [[package]] 66 + name = "anstream" 67 + version = "0.2.6" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "342258dd14006105c2b75ab1bd7543a03bdf0cfc94383303ac212a04939dff6f" 70 + dependencies = [ 71 + "anstyle", 72 + "anstyle-parse", 73 + "anstyle-wincon", 74 + "concolor-override", 75 + "concolor-query", 76 + "is-terminal", 77 + "utf8parse", 78 + ] 79 + 80 + [[package]] 81 + name = "anstyle" 82 + version = "0.3.5" 83 + source = "registry+https://github.com/rust-lang/crates.io-index" 84 + checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2" 85 + 86 + [[package]] 87 + name = "anstyle-parse" 88 + version = "0.1.1" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "a7d1bb534e9efed14f3e5f44e7dd1a4f709384023a4165199a4241e18dff0116" 91 + dependencies = [ 92 + "utf8parse", 93 + ] 94 + 95 + [[package]] 96 + name = "anstyle-wincon" 97 + version = "0.2.0" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + checksum = "c3127af6145b149f3287bb9a0d10ad9c5692dba8c53ad48285e5bec4063834fa" 100 + dependencies = [ 101 + "anstyle", 102 + "windows-sys", 103 + ] 104 + 105 + [[package]] 106 name = "anyhow" 107 + version = "1.0.70" 108 source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 110 111 [[package]] 112 name = "arrayref" 113 + version = "0.3.7" 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 116 117 [[package]] 118 name = "arrayvec" ··· 122 123 [[package]] 124 name = "async-compression" 125 + version = "0.3.15" 126 source = "registry+https://github.com/rust-lang/crates.io-index" 127 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 128 dependencies = [ 129 "flate2", 130 "futures-core", ··· 139 source = "registry+https://github.com/rust-lang/crates.io-index" 140 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 141 dependencies = [ 142 + "hermit-abi 0.1.19", 143 "libc", 144 "winapi", 145 ] ··· 152 153 [[package]] 154 name = "avt" 155 + version = "0.6.0" 156 + source = "git+https://github.com/asciinema/avt.git?tag=v0.6.0#168627cf65999720a6fce122e3419da0147d9296" 157 dependencies = [ 158 "rgb", 159 "serde", ··· 161 162 [[package]] 163 name = "base64" 164 + version = "0.13.1" 165 + source = "registry+https://github.com/rust-lang/crates.io-index" 166 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 167 + 168 + [[package]] 169 + name = "base64" 170 + version = "0.21.0" 171 source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 173 174 [[package]] 175 name = "bitflags" ··· 179 180 [[package]] 181 name = "bumpalo" 182 + version = "3.12.0" 183 source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 185 186 [[package]] 187 name = "bytemuck" ··· 191 192 [[package]] 193 name = "bytes" 194 + version = "1.4.0" 195 source = "registry+https://github.com/rust-lang/crates.io-index" 196 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 197 198 [[package]] 199 name = "cc" 200 + version = "1.0.79" 201 source = "registry+https://github.com/rust-lang/crates.io-index" 202 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 203 204 [[package]] 205 name = "cfg-if" ··· 209 210 [[package]] 211 name = "clap" 212 + version = "3.2.23" 213 source = "registry+https://github.com/rust-lang/crates.io-index" 214 + checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" 215 dependencies = [ 216 "atty", 217 "bitflags", 218 "clap_derive", 219 + "clap_lex 0.2.4", 220 "indexmap", 221 "once_cell", 222 "strsim", ··· 225 ] 226 227 [[package]] 228 + name = "clap" 229 + version = "4.2.1" 230 + source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "046ae530c528f252094e4a77886ee1374437744b2bff1497aa898bbddbbb29b3" 232 + dependencies = [ 233 + "clap_builder", 234 + ] 235 + 236 + [[package]] 237 + name = "clap_builder" 238 + version = "4.2.1" 239 + source = "registry+https://github.com/rust-lang/crates.io-index" 240 + checksum = "223163f58c9a40c3b0a43e1c4b50a9ce09f007ea2cb1ec258a687945b4b7929f" 241 + dependencies = [ 242 + "anstream", 243 + "anstyle", 244 + "bitflags", 245 + "clap_lex 0.4.1", 246 + "once_cell", 247 + "strsim", 248 + ] 249 + 250 + [[package]] 251 name = "clap_derive" 252 + version = "3.2.18" 253 source = "registry+https://github.com/rust-lang/crates.io-index" 254 + checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" 255 dependencies = [ 256 "heck", 257 "proc-macro-error", 258 "proc-macro2", 259 "quote", 260 + "syn 1.0.109", 261 ] 262 263 [[package]] 264 name = "clap_lex" 265 + version = "0.2.4" 266 source = "registry+https://github.com/rust-lang/crates.io-index" 267 + checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 268 dependencies = [ 269 "os_str_bytes", 270 ] 271 272 [[package]] 273 + name = "clap_lex" 274 + version = "0.4.1" 275 + source = "registry+https://github.com/rust-lang/crates.io-index" 276 + checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" 277 + 278 + [[package]] 279 name = "color_quant" 280 version = "1.1.0" 281 source = "registry+https://github.com/rust-lang/crates.io-index" 282 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 283 284 [[package]] 285 + name = "concolor-override" 286 + version = "1.0.0" 287 + source = "registry+https://github.com/rust-lang/crates.io-index" 288 + checksum = "a855d4a1978dc52fb0536a04d384c2c0c1aa273597f08b77c8c4d3b2eec6037f" 289 + 290 + [[package]] 291 + name = "concolor-query" 292 + version = "0.3.3" 293 + source = "registry+https://github.com/rust-lang/crates.io-index" 294 + checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf" 295 + dependencies = [ 296 + "windows-sys", 297 + ] 298 + 299 + [[package]] 300 name = "crc32fast" 301 version = "1.3.2" 302 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 307 308 [[package]] 309 name = "crossbeam-channel" 310 + version = "0.5.7" 311 source = "registry+https://github.com/rust-lang/crates.io-index" 312 + checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" 313 dependencies = [ 314 "cfg-if", 315 "crossbeam-utils", ··· 317 318 [[package]] 319 name = "crossbeam-deque" 320 + version = "0.8.3" 321 source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 323 dependencies = [ 324 "cfg-if", 325 "crossbeam-epoch", ··· 328 329 [[package]] 330 name = "crossbeam-epoch" 331 + version = "0.9.14" 332 source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 334 dependencies = [ 335 "autocfg", 336 "cfg-if", 337 "crossbeam-utils", 338 "memoffset", 339 "scopeguard", 340 ] 341 342 [[package]] 343 name = "crossbeam-utils" 344 + version = "0.8.15" 345 source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 347 dependencies = [ 348 "cfg-if", 349 ] 350 351 [[package]] ··· 371 dependencies = [ 372 "libc", 373 "redox_users", 374 + "windows-sys", 375 ] 376 377 [[package]] 378 name = "dunce" 379 + version = "1.0.3" 380 source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c" 382 383 [[package]] 384 name = "either" 385 + version = "1.8.1" 386 source = "registry+https://github.com/rust-lang/crates.io-index" 387 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 388 389 [[package]] 390 name = "encoding_rs" 391 + version = "0.8.32" 392 source = "registry+https://github.com/rust-lang/crates.io-index" 393 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 394 dependencies = [ 395 "cfg-if", 396 ] 397 398 [[package]] 399 name = "env_logger" 400 + version = "0.10.0" 401 source = "registry+https://github.com/rust-lang/crates.io-index" 402 + checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 403 dependencies = [ 404 "humantime", 405 + "is-terminal", 406 "log", 407 "regex", 408 "termcolor", 409 ] 410 411 [[package]] 412 + name = "errno" 413 + version = "0.3.0" 414 + source = "registry+https://github.com/rust-lang/crates.io-index" 415 + checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" 416 + dependencies = [ 417 + "errno-dragonfly", 418 + "libc", 419 + "windows-sys", 420 + ] 421 + 422 + [[package]] 423 + name = "errno-dragonfly" 424 + version = "0.1.2" 425 + source = "registry+https://github.com/rust-lang/crates.io-index" 426 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 427 + dependencies = [ 428 + "cc", 429 + "libc", 430 + ] 431 + 432 + [[package]] 433 name = "fallible_collections" 434 + version = "0.4.7" 435 source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "9acf77205554f3cfeca94a4b910e159ad9824e8c2d164de02b3f12495cc1074d" 437 dependencies = [ 438 + "hashbrown 0.13.2", 439 ] 440 441 [[package]] 442 name = "flate2" 443 + version = "1.0.25" 444 source = "registry+https://github.com/rust-lang/crates.io-index" 445 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 446 dependencies = [ 447 "crc32fast", 448 + "miniz_oxide 0.6.2", 449 ] 450 451 [[package]] ··· 462 463 [[package]] 464 name = "fontconfig-parser" 465 + version = "0.5.2" 466 source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "4ab2e12762761366dcb876ab8b6e0cfa4797ddcd890575919f008b5ba655672a" 468 dependencies = [ 469 + "roxmltree 0.18.0", 470 ] 471 472 [[package]] ··· 493 494 [[package]] 495 name = "form_urlencoded" 496 + version = "1.1.0" 497 source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 499 dependencies = [ 500 "percent-encoding", 501 ] 502 503 [[package]] 504 name = "futures-channel" 505 + version = "0.3.27" 506 source = "registry+https://github.com/rust-lang/crates.io-index" 507 + checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac" 508 dependencies = [ 509 "futures-core", 510 ] 511 512 [[package]] 513 name = "futures-core" 514 + version = "0.3.27" 515 source = "registry+https://github.com/rust-lang/crates.io-index" 516 + checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd" 517 518 [[package]] 519 name = "futures-io" 520 + version = "0.3.27" 521 source = "registry+https://github.com/rust-lang/crates.io-index" 522 + checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91" 523 524 [[package]] 525 name = "futures-sink" 526 + version = "0.3.27" 527 source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2" 529 530 [[package]] 531 name = "futures-task" 532 + version = "0.3.27" 533 source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879" 535 536 [[package]] 537 name = "futures-util" 538 + version = "0.3.27" 539 source = "registry+https://github.com/rust-lang/crates.io-index" 540 + checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab" 541 dependencies = [ 542 "futures-core", 543 "futures-io", ··· 550 551 [[package]] 552 name = "getrandom" 553 + version = "0.2.8" 554 source = "registry+https://github.com/rust-lang/crates.io-index" 555 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 556 dependencies = [ 557 "cfg-if", 558 "libc", 559 + "wasi", 560 ] 561 562 [[package]] 563 name = "gif" 564 + version = "0.11.4" 565 source = "registry+https://github.com/rust-lang/crates.io-index" 566 + checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06" 567 + dependencies = [ 568 + "color_quant", 569 + "weezl", 570 + ] 571 + 572 + [[package]] 573 + name = "gif" 574 + version = "0.12.0" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 577 dependencies = [ 578 "color_quant", 579 "weezl", ··· 581 582 [[package]] 583 name = "gif-dispose" 584 + version = "4.0.0" 585 source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "a40dfdf5be59e0cbbf77cb7c6a91a18ee6d398b70fc54ad900e2bcba1860cb50" 587 dependencies = [ 588 + "gif 0.12.0", 589 "imgref", 590 "rgb", 591 ] 592 593 [[package]] 594 name = "gifsicle" 595 + version = "1.93.0" 596 source = "registry+https://github.com/rust-lang/crates.io-index" 597 + checksum = "0d2c35b9670c2a3313343ce54d00669ca18a8236fe727f52e0cf8c5a77acac07" 598 dependencies = [ 599 "cc", 600 "libc", ··· 602 603 [[package]] 604 name = "gifski" 605 + version = "1.10.3" 606 source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "fd5981f4673c4da9f816e141d0baef1ca4f9008fc31573b2d19984c390c46442" 608 dependencies = [ 609 + "clap 4.2.1", 610 "crossbeam-channel", 611 "crossbeam-utils", 612 "dunce", 613 + "gif 0.12.0", 614 "gif-dispose", 615 "gifsicle", 616 "imagequant", ··· 623 "quick-error", 624 "resize", 625 "rgb", 626 + "scopeguard", 627 "wild", 628 ] 629 630 [[package]] 631 name = "glob" 632 + version = "0.3.1" 633 source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 635 636 [[package]] 637 name = "h2" 638 + version = "0.3.16" 639 source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 641 dependencies = [ 642 "bytes", 643 "fnv", ··· 658 source = "registry+https://github.com/rust-lang/crates.io-index" 659 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 660 dependencies = [ 661 + "ahash 0.7.6", 662 ] 663 664 [[package]] 665 name = "hashbrown" 666 + version = "0.12.3" 667 source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 669 + 670 + [[package]] 671 + name = "hashbrown" 672 + version = "0.13.2" 673 + source = "registry+https://github.com/rust-lang/crates.io-index" 674 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 675 dependencies = [ 676 + "ahash 0.8.3", 677 ] 678 679 [[package]] 680 name = "heck" 681 + version = "0.4.1" 682 source = "registry+https://github.com/rust-lang/crates.io-index" 683 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 684 685 [[package]] 686 name = "hermit-abi" ··· 692 ] 693 694 [[package]] 695 + name = "hermit-abi" 696 + version = "0.2.6" 697 + source = "registry+https://github.com/rust-lang/crates.io-index" 698 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 699 + dependencies = [ 700 + "libc", 701 + ] 702 + 703 + [[package]] 704 + name = "hermit-abi" 705 + version = "0.3.1" 706 + source = "registry+https://github.com/rust-lang/crates.io-index" 707 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 708 + 709 + [[package]] 710 name = "http" 711 + version = "0.2.9" 712 source = "registry+https://github.com/rust-lang/crates.io-index" 713 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 714 dependencies = [ 715 "bytes", 716 "fnv", ··· 730 731 [[package]] 732 name = "httparse" 733 + version = "1.8.0" 734 source = "registry+https://github.com/rust-lang/crates.io-index" 735 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 736 737 [[package]] 738 name = "httpdate" ··· 748 749 [[package]] 750 name = "hyper" 751 + version = "0.14.25" 752 source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" 754 dependencies = [ 755 "bytes", 756 "futures-channel", ··· 772 773 [[package]] 774 name = "hyper-rustls" 775 + version = "0.23.2" 776 source = "registry+https://github.com/rust-lang/crates.io-index" 777 + checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 778 dependencies = [ 779 "http", 780 "hyper", ··· 785 786 [[package]] 787 name = "idna" 788 + version = "0.3.0" 789 source = "registry+https://github.com/rust-lang/crates.io-index" 790 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 791 dependencies = [ 792 "unicode-bidi", 793 "unicode-normalization", 794 ] 795 796 [[package]] 797 name = "imagequant" 798 + version = "4.1.1" 799 source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "f332f82fc531b53cffa3181c14f7beb5b6c33932d68bb0c2fa4fd583553fca64" 801 dependencies = [ 802 "arrayvec", 803 "noisy_float", ··· 816 817 [[package]] 818 name = "imgref" 819 + version = "1.9.4" 820 source = "registry+https://github.com/rust-lang/crates.io-index" 821 + checksum = "b2cf49df1085dcfb171460e4592597b84abe50d900fb83efb6e41b20fefd6c2c" 822 823 [[package]] 824 name = "indexmap" 825 + version = "1.9.3" 826 source = "registry+https://github.com/rust-lang/crates.io-index" 827 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 828 dependencies = [ 829 "autocfg", 830 + "hashbrown 0.12.3", 831 + ] 832 + 833 + [[package]] 834 + name = "io-lifetimes" 835 + version = "1.0.9" 836 + source = "registry+https://github.com/rust-lang/crates.io-index" 837 + checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb" 838 + dependencies = [ 839 + "hermit-abi 0.3.1", 840 + "libc", 841 + "windows-sys", 842 ] 843 844 [[package]] 845 name = "ipnet" 846 + version = "2.7.2" 847 source = "registry+https://github.com/rust-lang/crates.io-index" 848 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 849 + 850 + [[package]] 851 + name = "is-terminal" 852 + version = "0.4.6" 853 + source = "registry+https://github.com/rust-lang/crates.io-index" 854 + checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" 855 + dependencies = [ 856 + "hermit-abi 0.3.1", 857 + "io-lifetimes", 858 + "rustix", 859 + "windows-sys", 860 + ] 861 862 [[package]] 863 name = "itoa" 864 + version = "1.0.6" 865 source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 867 868 [[package]] 869 name = "jpeg-decoder" ··· 873 874 [[package]] 875 name = "js-sys" 876 + version = "0.3.61" 877 source = "registry+https://github.com/rust-lang/crates.io-index" 878 + checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 879 dependencies = [ 880 "wasm-bindgen", 881 ] ··· 890 ] 891 892 [[package]] 893 + name = "libc" 894 + version = "0.2.140" 895 source = "registry+https://github.com/rust-lang/crates.io-index" 896 + checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" 897 898 [[package]] 899 + name = "linux-raw-sys" 900 + version = "0.3.0" 901 source = "registry+https://github.com/rust-lang/crates.io-index" 902 + checksum = "cd550e73688e6d578f0ac2119e32b797a327631a42f9433e59d02e139c8df60d" 903 904 [[package]] 905 name = "lodepng" 906 + version = "3.7.2" 907 source = "registry+https://github.com/rust-lang/crates.io-index" 908 + checksum = "f0ad39f75bbaa4b10bb6f2316543632a8046a5bcf9c785488d79720b21f044f8" 909 dependencies = [ 910 "crc32fast", 911 "fallible_collections", ··· 933 ] 934 935 [[package]] 936 name = "memchr" 937 version = "2.5.0" 938 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 940 941 [[package]] 942 name = "memmap2" 943 + version = "0.5.10" 944 source = "registry+https://github.com/rust-lang/crates.io-index" 945 + checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" 946 dependencies = [ 947 "libc", 948 ] 949 950 [[package]] 951 name = "memoffset" 952 + version = "0.8.0" 953 source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 955 dependencies = [ 956 "autocfg", 957 ] 958 959 [[package]] 960 name = "mime" 961 + version = "0.3.17" 962 source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 964 + 965 + [[package]] 966 + name = "miniz_oxide" 967 + version = "0.5.4" 968 + source = "registry+https://github.com/rust-lang/crates.io-index" 969 + checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 970 + dependencies = [ 971 + "adler", 972 + ] 973 974 [[package]] 975 name = "miniz_oxide" 976 + version = "0.6.2" 977 source = "registry+https://github.com/rust-lang/crates.io-index" 978 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 979 dependencies = [ 980 "adler", 981 ] 982 983 [[package]] 984 name = "mio" 985 + version = "0.8.6" 986 source = "registry+https://github.com/rust-lang/crates.io-index" 987 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 988 dependencies = [ 989 "libc", 990 "log", 991 + "wasi", 992 + "windows-sys", 993 ] 994 995 [[package]] ··· 1018 1019 [[package]] 1020 name = "num_cpus" 1021 + version = "1.15.0" 1022 source = "registry+https://github.com/rust-lang/crates.io-index" 1023 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1024 dependencies = [ 1025 + "hermit-abi 0.2.6", 1026 "libc", 1027 ] 1028 1029 [[package]] 1030 name = "once_cell" 1031 + version = "1.17.1" 1032 source = "registry+https://github.com/rust-lang/crates.io-index" 1033 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1034 1035 [[package]] 1036 name = "os_str_bytes" 1037 + version = "6.5.0" 1038 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" 1040 1041 [[package]] 1042 name = "pbr" 1043 + version = "1.1.1" 1044 source = "registry+https://github.com/rust-lang/crates.io-index" 1045 + checksum = "ed5827dfa0d69b6c92493d6c38e633bbaa5937c153d0d7c28bf12313f8c6d514" 1046 dependencies = [ 1047 "crossbeam-channel", 1048 "libc", 1049 "winapi", 1050 ] 1051 1052 [[package]] 1053 name = "percent-encoding" 1054 + version = "2.2.0" 1055 source = "registry+https://github.com/rust-lang/crates.io-index" 1056 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1057 1058 [[package]] 1059 name = "pico-args" ··· 1082 "bitflags", 1083 "crc32fast", 1084 "flate2", 1085 + "miniz_oxide 0.5.4", 1086 ] 1087 1088 [[package]] ··· 1094 "proc-macro-error-attr", 1095 "proc-macro2", 1096 "quote", 1097 + "syn 1.0.109", 1098 "version_check", 1099 ] 1100 ··· 1111 1112 [[package]] 1113 name = "proc-macro2" 1114 + version = "1.0.54" 1115 source = "registry+https://github.com/rust-lang/crates.io-index" 1116 + checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534" 1117 dependencies = [ 1118 "unicode-ident", 1119 ] ··· 1126 1127 [[package]] 1128 name = "quote" 1129 + version = "1.0.26" 1130 source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 1132 dependencies = [ 1133 "proc-macro2", 1134 ] 1135 1136 [[package]] 1137 name = "rayon" 1138 + version = "1.7.0" 1139 source = "registry+https://github.com/rust-lang/crates.io-index" 1140 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 1141 dependencies = [ 1142 "either", 1143 "rayon-core", 1144 ] 1145 1146 [[package]] 1147 name = "rayon-core" 1148 + version = "1.11.0" 1149 source = "registry+https://github.com/rust-lang/crates.io-index" 1150 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 1151 dependencies = [ 1152 "crossbeam-channel", 1153 "crossbeam-deque", ··· 1183 1184 [[package]] 1185 name = "regex" 1186 + version = "1.7.3" 1187 source = "registry+https://github.com/rust-lang/crates.io-index" 1188 + checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 1189 dependencies = [ 1190 "aho-corasick", 1191 "memchr", ··· 1194 1195 [[package]] 1196 name = "regex-syntax" 1197 + version = "0.6.29" 1198 source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1200 1201 [[package]] 1202 name = "reqwest" 1203 + version = "0.11.16" 1204 source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 1206 dependencies = [ 1207 "async-compression", 1208 + "base64 0.21.0", 1209 "bytes", 1210 "encoding_rs", 1211 "futures-core", ··· 1217 "hyper-rustls", 1218 "ipnet", 1219 "js-sys", 1220 "log", 1221 "mime", 1222 + "once_cell", 1223 "percent-encoding", 1224 "pin-project-lite", 1225 "rustls", ··· 1255 source = "registry+https://github.com/rust-lang/crates.io-index" 1256 checksum = "c115863f2d3621999cf187e318bc92b16402dfeff6a48c74df700d77381394c1" 1257 dependencies = [ 1258 + "gif 0.11.4", 1259 "jpeg-decoder", 1260 "log", 1261 "pico-args", ··· 1270 1271 [[package]] 1272 name = "rgb" 1273 + version = "0.8.36" 1274 source = "registry+https://github.com/rust-lang/crates.io-index" 1275 + checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" 1276 dependencies = [ 1277 "bytemuck", 1278 ] ··· 1294 1295 [[package]] 1296 name = "roxmltree" 1297 + version = "0.15.1" 1298 source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + checksum = "6b9de9831a129b122e7e61f242db509fa9d0838008bf0b29bb0624669edfe48a" 1300 dependencies = [ 1301 "xmlparser", 1302 ] 1303 1304 [[package]] 1305 name = "roxmltree" 1306 + version = "0.18.0" 1307 source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8" 1309 dependencies = [ 1310 "xmlparser", 1311 ] 1312 1313 [[package]] 1314 + name = "rustix" 1315 + version = "0.37.5" 1316 + source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + checksum = "0e78cc525325c06b4a7ff02db283472f3c042b7ff0c391f96c6d5ac6f4f91b75" 1318 + dependencies = [ 1319 + "bitflags", 1320 + "errno", 1321 + "io-lifetimes", 1322 + "libc", 1323 + "linux-raw-sys", 1324 + "windows-sys", 1325 + ] 1326 + 1327 + [[package]] 1328 name = "rustls" 1329 + version = "0.20.8" 1330 source = "registry+https://github.com/rust-lang/crates.io-index" 1331 + checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 1332 dependencies = [ 1333 "log", 1334 "ring", ··· 1338 1339 [[package]] 1340 name = "rustls-pemfile" 1341 + version = "1.0.2" 1342 source = "registry+https://github.com/rust-lang/crates.io-index" 1343 + checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 1344 dependencies = [ 1345 + "base64 0.21.0", 1346 ] 1347 1348 [[package]] ··· 1363 1364 [[package]] 1365 name = "ryu" 1366 + version = "1.0.13" 1367 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1369 1370 [[package]] 1371 name = "scopeguard" ··· 1385 1386 [[package]] 1387 name = "serde" 1388 + version = "1.0.159" 1389 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" 1391 dependencies = [ 1392 "serde_derive", 1393 ] 1394 1395 [[package]] 1396 name = "serde_derive" 1397 + version = "1.0.159" 1398 source = "registry+https://github.com/rust-lang/crates.io-index" 1399 + checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" 1400 dependencies = [ 1401 "proc-macro2", 1402 "quote", 1403 + "syn 2.0.11", 1404 ] 1405 1406 [[package]] 1407 name = "serde_json" 1408 + version = "1.0.95" 1409 source = "registry+https://github.com/rust-lang/crates.io-index" 1410 + checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" 1411 dependencies = [ 1412 "itoa", 1413 "ryu", ··· 1452 1453 [[package]] 1454 name = "slab" 1455 + version = "0.4.8" 1456 source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1458 dependencies = [ 1459 "autocfg", 1460 ] 1461 1462 [[package]] 1463 name = "smallvec" 1464 + version = "1.10.0" 1465 source = "registry+https://github.com/rust-lang/crates.io-index" 1466 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1467 1468 [[package]] 1469 name = "socket2" 1470 + version = "0.4.9" 1471 source = "registry+https://github.com/rust-lang/crates.io-index" 1472 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1473 dependencies = [ 1474 "libc", 1475 "winapi", ··· 1517 1518 [[package]] 1519 name = "syn" 1520 + version = "1.0.109" 1521 source = "registry+https://github.com/rust-lang/crates.io-index" 1522 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1523 + dependencies = [ 1524 + "proc-macro2", 1525 + "quote", 1526 + "unicode-ident", 1527 + ] 1528 + 1529 + [[package]] 1530 + name = "syn" 1531 + version = "2.0.11" 1532 + source = "registry+https://github.com/rust-lang/crates.io-index" 1533 + checksum = "21e3787bb71465627110e7d87ed4faaa36c1f61042ee67badb9e2ef173accc40" 1534 dependencies = [ 1535 "proc-macro2", 1536 "quote", ··· 1539 1540 [[package]] 1541 name = "termcolor" 1542 + version = "1.2.0" 1543 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1545 dependencies = [ 1546 "winapi-util", 1547 ] 1548 1549 [[package]] 1550 name = "textwrap" 1551 + version = "0.16.0" 1552 source = "registry+https://github.com/rust-lang/crates.io-index" 1553 + checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 1554 1555 [[package]] 1556 name = "thiserror" 1557 + version = "1.0.40" 1558 source = "registry+https://github.com/rust-lang/crates.io-index" 1559 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 1560 dependencies = [ 1561 "thiserror-impl", 1562 ] 1563 1564 [[package]] 1565 name = "thiserror-impl" 1566 + version = "1.0.40" 1567 source = "registry+https://github.com/rust-lang/crates.io-index" 1568 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 1569 dependencies = [ 1570 "proc-macro2", 1571 "quote", 1572 + "syn 2.0.11", 1573 ] 1574 1575 [[package]] 1576 name = "thread_local" 1577 + version = "1.1.7" 1578 source = "registry+https://github.com/rust-lang/crates.io-index" 1579 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1580 dependencies = [ 1581 + "cfg-if", 1582 "once_cell", 1583 ] 1584 1585 [[package]] ··· 1618 1619 [[package]] 1620 name = "tinyvec_macros" 1621 + version = "0.1.1" 1622 source = "registry+https://github.com/rust-lang/crates.io-index" 1623 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1624 1625 [[package]] 1626 name = "tokio" 1627 + version = "1.27.0" 1628 source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 1630 dependencies = [ 1631 "autocfg", 1632 "bytes", 1633 "libc", 1634 "mio", 1635 "num_cpus", 1636 "pin-project-lite", 1637 "socket2", 1638 + "windows-sys", 1639 ] 1640 1641 [[package]] ··· 1651 1652 [[package]] 1653 name = "tokio-util" 1654 + version = "0.7.7" 1655 source = "registry+https://github.com/rust-lang/crates.io-index" 1656 + checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 1657 dependencies = [ 1658 "bytes", 1659 "futures-core", ··· 1671 1672 [[package]] 1673 name = "tracing" 1674 + version = "0.1.37" 1675 source = "registry+https://github.com/rust-lang/crates.io-index" 1676 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 1677 dependencies = [ 1678 "cfg-if", 1679 "pin-project-lite", ··· 1682 1683 [[package]] 1684 name = "tracing-core" 1685 + version = "0.1.30" 1686 source = "registry+https://github.com/rust-lang/crates.io-index" 1687 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 1688 dependencies = [ 1689 "once_cell", 1690 ] 1691 1692 [[package]] 1693 name = "try-lock" 1694 + version = "0.2.4" 1695 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 1697 1698 [[package]] 1699 name = "ttf-parser" ··· 1709 1710 [[package]] 1711 name = "unicode-bidi" 1712 + version = "0.3.13" 1713 source = "registry+https://github.com/rust-lang/crates.io-index" 1714 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1715 1716 [[package]] 1717 name = "unicode-bidi-mirroring" ··· 1733 1734 [[package]] 1735 name = "unicode-ident" 1736 + version = "1.0.8" 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 1739 1740 [[package]] 1741 name = "unicode-normalization" 1742 + version = "0.1.22" 1743 source = "registry+https://github.com/rust-lang/crates.io-index" 1744 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1745 dependencies = [ 1746 "tinyvec", 1747 ] 1748 1749 [[package]] 1750 name = "unicode-script" 1751 + version = "0.5.5" 1752 source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc" 1754 1755 [[package]] 1756 name = "unicode-vo" ··· 1766 1767 [[package]] 1768 name = "url" 1769 + version = "2.3.1" 1770 source = "registry+https://github.com/rust-lang/crates.io-index" 1771 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 1772 dependencies = [ 1773 "form_urlencoded", 1774 "idna", 1775 "percent-encoding", 1776 ] 1777 ··· 1781 source = "registry+https://github.com/rust-lang/crates.io-index" 1782 checksum = "8b5b7c2b30845b3348c067ca3d09e20cc6e327c288f0ca4c48698712abf432e9" 1783 dependencies = [ 1784 + "base64 0.13.1", 1785 "data-url", 1786 "flate2", 1787 "imagesize", ··· 1812 ] 1813 1814 [[package]] 1815 + name = "utf8parse" 1816 + version = "0.2.1" 1817 + source = "registry+https://github.com/rust-lang/crates.io-index" 1818 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 1819 + 1820 + [[package]] 1821 name = "version_check" 1822 version = "0.9.4" 1823 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1835 1836 [[package]] 1837 name = "wasi" 1838 version = "0.11.0+wasi-snapshot-preview1" 1839 source = "registry+https://github.com/rust-lang/crates.io-index" 1840 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1841 1842 [[package]] 1843 name = "wasm-bindgen" 1844 + version = "0.2.84" 1845 source = "registry+https://github.com/rust-lang/crates.io-index" 1846 + checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 1847 dependencies = [ 1848 "cfg-if", 1849 "wasm-bindgen-macro", ··· 1851 1852 [[package]] 1853 name = "wasm-bindgen-backend" 1854 + version = "0.2.84" 1855 source = "registry+https://github.com/rust-lang/crates.io-index" 1856 + checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 1857 dependencies = [ 1858 "bumpalo", 1859 "log", 1860 "once_cell", 1861 "proc-macro2", 1862 "quote", 1863 + "syn 1.0.109", 1864 "wasm-bindgen-shared", 1865 ] 1866 1867 [[package]] 1868 name = "wasm-bindgen-futures" 1869 + version = "0.4.34" 1870 source = "registry+https://github.com/rust-lang/crates.io-index" 1871 + checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 1872 dependencies = [ 1873 "cfg-if", 1874 "js-sys", ··· 1878 1879 [[package]] 1880 name = "wasm-bindgen-macro" 1881 + version = "0.2.84" 1882 source = "registry+https://github.com/rust-lang/crates.io-index" 1883 + checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 1884 dependencies = [ 1885 "quote", 1886 "wasm-bindgen-macro-support", ··· 1888 1889 [[package]] 1890 name = "wasm-bindgen-macro-support" 1891 + version = "0.2.84" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 1894 dependencies = [ 1895 "proc-macro2", 1896 "quote", 1897 + "syn 1.0.109", 1898 "wasm-bindgen-backend", 1899 "wasm-bindgen-shared", 1900 ] 1901 1902 [[package]] 1903 name = "wasm-bindgen-shared" 1904 + version = "0.2.84" 1905 source = "registry+https://github.com/rust-lang/crates.io-index" 1906 + checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 1907 1908 [[package]] 1909 name = "web-sys" 1910 + version = "0.3.61" 1911 source = "registry+https://github.com/rust-lang/crates.io-index" 1912 + checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 1913 dependencies = [ 1914 "js-sys", 1915 "wasm-bindgen", ··· 1927 1928 [[package]] 1929 name = "webpki-roots" 1930 + version = "0.22.6" 1931 source = "registry+https://github.com/rust-lang/crates.io-index" 1932 + checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 1933 dependencies = [ 1934 "webpki", 1935 ] 1936 1937 [[package]] 1938 name = "weezl" 1939 + version = "0.1.7" 1940 source = "registry+https://github.com/rust-lang/crates.io-index" 1941 + checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb" 1942 1943 [[package]] 1944 name = "wild" 1945 + version = "2.1.0" 1946 source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "05b116685a6be0c52f5a103334cbff26db643826c7b3735fc0a3ba9871310a74" 1948 dependencies = [ 1949 "glob", 1950 ] ··· 1982 1983 [[package]] 1984 name = "windows-sys" 1985 version = "0.45.0" 1986 source = "registry+https://github.com/rust-lang/crates.io-index" 1987 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" ··· 1996 checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1997 dependencies = [ 1998 "windows_aarch64_gnullvm", 1999 + "windows_aarch64_msvc", 2000 + "windows_i686_gnu", 2001 + "windows_i686_msvc", 2002 + "windows_x86_64_gnu", 2003 "windows_x86_64_gnullvm", 2004 + "windows_x86_64_msvc", 2005 ] 2006 2007 [[package]] ··· 2012 2013 [[package]] 2014 name = "windows_aarch64_msvc" 2015 version = "0.42.2" 2016 source = "registry+https://github.com/rust-lang/crates.io-index" 2017 checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2018 2019 [[package]] 2020 name = "windows_i686_gnu" 2021 version = "0.42.2" 2022 source = "registry+https://github.com/rust-lang/crates.io-index" 2023 checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2024 2025 [[package]] 2026 name = "windows_i686_msvc" ··· 2030 2031 [[package]] 2032 name = "windows_x86_64_gnu" 2033 version = "0.42.2" 2034 source = "registry+https://github.com/rust-lang/crates.io-index" 2035 checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" ··· 2039 version = "0.42.2" 2040 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2042 2043 [[package]] 2044 name = "windows_x86_64_msvc"
+3 -3
pkgs/tools/misc/asciinema-agg/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "agg"; 5 - version = "1.4.0"; 6 7 src = fetchFromGitHub { 8 owner = "asciinema"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-QZtsL4siO/ydumHiJX9ely+04OKyEZ8ak/KFwDhU7q8="; 12 }; 13 14 cargoLock = { 15 lockFile = ./Cargo.lock; 16 outputHashes = { 17 - "avt-0.5.1" = "sha256-AhOhmWxrMCyEKSLU/CDOoyCS12wQqBIaEjZd6oUsKHU="; 18 }; 19 }; 20
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "agg"; 5 + version = "1.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "asciinema"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ozkC3jaM7Q0BKS7KrgN+sI6YU0996ioTgbrJ4uJ6/9E="; 12 }; 13 14 cargoLock = { 15 lockFile = ./Cargo.lock; 16 outputHashes = { 17 + "avt-0.6.0" = "sha256-JA1Ln90Pew6m5YOZp8weOC9JdKJqjFG0PDPNL2kDWUc="; 18 }; 19 }; 20
+3 -3
pkgs/tools/misc/krapslog/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "krapslog"; 5 - version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "acj"; 9 repo = "krapslog-rs"; 10 rev = version; 11 - sha256 = "sha256-GSjS/6wetm3kHXdGyeenzALZ3tVi7BMM/GLS1ZhMQas="; 12 }; 13 14 - cargoHash = "sha256-dgbi0mUI8WqqXF1VNOTbHuCKcvb4B18/1vBlJZ8Jivs="; 15 16 buildInputs = lib.optional stdenv.isDarwin libiconv; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "krapslog"; 5 + version = "0.5.1"; 6 7 src = fetchFromGitHub { 8 owner = "acj"; 9 repo = "krapslog-rs"; 10 rev = version; 11 + sha256 = "sha256-zBtoKU9OHo1hyCgyQVAb3fsEW/IHwISht8VAss7LLq4="; 12 }; 13 14 + cargoHash = "sha256-gZr79VmvZrGglF6aC6j2c45ueJytgUslzBT5fyM3/V8="; 15 16 buildInputs = lib.optional stdenv.isDarwin libiconv; 17
+2 -2
pkgs/tools/networking/dnstwist/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "dnstwist"; 8 - version = "20230402"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = "elceef"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-WZj33QpiRo4C1p18Y/S6YQtCu7154w78HQZQsxV7QJ4="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "dnstwist"; 8 + version = "20230413"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = "elceef"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-YYERI+GNRP2wGWhYAy6m8QI4alFZniCSWp9/fdb9mpM="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 - version = "2023-04-11"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-LGC8AK6e0zhl7jOTSirwv7ZSfVveqNRhM/+afcMmnHU="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 + version = "2023-04-13"; 10 11 src = fetchFromGitLab { 12 owner = "exploit-database"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-TjBU2yQNKS2AknCAAaBgyvRqKQ2N1tjBK1uyzchZoP4="; 16 }; 17 18 nativeBuildInputs = [
+2 -5
pkgs/top-level/java-packages.nix
··· 34 package = if stdenv.isLinux 35 then package-linux 36 else package-darwin; 37 - in rec { 38 inherit package-linux package-darwin; 39 40 jdk-hotspot = callPackage package.jdk-hotspot {}; ··· 66 headless = openjdk.override { headless = true; }; 67 }; 68 69 - openjdkDarwinMissing = version: 70 - abort "OpenJDK ${builtins.toString version} is currently not supported on Darwin by nixpkgs."; 71 - 72 in rec { 73 - 74 adoptopenjdk-8 = mkAdoptopenjdk 75 ../development/compilers/adoptopenjdk-bin/jdk8-linux.nix 76 ../development/compilers/adoptopenjdk-bin/jdk8-darwin.nix; ··· 110 openjdk13-bootstrap = mkBootstrap adoptopenjdk-13 111 ../development/compilers/openjdk/12.nix 112 (bootstrapArgs // { 113 /* build segfaults with gcc9 or newer, so use gcc8 like Debian does */ 114 stdenv = gcc8Stdenv; 115 });
··· 34 package = if stdenv.isLinux 35 then package-linux 36 else package-darwin; 37 + in { 38 inherit package-linux package-darwin; 39 40 jdk-hotspot = callPackage package.jdk-hotspot {}; ··· 66 headless = openjdk.override { headless = true; }; 67 }; 68 69 in rec { 70 adoptopenjdk-8 = mkAdoptopenjdk 71 ../development/compilers/adoptopenjdk-bin/jdk8-linux.nix 72 ../development/compilers/adoptopenjdk-bin/jdk8-darwin.nix; ··· 106 openjdk13-bootstrap = mkBootstrap adoptopenjdk-13 107 ../development/compilers/openjdk/12.nix 108 (bootstrapArgs // { 109 + inherit openjdk11-bootstrap; 110 /* build segfaults with gcc9 or newer, so use gcc8 like Debian does */ 111 stdenv = gcc8Stdenv; 112 });
+1 -1
pkgs/top-level/python-packages.nix
··· 4131 4132 gpgme = toPythonModule (pkgs.gpgme.override { 4133 pythonSupport = true; 4134 - inherit python; 4135 }); 4136 4137 gphoto2 = callPackage ../development/python-modules/gphoto2 { };
··· 4131 4132 gpgme = toPythonModule (pkgs.gpgme.override { 4133 pythonSupport = true; 4134 + python3 = python; 4135 }); 4136 4137 gphoto2 = callPackage ../development/python-modules/gphoto2 { };