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

Conflicts:
pkgs/development/compilers/llvm/common/default.nix

Changed files
+1454 -922
nixos
doc
manual
release-notes
modules
programs
wayland
services
blockchain
ethereum
hardware
logging
networking
web-servers
tests
pkgs
applications
audio
soundsource
editors
vim
plugins
networking
cloudflared
cluster
tanka
feedreaders
instant-messengers
signal-desktop
by-name
as
assemblyscript
bi
bitrise
bl
bluemap
ef
go
go-ethereum
goofcord
gr
is
isponsorblocktv
li
limine
md
mdbook-alerts
me
metacubexd
mi
mistral-rs
na
navidrome
pl
qu
quill-log
ry
ryujinx
sr
sw
swift-quit
wa
waybar
data
themes
whitesur-kde
development
compilers
lua-modules
python-modules
aioopenexchangerates
async-cache
hishel
oci
pyexploitdb
pysqueezebox
pytouchlinesl
pyytlounge
succulent
tencentcloud-sdk-python
teslajsonpy
textual-slider
tools
build-managers
gauge
plugins
dotnet
misc
grcov
parsing
spicy
os-specific
darwin
bartender
servers
monitoring
osrm-backend
sql
rqlite
shells
zsh
spaceship-prompt
tools
backup
znapzend
filesystems
mtools
ssdfs-utils
misc
esptool
interactsh
networking
haproxy
v2raya
package-management
nixpkgs-review
security
gnupg
ldeep
top-level
+2
nixos/doc/manual/release-notes/rl-2411.section.md
···
- `services.kubernetes.kubelet.clusterDns` now accepts a list of DNS resolvers rather than a single string, bringing the module more in line with the upstream Kubelet configuration schema.
+
- `bluemap` has changed the format used to store map tiles, and the database layout has been heavily modified. Upstream recommends a clean reinstallation: <https://github.com/BlueMap-Minecraft/BlueMap/releases/tag/v5.2>. Unless you are using an SQL storage backend, this should only entail deleting the contents of `config.services.bluemap.coreSettings.data` (defaults to `/var/lib/bluemap`) and `config.services.bluemap.webRoot` (defaults to `/var/lib/bluemap/web`).
+
- `wstunnel` has had a major version upgrade that entailed rewriting the program in Rust.
The module was updated to accommodate for breaking changes.
Breaking changes to the module API were minimised as much as possible,
+5 -1
nixos/modules/programs/wayland/waybar.nix
···
{
options.programs.waybar = {
enable = lib.mkEnableOption "waybar, a highly customizable Wayland bar for Sway and Wlroots based compositors";
-
package = lib.mkPackageOption pkgs "waybar" { };
+
package =
+
lib.mkPackageOption pkgs "waybar" { }
+
// lib.mkOption {
+
apply = pkg: pkg.override { systemdSupport = true; };
+
};
};
config = lib.mkIf cfg.enable {
+1 -1
nixos/modules/services/blockchain/ethereum/geth.nix
···
};
network = lib.mkOption {
-
type = lib.types.nullOr (lib.types.enum [ "goerli" "rinkeby" "yolov2" "ropsten" ]);
+
type = lib.types.nullOr (lib.types.enum [ "goerli" "holesky" "rinkeby" "yolov2" "ropsten" ]);
default = null;
description = "The network to connect to. Mainnet (null) is the default ethereum network.";
};
+2 -2
nixos/modules/services/hardware/upower.nix
···
percentageLow = lib.mkOption {
type = lib.types.ints.unsigned;
-
default = 10;
+
default = 20;
description = ''
When `usePercentageForPolicy` is
`true`, the levels at which UPower will consider the
···
percentageCritical = lib.mkOption {
type = lib.types.ints.unsigned;
-
default = 3;
+
default = 5;
description = ''
When `usePercentageForPolicy` is
`true`, the levels at which UPower will consider the
+5 -3
nixos/modules/services/logging/logrotate.nix
···
# hardening
CapabilityBoundingSet = [
"CAP_CHOWN"
+
"CAP_DAC_OVERRIDE"
+
"CAP_SETUID"
"CAP_SETGID"
];
DevicePolicy = "closed";
···
ProtectSystem = "full";
RestrictNamespaces = true;
RestrictRealtime = true;
-
RestrictSUIDSGID = true;
+
RestrictSUIDSGID = false; # can create sgid directories
SystemCallArchitectures = "native";
SystemCallFilter = [
-
"@system-service"
+
"@system-service @setuid"
"~@privileged @resources"
"@chown"
];
UMask = "0027";
} // lib.optionalAttrs (!cfg.allowNetworking) {
-
PrivateNetwork = true;
+
PrivateNetwork = true; # e.g. mail delivery
RestrictAddressFamilies = "none";
};
};
+6
nixos/modules/services/networking/networkmanager.nix
···
environment.etc = {
"NetworkManager/NetworkManager.conf".source = configFile;
+
+
# The networkmanager-l2tp plugin expects /etc/ipsec.secrets to include /etc/ipsec.d/ipsec.nm-l2tp.secrets;
+
# see https://github.com/NixOS/nixpkgs/issues/64965
+
"ipsec.secrets".text = ''
+
include ipsec.d/ipsec.nm-l2tp.secrets
+
'';
}
// builtins.listToAttrs (map
(pkg: nameValuePair "NetworkManager/${pkg.networkManagerPlugin}" {
+8 -11
nixos/modules/services/networking/strongswan.nix
···
let
inherit (builtins) toFile;
-
inherit (lib) concatMapStringsSep concatStringsSep mapAttrsToList
+
inherit (lib) concatMapStrings concatStringsSep mapAttrsToList
mkIf mkEnableOption mkOption types literalExpression optionalString;
cfg = config.services.strongswan;
-
ipsecSecrets = secrets: toFile "ipsec.secrets" (
-
concatMapStringsSep "\n" (f: "include ${f}") secrets
-
);
+
ipsecSecrets = secrets: concatMapStrings (f: "include ${f}\n") secrets;
ipsecConf = {setup, connections, ca}:
let
···
};
-
config = with cfg;
-
let
-
secretsFile = ipsecSecrets cfg.secrets;
-
in
-
mkIf enable
+
config = with cfg; mkIf enable
{
# here we should use the default strongswan ipsec.secrets and
# append to it (default one is empty so not a pb for now)
-
environment.etc."ipsec.secrets".source = secretsFile;
+
environment.etc."ipsec.secrets".text = ipsecSecrets cfg.secrets;
systemd.services.strongswan = {
description = "strongSwan IPSec Service";
···
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
environment = {
-
STRONGSWAN_CONF = strongswanConf { inherit setup connections ca secretsFile managePlugins enabledPlugins; };
+
STRONGSWAN_CONF = strongswanConf {
+
inherit setup connections ca managePlugins enabledPlugins;
+
secretsFile = "/etc/ipsec.secrets";
+
};
};
serviceConfig = {
ExecStart = "${pkgs.strongswan}/sbin/ipsec start --nofork";
+38 -6
nixos/modules/services/web-servers/bluemap.nix
···
(format.generate "${name}.conf" value))
cfg.maps);
+
addonsFolder = pkgs.linkFarm "addons"
+
(lib.attrsets.mapAttrs' (name: value: lib.nameValuePair "${name}.jar" value) cfg.addons);
+
storageFolder = pkgs.linkFarm "storage"
(lib.attrsets.mapAttrs' (name: value:
lib.nameValuePair "${name}.conf"
···
"core.conf" = coreConfig;
"webapp.conf" = webappConfig;
"webserver.conf" = webserverConfig;
-
"resourcepacks" = pkgs.linkFarm "resourcepacks" cfg.resourcepacks;
+
"packs" = pkgs.linkFarm "packs" cfg.resourcepacks;
+
"addons" = addonsFolder;
};
inherit (lib) mkOption;
in {
+
imports = [
+
(lib.mkRenamedOptionModule [ "services" "bluemap" "resourcepacks" ] [ "services" "bluemap" "packs" ])
+
];
+
options.services.bluemap = {
enable = lib.mkEnableOption "bluemap";
···
'';
};
+
addons = mkOption {
+
type = lib.types.attrsOf lib.types.pathInStore;
+
default = { };
+
description = ''
+
A set of jar addons to be loaded.
+
+
See <https://bluemap.bluecolored.de/3rdPartySupport.html> for a list of officially recognized addons.
+
'';
+
+
example = lib.literalExpression ''
+
{
+
blueBridge = ./blueBridge.jar;
+
blueBorder = pkgs.fetchurl {
+
url = "https://github.com/pop4959/BlueBorder/releases/download/1.1.1/BlueBorder-1.1.1.jar";
+
hash = "...";
+
};
+
}
+
'';
+
};
+
storage = mkOption {
type = lib.types.attrsOf (lib.types.submodule {
freeformType = format.type;
···
'';
};
-
resourcepacks = mkOption {
+
packs = mkOption {
type = lib.types.attrsOf lib.types.pathInStore;
default = { };
-
description = "A set of resourcepacks to use, loaded in alphabetical order";
+
description = ''
+
A set of resourcepacks, datapacks, and mods to extract resources from,
+
loaded in alphabetical order.
+
'';
};
};
···
"${cfg.host}" = {
root = config.services.bluemap.webRoot;
locations = {
-
"~* ^/maps/[^/]*/tiles/[^/]*.json$".extraConfig = ''
-
error_page 404 =200 /assets/emptyTile.json;
+
"@empty".return = "204";
+
+
"~* ^/maps/[^/]*/tiles/".extraConfig = ''
+
error_page 404 = @empty;
gzip_static always;
'';
-
"~* ^/maps/[^/]*/tiles/[^/]*.png$".tryFiles = "$uri =204";
};
};
};
+1 -1
nixos/tests/geth.nix
···
services.geth."testnet" = {
enable = true;
port = 30304;
-
network = "goerli";
+
network = "holesky";
http = {
enable = true;
port = 18545;
+19 -8
pkgs/applications/audio/eflite/default.nix pkgs/by-name/ef/eflite/package.nix
···
-
{ lib, stdenv, fetchurl, fetchpatch, flite, alsa-lib, debug ? false }:
+
{
+
lib,
+
stdenv,
+
fetchurl,
+
fetchpatch,
+
flite,
+
alsa-lib,
+
debug ? false,
+
}:
-
stdenv.mkDerivation rec {
+
stdenv.mkDerivation (finalAttrs: {
pname = "eflite";
version = "0.4.1";
src = fetchurl {
-
url = "https://sourceforge.net/projects/eflite/files/eflite/${version}/${pname}-${version}.tar.gz";
-
sha256 = "088p9w816s02s64grfs28gai3lnibzdjb9d1jwxzr8smbs2qbbci";
+
url = "mirror://sourceforge/eflite/eflite/${finalAttrs.version}/eflite-${finalAttrs.version}.tar.gz";
+
hash = "sha256-ka2FhV5Vo/w7l6GlJdtf0dIR1UNCu/yI0QJoExBPFyE=";
};
-
buildInputs = [ flite alsa-lib ];
+
buildInputs = [
+
flite
+
alsa-lib
+
];
configureFlags = [
-
"flite_dir=${flite}"
+
"flite_dir=${flite.dev}"
"--with-audio=alsa"
"--with-vox=cmu_us_kal16"
];
···
'';
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
-
maintainers = [ ];
+
maintainers = with lib.maintainers; [ bot-wxt1221 ];
mainProgram = "eflite";
};
-
}
+
})
pkgs/applications/audio/eflite/format.patch pkgs/by-name/ef/eflite/format.patch
+12 -8
pkgs/applications/audio/soundsource/default.nix
···
-
{ lib
-
, stdenvNoCC
-
, fetchurl
-
, unzip
+
{
+
lib,
+
stdenvNoCC,
+
fetchurl,
+
unzip,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "soundsource";
-
version = "5.6.3";
+
version = "5.7.1";
src = fetchurl {
-
url = "https://web.archive.org/web/20240505002011/https://rogueamoeba.com/soundsource/download/SoundSource.zip";
-
sha256 = "sha256-uXQw4MEV4hkrd7tjNCxtuXpbfmdW8bilI5ZmXwn9BLM=";
+
url = "https://web.archive.org/web/20240924103013/https://cdn.rogueamoeba.com/soundsource/download/SoundSource.zip";
+
sha256 = "sha256-02+Jb+3GSirypBISjdFg89Dp3LtkgPKho8OCVS+GGcQ=";
};
dontUnpack = true;
···
homepage = "https://rogueamoeba.com/soundsource";
license = licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
-
maintainers = with maintainers; [ emilytrau ];
+
maintainers = with maintainers; [
+
emilytrau
+
donteatoreo
+
];
platforms = platforms.darwin;
};
})
+7 -9
pkgs/applications/editors/vim/plugins/overrides.nix
···
in
{
alpha-nvim = super.alpha-nvim.overrideAttrs {
-
dependencies = [
-
self.nvim-web-devicons # required by the startify theme
-
];
nvimRequireCheck = "alpha";
};
···
};
barbecue-nvim = super.barbecue-nvim.overrideAttrs {
-
dependencies = with self; [ nvim-lspconfig nvim-navic nvim-web-devicons ];
+
dependencies = with self; [ nvim-lspconfig nvim-navic ];
meta = {
description = "VS Code like winbar for Neovim";
homepage = "https://github.com/utilyre/barbecue.nvim";
···
'';
};
-
markview-nvim = super.markview-nvim.overrideAttrs {
-
dependencies = with self; [ nvim-web-devicons ];
-
};
-
mason-lspconfig-nvim = super.mason-lspconfig-nvim.overrideAttrs {
dependencies = with self; [ mason-nvim nvim-lspconfig ];
};
···
dependencies = with self; [ plenary-nvim ];
};
-
neorg = neovimUtils.buildNeovimPlugin { luaAttr = luaPackages.neorg; };
+
neorg = neovimUtils.buildNeovimPlugin {
+
luaAttr = luaPackages.neorg;
+
+
doInstallCheck = true;
+
nvimRequireCheck = "neorg";
+
};
neotest = super.neotest.overrideAttrs {
dependencies = with self; [ nvim-nio plenary-nvim ];
+2 -2
pkgs/applications/networking/cloudflared/default.nix
···
buildGoModule rec {
pname = "cloudflared";
-
version = "2024.8.3";
+
version = "2024.9.1";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cloudflared";
rev = "refs/tags/${version}";
-
hash = "sha256-w0VocNM3KVu4TG5s9vdGV4Au+Hz7PfPoaksqidMRJ+E=";
+
hash = "sha256-PFe58tdLc6RtLFrGuL9y+FWNGIASXCDawxSG2He2IQ0=";
};
vendorHash = null;
+3 -3
pkgs/applications/networking/cluster/tanka/default.nix
···
buildGoModule rec {
pname = "tanka";
-
version = "0.28.0";
+
version = "0.28.2";
src = fetchFromGitHub {
owner = "grafana";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-MDZXnI0FAeQJI7GbPT5/EB4ldOtGSnFEbojXzE9ll+Q=";
+
sha256 = "sha256-KXOH2CSGG0esgpgU85mszoYnYHc9XhdYoAtr3DFR30g=";
};
-
vendorHash = "sha256-N4zGZ+fYQA7UdPI8ie55gG3FnFrI/XvyJJiZ3D40qlQ=";
+
vendorHash = "sha256-MJwizWd2X4YE0QhwCxw3FX7+Z5HxakYjBttu8KGLsWo=";
doCheck = false;
# Required for versions >= 0.28 as they introduce a gowork.sum file. This is only used for tests so we can safely disable GOWORK
+478 -418
pkgs/applications/networking/feedreaders/newsflash/Cargo.lock
···
[[package]]
name = "addr2line"
-
version = "0.22.0"
+
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
+
checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375"
dependencies = [
"gimli",
]
···
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+
+
[[package]]
+
name = "adler2"
+
version = "2.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
[[package]]
name = "aes"
···
[[package]]
name = "anyhow"
-
version = "1.0.86"
+
version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
+
checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
[[package]]
name = "arbitrary"
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
name = "arrayvec"
-
version = "0.7.4"
+
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "article_scraper"
···
[[package]]
name = "ashpd"
-
version = "0.8.1"
+
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dd884d7c72877a94102c3715f3b1cd09ff4fac28221add3e57cfbe25c236d093"
+
checksum = "bfe7e0dd0ac5a401dc116ed9f9119cf9decc625600474cb41f0fc0a0050abc9a"
dependencies = [
"async-fs",
"async-net",
···
[[package]]
name = "async-compression"
-
version = "0.4.11"
+
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5"
+
checksum = "fec134f64e2bc57411226dfc4e52dec859ddfc7e711fc5e07b612584f000e4aa"
dependencies = [
"brotli",
"flate2",
···
[[package]]
name = "async-executor"
-
version = "1.12.0"
+
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c8828ec6e544c02b0d6691d21ed9f9218d0384a82542855073c2a3f58304aaf0"
+
checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
dependencies = [
"async-task",
"concurrent-queue",
···
[[package]]
name = "async-io"
-
version = "2.3.3"
+
version = "2.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964"
+
checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8"
dependencies = [
"async-lock",
"cfg-if",
···
"rustix",
"slab",
"tracing",
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
]
[[package]]
···
[[package]]
name = "async-process"
-
version = "2.2.3"
+
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f7eda79bbd84e29c2b308d1dc099d7de8dcc7035e48f4bf5dc4a531a44ff5e2a"
+
checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
dependencies = [
"async-channel",
"async-io",
···
"futures-lite",
"rustix",
"tracing",
-
"windows-sys 0.52.0",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
name = "async-signal"
-
version = "0.2.8"
+
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "794f185324c2f00e771cd9f1ae8b5ac68be2ca7abb129a87afd6e86d228bc54d"
+
checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
dependencies = [
"async-io",
"async-lock",
···
"rustix",
"signal-hook-registry",
"slab",
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
]
[[package]]
···
[[package]]
name = "async-trait"
-
version = "0.1.81"
+
version = "0.1.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
+
checksum = "a27b8a3a6e1a44fa4c8baf1f653e4172e81486d4941f2237e20dc2d0cf4ddff1"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "backtrace"
-
version = "0.3.73"
+
version = "0.3.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
dependencies = [
"addr2line",
-
"cc",
"cfg-if",
"libc",
-
"miniz_oxide",
+
"miniz_oxide 0.8.0",
"object",
"rustc-demangle",
+
"windows-targets 0.52.6",
]
[[package]]
···
[[package]]
name = "bitstream-io"
-
version = "2.5.0"
+
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3dcde5f311c85b8ca30c2e4198d4326bc342c76541590106f5fa4a50946ea499"
+
checksum = "b81e1519b0d82120d2fd469d5bfb2919a9361c48b02d82d04befc1cdd2002452"
[[package]]
name = "block"
···
[[package]]
name = "bytemuck"
-
version = "1.16.1"
+
version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
+
checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae"
[[package]]
name = "byteorder"
···
[[package]]
name = "bytes"
-
version = "1.6.0"
+
version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
+
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
[[package]]
name = "bytesize"
···
[[package]]
name = "cairo-rs"
-
version = "0.19.4"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b2ac2a4d0e69036cf0062976f6efcba1aaee3e448594e6514bb2ddf87acce562"
+
checksum = "e8a0ea147c94108c9613235388f540e4d14c327f7081c9e471fc8ee8a2533e69"
dependencies = [
"bitflags 2.6.0",
"cairo-sys-rs",
"glib",
"libc",
-
"thiserror",
]
[[package]]
name = "cairo-sys-rs"
-
version = "0.19.2"
+
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fd3bb3119664efbd78b5e6c93957447944f16bdbced84c17a9f41c7829b81e64"
+
checksum = "428290f914b9b86089f60f5d8a9f6e440508e1bcff23b25afd51502b0a2da88f"
dependencies = [
"glib-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
]
[[package]]
name = "cc"
-
version = "1.1.1"
+
version = "1.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "907d8581360765417f8f2e0e7d602733bbed60156b4465b7617243689ef9b83d"
+
checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
dependencies = [
"jobserver",
"libc",
-
"once_cell",
+
"shlex",
]
[[package]]
···
]
[[package]]
+
name = "cfg-expr"
+
version = "0.17.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d0890061c4d3223e7267f3bad2ec40b997d64faac1c2815a4a9d95018e2b9e9c"
+
dependencies = [
+
"smallvec",
+
"target-lexicon",
+
]
+
+
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
[[package]]
name = "clapper"
version = "0.1.0"
-
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#286198bdffd84b1e5eb539078b440ac25c7e31ba"
+
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#530b6fd53a60563d8038f7a1d9d735d6dc496adb"
dependencies = [
"bitflags 2.6.0",
"clapper-sys",
···
[[package]]
name = "clapper-gtk"
version = "0.1.0"
-
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#286198bdffd84b1e5eb539078b440ac25c7e31ba"
+
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#530b6fd53a60563d8038f7a1d9d735d6dc496adb"
dependencies = [
"bitflags 2.6.0",
"clapper",
···
[[package]]
name = "clapper-gtk-sys"
version = "0.0.1"
-
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#286198bdffd84b1e5eb539078b440ac25c7e31ba"
+
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#530b6fd53a60563d8038f7a1d9d735d6dc496adb"
dependencies = [
"clapper-sys",
"gio-sys",
"glib-sys",
"gtk4-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
]
[[package]]
name = "clapper-sys"
version = "0.0.1"
-
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#286198bdffd84b1e5eb539078b440ac25c7e31ba"
+
source = "git+https://gitlab.gnome.org/JanGernert/clapper-rs.git#530b6fd53a60563d8038f7a1d9d735d6dc496adb"
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"gstreamer-sys",
"libc",
-
"system-deps",
+
"system-deps 6.2.2",
]
[[package]]
···
[[package]]
name = "core-foundation-sys"
-
version = "0.8.6"
+
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
[[package]]
name = "cpufeatures"
-
version = "0.2.12"
+
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
+
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
dependencies = [
"libc",
]
···
"proc-macro2",
"quote",
"strsim",
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
···
dependencies = [
"darling_core",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "diesel"
-
version = "2.2.1"
+
version = "2.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "62d6dcd069e7b5fe49a302411f759d4cf1cf2c27fe798ef46fb8baefc053dd2b"
+
checksum = "158fe8e2e68695bd615d7e4f3227c0727b151330d3e253b525086c348d055d5e"
dependencies = [
"bigdecimal",
"chrono",
···
[[package]]
name = "diesel_derives"
-
version = "2.2.1"
+
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "59de76a222c2b8059f789cbe07afbfd8deb8c31dd0bc2a21f85e256c1def8259"
+
checksum = "e7f2c3de51e2ba6bf2a648285696137aaf0f5f487bcbea93972fe8a364e131a4"
dependencies = [
"diesel_table_macro_syntax",
"dsl_auto_type",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25"
dependencies = [
-
"syn 2.0.70",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "dsl_auto_type"
-
version = "0.1.1"
+
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0892a17df262a24294c382f0d5997571006e7a4348b4327557c4ff1cd4a8bccc"
+
checksum = "c5d9abe6314103864cc2d8901b7ae224e0ab1a103a0a416661b4097b0779b607"
dependencies = [
"darling",
"either",
-
"heck 0.5.0",
+
"heck",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "enum-as-inner"
-
version = "0.6.0"
+
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
dependencies = [
-
"heck 0.4.1",
+
"heck",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
"flume",
"half",
"lebe",
-
"miniz_oxide",
+
"miniz_oxide 0.7.4",
"rayon-core",
"smallvec",
"zune-inflate",
···
[[package]]
name = "fastrand"
-
version = "2.1.0"
+
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
+
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
[[package]]
name = "fdeflate"
···
[[package]]
name = "feed-rs"
-
version = "2.0.0"
+
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "be5366c3d4ae865540354ecafa0e5b41dd56c2f31d0b2ef876669edf964daaec"
+
checksum = "2c546f6f85e02eaca09e6a6dd22fe4db839745f55ae16c8f36626980a57f5bc4"
dependencies = [
"chrono",
"mediatype",
···
[[package]]
name = "flate2"
-
version = "1.0.30"
+
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
+
checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253"
dependencies = [
"crc32fast",
-
"miniz_oxide",
+
"miniz_oxide 0.8.0",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "gdk-pixbuf"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "624eaba126021103c7339b2e179ae4ee8cdab842daab419040710f38ed9f8699"
+
checksum = "8730751991b97419fc3f0c2dca2c9e45b48edf46e48e0f965964ecf33889812f"
dependencies = [
"gdk-pixbuf-sys",
"gio",
···
[[package]]
name = "gdk-pixbuf-sys"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4efa05a4f83c8cc50eb4d883787b919b85e5f1d8dd10b5a1df53bf5689782379"
+
checksum = "1ffbf649fd5b1c8c0f0feeb015b7533c3ef92da2887fb95ddd338bc2b1644a7c"
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "gdk4"
-
version = "0.8.2"
+
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "db265c9dd42d6a371e09e52deab3a84808427198b86ac792d75fd35c07990a07"
+
checksum = "4b7d7237c1487ed4b300aac7744efcbf1319e12d60d7afcd6f505414bd5b5dea"
dependencies = [
"cairo-rs",
"gdk-pixbuf",
···
[[package]]
name = "gdk4-sys"
-
version = "0.8.2"
+
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c9418fb4e8a67074919fe7604429c45aa74eb9df82e7ca529767c6d4e9dc66dd"
+
checksum = "a67576c8ec012156d7f680e201a807b4432a77babb3157e0555e990ab6bcd878"
dependencies = [
"cairo-sys-rs",
"gdk-pixbuf-sys",
···
"libc",
"pango-sys",
"pkg-config",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
···
[[package]]
name = "gettext-rs"
-
version = "0.7.0"
+
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e49ea8a8fad198aaa1f9655a2524b64b70eb06b2f3ff37da407566c93054f364"
+
checksum = "4a6716b8a0db461a2720b850ba1623e5b69e4b1aa0224cf5e1fb23a0fe49e65c"
dependencies = [
"gettext-sys",
"locale_config",
···
[[package]]
name = "gettext-sys"
-
version = "0.21.3"
+
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c63ce2e00f56a206778276704bbe38564c8695249fdc8f354b4ef71c57c3839d"
+
checksum = "f7b8797f28f2dabfbe2caadb6db4f7fd739e251b5ede0a2ba49e506071edcf67"
dependencies = [
"cc",
"temp-dir",
···
[[package]]
name = "gimli"
-
version = "0.29.0"
+
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
+
checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64"
[[package]]
name = "gio"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4c49f117d373ffcc98a35d114db5478bc223341cff53e39a5d6feced9e2ddffe"
+
checksum = "dcacaa37401cad0a95aadd266bc39c72a131d454fc012f6dfd217f891d76cc52"
dependencies = [
"futures-channel",
"futures-core",
···
"libc",
"pin-project-lite",
"smallvec",
-
"thiserror",
[[package]]
name = "gio-sys"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2cd743ba4714d671ad6b6234e8ab2a13b42304d0e13ab7eba1dcdd78a7d6d4ef"
+
checksum = "5237611e97e9b86ab5768adc3eef853ae713ea797aa3835404acdfacffc9fb38"
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
"windows-sys 0.52.0",
[[package]]
name = "glib"
-
version = "0.19.9"
+
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "39650279f135469465018daae0ba53357942a5212137515777d5fdca74984a44"
+
checksum = "95648aac01b75503000bb3bcaa5ec7a7a2dd61e43636b8b1814854de94dd80e4"
dependencies = [
"bitflags 2.6.0",
"futures-channel",
···
"libc",
"memchr",
"smallvec",
-
"thiserror",
-
]
-
-
[[package]]
-
name = "glib-build-tools"
-
version = "0.19.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "108f374fff60efd14b0d70d8916e7213aed18d7dd071ba3e9334ed2dac1dc86a"
-
dependencies = [
-
"gio",
[[package]]
name = "glib-macros"
-
version = "0.19.9"
+
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4429b0277a14ae9751350ad9b658b1be0abb5b54faa5bcdf6e74a3372582fad7"
+
checksum = "302f1d633c9cdef4350330e7b68fd8016e2834bb106c93fdf9789fcde753c1ab"
dependencies = [
-
"heck 0.5.0",
+
"heck",
"proc-macro-crate",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
name = "glib-sys"
-
version = "0.19.8"
+
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5c2dc18d3a82b0006d470b13304fbbb3e0a9bd4884cf985a60a7ed733ac2c4a5"
+
checksum = "92eee4531c1c9abba945d19378b205031b5890e1f99c319ba0503b6e0c06a163"
dependencies = [
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "gobject-sys"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2e697e252d6e0416fd1d9e169bda51c0f1c926026c39ca21fbe8b1bb5c3b8b9e"
+
checksum = "fa3d1dcd8a1eb2e7c22be3d5e792b14b186f3524f79b25631730f9a8c169d49a"
dependencies = [
"glib-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "graphene-rs"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f5fb86031d24d9ec0a2a15978fc7a65d545a2549642cf1eb7c3dda358da42bcf"
+
checksum = "80aac87f74e81c0e13433e892a047237abdc37945c86887f5eed905038356e69"
dependencies = [
"glib",
"graphene-sys",
···
[[package]]
name = "graphene-sys"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2f530e0944bccba4b55065e9c69f4975ad691609191ebac16e13ab8e1f27af05"
+
checksum = "cc2f91ecd32989efad60326cc20a8fb252bd2852239a08e4e70cde8c100de9ca"
dependencies = [
"glib-sys",
"libc",
"pkg-config",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
···
[[package]]
name = "gsk4"
-
version = "0.8.2"
+
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7563884bf6939f4468e5d94654945bdd9afcaf8c3ba4c5dd17b5342b747221be"
+
checksum = "1f3cf2091e1af185b347b3450817d93dea6fe435df7abd4c2cd7fb5bcb4cfda8"
dependencies = [
"cairo-rs",
"gdk4",
···
[[package]]
name = "gsk4-sys"
-
version = "0.8.2"
+
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "23024bf2636c38bbd1f822f58acc9d1c25b28da896ff0f291a1a232d4272b3dc"
+
checksum = "6aa69614a26d8760c186c3690f1b0fbb917572ca23ef83137445770ceddf8cde"
dependencies = [
"cairo-sys-rs",
"gdk4-sys",
···
"graphene-sys",
"libc",
"pango-sys",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "gstreamer"
-
version = "0.22.6"
+
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "080daaf35d22367a398aefd032af80cc36238c76fac7b8822894f5e5be073795"
+
checksum = "683e15f8cc3a1a2646d9fe2181a58b7abb4c166256d8d15cce368e420c741140"
dependencies = [
"cfg-if",
"futures-channel",
···
[[package]]
name = "gstreamer-sys"
-
version = "0.22.6"
+
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "71f147e7c6bc9313d5569eb15da61f6f64026ec69791922749de230583a07286"
+
checksum = "d9c9005b55dd2b1784645963c1ec409f9d420a56f6348d0ae69c2eaff584bcc3"
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "gtk4"
-
version = "0.8.2"
+
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b04e11319b08af11358ab543105a9e49b0c491faca35e2b8e7e36bfba8b671ab"
+
checksum = "f4fe572bf318e5dbc6f5a2f8a25d853f1ae3f42768c0b08af6ca20a18f4057e1"
dependencies = [
"cairo-rs",
"field-offset",
···
[[package]]
name = "gtk4-macros"
-
version = "0.8.2"
+
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ec655a7ef88d8ce9592899deb8b2d0fa50bab1e6dd69182deb764e643c522408"
+
checksum = "e9e7b362c8fccd2712297903717d65d30defdab2b509bc9d209cbe5ffb9fabaf"
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
name = "gtk4-sys"
-
version = "0.8.2"
+
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8c8aa86b7f85ea71d66ea88c1d4bae1cfacf51ca4856274565133838d77e57b5"
+
checksum = "1114a207af8ada02cf4658a76692f4190f06f093380d5be07e3ca8b43aa7c666"
dependencies = [
"cairo-sys-rs",
"gdk-pixbuf-sys",
···
"gsk4-sys",
"libc",
"pango-sys",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "h2"
-
version = "0.4.5"
+
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
+
checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
dependencies = [
"atomic-waker",
"bytes",
···
[[package]]
name = "heck"
-
version = "0.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
-
[[package]]
-
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
···
[[package]]
name = "http-body"
-
version = "1.0.0"
+
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
dependencies = [
"bytes",
"http",
···
[[package]]
name = "hyper-rustls"
-
version = "0.27.2"
+
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
+
checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
dependencies = [
"futures-util",
"http",
···
[[package]]
name = "hyper-util"
-
version = "0.1.6"
+
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
+
checksum = "da62f120a8a37763efb0cf8fdf264b884c7b8b9ac8660b900c8661030c00e6ba"
dependencies = [
"bytes",
"futures-channel",
···
[[package]]
name = "iana-time-zone"
-
version = "0.1.60"
+
version = "0.1.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
dependencies = [
"android_system_properties",
"core-foundation-sys",
···
[[package]]
name = "image"
-
version = "0.25.1"
+
version = "0.25.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11"
+
checksum = "99314c8a2152b8ddb211f924cdae532d8c5e4c8bb54728e12fff1b0cd5963a10"
dependencies = [
"bytemuck",
-
"byteorder",
+
"byteorder-lite",
"color_quant",
"exr",
"gif",
···
[[package]]
name = "image-webp"
-
version = "0.1.2"
+
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d"
+
checksum = "f79afb8cbee2ef20f59ccd477a218c12a93943d075b492015ecb1bb81f8ee904"
dependencies = [
"byteorder-lite",
-
"thiserror",
+
"quick-error 2.0.1",
[[package]]
···
[[package]]
name = "indexmap"
-
version = "2.2.6"
+
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
+
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
dependencies = [
"equivalent",
"hashbrown",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
"socket2",
"widestring",
"windows-sys 0.48.0",
-
"winreg 0.50.0",
+
"winreg",
[[package]]
name = "ipnet"
-
version = "2.9.0"
+
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
+
checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4"
[[package]]
name = "ipnetwork"
···
[[package]]
name = "javascriptcore6"
-
version = "0.3.0"
+
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d95a69260c40bbf52066f2c6fa520c00c1ec8ab8208636cf3070c0157c5221f8"
+
checksum = "03b28ed9c7c08f906b2a51bc2365eae2ba5e7db1249b89892f7ae4cbd602d1f4"
dependencies = [
"glib",
"javascriptcore6-sys",
···
[[package]]
name = "javascriptcore6-sys"
-
version = "0.3.0"
+
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fc104f99c5adcd7ed53dd491121c111e05e3e8d40020d3519e98c346ca64186b"
+
checksum = "4741e2a31c2145050dd4971f8dd51e92c840d5839a7124cc68a33c7325523a12"
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
···
[[package]]
name = "jobserver"
-
version = "0.1.31"
+
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
dependencies = [
"libc",
···
[[package]]
name = "js-sys"
-
version = "0.3.69"
+
version = "0.3.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
+
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
dependencies = [
"wasm-bindgen",
···
[[package]]
name = "libadwaita"
-
version = "0.6.0"
+
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "91b4990248b9e1ec5e72094a2ccaea70ec3809f88f6fd52192f2af306b87c5d9"
+
checksum = "2ff9c222b5c783729de45185f07b2fec2d43a7f9c63961e777d3667e20443878"
dependencies = [
-
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
···
[[package]]
name = "libadwaita-sys"
-
version = "0.6.0"
+
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "23a748e4e92be1265cd9e93d569c0b5dfc7814107985aa6743d670ab281ea1a8"
+
checksum = "1c44d8bdbad31d6639e1f20cc9c1424f1a8e02d751fc28d44659bf743fb9eca6"
dependencies = [
"gdk4-sys",
"gio-sys",
···
"gtk4-sys",
"libc",
"pango-sys",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "libc"
-
version = "0.2.155"
+
version = "0.2.158"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
+
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
[[package]]
name = "libfuzzer-sys"
···
[[package]]
name = "libsqlite3-sys"
-
version = "0.28.0"
+
version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
+
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
dependencies = [
"pkg-config",
"vcpkg",
···
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
dependencies = [
"cfg-if",
-
"rayon",
[[package]]
···
[[package]]
name = "miniflux_api"
-
version = "0.7.0"
+
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2e6e3b827f7d7e0b921d129e27e2621d317bb38005e0f2512092aa33435e5dc0"
+
checksum = "1063beb3a61f877a219fe278c01242851d5c1a107f23cbc50fd841ad92f67fe9"
dependencies = [
"base64 0.22.1",
"log",
···
[[package]]
+
name = "miniz_oxide"
+
version = "0.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
+
dependencies = [
+
"adler2",
+
]
+
+
[[package]]
name = "mio"
-
version = "0.8.11"
+
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
dependencies = [
+
"hermit-abi 0.3.9",
"libc",
"wasi",
-
"windows-sys 0.48.0",
+
"windows-sys 0.52.0",
[[package]]
···
[[package]]
name = "news-flash"
version = "2.3.0-alpha.0"
-
source = "git+https://gitlab.com/news_flash/news_flash.git#10282a582b4d2fcd71c667d53355e68176e0bf62"
+
source = "git+https://gitlab.com/news_flash/news_flash.git#6b65c403da8dbe36e5df6fbb597cfeb2afaa6b58"
dependencies = [
"article_scraper",
"async-trait",
···
"gettext-rs",
"gio",
"glib",
-
"glib-build-tools",
"gsk4",
"gtk4",
"html2pango",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "object"
-
version = "0.36.1"
+
version = "0.36.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce"
+
checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a"
dependencies = [
"memchr",
···
[[package]]
name = "openssl"
-
version = "0.10.64"
+
version = "0.10.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
+
checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
dependencies = [
"bitflags 2.6.0",
"cfg-if",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "openssl-sys"
-
version = "0.9.102"
+
version = "0.9.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
+
checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
dependencies = [
"cc",
"libc",
···
[[package]]
name = "pango"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3f0d328648058085cfd6897c9ae4272884098a926f3a833cd50c8c73e6eccecd"
+
checksum = "5764e5a174a5a0ec054fe5962ce6d4fc7052e2d0dcc23bbc77202b40a4a403d3"
dependencies = [
"gio",
"glib",
···
[[package]]
name = "pango-sys"
-
version = "0.19.8"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ff03da4fa086c0b244d4a4587d3e20622a3ecdb21daea9edf66597224c634ba0"
+
checksum = "fd317e1de76b14b3d3efe05518c08b360327f1ab7fec150473a89ffcad4b072d"
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
name = "parking"
-
version = "2.2.0"
+
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
[[package]]
name = "parking_lot"
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "piper"
-
version = "0.2.3"
+
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391"
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
dependencies = [
"atomic-waker",
"fastrand",
···
[[package]]
name = "pkg-config"
-
version = "0.3.30"
+
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
[[package]]
name = "png"
···
"crc32fast",
"fdeflate",
"flate2",
-
"miniz_oxide",
+
"miniz_oxide 0.7.4",
[[package]]
name = "polling"
-
version = "3.7.2"
+
version = "3.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b"
+
checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511"
dependencies = [
"cfg-if",
"concurrent-queue",
···
"pin-project-lite",
"rustix",
"tracing",
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
[[package]]
name = "ppv-lite86"
-
version = "0.2.17"
+
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
+
dependencies = [
+
"zerocopy",
+
]
[[package]]
name = "precomputed-hash"
···
[[package]]
name = "proc-macro-crate"
-
version = "3.1.0"
+
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
+
checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
dependencies = [
-
"toml_edit 0.21.1",
+
"toml_edit",
[[package]]
···
checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd"
dependencies = [
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "quick-xml"
-
version = "0.31.0"
+
version = "0.36.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
+
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
dependencies = [
"encoding_rs",
"memchr",
···
[[package]]
name = "quote"
-
version = "1.0.36"
+
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
dependencies = [
"proc-macro2",
···
"rand",
"rand_chacha",
"simd_helpers",
-
"system-deps",
+
"system-deps 6.2.2",
"thiserror",
"v_frame",
"wasm-bindgen",
···
[[package]]
name = "ravif"
-
version = "0.11.8"
+
version = "0.11.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c6ba61c28ba24c0cf8406e025cb29a742637e3f70776e61c27a8a8b72a042d12"
+
checksum = "a8f0bfd976333248de2078d350bfdf182ff96e168a24d23d2436cef320dd4bdd"
dependencies = [
"avif-serialize",
"imgref",
"loop9",
"quick-error 2.0.1",
"rav1e",
-
"rayon",
"rgb",
[[package]]
name = "raw-cpuid"
-
version = "11.0.2"
+
version = "11.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd"
+
checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d"
dependencies = [
"bitflags 2.6.0",
···
[[package]]
name = "redox_syscall"
-
version = "0.5.2"
+
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
+
checksum = "0884ad60e090bf1345b93da0a5de8923c93884cd03f40dfcfddd3b4bee661853"
dependencies = [
"bitflags 2.6.0",
[[package]]
name = "redox_users"
-
version = "0.4.5"
+
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
dependencies = [
"getrandom",
"libredox",
···
[[package]]
name = "regex"
-
version = "1.10.5"
+
version = "1.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
dependencies = [
"aho-corasick",
"memchr",
···
[[package]]
name = "reqwest"
-
version = "0.12.5"
+
version = "0.12.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
+
checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63"
dependencies = [
"async-compression",
"base64 0.22.1",
···
"wasm-bindgen-futures",
"wasm-streams",
"web-sys",
-
"winreg 0.52.0",
+
"windows-registry",
[[package]]
···
[[package]]
name = "rgb"
-
version = "0.8.44"
+
version = "0.8.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1aee83dc281d5a3200d37b299acd13b81066ea126a7f16f0eae70fc9aed241d9"
+
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
dependencies = [
"bytemuck",
···
"quote",
"rust-embed-utils",
"shellexpand",
-
"syn 2.0.70",
+
"syn 2.0.77",
"walkdir",
···
[[package]]
name = "rustc_version"
-
version = "0.4.0"
+
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
dependencies = [
"semver",
[[package]]
name = "rustix"
-
version = "0.38.34"
+
version = "0.38.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
+
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
dependencies = [
"bitflags 2.6.0",
"errno",
···
[[package]]
name = "rustls"
-
version = "0.23.11"
+
version = "0.23.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0"
+
checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8"
dependencies = [
"once_cell",
"rustls-pki-types",
···
[[package]]
name = "rustls-pemfile"
-
version = "2.1.2"
+
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
+
checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425"
dependencies = [
"base64 0.22.1",
"rustls-pki-types",
···
[[package]]
name = "rustls-pki-types"
-
version = "1.7.0"
+
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
+
checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
[[package]]
name = "rustls-webpki"
-
version = "0.102.5"
+
version = "0.102.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78"
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
dependencies = [
"ring",
"rustls-pki-types",
···
[[package]]
name = "schannel"
-
version = "0.1.23"
+
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
+
checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b"
dependencies = [
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
[[package]]
name = "security-framework"
-
version = "2.11.0"
+
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
dependencies = [
"bitflags 2.6.0",
"core-foundation",
···
[[package]]
name = "security-framework-sys"
-
version = "2.11.0"
+
version = "2.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
+
checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
dependencies = [
"core-foundation-sys",
"libc",
···
[[package]]
name = "serde"
-
version = "1.0.204"
+
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
+
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
···
[[package]]
name = "serde_derive"
-
version = "1.0.204"
+
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
+
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
name = "serde_json"
-
version = "1.0.120"
+
version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
+
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
+
"memchr",
"ryu",
"serde",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
name = "serde_spanned"
-
version = "0.6.6"
+
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
+
checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
dependencies = [
"serde",
···
dependencies = [
"dirs",
+
+
[[package]]
+
name = "shlex"
+
version = "1.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "signal-hook-registry"
···
[[package]]
name = "soup3"
-
version = "0.6.0"
+
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3fb6bbb0e56d089517432ca8aac0879e5f343b309783384a7fdbdd6d5232e681"
+
checksum = "b84ccd1f4aee0854a16b0b489ba843798e2eb4cdcddd4a61248f7db9ce8b6df1"
dependencies = [
"futures-channel",
"gio",
···
[[package]]
name = "soup3-sys"
-
version = "0.6.0"
+
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f9c6d7beef555a91c6129f5e71ecf4b6e9eac8b48914098d713b1537ebbf6917"
+
checksum = "8869997193d52a61a1db48627bdaa57343f76e2c5132ee6d351245a6ab30631e"
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
···
[[package]]
name = "syn"
-
version = "2.0.70"
+
version = "2.0.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2f0209b68b3613b093e0ec905354eccaedcfe83b8cb37cbdeae64026c3064c16"
+
checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
dependencies = [
"proc-macro2",
"quote",
···
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
+
dependencies = [
+
"futures-core",
+
]
[[package]]
name = "system-configuration"
-
version = "0.5.1"
+
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
dependencies = [
-
"bitflags 1.3.2",
+
"bitflags 2.6.0",
"core-foundation",
"system-configuration-sys",
[[package]]
name = "system-configuration-sys"
-
version = "0.5.0"
+
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
dependencies = [
"core-foundation-sys",
"libc",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
dependencies = [
-
"cfg-expr",
-
"heck 0.5.0",
+
"cfg-expr 0.15.8",
+
"heck",
+
"pkg-config",
+
"toml",
+
"version-compare",
+
]
+
+
[[package]]
+
name = "system-deps"
+
version = "7.0.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "66d23aaf9f331227789a99e8de4c91bf46703add012bdfd45fdecdfb2975a005"
+
dependencies = [
+
"cfg-expr 0.17.0",
+
"heck",
"pkg-config",
"toml",
"version-compare",
···
[[package]]
name = "target-lexicon"
-
version = "0.12.15"
+
version = "0.12.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]]
name = "temp-dir"
···
[[package]]
name = "tempfile"
-
version = "3.10.1"
+
version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
+
checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
dependencies = [
"cfg-if",
"fastrand",
+
"once_cell",
"rustix",
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
[[package]]
name = "thiserror"
-
version = "1.0.62"
+
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb"
+
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [
"thiserror-impl",
[[package]]
name = "thiserror-impl"
-
version = "1.0.62"
+
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c"
+
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
name = "thread-id"
-
version = "4.2.1"
+
version = "4.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f0ec81c46e9eb50deaa257be2f148adf052d1fb7701cfd55ccfab2525280b70b"
+
checksum = "cfe8f25bbdd100db7e1d34acf7fd2dc59c4bf8f7483f505eaa7d4f12f76cc0ea"
dependencies = [
"libc",
"winapi",
···
[[package]]
name = "tokio"
-
version = "1.38.0"
+
version = "1.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
+
checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
dependencies = [
"backtrace",
"bytes",
"libc",
"mio",
-
"num_cpus",
"pin-project-lite",
"socket2",
"tokio-macros",
-
"windows-sys 0.48.0",
+
"windows-sys 0.52.0",
[[package]]
name = "tokio-macros"
-
version = "2.3.0"
+
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "tokio-socks"
-
version = "0.5.1"
+
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
+
checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
dependencies = [
"either",
"futures-util",
···
[[package]]
name = "tokio-util"
-
version = "0.7.11"
+
version = "0.7.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
+
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
dependencies = [
"bytes",
"futures-core",
···
[[package]]
name = "toml"
-
version = "0.8.14"
+
version = "0.8.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335"
+
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
-
"toml_edit 0.22.15",
+
"toml_edit",
[[package]]
name = "toml_datetime"
-
version = "0.6.6"
+
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
dependencies = [
"serde",
[[package]]
name = "toml_edit"
-
version = "0.21.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
-
dependencies = [
-
"indexmap",
-
"toml_datetime",
-
"winnow 0.5.40",
-
]
-
-
[[package]]
-
name = "toml_edit"
-
version = "0.22.15"
+
version = "0.22.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d59a3a72298453f564e2b111fa896f8d07fabb36f51f06d7e875fc5e0b5a3ef1"
+
checksum = "3b072cee73c449a636ffd6f32bd8de3a9f7119139aff882f44943ce2986dc5cf"
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
-
"winnow 0.6.13",
+
"winnow",
[[package]]
···
[[package]]
name = "tower-layer"
-
version = "0.3.2"
+
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
[[package]]
name = "tower-service"
-
version = "0.3.2"
+
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
[[package]]
name = "tracing"
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "unicode-ident"
-
version = "1.0.12"
+
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
[[package]]
name = "unicode-normalization"
-
version = "0.1.23"
+
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
dependencies = [
"tinyvec",
···
[[package]]
name = "version_check"
-
version = "0.9.4"
+
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
[[package]]
name = "walkdir"
···
[[package]]
name = "wasm-bindgen"
-
version = "0.2.92"
+
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
dependencies = [
"cfg-if",
+
"once_cell",
"wasm-bindgen-macro",
[[package]]
name = "wasm-bindgen-backend"
-
version = "0.2.92"
+
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
"wasm-bindgen-shared",
[[package]]
name = "wasm-bindgen-futures"
-
version = "0.4.42"
+
version = "0.4.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
+
checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
dependencies = [
"cfg-if",
"js-sys",
···
[[package]]
name = "wasm-bindgen-macro"
-
version = "0.2.92"
+
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
···
[[package]]
name = "wasm-bindgen-macro-support"
-
version = "0.2.92"
+
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
[[package]]
name = "wasm-bindgen-shared"
-
version = "0.2.92"
+
version = "0.2.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
[[package]]
name = "wasm-streams"
···
[[package]]
name = "web-sys"
-
version = "0.3.69"
+
version = "0.3.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
+
checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0"
dependencies = [
"js-sys",
"wasm-bindgen",
···
[[package]]
name = "webkit6"
-
version = "0.3.0"
+
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9d82bda18116290a9effc1e0f8dbd00236807bf4a9b990b9484bad5ba852fc06"
+
checksum = "8c359ef247305dcade3363c281c505b943e0e6162a42eac76ff76ed8e7cebfbd"
dependencies = [
"gdk4",
"gio",
···
[[package]]
name = "webkit6-sys"
-
version = "0.3.0"
+
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6c459941f1b22750cbda435ede3f94ed8e8dd8c8608d324ecb0b9a8556b49abd"
+
checksum = "96284c5280af5984dbdae8dae3cfeea11b44b214f9bd42b35c0ca75903bccce2"
dependencies = [
"gdk4-sys",
"gio-sys",
···
"javascriptcore6-sys",
"libc",
"soup3-sys",
-
"system-deps",
+
"system-deps 7.0.3",
[[package]]
···
[[package]]
name = "winapi-util"
-
version = "0.1.8"
+
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
[[package]]
+
name = "windows-registry"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
+
dependencies = [
+
"windows-result",
+
"windows-strings",
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-result"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
+
dependencies = [
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-strings"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
+
dependencies = [
+
"windows-result",
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+
dependencies = [
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.59.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets 0.52.6",
···
[[package]]
name = "winnow"
-
version = "0.5.40"
+
version = "0.6.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
-
dependencies = [
-
"memchr",
-
]
-
-
[[package]]
-
name = "winnow"
-
version = "0.6.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1"
+
checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
dependencies = [
"memchr",
···
[[package]]
-
name = "winreg"
-
version = "0.52.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
-
dependencies = [
-
"cfg-if",
-
"windows-sys 0.48.0",
-
]
-
-
[[package]]
name = "xdg-home"
-
version = "1.2.0"
+
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8"
+
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
dependencies = [
"libc",
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
name = "xml-rs"
-
version = "0.8.20"
+
version = "0.8.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193"
+
checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26"
[[package]]
name = "xml5ever"
···
[[package]]
name = "xmltree"
-
version = "0.10.3"
+
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
+
checksum = "b619f8c85654798007fb10afa5125590b43b088c225a25fc2fec100a9fad0fc6"
dependencies = [
"xml-rs",
[[package]]
name = "zbus"
-
version = "4.3.1"
+
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "851238c133804e0aa888edf4a0229481c753544ca12a60fd1c3230c8a500fe40"
+
checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
dependencies = [
"async-broadcast",
"async-executor",
···
[[package]]
name = "zbus_macros"
-
version = "4.3.1"
+
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8d5a3f12c20bd473be3194af6b49d50d7bb804ef3192dc70eddedb26b85d9da7"
+
checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e"
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
"zvariant_utils",
···
[[package]]
+
name = "zerocopy"
+
version = "0.7.35"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
+
dependencies = [
+
"byteorder",
+
"zerocopy-derive",
+
]
+
+
[[package]]
+
name = "zerocopy-derive"
+
version = "0.7.35"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.77",
+
]
+
+
[[package]]
name = "zeroize"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
[[package]]
name = "zune-jpeg"
-
version = "0.4.11"
+
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448"
+
checksum = "16099418600b4d8f028622f73ff6e3deaabdff330fb9a2a131dea781ee8b0768"
dependencies = [
"zune-core",
[[package]]
name = "zvariant"
-
version = "4.1.2"
+
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1724a2b330760dc7d2a8402d841119dc869ef120b139d29862d6980e9c75bfc9"
+
checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe"
dependencies = [
"endi",
"enumflags2",
···
[[package]]
name = "zvariant_derive"
-
version = "4.1.2"
+
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "55025a7a518ad14518fb243559c058a2e5b848b015e31f1d90414f36e3317859"
+
checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449"
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
"zvariant_utils",
[[package]]
name = "zvariant_utils"
-
version = "2.0.0"
+
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fc242db087efc22bd9ade7aa7809e4ba828132edc312871584a6b4391bdf8786"
+
checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.70",
+
"syn 2.0.77",
+4 -4
pkgs/applications/networking/feedreaders/newsflash/default.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "newsflash";
-
version = "3.3.2";
+
version = "3.3.5";
src = fetchFromGitLab {
owner = "news-flash";
repo = "news_flash_gtk";
rev = "refs/tags/v.${finalAttrs.version}";
-
hash = "sha256-caINK4tmDsP7AkLUBqbM96Po7sQxFOn/CAq62K+3aoE=";
+
hash = "sha256-H2/qKnsByidziUldX5MZBrMyMHfuQ4SN9wXizJUGQ8I=";
};
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"article_scraper-2.1.0" = "sha256-0jDXH5kkX34tAWK+3hpmW1LWBsFksVgTnSuQX+XXVEM=";
-
"clapper-0.1.0" = "sha256-xQ7l6luO5E4PMjtN9elg0bkJa7IhWzA7KuYDJ+m/VY0=";
-
"news-flash-2.3.0-alpha.0" = "sha256-+CYU2CpF2WfSVjhLtLpHjdAGoycdhdbN9UucKO9XKiA=";
+
"clapper-0.1.0" = "sha256-IFFqfSq2OpzfopQXSYfnJ68HGLY+rvcLqk7NTdDd+28=";
+
"news-flash-2.3.0-alpha.0" = "sha256-L7siGYdb8v57nBGYs86smlw971fvurYQJKK/AdTpi6s=";
"newsblur_api-0.3.0" = "sha256-m2178zdJzeskl3BQpZr6tlxTAADehxz8uYcZzi15nhQ=";
};
};
+2 -2
pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix
···
callPackage ./generic.nix { } rec {
pname = "signal-desktop";
dir = "Signal";
-
version = "7.25.0";
+
version = "7.26.0";
url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb";
-
hash = "sha256-KcVCQkDSpI+eq2/wvPZxq6ILLQk3xe+wrKfbnJnTQTo=";
+
hash = "sha256-A9gTphQ7FQm1iCutrDxAD2wazihn+4ZafJrqdZ8Nahk=";
}
+3 -3
pkgs/by-name/as/assemblyscript/package.nix
···
buildNpmPackage rec {
pname = "assemblyscript";
-
version = "0.27.29";
+
version = "0.27.30";
src = fetchFromGitHub {
owner = "AssemblyScript";
repo = "assemblyscript";
rev = "v${version}";
-
hash = "sha256-Jhjq+kLRzDesTPHHonImCnuzt1Ay04n7+O9aK4knb5g=";
+
hash = "sha256-dmtKXU1bu25AzqxBhC9sWulMek5gRVnD0FN0G0XGQxU=";
};
-
npmDepsHash = "sha256-mWRQPQVprM+9SCYd8M7NMDtiwDjSH5cr4Xlr5VP9eHo=";
+
npmDepsHash = "sha256-rj6tvevoDQQihTH+tYkrvhJRzynglG5roHHL7aZ6j+Y=";
meta = with lib; {
homepage = "https://github.com/AssemblyScript/assemblyscript";
+2 -2
pkgs/by-name/bi/bitrise/package.nix
···
}:
buildGoModule rec {
pname = "bitrise";
-
version = "2.20.1";
+
version = "2.21.0";
src = fetchFromGitHub {
owner = "bitrise-io";
repo = "bitrise";
rev = version;
-
hash = "sha256-M1OAMppeY13fXclycUXwp2H1GSLVJRNV11QxAvNLQuQ=";
+
hash = "sha256-BVOvBNn4m9aes+g02moYt91KLTQEcsPPJTeAzA4I854=";
};
# many tests rely on writable $HOME/.bitrise and require network access
+2 -2
pkgs/by-name/bl/bluemap/package.nix
···
stdenvNoCC.mkDerivation rec {
pname = "bluemap";
-
version = "3.21";
+
version = "5.4";
src = fetchurl {
url = "https://github.com/BlueMap-Minecraft/BlueMap/releases/download/v${version}/BlueMap-${version}-cli.jar";
-
hash = "sha256-YWf69+nsMfqk2x9xGTt+tdnGvaU+6rPsiBLWsP89ngM=";
+
hash = "sha256-ycgCYot3lTdkufJdOSX/PMWI2fnAWz8f5I9IWZpKppw=";
};
dontUnpack = true;
+3 -3
pkgs/by-name/go/go-ethereum/package.nix
···
in buildGoModule rec {
pname = "go-ethereum";
-
version = "1.14.8";
+
version = "1.14.9";
src = fetchFromGitHub {
owner = "ethereum";
repo = pname;
rev = "v${version}";
-
hash = "sha256-y831v6ar1RdDvGQMZf2lZKgq2IQzAAQrNwDCL0xbj24=";
+
hash = "sha256-W0wHQMvbQJC3PdCZLVpE3cTasii/CkF+gdVOV2MX2Mo=";
};
proxyVendor = true;
-
vendorHash = "sha256-CLGf64Fftu4u8Vaj66Q4xuRKBEMNZmpltUyaUMVyVJk=";
+
vendorHash = "sha256-Fxl8fisdCH0nlUFOS5NLMnvfpqIhlTd6/BbR+qIzlKQ=";
doCheck = false;
+3 -3
pkgs/by-name/go/goofcord/package.nix
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "goofcord";
-
version = "1.7.0";
+
version = "1.7.1";
src = fetchFromGitHub {
owner = "Milkshiift";
repo = "GoofCord";
rev = "v${finalAttrs.version}";
-
hash = "sha256-ly0HkDFofdOgXOmlUW1za4u2INopiPs6B2kTC217/T0=";
+
hash = "sha256-fx/RKnUhXhaWVd/KYPVxr19/Q8o1ovm2TgMTcTYjE3Q=";
};
nativeBuildInputs = [
···
pnpmDeps = pnpm'.fetchDeps {
inherit (finalAttrs) pname version src;
-
hash = "sha256-455MGicIaC9WSUiwsbhdXxc8Cs3oqaneyOrMDPWsABw=";
+
hash = "sha256-8i/ip0ZIo80bLb7UNO/h856CD7i3DV9QaPaNrxhViqE=";
};
env = {
+193
pkgs/by-name/gr/grcov/0001-update-time-rs.patch
···
+
From cd983416673fabf7bc55c0888c0f73f209f35e4e Mon Sep 17 00:00:00 2001
+
From: wxt <3264117476@qq.com>
+
Date: Fri, 27 Sep 2024 16:03:44 +0800
+
Subject: [PATCH] update time-rs
+
+
---
+
Cargo.lock | 63 ++++++++++++++++++++++++++++++++++++++----------------
+
1 file changed, 44 insertions(+), 19 deletions(-)
+
+
diff --git a/Cargo.lock b/Cargo.lock
+
index af7c7f2..30cb4c3 100644
+
--- a/Cargo.lock
+
+++ b/Cargo.lock
+
@@ -353,7 +353,7 @@ dependencies = [
+
"heck",
+
"proc-macro2",
+
"quote",
+
- "syn 2.0.25",
+
+ "syn 2.0.32",
+
]
+
+
[[package]]
+
@@ -463,6 +463,15 @@ dependencies = [
+
"uuid",
+
]
+
+
+[[package]]
+
+name = "deranged"
+
+version = "0.3.11"
+
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
+
+dependencies = [
+
+ "powerfmt",
+
+]
+
+
+
[[package]]
+
name = "deunicode"
+
version = "0.4.3"
+
@@ -871,6 +880,12 @@ dependencies = [
+
"bitflags 1.3.2",
+
]
+
+
+[[package]]
+
+name = "num-conv"
+
+version = "0.1.0"
+
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
+
+
+
[[package]]
+
name = "num-traits"
+
version = "0.2.15"
+
@@ -970,7 +985,7 @@ dependencies = [
+
"pest_meta",
+
"proc-macro2",
+
"quote",
+
- "syn 2.0.25",
+
+ "syn 2.0.32",
+
]
+
+
[[package]]
+
@@ -1029,6 +1044,12 @@ version = "0.3.27"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
+
+
+[[package]]
+
+name = "powerfmt"
+
+version = "0.2.0"
+
+source = "registry+https://github.com/rust-lang/crates.io-index"
+
+checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
+
+
+
[[package]]
+
name = "ppv-lite86"
+
version = "0.2.17"
+
@@ -1275,22 +1296,22 @@ dependencies = [
+
+
[[package]]
+
name = "serde"
+
-version = "1.0.171"
+
+version = "1.0.193"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
-checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
+
+checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
+
dependencies = [
+
"serde_derive",
+
]
+
+
[[package]]
+
name = "serde_derive"
+
-version = "1.0.171"
+
+version = "1.0.193"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
-checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
+
+checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
- "syn 2.0.25",
+
+ "syn 2.0.32",
+
]
+
+
[[package]]
+
@@ -1323,7 +1344,7 @@ checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369"
+
dependencies = [
+
"log",
+
"termcolor",
+
- "time 0.3.23",
+
+ "time 0.3.36",
+
]
+
+
[[package]]
+
@@ -1403,9 +1424,9 @@ dependencies = [
+
+
[[package]]
+
name = "syn"
+
-version = "2.0.25"
+
+version = "2.0.32"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
-checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
+
+checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
@@ -1536,7 +1557,7 @@ checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
- "syn 2.0.25",
+
+ "syn 2.0.32",
+
]
+
+
[[package]]
+
@@ -1561,13 +1582,16 @@ dependencies = [
+
+
[[package]]
+
name = "time"
+
-version = "0.3.23"
+
+version = "0.3.36"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
-checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
+
+checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
+
dependencies = [
+
+ "deranged",
+
"itoa",
+
"libc",
+
+ "num-conv",
+
"num_threads",
+
+ "powerfmt",
+
"serde",
+
"time-core",
+
"time-macros",
+
@@ -1575,16 +1599,17 @@ dependencies = [
+
+
[[package]]
+
name = "time-core"
+
-version = "0.1.1"
+
+version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
-checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
+
+checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
+
+
[[package]]
+
name = "time-macros"
+
-version = "0.2.10"
+
+version = "0.2.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
-checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
+
+checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
+
dependencies = [
+
+ "num-conv",
+
"time-core",
+
]
+
+
@@ -1762,7 +1787,7 @@ dependencies = [
+
"once_cell",
+
"proc-macro2",
+
"quote",
+
- "syn 2.0.25",
+
+ "syn 2.0.32",
+
"wasm-bindgen-shared",
+
]
+
+
@@ -1784,7 +1809,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
- "syn 2.0.25",
+
+ "syn 2.0.32",
+
"wasm-bindgen-backend",
+
"wasm-bindgen-shared",
+
]
+
--
+
2.46.0
+
+48
pkgs/by-name/gr/grcov/package.nix
···
+
{
+
lib,
+
rustPlatform,
+
fetchFromGitHub,
+
}:
+
+
rustPlatform.buildRustPackage rec {
+
pname = "grcov";
+
version = "0.8.19";
+
+
src = fetchFromGitHub {
+
owner = "mozilla";
+
repo = "grcov";
+
rev = "refs/tags/v${version}";
+
sha256 = "sha256-1t+hzB9sSApLScCkjBnLk9i2dsoEwZmWCFukEOvHhZI=";
+
};
+
+
cargoPatches = [
+
./0001-update-time-rs.patch
+
];
+
+
cargoHash = "sha256-zbraeXyuXgif46tRFQpEZVZ6bInrgKbrqRArmjFIgU8=";
+
+
# tests do not find grcov path correctly
+
checkFlags =
+
let
+
skipList = [
+
"test_coveralls_service_job_id_is_not_sufficient"
+
"test_coveralls_service_name_is_not_sufficient"
+
"test_coveralls_works_with_just_service_name_and_job_id_args"
+
"test_coveralls_works_with_just_token_arg"
+
"test_integration"
+
"test_integration_guess_single_file"
+
"test_integration_zip_dir"
+
"test_integration_zip_zip"
+
];
+
skipFlag = test: "--skip " + test;
+
in
+
builtins.concatStringsSep " " (builtins.map skipFlag skipList);
+
+
meta = {
+
description = "Rust tool to collect and aggregate code coverage data for multiple source files";
+
mainProgram = "grcov";
+
homepage = "https://github.com/mozilla/grcov";
+
license = lib.licenses.mpl20;
+
maintainers = with lib.maintainers; [ DieracDelta ];
+
};
+
}
+1
pkgs/by-name/is/isponsorblocktv/package.nix
···
+
{ python3Packages }: python3Packages.callPackage ./pypackage.nix { }
+69
pkgs/by-name/is/isponsorblocktv/pypackage.nix
···
+
{
+
buildPythonApplication,
+
fetchFromGitHub,
+
lib,
+
hatchling,
+
hatch-requirements-txt,
+
aiohttp,
+
appdirs,
+
async-cache,
+
pyytlounge,
+
rich-click,
+
rich,
+
ssdp,
+
textual-slider,
+
textual,
+
xmltodict,
+
pythonRelaxDepsHook,
+
}:
+
buildPythonApplication rec {
+
pname = "iSponsorBlockTV";
+
version = "2.2.1";
+
+
src = fetchFromGitHub {
+
owner = "dmunozv04";
+
repo = "iSponsorBlockTV";
+
rev = "v${version}";
+
hash = "sha256-v5NF6o+9IxusYNebs2a9fgHCHZNN9hHLQurujhmdsgU=";
+
};
+
+
pyproject = true;
+
+
build-system = [
+
hatchling
+
hatch-requirements-txt
+
];
+
+
dependencies = [
+
aiohttp
+
appdirs
+
async-cache
+
pyytlounge
+
rich-click
+
rich
+
ssdp
+
textual-slider
+
textual
+
xmltodict
+
];
+
+
nativeBuildInputs = [ pythonRelaxDepsHook ];
+
+
pythonRemoveDeps = [ "argparse" ];
+
+
pythonRelaxDeps = [
+
"aiohttp"
+
"pyytlounge"
+
"textual-slider"
+
"textual"
+
];
+
+
meta = {
+
homepage = "https://github.com/dmunozv04/iSponsorBlockTV";
+
description = "SponsorBlock client for all YouTube TV clients";
+
license = lib.licenses.gpl3Only;
+
maintainers = with lib.maintainers; [ lukegb ];
+
mainProgram = "iSponsorBlockTV";
+
platforms = lib.platforms.linux;
+
};
+
}
+2
pkgs/by-name/li/limine/package.nix
···
"zerocallusedregs"
];
+
enableParallelBuilding = true;
+
nativeBuildInputs =
[
llvmPackages.libllvm
+3 -3
pkgs/by-name/md/mdbook-alerts/package.nix
···
CoreServices ? darwin.apple_sdk.frameworks.CoreServices,
}:
let
-
version = "0.6.5";
+
version = "0.6.6";
in
rustPlatform.buildRustPackage {
pname = "mdbook-alerts";
···
owner = "lambdalisue";
repo = "rs-mdbook-alerts";
rev = "v${version}";
-
hash = "sha256-vlp1tjtdbaH1sax3HAN665fspqRheHZzu5u/QjEejHg=";
+
hash = "sha256-npPQU53l/VtTH23YYT6SOa11eUPNcA96al06S5HNNFE=";
};
-
cargoHash = "sha256-nzVvktweqrow7P/I8DhDoVJNj1COCeEhx6HLY536hYE=";
+
cargoHash = "sha256-1wumxZoNr1QIit+KjgioG5WlSLSsWfcisChUEISoGQE=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
+3 -3
pkgs/by-name/me/metacubexd/package.nix
···
}:
stdenv.mkDerivation (finalAttrs: {
pname = "metacubexd";
-
version = "1.149.0";
+
version = "1.150.0";
src = fetchFromGitHub {
owner = "MetaCubeX";
repo = "metacubexd";
rev = "v${finalAttrs.version}";
-
hash = "sha256-WpF8A7TUPVk/e/ezPlypnAldqklMfUS6RfuLvVNEWOY=";
+
hash = "sha256-UItmZmrcCSO7705TzEO80IVGSsCrDjm9Apw17XAQ9jY=";
};
nativeBuildInputs = [
···
pnpmDeps = pnpm.fetchDeps {
inherit (finalAttrs) pname version src;
-
hash = "sha256-WsaHl8dD5Fi7WEoLhYCkxVfMB/VJ8cllGY6EveqQYgY=";
+
hash = "sha256-jIotwZmFzzv3jN4iXV4aonxnVDuIGzxNH8RGD0r7t0c=";
};
buildPhase = ''
+180 -145
pkgs/by-name/mi/mistral-rs/Cargo.lock
···
[[package]]
name = "addr2line"
-
version = "0.22.0"
+
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
+
checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375"
dependencies = [
"gimli",
]
···
[[package]]
name = "anyhow"
-
version = "1.0.86"
+
version = "1.0.88"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
+
checksum = "4e1496f8fb1fbf272686b8d37f523dab3e4a7443300055e74cdaa449f3114356"
dependencies = [
"backtrace",
]
···
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
+
name = "as-any"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5b8a30a44e99a1c83ccb2a6298c563c888952a1c9134953db26876528f84c93a"
+
+
[[package]]
name = "async-trait"
-
version = "0.1.81"
+
version = "0.1.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
+
checksum = "a27b8a3a6e1a44fa4c8baf1f653e4172e81486d4941f2237e20dc2d0cf4ddff1"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "backtrace"
-
version = "0.3.73"
+
version = "0.3.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
dependencies = [
"addr2line",
-
"cc",
"cfg-if",
"libc",
-
"miniz_oxide 0.7.4",
+
"miniz_oxide 0.8.0",
"object",
"rustc-demangle",
+
"windows-targets 0.52.6",
]
[[package]]
···
"proc-macro2",
"quote",
"str_inflector",
-
"syn 2.0.76",
+
"syn 2.0.77",
"thiserror",
"try_match",
]
···
[[package]]
name = "bytemuck"
-
version = "1.17.1"
+
version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "773d90827bc3feecfb67fab12e24de0749aad83c74b9504ecde46237b5cd24e2"
+
checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae"
dependencies = [
"bytemuck_derive",
]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "candle-core"
-
version = "0.6.0"
-
source = "git+https://github.com/EricLBuehler/candle.git?rev=3c8e120#3c8e120e8a6ae88b41ee251ec6255035864858d6"
+
version = "0.6.1"
+
source = "git+https://github.com/EricLBuehler/candle.git?rev=9c62368#9c62368211a29f5c2cf94deb811ecca7a9475c38"
dependencies = [
"accelerate-src",
"byteorder",
···
[[package]]
name = "candle-flash-attn"
-
version = "0.6.0"
-
source = "git+https://github.com/EricLBuehler/candle.git?rev=3c8e120#3c8e120e8a6ae88b41ee251ec6255035864858d6"
+
version = "0.6.1"
+
source = "git+https://github.com/EricLBuehler/candle.git?rev=9c62368#9c62368211a29f5c2cf94deb811ecca7a9475c38"
dependencies = [
"anyhow",
"bindgen_cuda 0.1.5",
···
[[package]]
name = "candle-kernels"
-
version = "0.6.0"
-
source = "git+https://github.com/EricLBuehler/candle.git?rev=3c8e120#3c8e120e8a6ae88b41ee251ec6255035864858d6"
+
version = "0.6.1"
+
source = "git+https://github.com/EricLBuehler/candle.git?rev=9c62368#9c62368211a29f5c2cf94deb811ecca7a9475c38"
dependencies = [
"bindgen_cuda 0.1.5",
]
[[package]]
name = "candle-metal-kernels"
-
version = "0.6.0"
-
source = "git+https://github.com/EricLBuehler/candle.git?rev=3c8e120#3c8e120e8a6ae88b41ee251ec6255035864858d6"
+
version = "0.6.1"
+
source = "git+https://github.com/EricLBuehler/candle.git?rev=9c62368#9c62368211a29f5c2cf94deb811ecca7a9475c38"
dependencies = [
"metal",
"once_cell",
···
[[package]]
name = "candle-nn"
-
version = "0.6.0"
-
source = "git+https://github.com/EricLBuehler/candle.git?rev=3c8e120#3c8e120e8a6ae88b41ee251ec6255035864858d6"
+
version = "0.6.1"
+
source = "git+https://github.com/EricLBuehler/candle.git?rev=9c62368#9c62368211a29f5c2cf94deb811ecca7a9475c38"
dependencies = [
"accelerate-src",
"candle-core",
···
[[package]]
name = "cc"
-
version = "1.1.15"
+
version = "1.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
+
checksum = "b62ac837cdb5cb22e10a256099b4fc502b1dfe560cb282963a974d7abd80e476"
dependencies = [
"shlex",
]
···
[[package]]
name = "clap"
-
version = "4.5.16"
+
version = "4.5.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
+
checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac"
dependencies = [
"clap_builder",
"clap_derive",
···
[[package]]
name = "clap_builder"
-
version = "4.5.15"
+
version = "4.5.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
+
checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73"
dependencies = [
"anstream",
"anstyle",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
dependencies = [
-
"heck 0.5.0",
+
"heck",
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "cpufeatures"
-
version = "0.2.13"
+
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad"
+
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
dependencies = [
"libc",
]
···
[[package]]
name = "cudarc"
-
version = "0.11.6"
+
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "89df33b4eb35d6d3f19ce8015fda23079131afef42cf6ede03e961ab8aeb29af"
+
checksum = "38cd60a9a42ec83a2ed7effb0b1f073270264ea99da7acfc44f7e8d74dee0384"
dependencies = [
"half",
"libloading",
···
"proc-macro2",
"quote",
"strsim 0.11.1",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
dependencies = [
"darling_core 0.20.10",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
name = "derive_builder"
-
version = "0.20.0"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
+
checksum = "cd33f37ee6a119146a1781d3356a7c26028f83d779b2e04ecd45fdc75c76877b"
dependencies = [
"derive_builder_macro",
]
[[package]]
name = "derive_builder_core"
-
version = "0.20.0"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
+
checksum = "7431fa049613920234f22c47fdc33e6cf3ee83067091ea4277a3f8c4587aae38"
dependencies = [
"darling 0.20.10",
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
name = "derive_builder_macro"
-
version = "0.20.0"
+
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
+
checksum = "4abae7035bf79b9877b779505d8cf3749285b80c43941eda66604841889451dc"
dependencies = [
"derive_builder_core",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
]
[[package]]
···
[[package]]
name = "enum-as-inner"
-
version = "0.6.0"
+
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
dependencies = [
-
"heck 0.4.1",
+
"heck",
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "getset"
-
version = "0.1.2"
+
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9"
+
checksum = "f636605b743120a8d32ed92fc27b6cde1a769f8f936c065151eb66f88ded513c"
dependencies = [
-
"proc-macro-error",
+
"proc-macro-error2",
"proc-macro2",
"quote",
-
"syn 1.0.109",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "gimli"
-
version = "0.29.0"
+
version = "0.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
+
checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64"
[[package]]
name = "glob"
···
[[package]]
name = "heck"
-
version = "0.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
-
[[package]]
-
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
···
[[package]]
name = "hyper-rustls"
-
version = "0.27.2"
+
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
+
checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
dependencies = [
"futures-util",
"http",
···
[[package]]
name = "hyper-util"
-
version = "0.1.7"
+
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9"
+
checksum = "da62f120a8a37763efb0cf8fdf264b884c7b8b9ac8660b900c8661030c00e6ba"
dependencies = [
"bytes",
"futures-channel",
···
[[package]]
name = "indexmap"
-
version = "2.4.0"
+
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
+
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
dependencies = [
"equivalent",
"hashbrown",
···
[[package]]
name = "ipnet"
-
version = "2.9.0"
+
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
+
checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4"
[[package]]
name = "is_terminal_polyfill"
···
[[package]]
name = "memmap2"
-
version = "0.9.4"
+
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
dependencies = [
"libc",
"stable_deref_trait",
···
"accelerate-src",
"akin",
"anyhow",
+
"as-any",
"async-trait",
"base64 0.22.1",
"bindgen_cuda 0.1.5",
···
"regex-automata 0.4.7",
"reqwest",
"rustc-hash",
+
"safetensors",
"schemars",
"serde",
"serde_json",
+
"serde_plain",
"serde_yaml",
"strum",
"sysinfo",
···
version = "0.3.0"
dependencies = [
"bindgen_cuda 0.1.5",
+
"byteorder",
"candle-core",
"candle-nn",
"half",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
"proc-macro-crate",
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "object"
-
version = "0.36.3"
+
version = "0.36.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
+
checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a"
dependencies = [
"memchr",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
+
name = "proc-macro-error-attr2"
+
version = "2.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
]
+
+
[[package]]
+
name = "proc-macro-error2"
+
version = "2.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
+
dependencies = [
+
"proc-macro-error-attr2",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.77",
+
]
+
+
[[package]]
name = "proc-macro2"
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
"proc-macro2",
"pyo3-macros-backend",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec480c0c51ddec81019531705acac51bcdbeae563557c982aa8263bb96880372"
dependencies = [
-
"heck 0.5.0",
+
"heck",
"proc-macro2",
"pyo3-build-config",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "quinn"
-
version = "0.11.3"
+
version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156"
+
checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
dependencies = [
"bytes",
"pin-project-lite",
···
[[package]]
name = "quinn-proto"
-
version = "0.11.6"
+
version = "0.11.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd"
+
checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
dependencies = [
"bytes",
"rand",
···
[[package]]
name = "quinn-udp"
-
version = "0.5.4"
+
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
+
checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b"
dependencies = [
"libc",
"once_cell",
"socket2",
"tracing",
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
[[package]]
name = "redox_syscall"
-
version = "0.5.3"
+
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
+
checksum = "0884ad60e090bf1345b93da0a5de8923c93884cd03f40dfcfddd3b4bee661853"
dependencies = [
"bitflags 2.6.0",
···
"proc-macro2",
"quote",
"rust-embed-utils",
-
"syn 2.0.76",
+
"syn 2.0.77",
"walkdir",
···
[[package]]
name = "rustc_version"
-
version = "0.4.0"
+
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
dependencies = [
"semver",
[[package]]
name = "rustix"
-
version = "0.38.35"
+
version = "0.38.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f"
+
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
dependencies = [
"bitflags 2.6.0",
"errno",
···
[[package]]
name = "rustls"
-
version = "0.23.12"
+
version = "0.23.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
+
checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8"
dependencies = [
"log",
"once_cell",
···
[[package]]
name = "rustls-webpki"
-
version = "0.102.7"
+
version = "0.102.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "84678086bd54edf2b415183ed7a94d0efb049f1b646a33e22a36f3794be6ae56"
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
dependencies = [
"ring",
"rustls-pki-types",
···
[[package]]
name = "safetensors"
-
version = "0.4.4"
+
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7725d4d98fa515472f43a6e2bbf956c48e06b89bb50593a040e5945160214450"
+
checksum = "44560c11236a6130a46ce36c836a62936dc81ebf8c36a37947423571be0e55b6"
dependencies = [
"serde",
"serde_json",
···
[[package]]
name = "schannel"
-
version = "0.1.23"
+
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
+
checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b"
dependencies = [
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
"proc-macro2",
"quote",
"serde_derive_internals",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "serde"
-
version = "1.0.209"
+
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09"
+
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
[[package]]
name = "serde_derive"
-
version = "1.0.209"
+
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170"
+
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
name = "serde_json"
-
version = "1.0.127"
+
version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad"
+
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
"memchr",
···
checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
dependencies = [
"itoa",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_plain"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
+
dependencies = [
"serde",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
dependencies = [
-
"heck 0.5.0",
+
"heck",
"proc-macro2",
"quote",
"rustversion",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "syn"
-
version = "2.0.76"
+
version = "2.0.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525"
+
checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
dependencies = [
"proc-macro2",
"quote",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "tokio"
-
version = "1.39.3"
+
version = "1.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5"
+
checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
dependencies = [
"backtrace",
"bytes",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "tokio-util"
-
version = "0.7.11"
+
version = "0.7.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
+
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
dependencies = [
"bytes",
"futures-core",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
[[package]]
name = "unicode-ident"
-
version = "1.0.12"
+
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
[[package]]
name = "unicode-normalization"
···
[[package]]
name = "unicode-segmentation"
-
version = "1.11.0"
+
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
[[package]]
name = "unicode-width"
···
"proc-macro2",
"quote",
"regex",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
"once_cell",
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
"wasm-bindgen-shared",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
···
[[package]]
name = "webpki-roots"
-
version = "0.26.3"
+
version = "0.26.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
+
checksum = "0bd24728e5af82c6c4ec1b66ac4844bdf8156257fccda846ec58b42cd0cdbe6a"
dependencies = [
"rustls-pki-types",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
"synstructure",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.76",
+
"syn 2.0.77",
"synstructure",
+3 -3
pkgs/by-name/mi/mistral-rs/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "mistral-rs";
-
version = "0.3.0";
+
version = "0.3.1";
src = fetchFromGitHub {
owner = "EricLBuehler";
repo = "mistral.rs";
rev = "refs/tags/v${version}";
-
hash = "sha256-3o7Esn+hEXKOoHX6JeXu/sgkWeL6tLCoH+Ep81/LoeU=";
+
hash = "sha256-ljGr8V6WkpXPV90SiHJ0t7wzBPx0J0FOB52YdLLIeoM=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"bindgen_cuda-0.1.6" = "sha256-OWGcQxT+x5HyIFskNVWpPr6Qfkh6Mv/g4PVSm5oA27g=";
-
"candle-core-0.6.0" = "sha256-8UBDQfbVR4gsZRRCy899DA27saiC85+FRm6L4YBX2oA=";
+
"candle-core-0.6.1" = "sha256-AtKjMTtbMBI2DbZXoWimhqcHmsz2DnRXJorqA0QYNHw=";
};
};
+4 -4
pkgs/by-name/na/navidrome/package.nix
···
buildGo123Module rec {
pname = "navidrome";
-
version = "0.53.2";
+
version = "0.53.3";
src = fetchFromGitHub {
owner = "navidrome";
repo = "navidrome";
rev = "v${version}";
-
hash = "sha256-ghjQZc+KWtgDcW9nU7L2FV8mOL6nn7V5Dn0JiG5gii8=";
+
hash = "sha256-RLmGjkeBHuvVdxXaGvlIFPI+6beAdtSLukVmwe6Hnag=";
};
-
vendorHash = "sha256-+acLAn9cicXYRVn3tL+GzFeCxHtXHDMgKisu4BzvGQs=";
+
vendorHash = "sha256-XjiRMRfsmcw/4RLZXN36BbzbCKu98BgD3cn89e/vra4=";
npmRoot = "ui";
npmDeps = fetchNpmDeps {
inherit src;
sourceRoot = "${src.name}/ui";
-
hash = "sha256-SebqSsng/t6g2874Hejc9wubiyYLE0jb3oLFnGwTRMA=";
+
hash = "sha256-0vHInRly5xirjfV7tcYVNVLaMk4YtJeB7Ky0mrDDDnY=";
};
nativeBuildInputs = [
+3 -3
pkgs/by-name/pl/pls/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "pls";
-
version = "0.0.1-beta.7";
+
version = "0.0.1-beta.8";
src = fetchFromGitHub {
owner = "pls-rs";
repo = "pls";
rev = "v${version}";
-
hash = "sha256-X4HGVwBZdDXH5RuBiugEd4I+aXRqZvXoRDZnm8GY3cM=";
+
hash = "sha256-gJufm2krZSTdBbbfZ+355M9e3MJQbDEpSPf0EbZEayQ=";
};
-
cargoHash = "sha256-d6HfIEROudINn2Jbnc3EEDZCD833FFFeUk6mvlu0ErA=";
+
cargoHash = "sha256-cDAHzK3pgpn5zEFdLBltf1e28yFFkXOzcF+nvDb8aWI=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
+2 -2
pkgs/by-name/qu/quill-log/package.nix
···
stdenv.mkDerivation rec {
pname = "quill-log";
-
version = "7.1.0";
+
version = "7.2.2";
src = fetchFromGitHub {
owner = "odygrd";
repo = "quill";
rev = "v${version}";
-
hash = "sha256-O+nCznhyoGq4u6bTPKaFMrRdFsH3uZmGFpFr4yjCq3I=";
+
hash = "sha256-au3cuzWm+MUCMDnHb93gy9b/8ITbLTQ1PYCjonh7QKw=";
};
nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/ry/ryujinx/package.nix
···
buildDotnetModule rec {
pname = "ryujinx";
-
version = "1.1.1398"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml
+
version = "1.1.1401"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml
src = fetchFromGitHub {
owner = "Ryujinx";
repo = "Ryujinx";
-
rev = "319507f2a12a6751f3ab833e498a3efd3119f806";
-
hash = "sha256-3DM/kahNhl8EhSIRuqH0trYoR51OrGxSE+GuOKxKr2c=";
+
rev = "5dbba07e33e83c9047dcbb701c9655edbbe89086";
+
hash = "sha256-UeJ3KE5e5H9crqroAxjmxYTf/Z4cbj41a6/1HW2nLcA=";
};
enableParallelBuilding = false;
+3 -3
pkgs/by-name/sr/srgn/package.nix
···
}:
rustPlatform.buildRustPackage rec {
pname = "srgn";
-
version = "0.13.1";
+
version = "0.13.2";
src = fetchFromGitHub {
owner = "alexpovel";
repo = "srgn";
rev = "srgn-v${version}";
-
hash = "sha256-KG5y5V+IWIAlFULnJEomNF2Q/jyKHSSJ6o83J6vlP8w=";
+
hash = "sha256-yVjxNTftrtKb/KHRZG7E3JcsCEtixhfBiHl/6zdcLMo=";
};
-
cargoHash = "sha256-Xxdsf2YaJ7IDccn6+fCoMZFXquY/4Ha+ymQSWLIhrWs=";
+
cargoHash = "sha256-Z8y5gN4CzfllUzSMUyCc7TZKeIYVZtATnaIQIga5cAk=";
nativeBuildInputs = [ installShellFiles ];
+36
pkgs/by-name/sw/swift-quit/package.nix
···
+
{
+
lib,
+
stdenvNoCC,
+
fetchurl,
+
unzip,
+
}:
+
stdenvNoCC.mkDerivation (finalAttrs: {
+
pname = "swift-quit";
+
version = "1.5";
+
+
src = fetchurl {
+
url = "https://github.com/onebadidea/swiftquit/releases/download/v${finalAttrs.version}/Swift.Quit.zip";
+
sha256 = "sha256-pORnyxOhTc/zykBHF5ujsWEZ9FjNauJGeBDz9bnHTvs=";
+
};
+
dontUnpack = true;
+
+
nativeBuildInputs = [ unzip ];
+
+
installPhase = ''
+
runHook preInstall
+
+
mkdir -p $out/Applications
+
unzip -d $out/Applications $src
+
+
runHook postInstall
+
'';
+
+
meta = {
+
description = "Automatic quitting of macOS apps when closing their windows.";
+
homepage = "https://swiftquit.com/";
+
license = lib.licenses.gpl3;
+
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
+
maintainers = with lib.maintainers; [ Enzime ];
+
platforms = lib.platforms.darwin;
+
};
+
})
+7 -2
pkgs/by-name/wa/waybar/package.nix
···
scdoc,
sndio,
spdlog,
+
systemdMinimal,
sway,
udev,
upower,
···
rfkillSupport ? true,
runTests ? stdenv.buildPlatform.canExecute stdenv.hostPlatform,
sndioSupport ? true,
+
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemdMinimal,
swaySupport ? true,
traySupport ? true,
udevSupport ? true,
···
++ lib.optional pulseSupport libpulseaudio
++ lib.optional sndioSupport sndio
++ lib.optional swaySupport sway
+
++ lib.optional systemdSupport systemdMinimal
++ lib.optional traySupport libdbusmenu-gtk3
++ lib.optional udevSupport udev
++ lib.optional upowerSupport upower
···
"pulseaudio" = pulseSupport;
"rfkill" = rfkillSupport;
"sndio" = sndioSupport;
-
"systemd" = true;
+
"systemd" = systemdSupport;
"tests" = runTests;
"upower_glib" = upowerSupport;
"wireplumber" = wireplumberSupport;
})
++ lib.optional experimentalPatches (lib.mesonBool "experimental" true);
-
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
+
env = lib.optionalAttrs systemdSupport {
+
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
+
};
postPatch = ''
substituteInPlace include/util/command.hpp \
+3 -3
pkgs/data/themes/whitesur-kde/default.nix
···
stdenvNoCC.mkDerivation {
pname = "whitesur-kde";
-
version = "2022-05-01-unstable-2024-09-10";
+
version = "2022-05-01-unstable-2024-09-26";
src = fetchFromGitHub {
owner = "vinceliuice";
repo = "whitesur-kde";
-
rev = "3d80dc97fd3008c4648937f8d7e39014f874a7eb";
-
hash = "sha256-jkK15evuYi1x+9MMERlp/F4O2AxQPHdrm4qBlzIPROM=";
+
rev = "8cbb617049ad79ecff63eb62770d360b73fed656";
+
hash = "sha256-uNRO/r8kJByS4BDq0jXth+y0rg3GtGsbXoNLOZHpuNU=";
};
# Propagate sddm theme dependencies to user env otherwise sddm does
+3 -3
pkgs/development/compilers/llvm/19/clang/gnu-install-dirs.patch
···
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/lib/libscanbuild/${lib})
list(APPEND Depends ${CMAKE_BINARY_DIR}/lib/libscanbuild/${lib})
install(FILES lib/libscanbuild/${lib}
-
- DESTINATION lib${CLANG_LIBDIR_SUFFIX}/libscanbuild
+
- DESTINATION lib/libscanbuild
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/libscanbuild"
COMPONENT scan-build-py)
endforeach()
···
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/lib/libscanbuild/resources/${resource})
list(APPEND Depends ${CMAKE_BINARY_DIR}/lib/libscanbuild/resources/${resource})
install(FILES lib/libscanbuild/resources/${resource}
-
- DESTINATION lib${CLANG_LIBDIR_SUFFIX}/libscanbuild/resources
+
- DESTINATION lib/libscanbuild/resources
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/libscanbuild/resources"
COMPONENT scan-build-py)
endforeach()
···
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/lib/libear/${lib})
list(APPEND Depends ${CMAKE_BINARY_DIR}/lib/libear/${lib})
install(FILES lib/libear/${lib}
-
- DESTINATION lib${CLANG_LIBDIR_SUFFIX}/libear
+
- DESTINATION lib/libear
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/libear"
COMPONENT scan-build-py)
endforeach()
+5 -2
pkgs/development/compilers/llvm/common/clang/default.nix
···
"-DCLANG_PSEUDO_GEN=${buildLlvmTools.libclang.dev}/bin/clang-pseudo-gen"
]) ++ lib.optionals (stdenv.targetPlatform.useLLVM or false) [
"-DCLANG_DEFAULT_CXX_STDLIB=ON"
-
] ++ devExtraCmakeFlags;
+
] ++ lib.optional (lib.versionAtLeast release_version "20") "-DLLVM_DIR=${libllvm.dev}/lib/cmake/llvm"
+
++ devExtraCmakeFlags;
postPatch = ''
# Make sure clang passes the correct location of libLTO to ld64
···
mkdir -p $dev/bin
'' + (if lib.versionOlder release_version "15" then ''
cp bin/clang-tblgen $dev/bin
-
'' else ''
+
'' else if lib.versionOlder release_version "20" then ''
cp bin/{clang-tblgen,clang-tidy-confusable-chars-gen,clang-pseudo-gen} $dev/bin
+
'' else ''
+
cp bin/{clang-tblgen,clang-tidy-confusable-chars-gen} $dev/bin
'');
passthru = {
+12 -6
pkgs/development/compilers/llvm/common/default.nix
···
}
{
after = "19";
-
before = "20";
path = ../19;
-
}
-
{
-
after = "20";
-
path = ../git;
}
];
"clang/purity.patch" = [
···
hash = "sha256-EX+PYGicK73lsL/J0kSZ4S5y1/NHIclBddhsnV6NPPI=";
stripLen = 1;
})
-
];
+
]
+
++
+
lib.optional (lib.versions.major metadata.release_version == "20")
+
# Fix for vt_gen, remove during next git bump
+
# https://github.com/llvm/llvm-project/pull/109817
+
(
+
fetchpatch {
+
url = "https://github.com/llvm/llvm-project/commit/cace9869775a185793122f845d81a5ff46f15728.patch";
+
stripLen = 1;
+
hash = "sha256-lt1iQfNIc3ot1+6J7d7dbqULwT0MyLIwR2EZB7RfPp4=";
+
}
+
);
pollyPatches =
[ (metadata.getVersionFile "llvm/gnu-install-dirs-polly.patch") ]
++ lib.optional (lib.versionAtLeast metadata.release_version "15")
+4 -4
pkgs/development/compilers/llvm/default.nix
···
"16.0.6".officialRelease.sha256 = "sha256-fspqSReX+VD+Nl/Cfq+tDcdPtnQPV1IRopNDfd5VtUs=";
"17.0.6".officialRelease.sha256 = "sha256-8MEDLLhocshmxoEBRSKlJ/GzJ8nfuzQ8qn0X/vLA+ag=";
"18.1.8".officialRelease.sha256 = "sha256-iiZKMRo/WxJaBXct9GdAcAT3cz9d9pnAcO1mmR6oPNE=";
-
"19.1.0-rc3".officialRelease.sha256 = "sha256-SRonSpXt1pH6Xk+rQZk9mrfMdvYIvOImwUfMUu3sBgs=";
+
"19.1.0".officialRelease.sha256 = "sha256-/Ano8LwpGmW3C1ovJyvY3WIfliVkQi130f70WazwzGc=";
"20.0.0-git".gitRelease = {
-
rev = "48498ec7a4ded9f1bf813051abdc54c3e5b66fa7";
-
rev-version = "20.0.0-unstable-2024-09-16";
-
sha256 = "sha256-kybEr4T6vA4F9wtWdFf0QagVYU3tUvaXiSzPsxBkVUI=";
+
rev = "81c3499531c3fe03827bd8bc890e3a16db9e4c3c";
+
rev-version = "20.0.0-unstable-2024-09-22";
+
sha256 = "sha256-mQZhQ0qfWs4NmL62H3wNwG28iARUasWh9m8zMCNkRis=";
};
} // llvmVersions;
-71
pkgs/development/compilers/llvm/git/clang/gnu-install-dirs.patch
···
-
diff --git a/cmake/modules/AddClang.cmake b/cmake/modules/AddClang.cmake
-
index 75b0080f6..c895b884c 100644
-
--- a/cmake/modules/AddClang.cmake
-
+++ b/cmake/modules/AddClang.cmake
-
@@ -119,8 +119,8 @@ macro(add_clang_library name)
-
install(TARGETS ${lib}
-
COMPONENT ${lib}
-
${export_to_clangtargets}
-
- LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
-
- ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}
-
+ LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}"
-
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}"
-
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
-
-
if (NOT LLVM_ENABLE_IDE)
-
diff --git a/lib/Headers/CMakeLists.txt b/lib/Headers/CMakeLists.txt
-
index e6ae4e19e..5ef01aea2 100644
-
--- a/lib/Headers/CMakeLists.txt
-
+++ b/lib/Headers/CMakeLists.txt
-
@@ -337,6 +337,7 @@ set(llvm_libc_wrapper_files
-
-
include(GetClangResourceDir)
-
get_clang_resource_dir(output_dir PREFIX ${LLVM_LIBRARY_OUTPUT_INTDIR}/.. SUBDIR include)
-
+set(header_install_dir ${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION_MAJOR}/include)
-
set(out_files)
-
set(generated_files)
-
-
diff --git a/tools/libclang/CMakeLists.txt b/tools/libclang/CMakeLists.txt
-
index b5b6d2807..6b592d255 100644
-
--- a/tools/libclang/CMakeLists.txt
-
+++ b/tools/libclang/CMakeLists.txt
-
@@ -246,7 +246,7 @@ foreach(PythonVersion ${CLANG_PYTHON_BINDINGS_VERSIONS})
-
COMPONENT
-
libclang-python-bindings
-
DESTINATION
-
- "lib${LLVM_LIBDIR_SUFFIX}/python${PythonVersion}/site-packages")
-
+ "${CMAKE_INSTALL_LIBDIR}${LLVM_LIBDIR_SUFFIX}/python${PythonVersion}/site-packages")
-
endforeach()
-
if(NOT LLVM_ENABLE_IDE)
-
add_custom_target(libclang-python-bindings)
-
diff --git a/tools/scan-build-py/CMakeLists.txt b/tools/scan-build-py/CMakeLists.txt
-
index 3aca22c0b..3115353e3 100644
-
--- a/tools/scan-build-py/CMakeLists.txt
-
+++ b/tools/scan-build-py/CMakeLists.txt
-
@@ -88,7 +88,7 @@ foreach(lib ${LibScanbuild})
-
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/lib/libscanbuild/${lib})
-
list(APPEND Depends ${CMAKE_BINARY_DIR}/lib/libscanbuild/${lib})
-
install(FILES lib/libscanbuild/${lib}
-
- DESTINATION lib/libscanbuild
-
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/libscanbuild"
-
COMPONENT scan-build-py)
-
endforeach()
-
-
@@ -106,7 +106,7 @@ foreach(resource ${LibScanbuildResources})
-
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/lib/libscanbuild/resources/${resource})
-
list(APPEND Depends ${CMAKE_BINARY_DIR}/lib/libscanbuild/resources/${resource})
-
install(FILES lib/libscanbuild/resources/${resource}
-
- DESTINATION lib/libscanbuild/resources
-
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/libscanbuild/resources"
-
COMPONENT scan-build-py)
-
endforeach()
-
-
@@ -122,7 +122,7 @@ foreach(lib ${LibEar})
-
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/lib/libear/${lib})
-
list(APPEND Depends ${CMAKE_BINARY_DIR}/lib/libear/${lib})
-
install(FILES lib/libear/${lib}
-
- DESTINATION lib/libear
-
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/libear"
-
COMPONENT scan-build-py)
-
endforeach()
-
-1
pkgs/development/lua-modules/overrides.nix
···
neorg = prev.neorg.overrideAttrs (oa: {
postConfigure = ''
-
cat ''${rockspecFilename}
substituteInPlace ''${rockspecFilename} \
--replace-fail "'nvim-nio ~> 1.7'," "'nvim-nio >= 1.7'," \
--replace-fail "'plenary.nvim == 0.1.4'," "'plenary.nvim',"
+2 -2
pkgs/development/python-modules/aioopenexchangerates/default.nix
···
buildPythonPackage rec {
pname = "aioopenexchangerates";
-
version = "0.6.3";
+
version = "0.6.5";
pyproject = true;
disabled = pythonOlder "3.11";
···
owner = "MartinHjelmare";
repo = "aioopenexchangerates";
rev = "refs/tags/v${version}";
-
hash = "sha256-JWf8MXwYKUF0brS+NcsPZkMS5XBtpZyFPD7dOS3g/6M=";
+
hash = "sha256-t8MmezVqXXodgMxaeulUueN3BFrv7TXgfKM/TagR/rE=";
};
pythonRelaxDeps = [ "pydantic" ];
+24
pkgs/development/python-modules/async-cache/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
}:
+
+
buildPythonPackage rec {
+
pname = "async-cache";
+
version = "1.1.1";
+
+
src = fetchFromGitHub {
+
owner = "iamsinghrajat";
+
repo = "async-cache";
+
rev = "9925f07920e6b585dc6345f49b7f477b3e1b8c2c"; # doesn't tag releases :(
+
hash = "sha256-AVSdtWPs1c8AE5PNOq+BdXzBXkI0aeFVzxxPl/ATyU0=";
+
};
+
+
meta = with lib; {
+
description = "Caching solution for asyncio";
+
homepage = "https://github.com/iamsinghrajat/async-cache";
+
license = licenses.mit;
+
maintainers = [ maintainers.lukegb ];
+
};
+
}
+2 -2
pkgs/development/python-modules/hishel/default.nix
···
buildPythonPackage rec {
pname = "hishel";
-
version = "0.0.31";
+
version = "0.0.32";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "karpetrosyan";
repo = "hishel";
rev = "refs/tags/${version}";
-
hash = "sha256-mJPvzGmu0veFlG7jlWdf919qOp3KfGv6SPRcFVFjhnc=";
+
hash = "sha256-EbvEu8pb64gj5buahpjR2dS/hjR9tRzhToQ41eRqYpw=";
};
build-system = [
+2 -2
pkgs/development/python-modules/oci/default.nix
···
buildPythonPackage rec {
pname = "oci";
-
version = "2.134.0";
+
version = "2.135.0";
format = "setuptools";
disabled = pythonOlder "3.7";
···
owner = "oracle";
repo = "oci-python-sdk";
rev = "refs/tags/v${version}";
-
hash = "sha256-EHqXwTsUy2bWQ1OzogL0wQhodgcm4v6T3fz7Y+d4o4w=";
+
hash = "sha256-wm0IwcDXdRU/7YCJe9nlmXClzxGRxF9HfAKjGRYO6NE=";
};
pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/pyexploitdb/default.nix
···
buildPythonPackage rec {
pname = "pyexploitdb";
-
version = "0.2.36";
+
version = "0.2.37";
pyproject = true;
disabled = pythonOlder "3.7";
···
src = fetchPypi {
pname = "pyExploitDb";
inherit version;
-
hash = "sha256-JezjKbCO75JFHLsDzk3zNMHO6Xpz2xTjecTfrXhgUiA=";
+
hash = "sha256-Z+pwss6CHy2tVz418oz2RxNYJff3x03fU7kjPkMwc5Y=";
};
build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pysqueezebox/default.nix
···
buildPythonPackage rec {
pname = "pysqueezebox";
-
version = "0.9.2";
+
version = "0.9.3";
pyproject = true;
disabled = pythonOlder "3.10";
···
owner = "rajlaud";
repo = "pysqueezebox";
rev = "refs/tags/v${version}";
-
hash = "sha256-gHv1dSWU0erzesneodMhCR1LQYutpDVithZ5M1lgk3I=";
+
hash = "sha256-gW05YOmFXIKJcJfrjaaJzZO7R5EijQsaztCMfJzujkk=";
};
build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pytouchlinesl/default.nix
···
buildPythonPackage rec {
pname = "pytouchlinesl";
-
version = "0.1.5";
+
version = "0.1.7";
pyproject = true;
disabled = pythonOlder "3.10";
···
owner = "jnsgruk";
repo = "pytouchlinesl";
rev = "refs/tags/${version}";
-
hash = "sha256-kdLMuxA1Ig85mH7s9rlmVjEsItXxRlDA1JTFasnJogg=";
+
hash = "sha256-Xth1zC08SIL8j7t2n64I4cyLd6UQABoSeg57tYhnvtE=";
};
build-system = [ setuptools ];
+45
pkgs/development/python-modules/pyytlounge/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
hatchling,
+
aiohttp,
+
pytest,
+
pytestCheckHook,
+
pytest-mock,
+
pytest-asyncio,
+
}:
+
+
buildPythonPackage rec {
+
pname = "pyytlounge";
+
version = "2.1.1";
+
+
src = fetchFromGitHub {
+
owner = "FabioGNR";
+
repo = "pyytlounge";
+
rev = "v${version}";
+
hash = "sha256-0QPa3EzOBv5fuw3FGgmoN4KiC4KHo1Z+Svjcneoe0pc=";
+
};
+
+
pyproject = true;
+
+
doCheck = true;
+
+
build-system = [ hatchling ];
+
+
dependencies = [ aiohttp ];
+
+
nativeCheckInputs = [
+
pytest
+
pytestCheckHook
+
pytest-mock
+
pytest-asyncio
+
];
+
+
meta = with lib; {
+
description = "Python YouTube Lounge API";
+
homepage = "https://github.com/FabioGNR/pyytlounge";
+
license = licenses.gpl3Only;
+
maintainers = [ maintainers.lukegb ];
+
};
+
}
+8 -5
pkgs/development/python-modules/succulent/default.nix
···
fetchFromGitHub,
flask,
lxml,
+
numpy,
pandas,
pyyaml,
poetry-core,
pytestCheckHook,
pythonOlder,
-
xmltodict,
}:
buildPythonPackage rec {
pname = "succulent";
-
version = "0.3.4";
+
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "firefly-cpp";
repo = "succulent";
rev = "refs/tags/${version}";
-
hash = "sha256-lU4M/ObX2mhHgYsc72zLp87g1lJ6ikfTeEojEdJwjGs=";
+
hash = "sha256-rD0qKYmWTu0LMRdWgul8OGp1FcczSY2/OxT8+oXO78E=";
};
-
pythonRelaxDeps = [ "flask" ];
+
pythonRelaxDeps = [
+
"flask"
+
"numpy"
+
];
nativeBuildInputs = [
poetry-core
···
propagatedBuildInputs = [
flask
lxml
+
numpy
pandas
pyyaml
-
xmltodict
];
nativeCheckInputs = [ pytestCheckHook ];
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
···
buildPythonPackage rec {
pname = "tencentcloud-sdk-python";
-
version = "3.0.1241";
+
version = "3.0.1242";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "TencentCloud";
repo = "tencentcloud-sdk-python";
rev = "refs/tags/${version}";
-
hash = "sha256-vL6FcD3M8M9RYJZt4LvQOD0Wr6i8KsAQSokjB/o4Lqw=";
+
hash = "sha256-fKwT8QmBBZMk+I2D/4Bgbg2EY2Fco1UrypibY025/VU=";
};
build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/teslajsonpy/default.nix
···
buildPythonPackage rec {
pname = "teslajsonpy";
-
version = "3.12.0";
+
version = "3.12.1";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "zabuldon";
repo = "teslajsonpy";
rev = "refs/tags/v${version}";
-
hash = "sha256-oIuIE5N/cHCEP3azMrwNiknP4q3rDxg4BiFQiJqcFkc=";
+
hash = "sha256-kUuvzjQBHWy3Si/Ha9M01ijv4QyQwK/g5gyhd7/lIdA=";
};
build-system = [ poetry-core ];
+32
pkgs/development/python-modules/textual-slider/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
setuptools,
+
textual,
+
}:
+
+
buildPythonPackage rec {
+
pname = "textual-slider";
+
version = "0.1.2";
+
+
src = fetchFromGitHub {
+
owner = "TomJGooding";
+
repo = "textual-slider";
+
rev = "91e64bafe3aa72f8d875e76b437d6af9320e039e";
+
hash = "sha256-lwN7igiEB8uC9e7qBSVLuKCpF41+Ni7ZJ3cVK19cEY8=";
+
};
+
+
pyproject = true;
+
+
build-system = [ setuptools ];
+
+
dependencies = [ textual ];
+
+
meta = with lib; {
+
description = "Textual widget for a simple slider";
+
homepage = "https://github.com/TomJGooding/textual-slider";
+
license = licenses.gpl3Only;
+
maintainers = [ maintainers.lukegb ];
+
};
+
}
+2 -2
pkgs/development/tools/build-managers/sbt/default.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "sbt";
-
version = "1.10.1";
+
version = "1.10.2";
src = fetchurl {
url = "https://github.com/sbt/sbt/releases/download/v${finalAttrs.version}/sbt-${finalAttrs.version}.tgz";
-
hash = "sha256-R/6YzpSY7kbmnyJnLzwSI0y+fnGedkQQoT5YtyXWWfM=";
+
hash = "sha256-pxbdAYvWi8epWi3RAzdmOqdvRDrWyZ3qvl6t0a38djk=";
};
postPatch = ''
+3 -3
pkgs/development/tools/gauge/plugins/dotnet/data.json
···
{
-
"version": "0.6.0",
-
"url": "https://github.com/getgauge/gauge-dotnet/releases/download/v0.6.0/gauge-dotnet-0.6.0.zip",
-
"hash": "sha256-xivSxTRs6yWfAR/ac/jLok3gcTobNu2a/vPGLwxt1Kk="
+
"version": "0.7.0",
+
"url": "https://github.com/getgauge/gauge-dotnet/releases/download/v0.7.0/gauge-dotnet-0.7.0.zip",
+
"hash": "sha256-u+Ir6Qlz7C8KNrfzy2wVrltkcruUZ954OaEwRtR52ds="
}
-39
pkgs/development/tools/misc/grcov/default.nix
···
-
{ lib, rustPlatform, fetchFromGitHub }:
-
-
rustPlatform.buildRustPackage rec {
-
pname = "grcov";
-
version = "0.8.19";
-
-
src = fetchFromGitHub {
-
owner = "mozilla";
-
repo = pname;
-
rev = "v${version}";
-
sha256 = "sha256-1t+hzB9sSApLScCkjBnLk9i2dsoEwZmWCFukEOvHhZI=";
-
};
-
-
cargoHash = "sha256-4KzFbfUqnGmle2fwSaHMPIJHQFDq8H2Qzm4FdYdqpuM=";
-
-
# tests do not find grcov path correctly
-
checkFlags = let
-
skipList = [
-
"test_coveralls_service_job_id_is_not_sufficient"
-
"test_coveralls_service_name_is_not_sufficient"
-
"test_coveralls_works_with_just_service_name_and_job_id_args"
-
"test_coveralls_works_with_just_token_arg"
-
"test_integration"
-
"test_integration_guess_single_file"
-
"test_integration_zip_dir"
-
"test_integration_zip_zip"
-
];
-
skipFlag = test: "--skip " + test;
-
in builtins.concatStringsSep " " (builtins.map skipFlag skipList);
-
-
meta = with lib; {
-
description =
-
"Rust tool to collect and aggregate code coverage data for multiple source files";
-
mainProgram = "grcov";
-
homepage = "https://github.com/mozilla/grcov";
-
license = licenses.mpl20;
-
maintainers = with maintainers; [ DieracDelta ];
-
};
-
}
+2 -2
pkgs/development/tools/parsing/spicy/default.nix
···
stdenv.mkDerivation rec {
pname = "spicy";
-
version = "1.11.1";
+
version = "1.11.2";
strictDeps = true;
···
owner = "zeek";
repo = "spicy";
rev = "v${version}";
-
hash = "sha256-gSfj5d8g2eQGhaT4dGyNPqWy+9GkDxMkMuZ7vKnhFVQ=";
+
hash = "sha256-cWK/LdV73VkiUpXyK+M7AotD7ucmNvh3HOzpxtCfGQM=";
fetchSubmodules = true;
};
+3 -3
pkgs/os-specific/darwin/bartender/default.nix
···
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "bartender";
-
version = "5.1.5";
+
version = "5.1.8";
src = fetchurl {
name = "Bartender ${lib.versions.major finalAttrs.version}.dmg";
url = "https://www.macbartender.com/B2/updates/${builtins.replaceStrings [ "." ] [ "-" ] finalAttrs.version}/Bartender%20${lib.versions.major finalAttrs.version}.dmg";
-
hash = "sha256-G1zbvCZtWCPsBonfRZSZat7s44ZxJAL7wod5460w+oM=";
+
hash = "sha256-8ypSGbgnfbUv1zZlEihBjiW3UEwU8GwBT4FGiuEpLfU=";
};
dontPatch = true;
···
changelog = "https://www.macbartender.com/Bartender${lib.versions.major finalAttrs.version}/release_notes/";
license = [ lib.licenses.unfree ];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
-
maintainers = with lib.maintainers; [ stepbrobd ];
+
maintainers = with lib.maintainers; [ stepbrobd DimitarNestorov ];
platforms = [ "aarch64-darwin" "x86_64-darwin" ];
};
})
+2 -2
pkgs/servers/monitoring/prometheus/mongodb-exporter.nix
···
buildGoModule rec {
pname = "mongodb_exporter";
-
version = "0.41.0";
+
version = "0.41.1";
src = fetchFromGitHub {
owner = "percona";
repo = "mongodb_exporter";
rev = "v${version}";
-
hash = "sha256-TYhJdKnLXkz9MKH7FfEdI91CW9mDuCH6SvddQHjwjDQ=";
+
hash = "sha256-2/oYfeybXnaoccyhriCHEY5lZcojLnk9qoiSlt4TDZY=";
};
vendorHash = "sha256-xKqt4JdHbFxMvFMa/zi8qGm9OZ3YFjGJQrMXfBfj4xA=";
+21 -7
pkgs/servers/osrm-backend/default.nix
···
})
];
-
env.NIX_CFLAGS_COMPILE = toString [
-
# Needed with GCC 12
-
"-Wno-error=stringop-overflow"
-
"-Wno-error=uninitialized"
-
# Needed for GCC 13
-
"-Wno-error=array-bounds"
-
];
+
env.NIX_CFLAGS_COMPILE = toString (
+
[
+
# Needed with GCC 12
+
"-Wno-error=stringop-overflow"
+
"-Wno-error=uninitialized"
+
# Needed for GCC 13
+
"-Wno-error=array-bounds"
+
]
+
++
+
# error: aligned deallocation function of type 'void (void *, std::align_val_t) noexcept' is only available on macOS 10.13 or newer
+
(lib.optionals
+
(
+
stdenv.hostPlatform.isDarwin
+
&& stdenv.hostPlatform.isx86_64
+
&& lib.versionOlder stdenv.hostPlatform.darwinMinVersion "10.13"
+
)
+
[
+
"-faligned-allocation"
+
]
+
)
+
);
postInstall = ''
mkdir -p $out/share/osrm-backend
+2 -2
pkgs/servers/sql/rqlite/default.nix
···
buildGoModule rec {
pname = "rqlite";
-
version = "8.30.3";
+
version = "8.31.0";
src = fetchFromGitHub {
owner = "rqlite";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-W5/e22Qc/qHHHAtsTD9isUkdZ1j4Wk0g56uuAGbE4cU=";
+
sha256 = "sha256-7yuc3W298Fay5A16a74TKuDd3huhtCpbefyI+aobgqM=";
};
vendorHash = "sha256-P8v0vqxOfN9JjwsdoM6JmqGujGP5V68OAUc3KB/YU+k=";
+2 -2
pkgs/shells/zsh/spaceship-prompt/default.nix
···
stdenvNoCC.mkDerivation rec {
pname = "spaceship-prompt";
-
version = "4.16.1";
+
version = "4.16.2";
src = fetchFromGitHub {
owner = "denysdovhan";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-pGjVhFBDreVSY3RSqVZTVFeJst6+PhdDGlYqoDrbQgI=";
+
sha256 = "sha256-2CuGiPXZ4C/KvHho08jz0RCdUcLVBnWmT+PlL1KHAx0=";
};
strictDeps = true;
+35 -38
pkgs/tools/backup/znapzend/default.nix
···
-
{ lib, stdenv, fetchFromGitHub, fetchurl, perl, perlPackages, wget, autoconf, automake, autoreconfHook }:
+
{ lib, stdenv, fetchFromGitHub, fetchurl, perl, autoreconfHook }:
let
# when upgrade znapzend, check versions of Perl libs here: https://github.com/oetiker/znapzend/blob/master/cpanfile
-
# pinned versions are listed at https://github.com/oetiker/znapzend/blob/master/thirdparty/cpanfile-5.30.snapshot
-
Mojolicious' = perlPackages.buildPerlPackage rec {
-
pname = "Mojolicious";
-
version = "8.73";
+
# pinned versions are listed at https://github.com/oetiker/znapzend/blob/v0.23.1/thirdparty/cpanfile-5.38.snapshot
+
+
MojoLogClearable = perl.pkgs.buildPerlModule rec {
+
pname = "Mojo-Log-Clearable";
+
version = "1.001";
src = fetchurl {
-
url = "mirror://cpan/authors/id/S/SR/SRI/${pname}-${version}.tar.gz";
-
sha256 = "118y2264f89bbp5ly2dh36xjq25jk85s2ssxa3y4gsgsk6sjzzk1";
+
url = "mirror://cpan/authors/id/D/DB/DBOOK/${pname}-${version}.tar.gz";
+
hash = "sha256-guBqKdWemc4mC/xp77Wd7qeV2iRqY4wrQ5NRsHtsCnI=";
};
-
};
-
MojoIOLoopForkCall' = perlPackages.buildPerlModule rec {
-
pname = "Mojo-IOLoop-ForkCall";
-
version = "0.20";
-
src = fetchurl {
-
url = "mirror://cpan/authors/id/J/JB/JBERGER/${pname}-${version}.tar.gz";
-
sha256 = "19pih5x0ayxs2m8j29qwdpi6ky3w4ghv6vrmax3ix9r59hj6569b";
-
};
-
propagatedBuildInputs = [ perlPackages.IOPipely Mojolicious' ];
+
buildInputs = with perl.pkgs; [ ModuleBuildTiny ];
+
propagatedBuildInputs = with perl.pkgs; [ Mojolicious RoleTiny ClassMethodModifiers ];
};
perl' = perl.withPackages (p:
-
[ MojoIOLoopForkCall'
-
p.TAPParserSourceHandlerpgTAP
+
with p; [
+
ClassMethodModifiers
+
ExtUtilsConfig
+
ExtUtilsHelpers
+
ExtUtilsInstallPaths
+
ModuleBuildTiny
+
MojoLogClearable
+
Mojolicious
+
RoleTiny
]);
-
-
version = "0.21.0";
-
sha256 = "1lg46rf2ahlclan29zx8ag5k4fjp28sc9l02z76f0pvdlj4qnihl";
in
-
stdenv.mkDerivation {
+
stdenv.mkDerivation (finalAttrs: {
pname = "znapzend";
-
inherit version;
+
version = "0.23.2";
src = fetchFromGitHub {
owner = "oetiker";
repo = "znapzend";
-
rev = "v${version}";
-
inherit sha256;
+
# Sometimes there's a branch with the same name as the tag,
+
# confusing fetchFromGitHub. Working around this by prefixing
+
# with `refs/tags/`.
+
rev = "refs/tags/v${finalAttrs.version}";
+
hash = "sha256-UvaYzzV+5mZAAwSSMzq4fjCu/mzjeSyQdwQRTZGNktM=";
};
-
buildInputs = [ wget perl' ];
+
outputs = [ "out" "man" ];
-
nativeBuildInputs = [ autoconf automake autoreconfHook ];
+
buildInputs = [ perl' ];
+
nativeBuildInputs = [ autoreconfHook ];
-
preConfigure = ''
+
postPatch = ''
sed -i 's/^SUBDIRS =.*$/SUBDIRS = lib/' Makefile.am
-
-
grep -v thirdparty/Makefile configure.ac > configure.ac.tmp
-
mv configure.ac.tmp configure.ac
-
-
autoconf
'';
-
preBuild = ''
-
aclocal
-
automake
+
doInstallCheck = true;
+
installCheckPhase = ''
+
$out/bin/znapzend --version
'';
meta = with lib; {
description = "High performance open source ZFS backup with mbuffer and ssh support";
homepage = "https://www.znapzend.org";
license = licenses.gpl3;
-
maintainers = with maintainers; [ otwieracz ];
+
maintainers = with maintainers; [ otwieracz ma27 ];
platforms = platforms.all;
};
-
}
+
})
+2 -2
pkgs/tools/filesystems/mtools/default.nix
···
stdenv.mkDerivation rec {
pname = "mtools";
-
version = "4.0.44";
+
version = "4.0.45";
src = fetchurl {
url = "mirror://gnu/mtools/${pname}-${version}.tar.bz2";
-
hash = "sha256-N9xN8CJTPD1LLsHHiXPCfH6LWFN0wtRqtkxqPbMe3bg=";
+
hash = "sha256-CwCKlr0O/g5UL6Q4PUaa9mvEqTOUmQsQNzCoFgpn1hg=";
};
patches = lib.optional stdenv.hostPlatform.isDarwin ./UNUSED-darwin.patch;
+3 -3
pkgs/tools/filesystems/ssdfs-utils/default.nix
···
# as ssdfs-utils, not ssdfs-tools.
pname = "ssdfs-utils";
# The version is taken from `configure.ac`, there are no tags.
-
version = "4.43";
+
version = "4.45";
src = fetchFromGitHub {
owner = "dubeyko";
repo = "ssdfs-tools";
-
rev = "cb0b3d8a01eb2c27d3bf59de6313d14fc7d3b6ac";
-
hash = "sha256-LDxL0+IkQ6sgkFjbiUwB416ZjQGA3JV05o6D6ibAHJE=";
+
rev = "f78ebf2a19eb338ae6858aa4f28133b117507df7";
+
hash = "sha256-RKVcXZakYDd7Vfd1w0pNs9/oMRzvzRr8VabpUBRcKc8=";
};
strictDeps = true;
+2 -2
pkgs/tools/misc/esptool/default.nix
···
python3Packages.buildPythonApplication rec {
pname = "esptool";
-
version = "4.8.0";
+
version = "4.8.1";
pyproject = true;
src = fetchFromGitHub {
owner = "espressif";
repo = "esptool";
rev = "refs/tags/v${version}";
-
hash = "sha256-BjoeJxtJ2cin6do82MCBjgAaTF0t7zy6JbzhBqnKAw8=";
+
hash = "sha256-cNEg2a3j7Vql06GwVaE9y86UtMkNsUdJYM00OEUra2w=";
};
postPatch = ''
+3 -3
pkgs/tools/misc/interactsh/default.nix
···
buildGoModule rec {
pname = "interactsh";
-
version = "1.1.9";
+
version = "1.2.1";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "refs/tags/v${version}";
-
hash = "sha256-IpKsKfu2mVLyrR0wnbraV/0aaX7uRleGbl3q4bv90Eg=";
+
hash = "sha256-0AyFmT0vYYJ5/gTQI2F+fPsM0oBs4CigNCXS3+ECoRo=";
};
-
vendorHash = "sha256-xUMEmeoE3Th37kgz5LJg3F27RlKBoIhRf0VfRzkgV2A=";
+
vendorHash = "sha256-SYs04LgWy6Fd9SUAxs4tB+VK2CK3gqb7fDYkp16i67Q=";
modRoot = ".";
subPackages = [
+2 -2
pkgs/tools/networking/haproxy/default.nix
···
sslPkg = sslPkgs.${sslLibrary};
in stdenv.mkDerivation (finalAttrs: {
pname = "haproxy";
-
version = "3.0.4";
+
version = "3.0.5";
src = fetchurl {
url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz";
-
hash = "sha256-qr/ZitpyG7+2j3gFWGztA3P7TI1z4Y+qlAVaFsIJaTY";
+
hash = "sha256-rjgiHoWuugOKcl7771v+XnZnG6eVnl63TDn9B55dAC4";
};
buildInputs = [ sslPkg zlib libxcrypt ]
+3 -3
pkgs/tools/networking/v2raya/default.nix
···
}:
let
pname = "v2raya";
-
version = "2.2.5.6";
+
version = "2.2.5.8";
src = fetchFromGitHub {
owner = "v2rayA";
repo = "v2rayA";
rev = "refs/tags/v${version}";
-
hash = "sha256-tXVyroQ2yXwLe+OulvVQYgfd9EcC87S0L8d7w5gLnMI=";
+
hash = "sha256-yFN7mG5qS7BAuCSvSSZFFiyytd7XZ4kJvctc8cU72Oc=";
postFetch = "sed -i -e 's/npmmirror/yarnpkg/g' $out/gui/yarn.lock";
};
···
sourceRoot = "${src.name}/service";
-
vendorHash = "sha256-8MSNTKeN0N2/yaHnXsKmxzw9vRy+E5q60IpwLycqC2I=";
+
vendorHash = "sha256-Oa7YmxcZr5scbhNeqGxJOkryL2uHQQ3RkLGWJaIXq3s=";
ldflags = [
"-s"
+36 -24
pkgs/tools/package-management/nixpkgs-review/default.nix
···
-
{ lib
-
, python3
-
, fetchFromGitHub
+
{
+
lib,
+
python3Packages,
+
fetchFromGitHub,
-
, installShellFiles
-
, bubblewrap
-
, nix-output-monitor
-
, cacert
-
, git
-
, nix
+
installShellFiles,
+
bubblewrap,
+
nix-output-monitor,
+
cacert,
+
git,
+
nix,
-
, withAutocomplete ? true
-
, withSandboxSupport ? false
-
, withNom ? false
+
withAutocomplete ? true,
+
withSandboxSupport ? false,
+
withNom ? false,
}:
-
python3.pkgs.buildPythonApplication rec {
+
python3Packages.buildPythonApplication rec {
pname = "nixpkgs-review";
version = "2.10.5";
-
format = "pyproject";
+
pyproject = true;
src = fetchFromGitHub {
owner = "Mic92";
···
hash = "sha256-dRTKE8gkV298ZmMokyy3Ufer/Lp1GQYdEhIBoLhloEQ=";
};
-
nativeBuildInputs = [
-
installShellFiles
-
python3.pkgs.setuptools
-
] ++ lib.optionals withAutocomplete [
-
python3.pkgs.argcomplete
+
build-system = [
+
python3Packages.setuptools
];
-
propagatedBuildInputs = [ python3.pkgs.argcomplete ];
+
dependencies = lib.optionals withAutocomplete [
+
python3Packages.argcomplete
+
];
+
+
nativeBuildInputs =
+
[
+
installShellFiles
+
]
+
++ lib.optionals withAutocomplete [
+
python3Packages.argcomplete
+
];
makeWrapperArgs =
let
-
binPath = [ nix git ]
-
++ lib.optional withSandboxSupport bubblewrap
-
++ lib.optional withNom nix-output-monitor;
+
binPath = [
+
nix
+
git
+
] ++ lib.optional withSandboxSupport bubblewrap ++ lib.optional withNom nix-output-monitor;
in
[
"--prefix PATH : ${lib.makeBinPath binPath}"
···
homepage = "https://github.com/Mic92/nixpkgs-review";
license = licenses.mit;
mainProgram = "nixpkgs-review";
-
maintainers = with maintainers; [ figsoda mic92 ];
+
maintainers = with maintainers; [
+
figsoda
+
mic92
+
];
};
}
+1 -1
pkgs/tools/security/gnupg/24.nix
···
frontend applications and libraries are available. Version 2 of GnuPG
also provides support for S/MIME.
'';
-
maintainers = with maintainers; [ fpletz ];
+
maintainers = with maintainers; [ fpletz sgo ];
platforms = platforms.all;
mainProgram = "gpg";
};
+2 -2
pkgs/tools/security/ldeep/default.nix
···
python3.pkgs.buildPythonApplication rec {
pname = "ldeep";
-
version = "1.0.66";
+
version = "1.0.67";
pyproject = true;
src = fetchFromGitHub {
owner = "franc-pentest";
repo = "ldeep";
rev = "refs/tags/${version}";
-
hash = "sha256-zXXTeuEgcGaMkJGWwWQ6DpKPEZp6fjy5i4jRr4AvApQ=";
+
hash = "sha256-KTR5admMeu3bozT9D/8Bdk4EusjLVTLr2+d00U+adLI=";
};
pythonRelaxDeps = [
+2 -2
pkgs/top-level/aliases.nix
···
libbpf_1 = libbpf; # Added 2022-12-06
libbson = mongoc; # Added 2024-03-11
libcap_pam = throw "'libcap_pam' has been replaced with 'libcap'"; # Converted to throw 2023-09-10
-
libclc = llvmPackages_latest.libclc; # Added 2023-10-28
+
libclc = llvmPackages_18.libclc; # Added 2023-10-28
libcxxabi = throw "'libcxxabi' was merged into 'libcxx'"; # Converted to throw 2024-03-08
libdwarf_20210528 = throw "'libdwarf_20210528' has been removed because it is not used in nixpkgs, move to libdwarf"; # Added 2024-03-23
libgme = game-music-emu; # Added 2022-07-20
···
openbsdCross = openbsd; # Added 2024-09-06
# LLVM packages for (integration) testing that should not be used inside Nixpkgs:
-
llvmPackages_latest = llvmPackages_18;
+
llvmPackages_latest = llvmPackages_19;
/* If these are in the scope of all-packages.nix, they cause collisions
between mixed versions of qt. See:
-4
pkgs/top-level/all-packages.nix
···
eff = callPackage ../development/interpreters/eff { };
-
eflite = callPackage ../applications/audio/eflite { };
-
eid-mw = callPackage ../tools/security/eid-mw {
autoreconfHook = buildPackages.autoreconfHook269;
};
···
gradle_7 = wrapGradle gradle_7-unwrapped;
gradle_8 = wrapGradle gradle_8-unwrapped;
gradle = wrapGradle gradle-unwrapped;
-
-
grcov = callPackage ../development/tools/misc/grcov { };
gperf = callPackage ../development/tools/misc/gperf { };
# 3.1 changed some parameters from int to size_t, leading to mismatches.
+6
pkgs/top-level/python-packages.nix
···
asyncarve = callPackage ../development/python-modules/asyncarve { };
+
async-cache = callPackage ../development/python-modules/async-cache { };
+
async-dns = callPackage ../development/python-modules/async-dns { };
async-generator = callPackage ../development/python-modules/async-generator { };
···
pyyardian = callPackage ../development/python-modules/pyyardian { };
+
pyytlounge = callPackage ../development/python-modules/pyytlounge { };
+
pyzabbix = callPackage ../development/python-modules/pyzabbix { };
pyzerproc = callPackage ../development/python-modules/pyzerproc { };
···
textual = callPackage ../development/python-modules/textual { };
textual-dev = callPackage ../development/python-modules/textual-dev { };
+
+
textual-slider = callPackage ../development/python-modules/textual-slider { };
textual-universal-directorytree = callPackage ../development/python-modules/textual-universal-directorytree { };