Merge master into staging-next

authored by github-actions[bot] and committed by GitHub cb25ab46 d2fdbb7e

+577 -717
+1 -1
nixos/modules/system/boot/stage-1.nix
··· 123 123 # ZFS properties such as `setuid=off` and `exec=off` (unless manually 124 124 # duplicated in `fileSystems.*.options`, defeating "zfsutil"'s purpose). 125 125 copy_bin_and_libs ${lib.getOutput "mount" pkgs.util-linux}/bin/mount 126 - copy_bin_and_libs ${pkgs.zfs}/bin/mount.zfs 126 + copy_bin_and_libs ${config.boot.zfs.package}/bin/mount.zfs 127 127 ''} 128 128 129 129 # Copy some util-linux stuff.
+3 -3
pkgs/applications/audio/mousai/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "mousai"; 26 - version = "0.7.3"; 26 + version = "0.7.5"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "SeaDve"; 30 30 repo = "Mousai"; 31 31 rev = "v${version}"; 32 - hash = "sha256-VAP2ENgI0Ge1JJEfNtw8dgOLZ1g0sEaoZHICFKI3hXM="; 32 + hash = "sha256-4olJGpS5QfPyt6/ZmigoojP7kGjx6LExW3LKrL4nxTE="; 33 33 }; 34 34 35 35 cargoDeps = rustPlatform.fetchCargoTarball { 36 36 inherit src; 37 37 name = "${pname}-${version}"; 38 - hash = "sha256-vbMfIk/fXmAHgouzyeceP7jAc/OIyUxFDu/+31aB1F4="; 38 + hash = "sha256-SeKcguCB+f2ocKKf7Moc74O2sGK2EXgEEkTiN82dSps="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+3 -3
pkgs/applications/emulators/uxn/default.nix pkgs/by-name/ux/uxn/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "uxn"; 10 - version = "unstable-2023-08-30"; 10 + version = "unstable-2023-09-06"; 11 11 12 12 src = fetchFromSourcehut { 13 13 owner = "~rabbits"; 14 14 repo = "uxn"; 15 - rev = "cfd29ac5119e5b270d5f3e3e9e29d020dadef8d3"; 16 - hash = "sha256-0fE9M+IEKTBG0WLKEbXG1kAJv19TrQWTFMjedOyX8N0="; 15 + rev = "d7f96acb93742744fec32ba667a4b4438dcf90cf"; 16 + hash = "sha256-kaYT61qDSPtpNd0M3IHxR8EzhnsB5uNH075+Xag1Vv8="; 17 17 }; 18 18 19 19 outputs = [ "out" "projects" ];
+2 -2
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 75 75 urllib3 76 76 ]; 77 77 in mkDerivation rec { 78 - version = "3.28.10"; 78 + version = "3.28.11"; 79 79 pname = "qgis-ltr-unwrapped"; 80 80 81 81 src = fetchFromGitHub { 82 82 owner = "qgis"; 83 83 repo = "QGIS"; 84 84 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 85 - hash = "sha256-5TGcXYfOJonpqecV59dhFcl4rNXbBSofdoTz5o5FFcc="; 85 + hash = "sha256-3yV47GlIhYGR7+ZlPLQw1vy1x8xuJd5erUJO3Pw7L+g="; 86 86 }; 87 87 88 88 passthru = {
+2 -2
pkgs/applications/gis/qgis/unwrapped.nix
··· 76 76 urllib3 77 77 ]; 78 78 in mkDerivation rec { 79 - version = "3.32.2"; 79 + version = "3.32.3"; 80 80 pname = "qgis-unwrapped"; 81 81 82 82 src = fetchFromGitHub { 83 83 owner = "qgis"; 84 84 repo = "QGIS"; 85 85 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 86 - hash = "sha256-4Hcppzgst6v7SR/06ZICSujC4Gfckd/X5Mj40fh9OOU="; 86 + hash = "sha256-ge5ne22sDLKbrJk2vYQxpu3iRXSoOk9924c/RdtD3Nc="; 87 87 }; 88 88 89 89 passthru = {
+1 -1
pkgs/applications/misc/blender/default.nix
··· 79 79 ++ lib.optional cudaSupport cudaPackages.cudatoolkit 80 80 ++ lib.optional colladaSupport opencollada 81 81 ++ lib.optional spaceNavSupport libspnav; 82 - pythonPath = with python310Packages; [ numpy requests ]; 82 + pythonPath = with python310Packages; [ numpy requests zstandard ]; 83 83 84 84 postPatch = '' 85 85 '' +
+2 -2
pkgs/applications/radio/cloudlog/default.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation rec { 10 10 pname = "cloudlog"; 11 - version = "2.4.8"; 11 + version = "2.4.9"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "magicbug"; 15 15 repo = "Cloudlog"; 16 16 rev = version; 17 - sha256 = "sha256-LY8kTZooBzwrrruCjwdiNhxjrmIDV4N2HcfhbSSe6o4="; 17 + sha256 = "sha256-sygkddnSou1U2ZEwNhKvHCkFEl91pYSYOjbKPLqgGj4="; 18 18 }; 19 19 20 20 postPath = ''
+13 -9
pkgs/applications/video/celluloid/default.nix pkgs/by-name/ce/celluloid/package.nix
··· 16 16 , wrapGAppsHook4 17 17 }: 18 18 19 - stdenv.mkDerivation rec { 19 + stdenv.mkDerivation (finalAttrs: { 20 20 pname = "celluloid"; 21 - version = "0.25"; 21 + version = "0.26"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "celluloid-player"; 25 25 repo = "celluloid"; 26 - rev = "v${version}"; 27 - hash = "sha256-GCRpcC/olMUbMG2fadNcXTKF/Zl0+GY2+eSRLQhnWxI="; 26 + rev = "v${finalAttrs.version}"; 27 + hash = "sha256-npaagLlkwDe0r0hqj7buM4B9sbLCX1sR2yFXXj+obdE="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ ··· 49 49 patchShebangs meson-post-install.py src/generate-authors.py 50 50 ''; 51 51 52 + strictDeps = true; 53 + 52 54 doCheck = true; 53 55 54 56 passthru.updateScript = nix-update-script { }; 55 57 56 - meta = with lib; { 58 + meta = { 57 59 homepage = "https://github.com/celluloid-player/celluloid"; 58 60 description = "Simple GTK frontend for the mpv video player"; 59 61 longDescription = '' ··· 61 63 Celluloid interacts with mpv via the client API exported by libmpv, 62 64 allowing access to mpv's powerful playback capabilities. 63 65 ''; 64 - license = licenses.gpl3Plus; 65 - maintainers = with maintainers; [ AndersonTorres ]; 66 - platforms = platforms.linux; 66 + changelog = "https://github.com/celluloid-player/celluloid/releases/tag/${finalAttrs.src.rev}"; 67 + license = lib.licenses.gpl3Plus; 68 + mainProgram = "celluloid"; 69 + maintainers = with lib.maintainers; [ AndersonTorres ]; 70 + platforms = lib.platforms.linux; 67 71 }; 68 - } 72 + })
+5 -5
pkgs/applications/virtualization/distrobox/default.nix
··· 1 1 { stdenvNoCC, lib, fetchFromGitHub, makeWrapper, wget }: 2 2 3 - stdenvNoCC.mkDerivation rec { 3 + stdenvNoCC.mkDerivation (finalAttrs: { 4 4 pname = "distrobox"; 5 5 version = "1.5.0.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "89luca89"; 9 - repo = pname; 10 - rev = version; 11 - sha256 = "sha256-ss8049D6n1V/gDzEMjywDnoke5s2we9j3mO8yta72UA="; 9 + repo = finalAttrs.pname; 10 + rev = finalAttrs.version; 11 + hash = "sha256-ss8049D6n1V/gDzEMjywDnoke5s2we9j3mO8yta72UA="; 12 12 }; 13 13 14 14 dontConfigure = true; ··· 44 44 platforms = platforms.linux; 45 45 maintainers = with maintainers; [ atila ]; 46 46 }; 47 - } 47 + })
+8 -6
pkgs/applications/window-managers/katriawm/default.nix pkgs/by-name/ka/katriawm/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "katriawm"; 12 - version = "23.06"; 12 + version = "23.08"; 13 13 14 14 src = fetchzip { 15 - name = finalAttrs.pname + "-" + finalAttrs.version; 16 15 url = "https://www.uninformativ.de/git/katriawm/archives/katriawm-v${finalAttrs.version}.tar.gz"; 17 - hash = "sha256-4vdBX5biakoxiOyz7DPNgkLxlzi27kZ9rC20g+pn3N4="; 16 + hash = "sha256-IWviLboZz421/Amz/QG4o8jYaG8Y/l5PvmvXfK5nzJE="; 18 17 }; 18 + 19 + sourceRoot = "${finalAttrs.src.name}/src"; 19 20 20 21 nativeBuildInputs = [ 21 22 pkg-config ··· 27 28 libXrandr 28 29 ]; 29 30 30 - preBuild = '' 31 - cd src 32 - ''; 31 + outputs = [ "out" "man" ]; 32 + 33 + strictDeps = true; 33 34 34 35 installFlags = [ "prefix=$(out)" ]; 35 36 ··· 37 38 homepage = "https://www.uninformativ.de/git/katriawm/file/README.html"; 38 39 description = "A non-reparenting, dynamic window manager with decorations"; 39 40 license = lib.licenses.mit; 41 + mainProgram = "katriawm"; 40 42 maintainers = [ lib.maintainers.AndersonTorres ]; 41 43 inherit (libX11.meta) platforms; 42 44 };
+3 -2
pkgs/development/interpreters/bqn/cbqn/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "cbqn" + lib.optionalString (!genBytecode) "-standalone"; 26 - version = "0.3.0"; 26 + version = "0.4.0"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "dzaima"; 30 30 repo = "CBQN"; 31 31 rev = "v${version}"; 32 - hash = "sha256-LoxwNxuadbYJgIkr1+bZoErTc9WllN2siAsKnxoom3Y="; 32 + hash = "sha256-jS60phZMrpGa+GVzZSGZwVVtW9RBp/oHRIYP/pXRU2I="; 33 33 }; 34 34 35 35 nativeBuildInputs = [ ··· 127 127 license = licenses.gpl3Plus; 128 128 maintainers = with maintainers; [ AndersonTorres sternenseemann synthetica shnarazk detegr ]; 129 129 platforms = platforms.all; 130 + mainProgram = "cbqn"; 130 131 }; 131 132 }
+3 -3
pkgs/development/interpreters/bqn/cbqn/singeli.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation { 7 7 pname = "singeli"; 8 - version = "unstable-2023-04-27"; 8 + version = "unstable-2023-09-12"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mlochbaum"; 12 12 repo = "Singeli"; 13 - rev = "853ab1a06ae8d8603f228d8e784fa319cc401459"; 14 - hash = "sha256-X/NnufvakihJAE9H7geuuDS7Tv9l7tgLKdRgXC4ZX4A="; 13 + rev = "49a6a90d83992171a2db749e9f7fd400ec65ef2c"; 14 + hash = "sha256-9Dc6yrrXV6P9s1uwGlXB+ZBquOLejWe41k0TSpJGDgE="; 15 15 }; 16 16 17 17 dontConfigure = true;
+3 -3
pkgs/development/python-modules/bentoml/default.nix
··· 68 68 }: 69 69 70 70 let 71 - version = "1.1.4"; 71 + version = "1.1.6"; 72 72 aws = [ fs-s3fs ]; 73 73 grpc = [ 74 74 grpcio ··· 103 103 src = fetchFromGitHub { 104 104 owner = "bentoml"; 105 105 repo = "BentoML"; 106 - rev = "v${version}"; 107 - hash = "sha256-aGSw40haVGo4UpUItStsFxfgjAnY4Rhiat4qDUIINWU="; 106 + rev = "refs/tags/v${version}"; 107 + hash = "sha256-SDahF4oAewWzCofErgYJDId/TBv74gLCxYT/jKEAgpU="; 108 108 }; 109 109 110 110 pythonRelaxDeps = [
+96 -163
pkgs/development/tools/ruff/Cargo.lock
··· 128 128 129 129 [[package]] 130 130 name = "argfile" 131 - version = "0.1.5" 131 + version = "0.1.6" 132 132 source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "265f5108974489a217d5098cd81666b60480c8dd67302acbbe7cbdd8aa09d638" 133 + checksum = "1287c4f82a41c5085e65ee337c7934d71ab43d5187740a81fb69129013f6a5f6" 134 134 dependencies = [ 135 + "fs-err", 135 136 "os_str_bytes", 136 137 ] 137 138 ··· 220 221 checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" 221 222 dependencies = [ 222 223 "memchr", 223 - "regex-automata 0.3.7", 224 + "regex-automata 0.3.8", 224 225 "serde", 225 226 ] 226 227 ··· 271 272 272 273 [[package]] 273 274 name = "chrono" 274 - version = "0.4.28" 275 + version = "0.4.30" 275 276 source = "registry+https://github.com/rust-lang/crates.io-index" 276 - checksum = "95ed24df0632f708f5f6d8082675bef2596f7084dee3dd55f632290bf35bfe0f" 277 + checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" 277 278 dependencies = [ 278 279 "android-tzdata", 279 280 "iana-time-zone", 280 281 "js-sys", 281 282 "num-traits", 282 - "serde", 283 - "time 0.1.45", 284 283 "wasm-bindgen", 285 284 "windows-targets 0.48.5", 286 285 ] ··· 314 313 315 314 [[package]] 316 315 name = "clap" 317 - version = "4.4.1" 316 + version = "4.4.3" 318 317 source = "registry+https://github.com/rust-lang/crates.io-index" 319 - checksum = "7c8d502cbaec4595d2e7d5f61e318f05417bd2b66fdc3809498f0d3fdf0bea27" 318 + checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6" 320 319 dependencies = [ 321 320 "clap_builder", 322 321 "clap_derive", 323 - "once_cell", 324 322 ] 325 323 326 324 [[package]] 327 325 name = "clap_builder" 328 - version = "4.4.1" 326 + version = "4.4.2" 329 327 source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "5891c7bc0edb3e1c2204fc5e94009affabeb1821c9e5fdc3959536c5c0bb984d" 328 + checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" 331 329 dependencies = [ 332 330 "anstream", 333 331 "anstyle", ··· 378 376 379 377 [[package]] 380 378 name = "clap_derive" 381 - version = "4.4.0" 379 + version = "4.4.2" 382 380 source = "registry+https://github.com/rust-lang/crates.io-index" 383 - checksum = "c9fd1a5729c4548118d7d70ff234a44868d00489a4b6597b0b020918a0e91a1a" 381 + checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" 384 382 dependencies = [ 385 383 "heck", 386 384 "proc-macro2", 387 385 "quote", 388 - "syn 2.0.29", 386 + "syn 2.0.33", 389 387 ] 390 388 391 389 [[package]] ··· 610 608 "proc-macro2", 611 609 "quote", 612 610 "strsim", 613 - "syn 2.0.29", 611 + "syn 2.0.33", 614 612 ] 615 613 616 614 [[package]] ··· 621 619 dependencies = [ 622 620 "darling_core", 623 621 "quote", 624 - "syn 2.0.29", 625 - ] 626 - 627 - [[package]] 628 - name = "deranged" 629 - version = "0.3.8" 630 - source = "registry+https://github.com/rust-lang/crates.io-index" 631 - checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 632 - dependencies = [ 633 - "serde", 622 + "syn 2.0.33", 634 623 ] 635 624 636 625 [[package]] ··· 821 810 822 811 [[package]] 823 812 name = "flake8-to-ruff" 824 - version = "0.0.289" 813 + version = "0.0.290" 825 814 dependencies = [ 826 815 "anyhow", 827 816 "clap", ··· 892 881 "cfg-if", 893 882 "js-sys", 894 883 "libc", 895 - "wasi 0.11.0+wasi-snapshot-preview1", 884 + "wasi", 896 885 "wasm-bindgen", 897 886 ] 898 887 ··· 946 935 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 947 936 948 937 [[package]] 949 - name = "hex" 950 - version = "0.4.3" 951 - source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 953 - 954 - [[package]] 955 938 name = "hexf-parse" 956 939 version = "0.2.1" 957 940 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1041 1024 1042 1025 [[package]] 1043 1026 name = "indexmap" 1044 - version = "1.9.3" 1045 - source = "registry+https://github.com/rust-lang/crates.io-index" 1046 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1047 - dependencies = [ 1048 - "autocfg", 1049 - "hashbrown 0.12.3", 1050 - "serde", 1051 - ] 1052 - 1053 - [[package]] 1054 - name = "indexmap" 1055 1027 version = "2.0.0" 1056 1028 source = "registry+https://github.com/rust-lang/crates.io-index" 1057 1029 checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" ··· 1140 1112 1141 1113 [[package]] 1142 1114 name = "is-macro" 1143 - version = "0.2.2" 1115 + version = "0.3.0" 1144 1116 source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20" 1117 + checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e" 1146 1118 dependencies = [ 1147 1119 "Inflector", 1148 - "pmutil", 1120 + "pmutil 0.6.1", 1149 1121 "proc-macro2", 1150 1122 "quote", 1151 - "syn 1.0.109", 1123 + "syn 2.0.33", 1152 1124 ] 1153 1125 1154 1126 [[package]] ··· 1303 1275 1304 1276 [[package]] 1305 1277 name = "libmimalloc-sys" 1306 - version = "0.1.34" 1278 + version = "0.1.35" 1307 1279 source = "registry+https://github.com/rust-lang/crates.io-index" 1308 - checksum = "25d058a81af0d1c22d7a1c948576bee6d673f7af3c0f35564abd6c81122f513d" 1280 + checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664" 1309 1281 dependencies = [ 1310 1282 "cc", 1311 1283 "libc", ··· 1356 1328 1357 1329 [[package]] 1358 1330 name = "memchr" 1359 - version = "2.6.2" 1331 + version = "2.6.3" 1360 1332 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 - checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" 1333 + checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 1362 1334 1363 1335 [[package]] 1364 1336 name = "memoffset" ··· 1371 1343 1372 1344 [[package]] 1373 1345 name = "mimalloc" 1374 - version = "0.1.38" 1346 + version = "0.1.39" 1375 1347 source = "registry+https://github.com/rust-lang/crates.io-index" 1376 - checksum = "972e5f23f6716f62665760b0f4cbf592576a80c7b879ba9beaafc0e558894127" 1348 + checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c" 1377 1349 dependencies = [ 1378 1350 "libmimalloc-sys", 1379 1351 ] ··· 1401 1373 dependencies = [ 1402 1374 "libc", 1403 1375 "log", 1404 - "wasi 0.11.0+wasi-snapshot-preview1", 1376 + "wasi", 1405 1377 "windows-sys 0.48.0", 1406 1378 ] 1407 1379 ··· 1446 1418 1447 1419 [[package]] 1448 1420 name = "notify" 1449 - version = "5.2.0" 1421 + version = "6.1.1" 1450 1422 source = "registry+https://github.com/rust-lang/crates.io-index" 1451 - checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" 1423 + checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 1452 1424 dependencies = [ 1453 - "bitflags 1.3.2", 1425 + "bitflags 2.4.0", 1454 1426 "crossbeam-channel", 1455 1427 "filetime", 1456 1428 "fsevent-sys", 1457 1429 "inotify", 1458 1430 "kqueue", 1459 1431 "libc", 1432 + "log", 1460 1433 "mio", 1461 1434 "walkdir", 1462 - "windows-sys 0.45.0", 1435 + "windows-sys 0.48.0", 1463 1436 ] 1464 1437 1465 1438 [[package]] ··· 1582 1555 1583 1556 [[package]] 1584 1557 name = "path-absolutize" 1585 - version = "3.1.0" 1558 + version = "3.1.1" 1586 1559 source = "registry+https://github.com/rust-lang/crates.io-index" 1587 - checksum = "43eb3595c63a214e1b37b44f44b0a84900ef7ae0b4c5efce59e123d246d7a0de" 1560 + checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" 1588 1561 dependencies = [ 1589 1562 "path-dedot", 1590 1563 ] 1591 1564 1592 1565 [[package]] 1593 1566 name = "path-dedot" 1594 - version = "3.1.0" 1567 + version = "3.1.1" 1595 1568 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "9d55e486337acb9973cdea3ec5638c1b3bcb22e573b2b7b41969e0c744d5a15e" 1569 + checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" 1597 1570 dependencies = [ 1598 1571 "once_cell", 1599 1572 ] ··· 1672 1645 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 1673 1646 dependencies = [ 1674 1647 "fixedbitset", 1675 - "indexmap 2.0.0", 1648 + "indexmap", 1676 1649 ] 1677 1650 1678 1651 [[package]] ··· 1737 1710 "proc-macro2", 1738 1711 "quote", 1739 1712 "syn 1.0.109", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "pmutil" 1717 + version = "0.6.1" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" 1720 + dependencies = [ 1721 + "proc-macro2", 1722 + "quote", 1723 + "syn 2.0.33", 1740 1724 ] 1741 1725 1742 1726 [[package]] ··· 1821 1805 1822 1806 [[package]] 1823 1807 name = "proc-macro2" 1824 - version = "1.0.66" 1808 + version = "1.0.67" 1825 1809 source = "registry+https://github.com/rust-lang/crates.io-index" 1826 - checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1810 + checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 1827 1811 dependencies = [ 1828 1812 "unicode-ident", 1829 1813 ] 1830 1814 1831 1815 [[package]] 1832 1816 name = "pyproject-toml" 1833 - version = "0.6.1" 1817 + version = "0.7.0" 1834 1818 source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "ee79feaa9d31e1c417e34219e610b67db4e786ce9b49d77dda549640abb9dc5f" 1819 + checksum = "569e259cd132eb8cec5df8b672d187c5260f82ad352156b5da9549d4472e64b0" 1836 1820 dependencies = [ 1837 - "indexmap 1.9.3", 1821 + "indexmap", 1838 1822 "pep440_rs", 1839 1823 "pep508_rs", 1840 1824 "serde", ··· 1848 1832 checksum = "6bf780b59d590c25f8c59b44c124166a2a93587868b619fb8f5b47fb15e9ed6d" 1849 1833 dependencies = [ 1850 1834 "chrono", 1851 - "indexmap 2.0.0", 1835 + "indexmap", 1852 1836 "nextest-workspace-hack", 1853 1837 "quick-xml", 1854 1838 "thiserror", ··· 1956 1940 1957 1941 [[package]] 1958 1942 name = "regex" 1959 - version = "1.9.4" 1943 + version = "1.9.5" 1960 1944 source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "12de2eff854e5fa4b1295edd650e227e9d8fb0c9e90b12e7f36d6a6811791a29" 1945 + checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 1962 1946 dependencies = [ 1963 1947 "aho-corasick", 1964 1948 "memchr", 1965 - "regex-automata 0.3.7", 1949 + "regex-automata 0.3.8", 1966 1950 "regex-syntax 0.7.5", 1967 1951 ] 1968 1952 ··· 1977 1961 1978 1962 [[package]] 1979 1963 name = "regex-automata" 1980 - version = "0.3.7" 1964 + version = "0.3.8" 1981 1965 source = "registry+https://github.com/rust-lang/crates.io-index" 1982 - checksum = "49530408a136e16e5b486e883fbb6ba058e8e4e8ae6621a77b048b314336e629" 1966 + checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 1983 1967 dependencies = [ 1984 1968 "aho-corasick", 1985 1969 "memchr", ··· 2013 1997 source = "registry+https://github.com/rust-lang/crates.io-index" 2014 1998 checksum = "1fabf0a2e54f711c68c50d49f648a1a8a37adcb57353f518ac4df374f0788f42" 2015 1999 dependencies = [ 2016 - "pmutil", 2000 + "pmutil 0.5.3", 2017 2001 "proc-macro2", 2018 2002 "quote", 2019 2003 "syn 1.0.109", ··· 2037 2021 2038 2022 [[package]] 2039 2023 name = "ruff" 2040 - version = "0.0.289" 2024 + version = "0.0.290" 2041 2025 dependencies = [ 2042 2026 "annotate-snippets 0.9.1", 2043 2027 "anyhow", ··· 2135 2119 2136 2120 [[package]] 2137 2121 name = "ruff_cli" 2138 - version = "0.0.289" 2122 + version = "0.0.290" 2139 2123 dependencies = [ 2140 2124 "annotate-snippets 0.9.1", 2141 2125 "anyhow", ··· 2275 2259 "proc-macro2", 2276 2260 "quote", 2277 2261 "ruff_python_trivia", 2278 - "syn 2.0.29", 2262 + "syn 2.0.33", 2279 2263 ] 2280 2264 2281 2265 [[package]] ··· 2304 2288 "bitflags 2.4.0", 2305 2289 "insta", 2306 2290 "is-macro", 2291 + "itertools", 2307 2292 "memchr", 2308 2293 "num-bigint", 2309 2294 "num-traits", ··· 2688 2673 2689 2674 [[package]] 2690 2675 name = "serde-wasm-bindgen" 2691 - version = "0.5.0" 2676 + version = "0.6.0" 2692 2677 source = "registry+https://github.com/rust-lang/crates.io-index" 2693 - checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" 2678 + checksum = "30c9933e5689bd420dc6c87b7a1835701810cbc10cd86a26e4da45b73e6b1d78" 2694 2679 dependencies = [ 2695 2680 "js-sys", 2696 2681 "serde", ··· 2705 2690 dependencies = [ 2706 2691 "proc-macro2", 2707 2692 "quote", 2708 - "syn 2.0.29", 2693 + "syn 2.0.33", 2709 2694 ] 2710 2695 2711 2696 [[package]] ··· 2721 2706 2722 2707 [[package]] 2723 2708 name = "serde_json" 2724 - version = "1.0.105" 2709 + version = "1.0.106" 2725 2710 source = "registry+https://github.com/rust-lang/crates.io-index" 2726 - checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 2711 + checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" 2727 2712 dependencies = [ 2728 2713 "itoa", 2729 2714 "ryu", ··· 2754 2739 source = "registry+https://github.com/rust-lang/crates.io-index" 2755 2740 checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237" 2756 2741 dependencies = [ 2757 - "base64", 2758 - "chrono", 2759 - "hex", 2760 - "indexmap 1.9.3", 2761 - "indexmap 2.0.0", 2762 2742 "serde", 2763 - "serde_json", 2764 2743 "serde_with_macros", 2765 - "time 0.3.28", 2766 2744 ] 2767 2745 2768 2746 [[package]] ··· 2774 2752 "darling", 2775 2753 "proc-macro2", 2776 2754 "quote", 2777 - "syn 2.0.29", 2755 + "syn 2.0.33", 2778 2756 ] 2779 2757 2780 2758 [[package]] ··· 2797 2775 2798 2776 [[package]] 2799 2777 name = "shlex" 2800 - version = "1.1.0" 2778 + version = "1.2.0" 2801 2779 source = "registry+https://github.com/rust-lang/crates.io-index" 2802 - checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" 2780 + checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" 2803 2781 2804 2782 [[package]] 2805 2783 name = "similar" ··· 2852 2830 2853 2831 [[package]] 2854 2832 name = "strum" 2855 - version = "0.24.1" 2833 + version = "0.25.0" 2856 2834 source = "registry+https://github.com/rust-lang/crates.io-index" 2857 - checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 2835 + checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 2858 2836 dependencies = [ 2859 2837 "strum_macros", 2860 2838 ] 2861 2839 2862 2840 [[package]] 2863 2841 name = "strum_macros" 2864 - version = "0.24.3" 2842 + version = "0.25.2" 2865 2843 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 2844 + checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059" 2867 2845 dependencies = [ 2868 2846 "heck", 2869 2847 "proc-macro2", 2870 2848 "quote", 2871 2849 "rustversion", 2872 - "syn 1.0.109", 2850 + "syn 2.0.33", 2873 2851 ] 2874 2852 2875 2853 [[package]] ··· 2885 2863 2886 2864 [[package]] 2887 2865 name = "syn" 2888 - version = "2.0.29" 2866 + version = "2.0.33" 2889 2867 source = "registry+https://github.com/rust-lang/crates.io-index" 2890 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 2868 + checksum = "9caece70c63bfba29ec2fed841a09851b14a235c60010fa4de58089b6c025668" 2891 2869 dependencies = [ 2892 2870 "proc-macro2", 2893 2871 "quote", ··· 2992 2970 2993 2971 [[package]] 2994 2972 name = "thiserror" 2995 - version = "1.0.47" 2973 + version = "1.0.48" 2996 2974 source = "registry+https://github.com/rust-lang/crates.io-index" 2997 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 2975 + checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" 2998 2976 dependencies = [ 2999 2977 "thiserror-impl", 3000 2978 ] 3001 2979 3002 2980 [[package]] 3003 2981 name = "thiserror-impl" 3004 - version = "1.0.47" 2982 + version = "1.0.48" 3005 2983 source = "registry+https://github.com/rust-lang/crates.io-index" 3006 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 2984 + checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" 3007 2985 dependencies = [ 3008 2986 "proc-macro2", 3009 2987 "quote", 3010 - "syn 2.0.29", 2988 + "syn 2.0.33", 3011 2989 ] 3012 2990 3013 2991 [[package]] ··· 3041 3019 ] 3042 3020 3043 3021 [[package]] 3044 - name = "time" 3045 - version = "0.1.45" 3046 - source = "registry+https://github.com/rust-lang/crates.io-index" 3047 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 3048 - dependencies = [ 3049 - "libc", 3050 - "wasi 0.10.0+wasi-snapshot-preview1", 3051 - "winapi", 3052 - ] 3053 - 3054 - [[package]] 3055 - name = "time" 3056 - version = "0.3.28" 3057 - source = "registry+https://github.com/rust-lang/crates.io-index" 3058 - checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" 3059 - dependencies = [ 3060 - "deranged", 3061 - "itoa", 3062 - "serde", 3063 - "time-core", 3064 - "time-macros", 3065 - ] 3066 - 3067 - [[package]] 3068 - name = "time-core" 3069 - version = "0.1.1" 3070 - source = "registry+https://github.com/rust-lang/crates.io-index" 3071 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 3072 - 3073 - [[package]] 3074 - name = "time-macros" 3075 - version = "0.2.14" 3076 - source = "registry+https://github.com/rust-lang/crates.io-index" 3077 - checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" 3078 - dependencies = [ 3079 - "time-core", 3080 - ] 3081 - 3082 - [[package]] 3083 3022 name = "tiny-keccak" 3084 3023 version = "2.0.2" 3085 3024 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3115 3054 3116 3055 [[package]] 3117 3056 name = "toml" 3118 - version = "0.7.6" 3057 + version = "0.7.8" 3119 3058 source = "registry+https://github.com/rust-lang/crates.io-index" 3120 - checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 3059 + checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 3121 3060 dependencies = [ 3122 3061 "serde", 3123 3062 "serde_spanned", ··· 3136 3075 3137 3076 [[package]] 3138 3077 name = "toml_edit" 3139 - version = "0.19.14" 3078 + version = "0.19.15" 3140 3079 source = "registry+https://github.com/rust-lang/crates.io-index" 3141 - checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 3080 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3142 3081 dependencies = [ 3143 - "indexmap 2.0.0", 3082 + "indexmap", 3144 3083 "serde", 3145 3084 "serde_spanned", 3146 3085 "toml_datetime", ··· 3168 3107 dependencies = [ 3169 3108 "proc-macro2", 3170 3109 "quote", 3171 - "syn 2.0.29", 3110 + "syn 2.0.33", 3172 3111 ] 3173 3112 3174 3113 [[package]] ··· 3371 3310 dependencies = [ 3372 3311 "proc-macro2", 3373 3312 "quote", 3374 - "syn 2.0.29", 3313 + "syn 2.0.33", 3375 3314 ] 3376 3315 3377 3316 [[package]] ··· 3430 3369 3431 3370 [[package]] 3432 3371 name = "walkdir" 3433 - version = "2.3.3" 3372 + version = "2.4.0" 3434 3373 source = "registry+https://github.com/rust-lang/crates.io-index" 3435 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 3374 + checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" 3436 3375 dependencies = [ 3437 3376 "same-file", 3438 3377 "winapi-util", ··· 3440 3379 3441 3380 [[package]] 3442 3381 name = "wasi" 3443 - version = "0.10.0+wasi-snapshot-preview1" 3444 - source = "registry+https://github.com/rust-lang/crates.io-index" 3445 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 3446 - 3447 - [[package]] 3448 - name = "wasi" 3449 3382 version = "0.11.0+wasi-snapshot-preview1" 3450 3383 source = "registry+https://github.com/rust-lang/crates.io-index" 3451 3384 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ··· 3471 3404 "once_cell", 3472 3405 "proc-macro2", 3473 3406 "quote", 3474 - "syn 2.0.29", 3407 + "syn 2.0.33", 3475 3408 "wasm-bindgen-shared", 3476 3409 ] 3477 3410 ··· 3505 3438 dependencies = [ 3506 3439 "proc-macro2", 3507 3440 "quote", 3508 - "syn 2.0.29", 3441 + "syn 2.0.33", 3509 3442 "wasm-bindgen-backend", 3510 3443 "wasm-bindgen-shared", 3511 3444 ]
+2 -2
pkgs/development/tools/ruff/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "ruff"; 13 - version = "0.0.289"; 13 + version = "0.0.290"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "astral-sh"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-DBYE3UkA30bFqoTCgE7SBs25wJ6bPvY63e31LEPBK7c="; 19 + hash = "sha256-w2RqT0n++ggeNoEcrZSAF0056ctDBKGkV+GAscQcwOc="; 20 20 }; 21 21 22 22 cargoLock = {
+3 -3
pkgs/development/tools/rust/cargo-make/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "cargo-make"; 13 - version = "0.37.0"; 13 + version = "0.37.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "sagiegurari"; 17 17 repo = "cargo-make"; 18 18 rev = version; 19 - hash = "sha256-gc/0mlhQdE9tnCpDQ2vSWX4WcqnPxRjmL6YPtYGEn5E="; 19 + hash = "sha256-y8N9bOkS5JgUwnhCo7c48ApgeQ8PVbIN7G1IdTOK0JI="; 20 20 }; 21 21 22 - cargoHash = "sha256-ut9s+kMATtmOfyIp+TwmdQtlObiZexWbh1p1tcCpYGo="; 22 + cargoHash = "sha256-jbBpA4yrhkOcpJvJM8K1dw/+lfaKIbKd/XxSsEFLlv4="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25
+3 -3
pkgs/development/tools/rust/cargo-mutants/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "cargo-mutants"; 10 - version = "23.9.0"; 10 + version = "23.9.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "sourcefrog"; 14 14 repo = "cargo-mutants"; 15 15 rev = "cargo-mutants-${version}"; 16 - hash = "sha256-Yy10rsPeDzfDItniqotC0mvl9e4uIcLezR2zAIq9u+o="; 16 + hash = "sha256-VFlnCzaWy8IDuCkr1aHKhJThS3Sde9I2mRj8hKKdXOk="; 17 17 }; 18 18 19 - cargoHash = "sha256-NM75CBmHzSdrWkFHSzLPnmshtgj9MnUgDR4BJY0j9iA="; 19 + cargoHash = "sha256-C7ikZZrTw+KjY+kjgEZGZ7lC8irLw+uXl+T+6Grq7UY="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.SystemConfiguration
+2 -2
pkgs/os-specific/linux/apfs/default.nix
··· 6 6 }: 7 7 8 8 let 9 - tag = "0.3.3"; 9 + tag = "0.3.4"; 10 10 in 11 11 stdenv.mkDerivation { 12 12 pname = "apfs"; ··· 16 16 owner = "linux-apfs"; 17 17 repo = "linux-apfs-rw"; 18 18 rev = "v${tag}"; 19 - hash = "sha256-dxbpJ9Jdn8u16yD001zCZxrr/nPbxdpF7JvU+oD+hTw="; 19 + hash = "sha256-EeVOrZtmKi5VfPerW9IntjRvdU3AbFPHG+pyAI4ciGk="; 20 20 }; 21 21 22 22 hardeningDisable = [ "pic" ];
+4 -12
pkgs/tools/audio/spotdl/default.nix
··· 20 20 }; 21 21 in python.pkgs.buildPythonApplication rec { 22 22 pname = "spotdl"; 23 - version = "4.2.0"; 23 + version = "4.2.1"; 24 24 25 25 format = "pyproject"; 26 26 ··· 28 28 owner = "spotDL"; 29 29 repo = "spotify-downloader"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-miIDasbOKmfYESiEIlMxEUfPkLLBz4s1rX2eMz3MrzA="; 31 + hash = "sha256-xKas3WO3uigY1iFfxIN3+d+5U31vM7cLv08oMef8trc="; 32 32 }; 33 33 34 34 nativeBuildInputs = with python.pkgs; [ ··· 84 84 85 85 disabledTests = [ 86 86 # require networking 87 - "test_album_from_string" 88 87 "test_album_from_url" 89 - "test_album_length" 90 - "test_artist_from_string" 91 - "test_artist_from_url" 92 88 "test_convert" 93 89 "test_download_ffmpeg" 94 90 "test_download_song" 95 - "test_playlist_from_string" 96 - "test_playlist_from_url" 97 - "test_playlist_length" 98 91 "test_preload_song" 99 - "test_song_from_search_term" 100 - "test_song_from_url" 101 - "test_yt_search" 92 + "test_ytm_get_results" 93 + "test_ytm_search" 102 94 ]; 103 95 104 96 makeWrapperArgs = [
+3 -3
pkgs/tools/graphics/sic-image-cli/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "sic-image-cli"; 5 - version = "0.22.3"; 5 + version = "0.22.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "foresterre"; 9 9 repo = "sic"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-gTKStoQakquJqBv4OLWC4/1FtV+Cvw0nN+dY6AH8TNw="; 11 + hash = "sha256-PFbHHO3m4mnV5s8DVev/iao9sC3FYht0whTHYzO25Yo="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-xYPSI0/I67vmMPRmJOlbDJ9gTdhViQmeo3XWGhWR91Y="; 14 + cargoHash = "sha256-Pw5PJ0xQCLfPaVEzsfqeHJ0E3miDwlj+71J98KRrYDs="; 15 15 16 16 nativeBuildInputs = [ installShellFiles nasm ]; 17 17
+20 -14
pkgs/tools/misc/dooit/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 + , dooit 3 4 , python3 5 + , testers 4 6 }: 5 7 6 8 python3.pkgs.buildPythonApplication rec { 7 9 pname = "dooit"; 8 - version = "1.0.1"; 10 + version = "2.0.1"; 9 11 format = "pyproject"; 10 12 11 13 src = fetchFromGitHub { 12 14 owner = "kraanzu"; 13 - repo = pname; 15 + repo = "dooit"; 14 16 rev = "v${version}"; 15 - hash = "sha256-7a6xoqbAmnGVUVppQTSo4hH44XFCqBnF7xO7sOVySY0="; 17 + hash = "sha256-iQAGD6zrBBd4fJONaB7to1OJpAJUO0zeA1xhVQZBkMc="; 16 18 }; 17 19 18 - # Required versions not available 19 - pythonRelaxDeps = [ 20 - "textual" 21 - "tzlocal" 22 - ]; 23 - 24 20 nativeBuildInputs = with python3.pkgs; [ 25 21 poetry-core 26 - pythonRelaxDepsHook 27 22 ]; 28 23 29 24 propagatedBuildInputs = with python3.pkgs; [ 30 - textual 25 + appdirs 31 26 pyperclip 27 + python-dateutil 32 28 pyyaml 33 - dateparser 29 + textual 34 30 tzlocal 35 - appdirs 36 31 ]; 37 32 33 + # NOTE pyproject version was bumped after release tag 2.0.1 - remove after next release. 34 + postPatch = '' 35 + substituteInPlace pyproject.toml \ 36 + --replace "version = \"2.0.0\"" "version = \"2.0.1\"" 37 + ''; 38 + 38 39 # No tests available 39 40 doCheck = false; 40 41 42 + passthru.tests.version = testers.testVersion { 43 + package = dooit; 44 + command = "HOME=$(mktemp -d) dooit --version"; 45 + }; 46 + 41 47 meta = with lib; { 42 48 description = "A TUI todo manager"; 43 49 homepage = "https://github.com/kraanzu/dooit"; 44 50 changelog = "https://github.com/kraanzu/dooit/blob/v${version}/CHANGELOG.md"; 45 51 license = licenses.mit; 46 - maintainers = with maintainers; [ wesleyjrz ]; 52 + maintainers = with maintainers; [ khaneliman wesleyjrz ]; 47 53 }; 48 54 }
+2 -2
pkgs/tools/misc/ytfzf/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "ytfzf"; 18 - version = "2.6.0"; 18 + version = "2.6.1"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "pystardust"; 22 22 repo = "ytfzf"; 23 23 rev = "v${version}"; 24 - hash = "sha256-b/rsujR3GRwxrVc0iPVbxyPTRTr8kk2WKqEMwdb9lac="; 24 + hash = "sha256-wd7IgJRSh8UJ28slItIz1OhAg7cgVSDUldCyaObn6Ak="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ makeWrapper ];
+388 -460
pkgs/tools/networking/findomain/Cargo.lock
··· 14 14 15 15 [[package]] 16 16 name = "addr2line" 17 - version = "0.19.0" 17 + version = "0.21.0" 18 18 source = "registry+https://github.com/rust-lang/crates.io-index" 19 - checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 19 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 20 20 dependencies = [ 21 21 "gimli", 22 22 ] ··· 29 29 30 30 [[package]] 31 31 name = "aho-corasick" 32 - version = "0.7.20" 32 + version = "1.0.5" 33 33 source = "registry+https://github.com/rust-lang/crates.io-index" 34 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 34 + checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" 35 35 dependencies = [ 36 36 "memchr", 37 37 ] ··· 47 47 48 48 [[package]] 49 49 name = "anyhow" 50 - version = "1.0.70" 50 + version = "1.0.75" 51 51 source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" 52 + checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 53 53 54 54 [[package]] 55 55 name = "arrayvec" ··· 59 59 60 60 [[package]] 61 61 name = "async-compression" 62 - version = "0.3.15" 62 + version = "0.4.3" 63 63 source = "registry+https://github.com/rust-lang/crates.io-index" 64 - checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 64 + checksum = "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" 65 65 dependencies = [ 66 66 "flate2", 67 67 "futures-core", ··· 72 72 73 73 [[package]] 74 74 name = "async-recursion" 75 - version = "1.0.4" 75 + version = "1.0.5" 76 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" 77 + checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 78 78 dependencies = [ 79 79 "proc-macro2", 80 80 "quote", 81 - "syn 2.0.13", 81 + "syn 2.0.33", 82 82 ] 83 83 84 84 [[package]] 85 85 name = "async-trait" 86 - version = "0.1.68" 86 + version = "0.1.73" 87 87 source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 88 + checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 89 89 dependencies = [ 90 90 "proc-macro2", 91 91 "quote", 92 - "syn 2.0.13", 92 + "syn 2.0.33", 93 93 ] 94 94 95 95 [[package]] ··· 113 113 "proc-macro2", 114 114 "quote", 115 115 "reqwest", 116 - "serde 1.0.159", 116 + "serde 1.0.188", 117 117 "serde_json", 118 118 ] 119 119 ··· 134 134 135 135 [[package]] 136 136 name = "backtrace" 137 - version = "0.3.67" 137 + version = "0.3.69" 138 138 source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 139 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 140 140 dependencies = [ 141 141 "addr2line", 142 142 "cc", ··· 168 168 169 169 [[package]] 170 170 name = "base64" 171 - version = "0.21.0" 171 + version = "0.21.4" 172 172 source = "registry+https://github.com/rust-lang/crates.io-index" 173 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 173 + checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" 174 174 175 175 [[package]] 176 176 name = "bitflags" ··· 179 179 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 180 180 181 181 [[package]] 182 + name = "bitflags" 183 + version = "2.4.0" 184 + source = "registry+https://github.com/rust-lang/crates.io-index" 185 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 186 + 187 + [[package]] 182 188 name = "block-buffer" 183 189 version = "0.10.4" 184 190 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 189 195 190 196 [[package]] 191 197 name = "bumpalo" 192 - version = "3.12.0" 198 + version = "3.13.0" 193 199 source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 200 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 195 201 196 202 [[package]] 197 203 name = "byteorder" ··· 201 207 202 208 [[package]] 203 209 name = "bytes" 204 - version = "1.4.0" 210 + version = "1.5.0" 205 211 source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 212 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 207 213 208 214 [[package]] 209 215 name = "cc" 210 - version = "1.0.79" 216 + version = "1.0.83" 211 217 source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 218 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 219 + dependencies = [ 220 + "libc", 221 + ] 213 222 214 223 [[package]] 215 224 name = "cfg-if" ··· 225 234 dependencies = [ 226 235 "ansi_term", 227 236 "atty", 228 - "bitflags", 237 + "bitflags 1.3.2", 229 238 "strsim 0.8.0", 230 239 "textwrap", 231 240 "unicode-width", ··· 239 248 source = "registry+https://github.com/rust-lang/crates.io-index" 240 249 checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 241 250 dependencies = [ 242 - "bitflags", 251 + "bitflags 1.3.2", 243 252 ] 244 253 245 254 [[package]] ··· 251 260 "lazy_static", 252 261 "nom", 253 262 "rust-ini", 254 - "serde 1.0.159", 263 + "serde 1.0.188", 255 264 "serde-hjson", 256 265 "serde_json", 257 266 "toml", ··· 282 291 283 292 [[package]] 284 293 name = "cpufeatures" 285 - version = "0.2.6" 294 + version = "0.2.9" 286 295 source = "registry+https://github.com/rust-lang/crates.io-index" 287 - checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181" 296 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 288 297 dependencies = [ 289 298 "libc", 290 299 ] ··· 335 344 336 345 [[package]] 337 346 name = "crossbeam-epoch" 338 - version = "0.9.14" 347 + version = "0.9.15" 339 348 source = "registry+https://github.com/rust-lang/crates.io-index" 340 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 349 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 341 350 dependencies = [ 342 351 "autocfg 1.1.0", 343 352 "cfg-if", ··· 358 367 359 368 [[package]] 360 369 name = "crossbeam-utils" 361 - version = "0.8.15" 370 + version = "0.8.16" 362 371 source = "registry+https://github.com/rust-lang/crates.io-index" 363 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 372 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 364 373 dependencies = [ 365 374 "cfg-if", 366 375 ] ··· 394 403 395 404 [[package]] 396 405 name = "cssparser-macros" 397 - version = "0.6.0" 406 + version = "0.6.1" 398 407 source = "registry+https://github.com/rust-lang/crates.io-index" 399 - checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 408 + checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 400 409 dependencies = [ 401 410 "quote", 402 - "syn 1.0.109", 411 + "syn 2.0.33", 403 412 ] 404 413 405 414 [[package]] ··· 439 448 440 449 [[package]] 441 450 name = "data-encoding" 442 - version = "2.3.3" 451 + version = "2.4.0" 443 452 source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" 453 + checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 445 454 446 455 [[package]] 447 456 name = "derive_builder" ··· 483 492 484 493 [[package]] 485 494 name = "digest" 486 - version = "0.10.6" 495 + version = "0.10.7" 487 496 source = "registry+https://github.com/rust-lang/crates.io-index" 488 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 497 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 489 498 dependencies = [ 490 499 "block-buffer", 491 500 "crypto-common", ··· 494 503 495 504 [[package]] 496 505 name = "dtoa" 497 - version = "0.4.8" 506 + version = "1.0.9" 498 507 source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 508 + checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 500 509 501 510 [[package]] 502 511 name = "dtoa-short" 503 - version = "0.3.3" 512 + version = "0.3.4" 504 513 source = "registry+https://github.com/rust-lang/crates.io-index" 505 - checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 514 + checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74" 506 515 dependencies = [ 507 516 "dtoa", 508 517 ] ··· 515 524 516 525 [[package]] 517 526 name = "either" 518 - version = "1.8.1" 527 + version = "1.9.0" 519 528 source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 529 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 521 530 522 531 [[package]] 523 532 name = "encoding_rs" 524 - version = "0.8.32" 533 + version = "0.8.33" 525 534 source = "registry+https://github.com/rust-lang/crates.io-index" 526 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 535 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 527 536 dependencies = [ 528 537 "cfg-if", 529 538 ] ··· 554 563 555 564 [[package]] 556 565 name = "errno" 557 - version = "0.3.1" 566 + version = "0.3.3" 558 567 source = "registry+https://github.com/rust-lang/crates.io-index" 559 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 568 + checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 560 569 dependencies = [ 561 570 "errno-dragonfly", 562 571 "libc", 563 - "windows-sys 0.48.0", 572 + "windows-sys", 564 573 ] 565 574 566 575 [[package]] ··· 590 599 591 600 [[package]] 592 601 name = "fastrand" 593 - version = "1.9.0" 602 + version = "2.0.0" 594 603 source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 596 - dependencies = [ 597 - "instant", 598 - ] 604 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 599 605 600 606 [[package]] 601 607 name = "fhc" ··· 614 620 615 621 [[package]] 616 622 name = "findomain" 617 - version = "9.0.0" 623 + version = "9.0.1" 618 624 dependencies = [ 619 625 "addr", 620 626 "anyhow", ··· 633 639 "rayon", 634 640 "reqwest", 635 641 "rusolver", 636 - "serde 1.0.159", 642 + "serde 1.0.188", 637 643 "serde_derive", 638 644 "serde_json", 639 645 "tokio", ··· 641 647 ] 642 648 643 649 [[package]] 650 + name = "finl_unicode" 651 + version = "1.2.0" 652 + source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" 654 + 655 + [[package]] 644 656 name = "flate2" 645 - version = "1.0.25" 657 + version = "1.0.27" 646 658 source = "registry+https://github.com/rust-lang/crates.io-index" 647 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 659 + checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 648 660 dependencies = [ 649 661 "crc32fast", 650 662 "miniz_oxide", ··· 673 685 674 686 [[package]] 675 687 name = "form_urlencoded" 676 - version = "1.1.0" 688 + version = "1.2.0" 677 689 source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 690 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 679 691 dependencies = [ 680 - "percent-encoding 2.2.0", 692 + "percent-encoding 2.3.0", 681 693 ] 682 694 683 695 [[package]] ··· 752 764 dependencies = [ 753 765 "proc-macro2", 754 766 "quote", 755 - "syn 2.0.13", 767 + "syn 2.0.33", 756 768 ] 757 769 758 770 [[package]] ··· 826 838 827 839 [[package]] 828 840 name = "getrandom" 829 - version = "0.2.9" 841 + version = "0.2.10" 830 842 source = "registry+https://github.com/rust-lang/crates.io-index" 831 - checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 843 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 832 844 dependencies = [ 833 845 "cfg-if", 834 846 "libc", ··· 837 849 838 850 [[package]] 839 851 name = "gimli" 840 - version = "0.27.2" 852 + version = "0.28.0" 841 853 source = "registry+https://github.com/rust-lang/crates.io-index" 842 - checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 854 + checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 843 855 844 856 [[package]] 845 857 name = "h2" 846 - version = "0.3.16" 858 + version = "0.3.21" 847 859 source = "registry+https://github.com/rust-lang/crates.io-index" 848 - checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 860 + checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 849 861 dependencies = [ 850 862 "bytes", 851 863 "fnv", ··· 875 887 "auto_generate_cdp", 876 888 "base64 0.10.1", 877 889 "derive_builder", 878 - "log 0.4.17", 890 + "log 0.4.20", 879 891 "rand 0.7.3", 880 892 "regex", 881 - "serde 1.0.159", 893 + "serde 1.0.188", 882 894 "serde_json", 883 895 "tempfile", 884 896 "thiserror", ··· 904 916 905 917 [[package]] 906 918 name = "hermit-abi" 907 - version = "0.2.6" 908 - source = "registry+https://github.com/rust-lang/crates.io-index" 909 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 910 - dependencies = [ 911 - "libc", 912 - ] 913 - 914 - [[package]] 915 - name = "hermit-abi" 916 - version = "0.3.1" 919 + version = "0.3.2" 917 920 source = "registry+https://github.com/rust-lang/crates.io-index" 918 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 921 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 919 922 920 923 [[package]] 921 924 name = "hmac" ··· 943 946 source = "registry+https://github.com/rust-lang/crates.io-index" 944 947 checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 945 948 dependencies = [ 946 - "log 0.4.17", 949 + "log 0.4.20", 947 950 "mac", 948 951 "markup5ever", 949 952 "proc-macro2", ··· 959 962 dependencies = [ 960 963 "bytes", 961 964 "fnv", 962 - "itoa 1.0.6", 965 + "itoa 1.0.9", 963 966 ] 964 967 965 968 [[package]] ··· 981 984 982 985 [[package]] 983 986 name = "httpdate" 984 - version = "1.0.2" 987 + version = "1.0.3" 985 988 source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 989 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 987 990 988 991 [[package]] 989 992 name = "hyper" ··· 1006 1009 1007 1010 [[package]] 1008 1011 name = "hyper" 1009 - version = "0.14.25" 1012 + version = "0.14.27" 1010 1013 source = "registry+https://github.com/rust-lang/crates.io-index" 1011 - checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" 1014 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1012 1015 dependencies = [ 1013 1016 "bytes", 1014 1017 "futures-channel", ··· 1019 1022 "http-body", 1020 1023 "httparse", 1021 1024 "httpdate", 1022 - "itoa 1.0.6", 1025 + "itoa 1.0.9", 1023 1026 "pin-project-lite", 1024 1027 "socket2 0.4.9", 1025 1028 "tokio", ··· 1030 1033 1031 1034 [[package]] 1032 1035 name = "hyper-rustls" 1033 - version = "0.23.2" 1036 + version = "0.24.1" 1034 1037 source = "registry+https://github.com/rust-lang/crates.io-index" 1035 - checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 1038 + checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 1036 1039 dependencies = [ 1040 + "futures-util", 1037 1041 "http", 1038 - "hyper 0.14.25", 1042 + "hyper 0.14.27", 1039 1043 "rustls", 1040 1044 "tokio", 1041 1045 "tokio-rustls", ··· 1048 1052 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1049 1053 dependencies = [ 1050 1054 "bytes", 1051 - "hyper 0.14.25", 1055 + "hyper 0.14.27", 1052 1056 "native-tls", 1053 1057 "tokio", 1054 1058 "tokio-native-tls", ··· 1084 1088 1085 1089 [[package]] 1086 1090 name = "idna" 1087 - version = "0.3.0" 1091 + version = "0.4.0" 1088 1092 source = "registry+https://github.com/rust-lang/crates.io-index" 1089 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1093 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1090 1094 dependencies = [ 1091 1095 "unicode-bidi", 1092 1096 "unicode-normalization", ··· 1112 1116 ] 1113 1117 1114 1118 [[package]] 1115 - name = "io-lifetimes" 1116 - version = "1.0.10" 1117 - source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 1119 - dependencies = [ 1120 - "hermit-abi 0.3.1", 1121 - "libc", 1122 - "windows-sys 0.48.0", 1123 - ] 1124 - 1125 - [[package]] 1126 1119 name = "ipconfig" 1127 1120 version = "0.2.2" 1128 1121 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1136 1129 1137 1130 [[package]] 1138 1131 name = "ipconfig" 1139 - version = "0.3.1" 1132 + version = "0.3.2" 1140 1133 source = "registry+https://github.com/rust-lang/crates.io-index" 1141 - checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be" 1134 + checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1142 1135 dependencies = [ 1143 - "socket2 0.4.9", 1144 - "widestring 0.5.1", 1145 - "winapi", 1146 - "winreg 0.10.1", 1136 + "socket2 0.5.4", 1137 + "widestring 1.0.2", 1138 + "windows-sys", 1139 + "winreg 0.50.0", 1147 1140 ] 1148 1141 1149 1142 [[package]] 1150 1143 name = "ipnet" 1151 - version = "2.7.2" 1144 + version = "2.8.0" 1152 1145 source = "registry+https://github.com/rust-lang/crates.io-index" 1153 - checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 1146 + checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 1154 1147 1155 1148 [[package]] 1156 1149 name = "itoa" ··· 1160 1153 1161 1154 [[package]] 1162 1155 name = "itoa" 1163 - version = "1.0.6" 1156 + version = "1.0.9" 1164 1157 source = "registry+https://github.com/rust-lang/crates.io-index" 1165 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1158 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1166 1159 1167 1160 [[package]] 1168 1161 name = "js-sys" 1169 - version = "0.3.61" 1162 + version = "0.3.64" 1170 1163 source = "registry+https://github.com/rust-lang/crates.io-index" 1171 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1164 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1172 1165 dependencies = [ 1173 1166 "wasm-bindgen", 1174 1167 ] ··· 1192 1185 checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" 1193 1186 dependencies = [ 1194 1187 "arrayvec", 1195 - "bitflags", 1188 + "bitflags 1.3.2", 1196 1189 "cfg-if", 1197 1190 "ryu", 1198 1191 "static_assertions", ··· 1200 1193 1201 1194 [[package]] 1202 1195 name = "libc" 1203 - version = "0.2.141" 1196 + version = "0.2.148" 1204 1197 source = "registry+https://github.com/rust-lang/crates.io-index" 1205 - checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" 1198 + checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" 1206 1199 1207 1200 [[package]] 1208 1201 name = "linked-hash-map" ··· 1212 1205 1213 1206 [[package]] 1214 1207 name = "linux-raw-sys" 1215 - version = "0.3.1" 1208 + version = "0.4.7" 1216 1209 source = "registry+https://github.com/rust-lang/crates.io-index" 1217 - checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" 1210 + checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" 1218 1211 1219 1212 [[package]] 1220 1213 name = "lock_api" 1221 - version = "0.4.9" 1214 + version = "0.4.10" 1222 1215 source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1216 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1224 1217 dependencies = [ 1225 1218 "autocfg 1.1.0", 1226 1219 "scopeguard", ··· 1232 1225 source = "registry+https://github.com/rust-lang/crates.io-index" 1233 1226 checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 1234 1227 dependencies = [ 1235 - "log 0.4.17", 1228 + "log 0.4.20", 1236 1229 ] 1237 1230 1238 1231 [[package]] 1239 1232 name = "log" 1240 - version = "0.4.17" 1233 + version = "0.4.20" 1241 1234 source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1243 - dependencies = [ 1244 - "cfg-if", 1245 - ] 1235 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1246 1236 1247 1237 [[package]] 1248 1238 name = "lru-cache" ··· 1265 1255 source = "registry+https://github.com/rust-lang/crates.io-index" 1266 1256 checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1267 1257 dependencies = [ 1268 - "log 0.4.17", 1258 + "log 0.4.20", 1269 1259 "phf 0.8.0", 1270 1260 "phf_codegen", 1271 1261 "string_cache", ··· 1296 1286 1297 1287 [[package]] 1298 1288 name = "memchr" 1299 - version = "2.5.0" 1289 + version = "2.6.3" 1300 1290 source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1291 + checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 1302 1292 1303 1293 [[package]] 1304 1294 name = "memoffset" 1305 - version = "0.8.0" 1295 + version = "0.9.0" 1306 1296 source = "registry+https://github.com/rust-lang/crates.io-index" 1307 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1297 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1308 1298 dependencies = [ 1309 1299 "autocfg 1.1.0", 1310 1300 ] ··· 1326 1316 1327 1317 [[package]] 1328 1318 name = "miniz_oxide" 1329 - version = "0.6.2" 1319 + version = "0.7.1" 1330 1320 source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1321 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1332 1322 dependencies = [ 1333 1323 "adler", 1334 1324 ] 1335 1325 1336 1326 [[package]] 1337 1327 name = "mio" 1338 - version = "0.8.6" 1328 + version = "0.8.8" 1339 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1340 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 1330 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1341 1331 dependencies = [ 1342 1332 "libc", 1343 - "log 0.4.17", 1344 1333 "wasi 0.11.0+wasi-snapshot-preview1", 1345 - "windows-sys 0.45.0", 1334 + "windows-sys", 1346 1335 ] 1347 1336 1348 1337 [[package]] ··· 1353 1342 dependencies = [ 1354 1343 "lazy_static", 1355 1344 "libc", 1356 - "log 0.4.17", 1345 + "log 0.4.20", 1357 1346 "openssl", 1358 1347 "openssl-probe", 1359 1348 "openssl-sys", ··· 1377 1366 1378 1367 [[package]] 1379 1368 name = "nom" 1380 - version = "5.1.2" 1369 + version = "5.1.3" 1381 1370 source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" 1371 + checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b" 1383 1372 dependencies = [ 1384 1373 "lexical-core", 1385 1374 "memchr", ··· 1392 1381 source = "registry+https://github.com/rust-lang/crates.io-index" 1393 1382 checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" 1394 1383 dependencies = [ 1395 - "num-traits 0.2.15", 1384 + "num-traits 0.2.16", 1396 1385 ] 1397 1386 1398 1387 [[package]] 1399 1388 name = "num-traits" 1400 - version = "0.2.15" 1389 + version = "0.2.16" 1401 1390 source = "registry+https://github.com/rust-lang/crates.io-index" 1402 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1391 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1403 1392 dependencies = [ 1404 1393 "autocfg 1.1.0", 1405 1394 ] 1406 1395 1407 1396 [[package]] 1408 1397 name = "num_cpus" 1409 - version = "1.15.0" 1398 + version = "1.16.0" 1410 1399 source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1400 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1412 1401 dependencies = [ 1413 - "hermit-abi 0.2.6", 1402 + "hermit-abi 0.3.2", 1414 1403 "libc", 1415 1404 ] 1416 1405 1417 1406 [[package]] 1418 1407 name = "object" 1419 - version = "0.30.3" 1408 + version = "0.32.1" 1420 1409 source = "registry+https://github.com/rust-lang/crates.io-index" 1421 - checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 1410 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1422 1411 dependencies = [ 1423 1412 "memchr", 1424 1413 ] 1425 1414 1426 1415 [[package]] 1427 1416 name = "once_cell" 1428 - version = "1.17.1" 1417 + version = "1.18.0" 1429 1418 source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1419 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1431 1420 1432 1421 [[package]] 1433 1422 name = "openssl" 1434 - version = "0.10.49" 1423 + version = "0.10.57" 1435 1424 source = "registry+https://github.com/rust-lang/crates.io-index" 1436 - checksum = "4d2f106ab837a24e03672c59b1239669a0596406ff657c3c0835b6b7f0f35a33" 1425 + checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" 1437 1426 dependencies = [ 1438 - "bitflags", 1427 + "bitflags 2.4.0", 1439 1428 "cfg-if", 1440 1429 "foreign-types", 1441 1430 "libc", ··· 1452 1441 dependencies = [ 1453 1442 "proc-macro2", 1454 1443 "quote", 1455 - "syn 2.0.13", 1444 + "syn 2.0.33", 1456 1445 ] 1457 1446 1458 1447 [[package]] ··· 1463 1452 1464 1453 [[package]] 1465 1454 name = "openssl-src" 1466 - version = "111.25.2+1.1.1t" 1455 + version = "300.1.3+3.1.2" 1467 1456 source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431" 1457 + checksum = "cd2c101a165fff9935e34def4669595ab1c7847943c42be86e21503e482be107" 1469 1458 dependencies = [ 1470 1459 "cc", 1471 1460 ] 1472 1461 1473 1462 [[package]] 1474 1463 name = "openssl-sys" 1475 - version = "0.9.84" 1464 + version = "0.9.93" 1476 1465 source = "registry+https://github.com/rust-lang/crates.io-index" 1477 - checksum = "3a20eace9dc2d82904039cb76dcf50fb1a0bba071cfd1629720b5d6f1ddba0fa" 1466 + checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" 1478 1467 dependencies = [ 1479 1468 "cc", 1480 1469 "libc", ··· 1501 1490 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1502 1491 dependencies = [ 1503 1492 "lock_api", 1504 - "parking_lot_core 0.9.7", 1493 + "parking_lot_core 0.9.8", 1505 1494 ] 1506 1495 1507 1496 [[package]] ··· 1520 1509 1521 1510 [[package]] 1522 1511 name = "parking_lot_core" 1523 - version = "0.9.7" 1512 + version = "0.9.8" 1524 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1514 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1526 1515 dependencies = [ 1527 1516 "cfg-if", 1528 1517 "libc", 1529 - "redox_syscall 0.2.16", 1518 + "redox_syscall 0.3.5", 1530 1519 "smallvec", 1531 - "windows-sys 0.45.0", 1520 + "windows-targets", 1532 1521 ] 1533 1522 1534 1523 [[package]] ··· 1539 1528 1540 1529 [[package]] 1541 1530 name = "percent-encoding" 1542 - version = "2.2.0" 1531 + version = "2.3.0" 1543 1532 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1533 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1545 1534 1546 1535 [[package]] 1547 1536 name = "phf" ··· 1556 1545 1557 1546 [[package]] 1558 1547 name = "phf" 1559 - version = "0.11.1" 1548 + version = "0.11.2" 1560 1549 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 1550 + checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 1562 1551 dependencies = [ 1563 - "phf_shared 0.11.1", 1552 + "phf_shared 0.11.2", 1564 1553 ] 1565 1554 1566 1555 [[package]] ··· 1627 1616 1628 1617 [[package]] 1629 1618 name = "phf_shared" 1630 - version = "0.11.1" 1619 + version = "0.11.2" 1631 1620 source = "registry+https://github.com/rust-lang/crates.io-index" 1632 - checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 1621 + checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 1633 1622 dependencies = [ 1634 1623 "siphasher", 1635 1624 ] 1636 1625 1637 1626 [[package]] 1638 1627 name = "pin-project-lite" 1639 - version = "0.2.9" 1628 + version = "0.2.13" 1640 1629 source = "registry+https://github.com/rust-lang/crates.io-index" 1641 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1630 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1642 1631 1643 1632 [[package]] 1644 1633 name = "pin-utils" ··· 1648 1637 1649 1638 [[package]] 1650 1639 name = "pkg-config" 1651 - version = "0.3.26" 1640 + version = "0.3.27" 1652 1641 source = "registry+https://github.com/rust-lang/crates.io-index" 1653 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 1642 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1654 1643 1655 1644 [[package]] 1656 1645 name = "postgres" 1657 - version = "0.19.5" 1646 + version = "0.19.7" 1658 1647 source = "registry+https://github.com/rust-lang/crates.io-index" 1659 - checksum = "0bed5017bc2ff49649c0075d0d7a9d676933c1292480c1d137776fb205b5cd18" 1648 + checksum = "7915b33ed60abc46040cbcaa25ffa1c7ec240668e0477c4f3070786f5916d451" 1660 1649 dependencies = [ 1661 1650 "bytes", 1662 1651 "fallible-iterator", 1663 1652 "futures-util", 1664 - "log 0.4.17", 1653 + "log 0.4.20", 1665 1654 "tokio", 1666 1655 "tokio-postgres", 1667 1656 ] ··· 1681 1670 1682 1671 [[package]] 1683 1672 name = "postgres-protocol" 1684 - version = "0.6.5" 1673 + version = "0.6.6" 1685 1674 source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d" 1675 + checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520" 1687 1676 dependencies = [ 1688 - "base64 0.21.0", 1677 + "base64 0.21.4", 1689 1678 "byteorder", 1690 1679 "bytes", 1691 1680 "fallible-iterator", ··· 1699 1688 1700 1689 [[package]] 1701 1690 name = "postgres-types" 1702 - version = "0.2.5" 1691 + version = "0.2.6" 1703 1692 source = "registry+https://github.com/rust-lang/crates.io-index" 1704 - checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6" 1693 + checksum = "8d2234cdee9408b523530a9b6d2d6b373d1db34f6a8e51dc03ded1828d7fb67c" 1705 1694 dependencies = [ 1706 1695 "bytes", 1707 1696 "fallible-iterator", ··· 1728 1717 1729 1718 [[package]] 1730 1719 name = "proc-macro2" 1731 - version = "1.0.56" 1720 + version = "1.0.67" 1732 1721 source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 1722 + checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" 1734 1723 dependencies = [ 1735 1724 "unicode-ident", 1736 1725 ] 1737 1726 1738 1727 [[package]] 1739 1728 name = "psl" 1740 - version = "2.1.3" 1729 + version = "2.1.4" 1741 1730 source = "registry+https://github.com/rust-lang/crates.io-index" 1742 - checksum = "2ac31add97d7c393248c273c9f862bcfd396e870db1ff5dec63e0e707db82ae4" 1731 + checksum = "4a1be0afcd844b15cfce18bf8cccf2dfa887a00a6454a9ea135f122b948cee91" 1743 1732 dependencies = [ 1744 1733 "psl-types", 1745 1734 ] ··· 1758 1747 1759 1748 [[package]] 1760 1749 name = "quote" 1761 - version = "1.0.26" 1750 + version = "1.0.33" 1762 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1763 - checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 1752 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 1764 1753 dependencies = [ 1765 1754 "proc-macro2", 1766 1755 ] ··· 1869 1858 source = "registry+https://github.com/rust-lang/crates.io-index" 1870 1859 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1871 1860 dependencies = [ 1872 - "getrandom 0.2.9", 1861 + "getrandom 0.2.10", 1873 1862 ] 1874 1863 1875 1864 [[package]] ··· 1989 1978 source = "registry+https://github.com/rust-lang/crates.io-index" 1990 1979 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1991 1980 dependencies = [ 1992 - "bitflags", 1981 + "bitflags 1.3.2", 1993 1982 ] 1994 1983 1995 1984 [[package]] ··· 1998 1987 source = "registry+https://github.com/rust-lang/crates.io-index" 1999 1988 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2000 1989 dependencies = [ 2001 - "bitflags", 1990 + "bitflags 1.3.2", 2002 1991 ] 2003 1992 2004 1993 [[package]] 2005 1994 name = "regex" 2006 - version = "1.7.3" 1995 + version = "1.9.5" 1996 + source = "registry+https://github.com/rust-lang/crates.io-index" 1997 + checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 1998 + dependencies = [ 1999 + "aho-corasick", 2000 + "memchr", 2001 + "regex-automata", 2002 + "regex-syntax", 2003 + ] 2004 + 2005 + [[package]] 2006 + name = "regex-automata" 2007 + version = "0.3.8" 2007 2008 source = "registry+https://github.com/rust-lang/crates.io-index" 2008 - checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 2009 + checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 2009 2010 dependencies = [ 2010 2011 "aho-corasick", 2011 2012 "memchr", ··· 2014 2015 2015 2016 [[package]] 2016 2017 name = "regex-syntax" 2017 - version = "0.6.29" 2018 + version = "0.7.5" 2018 2019 source = "registry+https://github.com/rust-lang/crates.io-index" 2019 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 2020 + checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 2020 2021 2021 2022 [[package]] 2022 2023 name = "reqwest" 2023 - version = "0.11.16" 2024 + version = "0.11.20" 2024 2025 source = "registry+https://github.com/rust-lang/crates.io-index" 2025 - checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254" 2026 + checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" 2026 2027 dependencies = [ 2027 2028 "async-compression", 2028 - "base64 0.21.0", 2029 + "base64 0.21.4", 2029 2030 "bytes", 2030 2031 "encoding_rs", 2031 2032 "futures-core", ··· 2033 2034 "h2", 2034 2035 "http", 2035 2036 "http-body", 2036 - "hyper 0.14.25", 2037 + "hyper 0.14.27", 2037 2038 "hyper-rustls", 2038 2039 "hyper-tls", 2039 2040 "ipnet", 2040 2041 "js-sys", 2041 - "log 0.4.17", 2042 + "log 0.4.20", 2042 2043 "mime 0.3.17", 2043 2044 "native-tls", 2044 2045 "once_cell", 2045 - "percent-encoding 2.2.0", 2046 + "percent-encoding 2.3.0", 2046 2047 "pin-project-lite", 2047 2048 "rustls", 2048 2049 "rustls-pemfile", 2049 - "serde 1.0.159", 2050 + "serde 1.0.188", 2050 2051 "serde_json", 2051 2052 "serde_urlencoded", 2052 2053 "tokio", ··· 2055 2056 "tokio-util", 2056 2057 "tower-service", 2057 2058 "trust-dns-resolver 0.22.0", 2058 - "url 2.3.1", 2059 + "url 2.4.1", 2059 2060 "wasm-bindgen", 2060 2061 "wasm-bindgen-futures", 2061 2062 "web-sys", 2062 2063 "webpki-roots", 2063 - "winreg 0.10.1", 2064 + "winreg 0.50.0", 2064 2065 ] 2065 2066 2066 2067 [[package]] ··· 2108 2109 2109 2110 [[package]] 2110 2111 name = "rustc-demangle" 2111 - version = "0.1.22" 2112 + version = "0.1.23" 2112 2113 source = "registry+https://github.com/rust-lang/crates.io-index" 2113 - checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b" 2114 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 2114 2115 2115 2116 [[package]] 2116 2117 name = "rustc_version" ··· 2123 2124 2124 2125 [[package]] 2125 2126 name = "rustix" 2126 - version = "0.37.11" 2127 + version = "0.38.13" 2127 2128 source = "registry+https://github.com/rust-lang/crates.io-index" 2128 - checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77" 2129 + checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" 2129 2130 dependencies = [ 2130 - "bitflags", 2131 + "bitflags 2.4.0", 2131 2132 "errno", 2132 - "io-lifetimes", 2133 2133 "libc", 2134 2134 "linux-raw-sys", 2135 - "windows-sys 0.48.0", 2135 + "windows-sys", 2136 2136 ] 2137 2137 2138 2138 [[package]] 2139 2139 name = "rustls" 2140 - version = "0.20.8" 2140 + version = "0.21.7" 2141 2141 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 2142 + checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 2143 2143 dependencies = [ 2144 - "log 0.4.17", 2144 + "log 0.4.20", 2145 2145 "ring", 2146 + "rustls-webpki", 2146 2147 "sct", 2147 - "webpki", 2148 2148 ] 2149 2149 2150 2150 [[package]] 2151 2151 name = "rustls-pemfile" 2152 - version = "1.0.2" 2152 + version = "1.0.3" 2153 + source = "registry+https://github.com/rust-lang/crates.io-index" 2154 + checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 2155 + dependencies = [ 2156 + "base64 0.21.4", 2157 + ] 2158 + 2159 + [[package]] 2160 + name = "rustls-webpki" 2161 + version = "0.101.5" 2153 2162 source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 2163 + checksum = "45a27e3b59326c16e23d30aeb7a36a24cc0d29e71d68ff611cdfb4a01d013bed" 2155 2164 dependencies = [ 2156 - "base64 0.21.0", 2165 + "ring", 2166 + "untrusted", 2157 2167 ] 2158 2168 2159 2169 [[package]] 2160 2170 name = "ryu" 2161 - version = "1.0.13" 2171 + version = "1.0.15" 2162 2172 source = "registry+https://github.com/rust-lang/crates.io-index" 2163 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2173 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2164 2174 2165 2175 [[package]] 2166 2176 name = "safemem" ··· 2170 2180 2171 2181 [[package]] 2172 2182 name = "schannel" 2173 - version = "0.1.21" 2183 + version = "0.1.22" 2174 2184 source = "registry+https://github.com/rust-lang/crates.io-index" 2175 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 2185 + checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 2176 2186 dependencies = [ 2177 - "windows-sys 0.42.0", 2187 + "windows-sys", 2178 2188 ] 2179 2189 2180 2190 [[package]] 2181 2191 name = "scopeguard" 2182 - version = "1.1.0" 2192 + version = "1.2.0" 2183 2193 source = "registry+https://github.com/rust-lang/crates.io-index" 2184 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2194 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2185 2195 2186 2196 [[package]] 2187 2197 name = "scraper" ··· 2211 2221 2212 2222 [[package]] 2213 2223 name = "security-framework" 2214 - version = "2.8.2" 2224 + version = "2.9.2" 2215 2225 source = "registry+https://github.com/rust-lang/crates.io-index" 2216 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 2226 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 2217 2227 dependencies = [ 2218 - "bitflags", 2228 + "bitflags 1.3.2", 2219 2229 "core-foundation", 2220 2230 "core-foundation-sys", 2221 2231 "libc", ··· 2224 2234 2225 2235 [[package]] 2226 2236 name = "security-framework-sys" 2227 - version = "2.8.0" 2237 + version = "2.9.1" 2228 2238 source = "registry+https://github.com/rust-lang/crates.io-index" 2229 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 2239 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 2230 2240 dependencies = [ 2231 2241 "core-foundation-sys", 2232 2242 "libc", ··· 2238 2248 source = "registry+https://github.com/rust-lang/crates.io-index" 2239 2249 checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2240 2250 dependencies = [ 2241 - "bitflags", 2251 + "bitflags 1.3.2", 2242 2252 "cssparser", 2243 2253 "derive_more", 2244 2254 "fxhash", 2245 - "log 0.4.17", 2255 + "log 0.4.20", 2246 2256 "matches", 2247 2257 "phf 0.8.0", 2248 2258 "phf_codegen", ··· 2254 2264 2255 2265 [[package]] 2256 2266 name = "semver" 2257 - version = "1.0.17" 2267 + version = "1.0.18" 2258 2268 source = "registry+https://github.com/rust-lang/crates.io-index" 2259 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 2269 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 2260 2270 2261 2271 [[package]] 2262 2272 name = "serde" ··· 2266 2276 2267 2277 [[package]] 2268 2278 name = "serde" 2269 - version = "1.0.159" 2279 + version = "1.0.188" 2270 2280 source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" 2281 + checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 2272 2282 dependencies = [ 2273 2283 "serde_derive", 2274 2284 ] ··· 2287 2297 2288 2298 [[package]] 2289 2299 name = "serde_derive" 2290 - version = "1.0.159" 2300 + version = "1.0.188" 2291 2301 source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" 2302 + checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 2293 2303 dependencies = [ 2294 2304 "proc-macro2", 2295 2305 "quote", 2296 - "syn 2.0.13", 2306 + "syn 2.0.33", 2297 2307 ] 2298 2308 2299 2309 [[package]] 2300 2310 name = "serde_json" 2301 - version = "1.0.95" 2311 + version = "1.0.107" 2302 2312 source = "registry+https://github.com/rust-lang/crates.io-index" 2303 - checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" 2313 + checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 2304 2314 dependencies = [ 2305 - "itoa 1.0.6", 2315 + "itoa 1.0.9", 2306 2316 "ryu", 2307 - "serde 1.0.159", 2317 + "serde 1.0.188", 2308 2318 ] 2309 2319 2310 2320 [[package]] ··· 2314 2324 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2315 2325 dependencies = [ 2316 2326 "form_urlencoded", 2317 - "itoa 1.0.6", 2327 + "itoa 1.0.9", 2318 2328 "ryu", 2319 - "serde 1.0.159", 2329 + "serde 1.0.188", 2320 2330 ] 2321 2331 2322 2332 [[package]] ··· 2346 2356 2347 2357 [[package]] 2348 2358 name = "sha2" 2349 - version = "0.10.6" 2359 + version = "0.10.7" 2350 2360 source = "registry+https://github.com/rust-lang/crates.io-index" 2351 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2361 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 2352 2362 dependencies = [ 2353 2363 "cfg-if", 2354 2364 "cpufeatures", ··· 2366 2376 2367 2377 [[package]] 2368 2378 name = "siphasher" 2369 - version = "0.3.10" 2379 + version = "0.3.11" 2370 2380 source = "registry+https://github.com/rust-lang/crates.io-index" 2371 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2381 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 2372 2382 2373 2383 [[package]] 2374 2384 name = "slab" 2375 - version = "0.4.8" 2385 + version = "0.4.9" 2376 2386 source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2387 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2378 2388 dependencies = [ 2379 2389 "autocfg 1.1.0", 2380 2390 ] 2381 2391 2382 2392 [[package]] 2383 2393 name = "smallvec" 2384 - version = "1.10.0" 2394 + version = "1.11.0" 2385 2395 source = "registry+https://github.com/rust-lang/crates.io-index" 2386 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2396 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 2387 2397 2388 2398 [[package]] 2389 2399 name = "socket2" ··· 2408 2418 2409 2419 [[package]] 2410 2420 name = "socket2" 2411 - version = "0.5.1" 2421 + version = "0.5.4" 2412 2422 source = "registry+https://github.com/rust-lang/crates.io-index" 2413 - checksum = "bc8d618c6641ae355025c449427f9e96b98abf99a772be3cef6708d15c77147a" 2423 + checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" 2414 2424 dependencies = [ 2415 2425 "libc", 2416 - "windows-sys 0.45.0", 2426 + "windows-sys", 2417 2427 ] 2418 2428 2419 2429 [[package]] ··· 2445 2455 "parking_lot 0.12.1", 2446 2456 "phf_shared 0.10.0", 2447 2457 "precomputed-hash", 2448 - "serde 1.0.159", 2458 + "serde 1.0.188", 2449 2459 ] 2450 2460 2451 2461 [[package]] ··· 2462 2472 2463 2473 [[package]] 2464 2474 name = "stringprep" 2465 - version = "0.1.2" 2475 + version = "0.1.4" 2466 2476 source = "registry+https://github.com/rust-lang/crates.io-index" 2467 - checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 2477 + checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" 2468 2478 dependencies = [ 2479 + "finl_unicode", 2469 2480 "unicode-bidi", 2470 2481 "unicode-normalization", 2471 2482 ] ··· 2484 2495 2485 2496 [[package]] 2486 2497 name = "subtle" 2487 - version = "2.4.1" 2498 + version = "2.5.0" 2488 2499 source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2500 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2490 2501 2491 2502 [[package]] 2492 2503 name = "syn" ··· 2501 2512 2502 2513 [[package]] 2503 2514 name = "syn" 2504 - version = "2.0.13" 2515 + version = "2.0.33" 2505 2516 source = "registry+https://github.com/rust-lang/crates.io-index" 2506 - checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" 2517 + checksum = "9caece70c63bfba29ec2fed841a09851b14a235c60010fa4de58089b6c025668" 2507 2518 dependencies = [ 2508 2519 "proc-macro2", 2509 2520 "quote", ··· 2512 2523 2513 2524 [[package]] 2514 2525 name = "tempfile" 2515 - version = "3.5.0" 2526 + version = "3.8.0" 2516 2527 source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 2528 + checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 2518 2529 dependencies = [ 2519 2530 "cfg-if", 2520 2531 "fastrand", 2521 2532 "redox_syscall 0.3.5", 2522 2533 "rustix", 2523 - "windows-sys 0.45.0", 2534 + "windows-sys", 2524 2535 ] 2525 2536 2526 2537 [[package]] ··· 2551 2562 2552 2563 [[package]] 2553 2564 name = "thiserror" 2554 - version = "1.0.40" 2565 + version = "1.0.48" 2555 2566 source = "registry+https://github.com/rust-lang/crates.io-index" 2556 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2567 + checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" 2557 2568 dependencies = [ 2558 2569 "thiserror-impl", 2559 2570 ] 2560 2571 2561 2572 [[package]] 2562 2573 name = "thiserror-impl" 2563 - version = "1.0.40" 2574 + version = "1.0.48" 2564 2575 source = "registry+https://github.com/rust-lang/crates.io-index" 2565 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2576 + checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" 2566 2577 dependencies = [ 2567 2578 "proc-macro2", 2568 2579 "quote", 2569 - "syn 2.0.13", 2580 + "syn 2.0.33", 2570 2581 ] 2571 2582 2572 2583 [[package]] ··· 2597 2608 2598 2609 [[package]] 2599 2610 name = "tokio" 2600 - version = "1.27.0" 2611 + version = "1.32.0" 2601 2612 source = "registry+https://github.com/rust-lang/crates.io-index" 2602 - checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" 2613 + checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 2603 2614 dependencies = [ 2604 - "autocfg 1.1.0", 2615 + "backtrace", 2605 2616 "bytes", 2606 2617 "libc", 2607 2618 "mio", ··· 2609 2620 "parking_lot 0.12.1", 2610 2621 "pin-project-lite", 2611 2622 "signal-hook-registry", 2612 - "socket2 0.4.9", 2623 + "socket2 0.5.4", 2613 2624 "tokio-macros", 2614 - "windows-sys 0.45.0", 2625 + "windows-sys", 2615 2626 ] 2616 2627 2617 2628 [[package]] 2618 2629 name = "tokio-macros" 2619 - version = "2.0.0" 2630 + version = "2.1.0" 2620 2631 source = "registry+https://github.com/rust-lang/crates.io-index" 2621 - checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" 2632 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2622 2633 dependencies = [ 2623 2634 "proc-macro2", 2624 2635 "quote", 2625 - "syn 2.0.13", 2636 + "syn 2.0.33", 2626 2637 ] 2627 2638 2628 2639 [[package]] ··· 2637 2648 2638 2649 [[package]] 2639 2650 name = "tokio-postgres" 2640 - version = "0.7.8" 2651 + version = "0.7.10" 2641 2652 source = "registry+https://github.com/rust-lang/crates.io-index" 2642 - checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1" 2653 + checksum = "d340244b32d920260ae7448cb72b6e238bddc3d4f7603394e7dd46ed8e48f5b8" 2643 2654 dependencies = [ 2644 2655 "async-trait", 2645 2656 "byteorder", ··· 2647 2658 "fallible-iterator", 2648 2659 "futures-channel", 2649 2660 "futures-util", 2650 - "log 0.4.17", 2661 + "log 0.4.20", 2651 2662 "parking_lot 0.12.1", 2652 - "percent-encoding 2.2.0", 2653 - "phf 0.11.1", 2663 + "percent-encoding 2.3.0", 2664 + "phf 0.11.2", 2654 2665 "pin-project-lite", 2655 2666 "postgres-protocol", 2656 2667 "postgres-types", 2657 - "socket2 0.5.1", 2668 + "rand 0.8.5", 2669 + "socket2 0.5.4", 2658 2670 "tokio", 2659 2671 "tokio-util", 2672 + "whoami", 2660 2673 ] 2661 2674 2662 2675 [[package]] 2663 2676 name = "tokio-rustls" 2664 - version = "0.23.4" 2677 + version = "0.24.1" 2665 2678 source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 2679 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 2667 2680 dependencies = [ 2668 2681 "rustls", 2669 2682 "tokio", 2670 - "webpki", 2671 2683 ] 2672 2684 2673 2685 [[package]] 2674 2686 name = "tokio-util" 2675 - version = "0.7.7" 2687 + version = "0.7.8" 2676 2688 source = "registry+https://github.com/rust-lang/crates.io-index" 2677 - checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 2689 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 2678 2690 dependencies = [ 2679 2691 "bytes", 2680 2692 "futures-core", ··· 2690 2702 source = "registry+https://github.com/rust-lang/crates.io-index" 2691 2703 checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 2692 2704 dependencies = [ 2693 - "serde 1.0.159", 2705 + "serde 1.0.188", 2694 2706 ] 2695 2707 2696 2708 [[package]] ··· 2713 2725 2714 2726 [[package]] 2715 2727 name = "tracing-attributes" 2716 - version = "0.1.23" 2728 + version = "0.1.26" 2717 2729 source = "registry+https://github.com/rust-lang/crates.io-index" 2718 - checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 2730 + checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 2719 2731 dependencies = [ 2720 2732 "proc-macro2", 2721 2733 "quote", 2722 - "syn 1.0.109", 2734 + "syn 2.0.33", 2723 2735 ] 2724 2736 2725 2737 [[package]] 2726 2738 name = "tracing-core" 2727 - version = "0.1.30" 2739 + version = "0.1.31" 2728 2740 source = "registry+https://github.com/rust-lang/crates.io-index" 2729 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2741 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2730 2742 dependencies = [ 2731 2743 "once_cell", 2732 2744 ] ··· 2752 2764 "idna 0.2.3", 2753 2765 "ipnet", 2754 2766 "lazy_static", 2755 - "log 0.4.17", 2767 + "log 0.4.20", 2756 2768 "rand 0.8.5", 2757 2769 "smallvec", 2758 2770 "thiserror", 2759 2771 "tinyvec", 2760 2772 "tokio", 2761 - "url 2.3.1", 2773 + "url 2.4.1", 2762 2774 ] 2763 2775 2764 2776 [[package]] ··· 2783 2795 "tinyvec", 2784 2796 "tokio", 2785 2797 "tracing", 2786 - "url 2.3.1", 2798 + "url 2.4.1", 2787 2799 ] 2788 2800 2789 2801 [[package]] ··· 2795 2807 "futures-util", 2796 2808 "ipconfig 0.2.2", 2797 2809 "lazy_static", 2798 - "log 0.4.17", 2810 + "log 0.4.20", 2799 2811 "lru-cache", 2800 2812 "parking_lot 0.11.2", 2801 2813 "rand 0.8.5", ··· 2814 2826 dependencies = [ 2815 2827 "cfg-if", 2816 2828 "futures-util", 2817 - "ipconfig 0.3.1", 2829 + "ipconfig 0.3.2", 2818 2830 "lazy_static", 2819 2831 "lru-cache", 2820 2832 "parking_lot 0.12.1", ··· 2861 2873 2862 2874 [[package]] 2863 2875 name = "unicode-ident" 2864 - version = "1.0.8" 2876 + version = "1.0.12" 2865 2877 source = "registry+https://github.com/rust-lang/crates.io-index" 2866 - checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2878 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2867 2879 2868 2880 [[package]] 2869 2881 name = "unicode-normalization" ··· 2899 2911 2900 2912 [[package]] 2901 2913 name = "url" 2902 - version = "2.3.1" 2914 + version = "2.4.1" 2903 2915 source = "registry+https://github.com/rust-lang/crates.io-index" 2904 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2916 + checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 2905 2917 dependencies = [ 2906 2918 "form_urlencoded", 2907 - "idna 0.3.0", 2908 - "percent-encoding 2.2.0", 2919 + "idna 0.4.0", 2920 + "percent-encoding 2.3.0", 2909 2921 ] 2910 2922 2911 2923 [[package]] ··· 2940 2952 2941 2953 [[package]] 2942 2954 name = "want" 2943 - version = "0.3.0" 2955 + version = "0.3.1" 2944 2956 source = "registry+https://github.com/rust-lang/crates.io-index" 2945 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2957 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2946 2958 dependencies = [ 2947 - "log 0.4.17", 2948 2959 "try-lock", 2949 2960 ] 2950 2961 ··· 2968 2979 2969 2980 [[package]] 2970 2981 name = "wasm-bindgen" 2971 - version = "0.2.84" 2982 + version = "0.2.87" 2972 2983 source = "registry+https://github.com/rust-lang/crates.io-index" 2973 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 2984 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 2974 2985 dependencies = [ 2975 2986 "cfg-if", 2976 2987 "wasm-bindgen-macro", ··· 2978 2989 2979 2990 [[package]] 2980 2991 name = "wasm-bindgen-backend" 2981 - version = "0.2.84" 2992 + version = "0.2.87" 2982 2993 source = "registry+https://github.com/rust-lang/crates.io-index" 2983 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 2994 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 2984 2995 dependencies = [ 2985 2996 "bumpalo", 2986 - "log 0.4.17", 2997 + "log 0.4.20", 2987 2998 "once_cell", 2988 2999 "proc-macro2", 2989 3000 "quote", 2990 - "syn 1.0.109", 3001 + "syn 2.0.33", 2991 3002 "wasm-bindgen-shared", 2992 3003 ] 2993 3004 2994 3005 [[package]] 2995 3006 name = "wasm-bindgen-futures" 2996 - version = "0.4.34" 3007 + version = "0.4.37" 2997 3008 source = "registry+https://github.com/rust-lang/crates.io-index" 2998 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 3009 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 2999 3010 dependencies = [ 3000 3011 "cfg-if", 3001 3012 "js-sys", ··· 3005 3016 3006 3017 [[package]] 3007 3018 name = "wasm-bindgen-macro" 3008 - version = "0.2.84" 3019 + version = "0.2.87" 3009 3020 source = "registry+https://github.com/rust-lang/crates.io-index" 3010 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 3021 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 3011 3022 dependencies = [ 3012 3023 "quote", 3013 3024 "wasm-bindgen-macro-support", ··· 3015 3026 3016 3027 [[package]] 3017 3028 name = "wasm-bindgen-macro-support" 3018 - version = "0.2.84" 3029 + version = "0.2.87" 3019 3030 source = "registry+https://github.com/rust-lang/crates.io-index" 3020 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 3031 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 3021 3032 dependencies = [ 3022 3033 "proc-macro2", 3023 3034 "quote", 3024 - "syn 1.0.109", 3035 + "syn 2.0.33", 3025 3036 "wasm-bindgen-backend", 3026 3037 "wasm-bindgen-shared", 3027 3038 ] 3028 3039 3029 3040 [[package]] 3030 3041 name = "wasm-bindgen-shared" 3031 - version = "0.2.84" 3042 + version = "0.2.87" 3032 3043 source = "registry+https://github.com/rust-lang/crates.io-index" 3033 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 3044 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 3034 3045 3035 3046 [[package]] 3036 3047 name = "web-sys" 3037 - version = "0.3.61" 3048 + version = "0.3.64" 3038 3049 source = "registry+https://github.com/rust-lang/crates.io-index" 3039 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 3050 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 3040 3051 dependencies = [ 3041 3052 "js-sys", 3042 3053 "wasm-bindgen", 3043 - ] 3044 - 3045 - [[package]] 3046 - name = "webpki" 3047 - version = "0.22.0" 3048 - source = "registry+https://github.com/rust-lang/crates.io-index" 3049 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 3050 - dependencies = [ 3051 - "ring", 3052 - "untrusted", 3053 3054 ] 3054 3055 3055 3056 [[package]] 3056 3057 name = "webpki-roots" 3057 - version = "0.22.6" 3058 + version = "0.25.2" 3058 3059 source = "registry+https://github.com/rust-lang/crates.io-index" 3059 - checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 3060 - dependencies = [ 3061 - "webpki", 3062 - ] 3060 + checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" 3063 3061 3064 3062 [[package]] 3065 3063 name = "websocket" ··· 3068 3066 checksum = "b255b190f412e45000c35be7fe9b48b39a2ac5eb90d093d421694e5dae8b335c" 3069 3067 dependencies = [ 3070 3068 "base64 0.10.1", 3071 - "bitflags", 3069 + "bitflags 1.3.2", 3072 3070 "byteorder", 3073 3071 "hyper 0.10.16", 3074 3072 "rand 0.6.5", ··· 3088 3086 ] 3089 3087 3090 3088 [[package]] 3089 + name = "whoami" 3090 + version = "1.4.1" 3091 + source = "registry+https://github.com/rust-lang/crates.io-index" 3092 + checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" 3093 + dependencies = [ 3094 + "wasm-bindgen", 3095 + "web-sys", 3096 + ] 3097 + 3098 + [[package]] 3091 3099 name = "widestring" 3092 3100 version = "0.4.3" 3093 3101 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3095 3103 3096 3104 [[package]] 3097 3105 name = "widestring" 3098 - version = "0.5.1" 3106 + version = "1.0.2" 3099 3107 source = "registry+https://github.com/rust-lang/crates.io-index" 3100 - checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" 3108 + checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" 3101 3109 3102 3110 [[package]] 3103 3111 name = "winapi" ··· 3123 3131 3124 3132 [[package]] 3125 3133 name = "windows-sys" 3126 - version = "0.42.0" 3127 - source = "registry+https://github.com/rust-lang/crates.io-index" 3128 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3129 - dependencies = [ 3130 - "windows_aarch64_gnullvm 0.42.2", 3131 - "windows_aarch64_msvc 0.42.2", 3132 - "windows_i686_gnu 0.42.2", 3133 - "windows_i686_msvc 0.42.2", 3134 - "windows_x86_64_gnu 0.42.2", 3135 - "windows_x86_64_gnullvm 0.42.2", 3136 - "windows_x86_64_msvc 0.42.2", 3137 - ] 3138 - 3139 - [[package]] 3140 - name = "windows-sys" 3141 - version = "0.45.0" 3142 - source = "registry+https://github.com/rust-lang/crates.io-index" 3143 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3144 - dependencies = [ 3145 - "windows-targets 0.42.2", 3146 - ] 3147 - 3148 - [[package]] 3149 - name = "windows-sys" 3150 3134 version = "0.48.0" 3151 3135 source = "registry+https://github.com/rust-lang/crates.io-index" 3152 3136 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3153 3137 dependencies = [ 3154 - "windows-targets 0.48.0", 3155 - ] 3156 - 3157 - [[package]] 3158 - name = "windows-targets" 3159 - version = "0.42.2" 3160 - source = "registry+https://github.com/rust-lang/crates.io-index" 3161 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3162 - dependencies = [ 3163 - "windows_aarch64_gnullvm 0.42.2", 3164 - "windows_aarch64_msvc 0.42.2", 3165 - "windows_i686_gnu 0.42.2", 3166 - "windows_i686_msvc 0.42.2", 3167 - "windows_x86_64_gnu 0.42.2", 3168 - "windows_x86_64_gnullvm 0.42.2", 3169 - "windows_x86_64_msvc 0.42.2", 3138 + "windows-targets", 3170 3139 ] 3171 3140 3172 3141 [[package]] 3173 3142 name = "windows-targets" 3174 - version = "0.48.0" 3143 + version = "0.48.5" 3175 3144 source = "registry+https://github.com/rust-lang/crates.io-index" 3176 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 3145 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3177 3146 dependencies = [ 3178 - "windows_aarch64_gnullvm 0.48.0", 3179 - "windows_aarch64_msvc 0.48.0", 3180 - "windows_i686_gnu 0.48.0", 3181 - "windows_i686_msvc 0.48.0", 3182 - "windows_x86_64_gnu 0.48.0", 3183 - "windows_x86_64_gnullvm 0.48.0", 3184 - "windows_x86_64_msvc 0.48.0", 3147 + "windows_aarch64_gnullvm", 3148 + "windows_aarch64_msvc", 3149 + "windows_i686_gnu", 3150 + "windows_i686_msvc", 3151 + "windows_x86_64_gnu", 3152 + "windows_x86_64_gnullvm", 3153 + "windows_x86_64_msvc", 3185 3154 ] 3186 3155 3187 3156 [[package]] 3188 3157 name = "windows_aarch64_gnullvm" 3189 - version = "0.42.2" 3190 - source = "registry+https://github.com/rust-lang/crates.io-index" 3191 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3192 - 3193 - [[package]] 3194 - name = "windows_aarch64_gnullvm" 3195 - version = "0.48.0" 3196 - source = "registry+https://github.com/rust-lang/crates.io-index" 3197 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 3198 - 3199 - [[package]] 3200 - name = "windows_aarch64_msvc" 3201 - version = "0.42.2" 3158 + version = "0.48.5" 3202 3159 source = "registry+https://github.com/rust-lang/crates.io-index" 3203 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3160 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3204 3161 3205 3162 [[package]] 3206 3163 name = "windows_aarch64_msvc" 3207 - version = "0.48.0" 3208 - source = "registry+https://github.com/rust-lang/crates.io-index" 3209 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 3210 - 3211 - [[package]] 3212 - name = "windows_i686_gnu" 3213 - version = "0.42.2" 3164 + version = "0.48.5" 3214 3165 source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3166 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3216 3167 3217 3168 [[package]] 3218 3169 name = "windows_i686_gnu" 3219 - version = "0.48.0" 3170 + version = "0.48.5" 3220 3171 source = "registry+https://github.com/rust-lang/crates.io-index" 3221 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 3172 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3222 3173 3223 3174 [[package]] 3224 3175 name = "windows_i686_msvc" 3225 - version = "0.42.2" 3176 + version = "0.48.5" 3226 3177 source = "registry+https://github.com/rust-lang/crates.io-index" 3227 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3228 - 3229 - [[package]] 3230 - name = "windows_i686_msvc" 3231 - version = "0.48.0" 3232 - source = "registry+https://github.com/rust-lang/crates.io-index" 3233 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 3178 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3234 3179 3235 3180 [[package]] 3236 3181 name = "windows_x86_64_gnu" 3237 - version = "0.42.2" 3182 + version = "0.48.5" 3238 3183 source = "registry+https://github.com/rust-lang/crates.io-index" 3239 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3240 - 3241 - [[package]] 3242 - name = "windows_x86_64_gnu" 3243 - version = "0.48.0" 3244 - source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 3184 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3246 3185 3247 3186 [[package]] 3248 3187 name = "windows_x86_64_gnullvm" 3249 - version = "0.42.2" 3250 - source = "registry+https://github.com/rust-lang/crates.io-index" 3251 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3252 - 3253 - [[package]] 3254 - name = "windows_x86_64_gnullvm" 3255 - version = "0.48.0" 3256 - source = "registry+https://github.com/rust-lang/crates.io-index" 3257 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 3258 - 3259 - [[package]] 3260 - name = "windows_x86_64_msvc" 3261 - version = "0.42.2" 3188 + version = "0.48.5" 3262 3189 source = "registry+https://github.com/rust-lang/crates.io-index" 3263 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3190 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3264 3191 3265 3192 [[package]] 3266 3193 name = "windows_x86_64_msvc" 3267 - version = "0.48.0" 3194 + version = "0.48.5" 3268 3195 source = "registry+https://github.com/rust-lang/crates.io-index" 3269 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 3196 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3270 3197 3271 3198 [[package]] 3272 3199 name = "winreg" ··· 3279 3206 3280 3207 [[package]] 3281 3208 name = "winreg" 3282 - version = "0.10.1" 3209 + version = "0.50.0" 3283 3210 source = "registry+https://github.com/rust-lang/crates.io-index" 3284 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3211 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 3285 3212 dependencies = [ 3286 - "winapi", 3213 + "cfg-if", 3214 + "windows-sys", 3287 3215 ] 3288 3216 3289 3217 [[package]]
+2 -2
pkgs/tools/networking/findomain/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "findomain"; 13 - version = "9.0.0"; 13 + version = "9.0.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "findomain"; 17 17 repo = pname; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-xiy4HiKgUW7U3GCjR5ZxPHILpDxG6xsADCAzGraqOPc="; 19 + hash = "sha256-YYdmkWqprSr0crfrCQexHTg6XfysuYnrnL9BSwdq7Xw="; 20 20 }; 21 21 22 22 cargoLock = {
+3 -3
pkgs/tools/security/gopass/git-credential.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "git-credential-gopass"; 10 - version = "1.15.7"; 10 + version = "1.15.8"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "gopasspw"; 14 14 repo = "git-credential-gopass"; 15 15 rev = "v${version}"; 16 - hash = "sha256-O8lqrvaFfcFHevZpRf+VbIQCBQUuc+B34OmQ3/VIOzI="; 16 + hash = "sha256-gp/5ZBAxngQKRmr924f7ZQ4GX3uYHz2ULw1Gn+d7vug="; 17 17 }; 18 18 19 - vendorHash = "sha256-gb9AZBh5oUAiuCXbsvkmYxcHRNd9KLYq35nMd4iabKw="; 19 + vendorHash = "sha256-IXY8w5TLXA3SIT2Jyjqt+pPtZ35zQnG0wY08OB1spDw="; 20 20 21 21 subPackages = [ "." ]; 22 22
-6
pkgs/top-level/all-packages.nix
··· 2778 2778 2779 2779 uae = callPackage ../applications/emulators/uae { }; 2780 2780 2781 - uxn = callPackage ../applications/emulators/uxn { }; 2782 - 2783 2781 vbam = callPackage ../applications/emulators/vbam { }; 2784 2782 2785 2783 vice = callPackage ../applications/emulators/vice { }; ··· 9709 9707 kaniko = callPackage ../applications/networking/cluster/kaniko { }; 9710 9708 9711 9709 katana = callPackage ../tools/security/katana { }; 9712 - 9713 - katriawm = callPackage ../applications/window-managers/katriawm { }; 9714 9710 9715 9711 kbdd = callPackage ../applications/window-managers/kbdd { }; 9716 9712 ··· 32486 32482 gmtp = callPackage ../applications/misc/gmtp { }; 32487 32483 32488 32484 gnomecast = callPackage ../applications/video/gnomecast { }; 32489 - 32490 - celluloid = callPackage ../applications/video/celluloid { }; 32491 32485 32492 32486 gnome-recipes = callPackage ../applications/misc/gnome-recipes { 32493 32487 inherit (gnome) gnome-autoar;