Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge master into staging-next

authored by github-actions[bot] and committed by GitHub b6f9cf57 29aea2bf

+1552 -449
+7 -4
nixos/release.nix
··· 44 pkgs = import ./.. { system = "x86_64-linux"; }; 45 46 47 - versionModule = 48 - { system.nixos.versionSuffix = versionSuffix; 49 - system.nixos.revision = nixpkgs.rev or nixpkgs.shortRev; 50 - }; 51 52 makeModules = module: rest: [ configuration versionModule module rest ]; 53
··· 44 pkgs = import ./.. { system = "x86_64-linux"; }; 45 46 47 + versionModule = { config, ... }: { 48 + system.nixos.versionSuffix = versionSuffix; 49 + system.nixos.revision = nixpkgs.rev or nixpkgs.shortRev; 50 + 51 + # At creation time we do not have state yet, so just default to latest. 52 + system.stateVersion = config.system.nixos.version; 53 + }; 54 55 makeModules = module: rest: [ configuration versionModule module rest ]; 56
+19 -1
pkgs/applications/audio/spotify-player/default.nix
··· 24 , withImage ? true 25 , withNotify ? true 26 , withSixel ? true 27 }: 28 29 assert lib.assertOneOf "withAudioBackend" withAudioBackend [ "" "alsa" "pulseaudio" "rodio" "portaudio" "jackaudio" "rodiojack" "sdl" "gstreamer" ]; ··· 44 nativeBuildInputs = [ 45 pkg-config 46 cmake 47 ]; 48 49 buildInputs = [ ··· 59 ++ lib.optionals (withAudioBackend == "jackaudio") [ libjack2 ] 60 ++ lib.optionals (withAudioBackend == "rodiojack") [ alsa-lib libjack2 ] 61 ++ lib.optionals (withAudioBackend == "sdl") [ SDL2 ] 62 - ++ lib.optionals (withAudioBackend == "gstreamer") [ gst_all_1.gstreamer gst_all_1.gst-devtools gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ]; 63 64 buildNoDefaultFeatures = true; 65 ··· 72 ++ lib.optionals withNotify [ "notify" ] 73 ++ lib.optionals withStreaming [ "streaming" ] 74 ++ lib.optionals withSixel [ "sixel" ]; 75 76 meta = { 77 description = "A terminal spotify player that has feature parity with the official client";
··· 24 , withImage ? true 25 , withNotify ? true 26 , withSixel ? true 27 + , stdenv 28 + , darwin 29 + , makeBinaryWrapper 30 }: 31 32 assert lib.assertOneOf "withAudioBackend" withAudioBackend [ "" "alsa" "pulseaudio" "rodio" "portaudio" "jackaudio" "rodiojack" "sdl" "gstreamer" ]; ··· 47 nativeBuildInputs = [ 48 pkg-config 49 cmake 50 + rustPlatform.bindgenHook 51 + ] ++ lib.optionals stdenv.isDarwin [ 52 + makeBinaryWrapper 53 ]; 54 55 buildInputs = [ ··· 65 ++ lib.optionals (withAudioBackend == "jackaudio") [ libjack2 ] 66 ++ lib.optionals (withAudioBackend == "rodiojack") [ alsa-lib libjack2 ] 67 ++ lib.optionals (withAudioBackend == "sdl") [ SDL2 ] 68 + ++ lib.optionals (withAudioBackend == "gstreamer") [ gst_all_1.gstreamer gst_all_1.gst-devtools gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ] 69 + ++ lib.optionals (stdenv.isDarwin && withMediaControl) [ darwin.apple_sdk.frameworks.MediaPlayer ] 70 + ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 71 + AppKit 72 + AudioUnit 73 + Cocoa 74 + ]); 75 76 buildNoDefaultFeatures = true; 77 ··· 84 ++ lib.optionals withNotify [ "notify" ] 85 ++ lib.optionals withStreaming [ "streaming" ] 86 ++ lib.optionals withSixel [ "sixel" ]; 87 + 88 + # sixel-sys is dynamically linked to libsixel 89 + postInstall = lib.optionals (stdenv.isDarwin && withSixel) '' 90 + wrapProgram $out/bin/spotify_player \ 91 + --prefix DYLD_LIBRARY_PATH : "${lib.makeLibraryPath [libsixel]}" 92 + ''; 93 94 meta = { 95 description = "A terminal spotify player that has feature parity with the official client";
+3 -3
pkgs/applications/audio/transcribe/default.nix
··· 22 23 stdenv.mkDerivation rec { 24 pname = "transcribe"; 25 - version = "9.25"; 26 27 src = 28 if stdenv.hostPlatform.system == "x86_64-linux" then 29 fetchzip 30 { 31 - url = "https://www.seventhstring.com/xscribe/downlo/xscsetup-${version}.0.tar.gz"; 32 - sha256 = "sha256-vgl3BCAC7gOYTviHJzMbgZfHTpP90XUvxpC1IhvEZ8I="; 33 } 34 else throw "Platform not supported"; 35
··· 22 23 stdenv.mkDerivation rec { 24 pname = "transcribe"; 25 + version = "9.30.2"; 26 27 src = 28 if stdenv.hostPlatform.system == "x86_64-linux" then 29 fetchzip 30 { 31 + url = "https://www.seventhstring.com/xscribe/downlo/xscsetup-${version}.tar.gz"; 32 + sha256 = "sha256-EZyQsO3tSedMaZIhJWc7j3f7ikBf6XqXLUgdAiQdr14="; 33 } 34 else throw "Platform not supported"; 35
+3 -3
pkgs/applications/editors/codux/default.nix
··· 5 6 let 7 pname = "codux"; 8 - version = "15.9.0"; 9 10 src = fetchurl { 11 url = "https://github.com/wixplosives/codux-versions/releases/download/${version}/Codux-${version}.x86_64.AppImage"; 12 - sha256 = "sha256-bKZShjWs2osyARBZrBgmEN7JZFi/YpXI3p8lM+GrIfc="; 13 }; 14 15 appimageContents = appimageTools.extractType2 { inherit pname version src; }; ··· 30 homepage = "https://www.codux.com"; 31 license = licenses.unfree; 32 platforms = [ "x86_64-linux" ]; 33 - maintainers = with maintainers; [ dit7ya ]; 34 }; 35 }
··· 5 6 let 7 pname = "codux"; 8 + version = "15.10.0"; 9 10 src = fetchurl { 11 url = "https://github.com/wixplosives/codux-versions/releases/download/${version}/Codux-${version}.x86_64.AppImage"; 12 + sha256 = "sha256-lz1dDbYq7aTGQoED07K8I9E0/XsnSlPL81/4W8Vix3E="; 13 }; 14 15 appimageContents = appimageTools.extractType2 { inherit pname version src; }; ··· 30 homepage = "https://www.codux.com"; 31 license = licenses.unfree; 32 platforms = [ "x86_64-linux" ]; 33 + maintainers = with maintainers; [ dit7ya kashw2 ]; 34 }; 35 }
+2 -2
pkgs/applications/emulators/mame/default.nix
··· 38 in 39 stdenv.mkDerivation rec { 40 pname = "mame"; 41 - version = "0.257"; 42 srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; 43 44 src = fetchFromGitHub { 45 owner = "mamedev"; 46 repo = "mame"; 47 rev = "mame${srcVersion}"; 48 - hash = "sha256-iBLHvdqIgF6XkJQX5hFLrP9KkTGWfVvTCs+DRJhsSp4="; 49 }; 50 51 outputs = [ "out" "tools" ];
··· 38 in 39 stdenv.mkDerivation rec { 40 pname = "mame"; 41 + version = "0.258"; 42 srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; 43 44 src = fetchFromGitHub { 45 owner = "mamedev"; 46 repo = "mame"; 47 rev = "mame${srcVersion}"; 48 + hash = "sha256-5wsPlI3xTCeadxvOjjNSGtaa8F7M6gZobsv2Ks8DSGE="; 49 }; 50 51 outputs = [ "out" "tools" ];
+4 -19
pkgs/applications/graphics/gthumb/default.nix
··· 1 { stdenv 2 , lib 3 , fetchurl 4 - , fetchpatch 5 , gnome 6 , pkg-config 7 , meson ··· 20 , libchamplain 21 , librsvg 22 , libwebp 23 , json-glib 24 , webkitgtk 25 , lcms2 ··· 35 36 stdenv.mkDerivation rec { 37 pname = "gthumb"; 38 - version = "3.12.2"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 42 - sha256 = "sha256-l/iv5SJTUhZUHrvx47VG0Spr6zio8OuF8m5naTSq1CU="; 43 }; 44 45 - patches = [ 46 - # Fix build with libraw 0.21, can be removed on next update 47 - # https://hydra.nixos.org/build/209327709/nixlog/1 48 - (fetchpatch { 49 - url = "https://gitlab.gnome.org/GNOME/gthumb/-/commit/da0d3f22a5c3a141211d943e7d963d14090011ec.patch"; 50 - sha256 = "sha256-/l9US19rKxIUJjZ+oynGLr/9PKJPg9VUuA/VSuIT5AQ="; 51 - }) 52 - 53 - # Fix build with exiv2 0.28, can be removed on next update 54 - # https://gitlab.gnome.org/GNOME/gthumb/-/issues/282 55 - (fetchpatch { 56 - url = "https://gitlab.gnome.org/GNOME/gthumb/-/commit/3376550ae109286de09ce5f89e05060eb80230a7.patch"; 57 - sha256 = "sha256-zHX+kV7RaHXFqbR15RTaRcZJPU/P3uUj03tFUv0DR5o="; 58 - }) 59 - ]; 60 - 61 nativeBuildInputs = [ 62 bison 63 desktop-file-utils ··· 93 libsoup 94 libtiff 95 libwebp 96 webkitgtk 97 ]; 98
··· 1 { stdenv 2 , lib 3 , fetchurl 4 , gnome 5 , pkg-config 6 , meson ··· 19 , libchamplain 20 , librsvg 21 , libwebp 22 + , libX11 23 , json-glib 24 , webkitgtk 25 , lcms2 ··· 35 36 stdenv.mkDerivation rec { 37 pname = "gthumb"; 38 + version = "3.12.3"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 42 + sha256 = "sha256-k9s11xQCxIoILVDPQIW7a4DkvVyLmxYaH3tRhBsQBxE="; 43 }; 44 45 nativeBuildInputs = [ 46 bison 47 desktop-file-utils ··· 77 libsoup 78 libtiff 79 libwebp 80 + libX11 81 webkitgtk 82 ]; 83
+581 -86
pkgs/applications/graphics/oculante/Cargo.lock
··· 20 21 [[package]] 22 name = "addr2line" 23 - version = "0.20.0" 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 26 dependencies = [ 27 "gimli", 28 ] ··· 35 36 [[package]] 37 name = "ahash" 38 version = "0.8.3" 39 source = "registry+https://github.com/rust-lang/crates.io-index" 40 checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" ··· 46 47 [[package]] 48 name = "aho-corasick" 49 - version = "1.0.4" 50 source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" 52 dependencies = [ 53 "memchr", 54 ] ··· 95 96 [[package]] 97 name = "arboard" 98 - version = "3.2.0" 99 source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "d6041616acea41d67c4a984709ddab1587fd0b10efe5cc563fee954d2f011854" 101 dependencies = [ 102 "clipboard-win", 103 "core-graphics", ··· 106 "objc", 107 "objc-foundation", 108 "objc_id", 109 - "once_cell", 110 "parking_lot", 111 "thiserror", 112 "winapi", ··· 146 ] 147 148 [[package]] 149 name = "async-io" 150 version = "1.13.0" 151 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 175 ] 176 177 [[package]] 178 name = "atk-sys" 179 version = "0.16.0" 180 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 185 "libc", 186 "system-deps", 187 ] 188 189 [[package]] 190 name = "atomic_refcell" ··· 257 258 [[package]] 259 name = "backtrace" 260 - version = "0.3.68" 261 source = "registry+https://github.com/rust-lang/crates.io-index" 262 - checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 263 dependencies = [ 264 "addr2line", 265 "cc", ··· 272 273 [[package]] 274 name = "base64" 275 - version = "0.21.2" 276 source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 278 279 [[package]] 280 name = "bincode" ··· 337 ] 338 339 [[package]] 340 name = "block-sys" 341 version = "0.1.0-beta.1" 342 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 356 ] 357 358 [[package]] 359 name = "built" 360 version = "0.5.2" 361 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 393 dependencies = [ 394 "proc-macro2", 395 "quote", 396 - "syn 2.0.29", 397 ] 398 399 [[package]] ··· 704 ] 705 706 [[package]] 707 name = "crc32fast" 708 version = "1.3.2" 709 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 785 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 786 787 [[package]] 788 name = "cty" 789 version = "0.2.2" 790 source = "registry+https://github.com/rust-lang/crates.io-index" 791 checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 792 793 [[package]] 794 name = "darling" 795 version = "0.13.4" 796 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 832 checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" 833 834 [[package]] 835 name = "dds-rs" 836 version = "0.7.0" 837 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 844 ] 845 846 [[package]] 847 name = "digest" 848 version = "0.7.6" 849 source = "registry+https://github.com/rust-lang/crates.io-index" 850 checksum = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" 851 dependencies = [ 852 - "generic-array", 853 ] 854 855 [[package]] ··· 864 865 [[package]] 866 name = "dirs" 867 version = "5.0.1" 868 source = "registry+https://github.com/rust-lang/crates.io-index" 869 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" ··· 910 ] 911 912 [[package]] 913 name = "downcast-rs" 914 version = "1.2.0" 915 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 944 source = "registry+https://github.com/rust-lang/crates.io-index" 945 checksum = "65a5e883a316e53866977450eecfbcac9c48109c2ab3394af29feb83fcde4ea9" 946 dependencies = [ 947 - "ahash", 948 "epaint", 949 "nohash-hasher", 950 ] ··· 972 973 [[package]] 974 name = "encoding_rs" 975 - version = "0.8.32" 976 source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 978 dependencies = [ 979 "cfg-if 1.0.0", 980 ] 981 982 [[package]] 983 name = "env_logger" 984 version = "0.10.0" 985 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 999 checksum = "de14b65fe5e423e0058f77a8beb2c863b056d0566d6c4ce0d097aa5814cb705a" 1000 dependencies = [ 1001 "ab_glyph", 1002 - "ahash", 1003 "atomic_refcell", 1004 "bytemuck", 1005 "ecolor", ··· 1016 1017 [[package]] 1018 name = "errno" 1019 - version = "0.3.2" 1020 source = "registry+https://github.com/rust-lang/crates.io-index" 1021 - checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 1022 dependencies = [ 1023 "errno-dragonfly", 1024 "libc", ··· 1056 1057 [[package]] 1058 name = "evalexpr" 1059 - version = "8.2.0" 1060 source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "6aed2b80295745e5fed7a9e869bb8b592961584379df6fddcf0922877206974e" 1062 1063 [[package]] 1064 name = "event-listener" ··· 1273 dependencies = [ 1274 "proc-macro2", 1275 "quote", 1276 - "syn 2.0.29", 1277 ] 1278 1279 [[package]] ··· 1403 dependencies = [ 1404 "proc-macro2", 1405 "quote", 1406 - "syn 2.0.29", 1407 ] 1408 1409 [[package]] ··· 1476 ] 1477 1478 [[package]] 1479 name = "gethostname" 1480 version = "0.2.3" 1481 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1521 1522 [[package]] 1523 name = "gimli" 1524 - version = "0.27.3" 1525 source = "registry+https://github.com/rust-lang/crates.io-index" 1526 - checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 1527 1528 [[package]] 1529 name = "gio-sys" ··· 1782 version = "0.12.3" 1783 source = "registry+https://github.com/rust-lang/crates.io-index" 1784 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1785 1786 [[package]] 1787 name = "hashbrown" ··· 1789 source = "registry+https://github.com/rust-lang/crates.io-index" 1790 checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 1791 dependencies = [ 1792 - "ahash", 1793 ] 1794 1795 [[package]] ··· 1820 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 1821 1822 [[package]] 1823 name = "home" 1824 version = "0.5.5" 1825 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2044 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2045 dependencies = [ 2046 "hermit-abi 0.3.2", 2047 - "rustix 0.38.8", 2048 "windows-sys 0.48.0", 2049 ] 2050 ··· 2503 2504 [[package]] 2505 name = "memchr" 2506 - version = "2.5.0" 2507 source = "registry+https://github.com/rust-lang/crates.io-index" 2508 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2509 2510 [[package]] 2511 name = "memmap2" ··· 2530 version = "0.6.5" 2531 source = "registry+https://github.com/rust-lang/crates.io-index" 2532 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 2533 dependencies = [ 2534 "autocfg", 2535 ] ··· 2737 ] 2738 2739 [[package]] 2740 name = "nohash-hasher" 2741 version = "0.2.0" 2742 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3014 3015 [[package]] 3016 name = "num-bigint" 3017 - version = "0.4.3" 3018 source = "registry+https://github.com/rust-lang/crates.io-index" 3019 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 3020 dependencies = [ 3021 "autocfg", 3022 "num-integer", ··· 3051 dependencies = [ 3052 "proc-macro2", 3053 "quote", 3054 - "syn 2.0.29", 3055 ] 3056 3057 [[package]] ··· 3210 3211 [[package]] 3212 name = "object" 3213 - version = "0.31.1" 3214 source = "registry+https://github.com/rust-lang/crates.io-index" 3215 - checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 3216 dependencies = [ 3217 "memchr", 3218 ] 3219 3220 [[package]] 3221 name = "oculante" 3222 - version = "0.7.3" 3223 dependencies = [ 3224 "anyhow", 3225 "arboard", 3226 "avif-decode", 3227 "clap", 3228 "cmd_lib", 3229 "dds-rs", 3230 "dirs 5.0.1", 3231 "env_logger", ··· 3283 3284 [[package]] 3285 name = "ordered-float" 3286 - version = "3.9.0" 3287 source = "registry+https://github.com/rust-lang/crates.io-index" 3288 - checksum = "126d3e6f3926bfb0fb24495b4f4da50626f547e54956594748e3d8882a0320b4" 3289 dependencies = [ 3290 "num-traits 0.2.16", 3291 ] 3292 3293 [[package]] 3294 name = "os_pipe" 3295 version = "0.9.2" 3296 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3344 dependencies = [ 3345 "proc-macro2", 3346 "quote", 3347 - "syn 2.0.29", 3348 ] 3349 3350 [[package]] ··· 3465 "phf_shared 0.11.2", 3466 "proc-macro2", 3467 "quote", 3468 - "syn 2.0.29", 3469 ] 3470 3471 [[package]] ··· 3509 dependencies = [ 3510 "proc-macro2", 3511 "quote", 3512 - "syn 2.0.29", 3513 ] 3514 3515 [[package]] 3516 name = "pin-project-lite" 3517 - version = "0.2.12" 3518 source = "registry+https://github.com/rust-lang/crates.io-index" 3519 - checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 3520 3521 [[package]] 3522 name = "pin-utils" ··· 3573 3574 [[package]] 3575 name = "portable-atomic" 3576 - version = "1.4.2" 3577 source = "registry+https://github.com/rust-lang/crates.io-index" 3578 - checksum = "f32154ba0af3a075eefa1eda8bb414ee928f62303a54ea85b8d6638ff1a6ee9e" 3579 3580 [[package]] 3581 name = "ppv-lite86" ··· 3844 3845 [[package]] 3846 name = "regex" 3847 - version = "1.9.3" 3848 source = "registry+https://github.com/rust-lang/crates.io-index" 3849 - checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 3850 dependencies = [ 3851 "aho-corasick", 3852 "memchr", ··· 3856 3857 [[package]] 3858 name = "regex-automata" 3859 - version = "0.3.6" 3860 source = "registry+https://github.com/rust-lang/crates.io-index" 3861 - checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 3862 dependencies = [ 3863 "aho-corasick", 3864 "memchr", ··· 3867 3868 [[package]] 3869 name = "regex-syntax" 3870 - version = "0.7.4" 3871 source = "registry+https://github.com/rust-lang/crates.io-index" 3872 - checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 3873 3874 [[package]] 3875 name = "reqwest" 3876 - version = "0.11.19" 3877 source = "registry+https://github.com/rust-lang/crates.io-index" 3878 - checksum = "20b9b67e2ca7dd9e9f9285b759de30ff538aab981abaaf7bc9bd90b84a0126c3" 3879 dependencies = [ 3880 "base64", 3881 "bytes", ··· 4000 ] 4001 4002 [[package]] 4003 name = "rust_hawktracer" 4004 version = "0.7.0" 4005 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4058 4059 [[package]] 4060 name = "rustix" 4061 - version = "0.38.8" 4062 source = "registry+https://github.com/rust-lang/crates.io-index" 4063 - checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 4064 dependencies = [ 4065 "bitflags 2.4.0", 4066 "errno", ··· 4071 4072 [[package]] 4073 name = "rustls" 4074 - version = "0.21.6" 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 4076 - checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" 4077 dependencies = [ 4078 "log", 4079 "ring", ··· 4092 4093 [[package]] 4094 name = "rustls-webpki" 4095 - version = "0.101.3" 4096 source = "registry+https://github.com/rust-lang/crates.io-index" 4097 - checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" 4098 dependencies = [ 4099 "ring", 4100 "untrusted", ··· 4224 4225 [[package]] 4226 name = "serde" 4227 - version = "1.0.185" 4228 source = "registry+https://github.com/rust-lang/crates.io-index" 4229 - checksum = "be9b6f69f1dfd54c3b568ffa45c310d6973a5e5148fd40cf515acaf38cf5bc31" 4230 dependencies = [ 4231 "serde_derive", 4232 ] 4233 4234 [[package]] 4235 name = "serde_derive" 4236 - version = "1.0.185" 4237 source = "registry+https://github.com/rust-lang/crates.io-index" 4238 - checksum = "dc59dfdcbad1437773485e0367fea4b090a2e0a16d9ffc46af47764536a298ec" 4239 dependencies = [ 4240 "proc-macro2", 4241 "quote", 4242 - "syn 2.0.29", 4243 ] 4244 4245 [[package]] ··· 4254 ] 4255 4256 [[package]] 4257 name = "serde_spanned" 4258 version = "0.6.3" 4259 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4296 ] 4297 4298 [[package]] 4299 name = "sha2" 4300 version = "0.7.1" 4301 source = "registry+https://github.com/rust-lang/crates.io-index" 4302 checksum = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" 4303 dependencies = [ 4304 - "block-buffer", 4305 "byte-tools", 4306 - "digest", 4307 "fake-simd", 4308 ] 4309 4310 [[package]] ··· 4346 4347 [[package]] 4348 name = "siphasher" 4349 - version = "0.3.10" 4350 source = "registry+https://github.com/rust-lang/crates.io-index" 4351 - checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 4352 4353 [[package]] 4354 name = "slab" 4355 - version = "0.4.8" 4356 source = "registry+https://github.com/rust-lang/crates.io-index" 4357 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 4358 dependencies = [ 4359 "autocfg", 4360 ] ··· 4491 "proc-macro2", 4492 "quote", 4493 "rustversion", 4494 - "syn 2.0.29", 4495 ] 4496 4497 [[package]] ··· 4527 4528 [[package]] 4529 name = "syn" 4530 - version = "2.0.29" 4531 source = "registry+https://github.com/rust-lang/crates.io-index" 4532 - checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 4533 dependencies = [ 4534 "proc-macro2", 4535 "quote", ··· 4564 "cfg-if 1.0.0", 4565 "fastrand 2.0.0", 4566 "redox_syscall 0.3.5", 4567 - "rustix 0.38.8", 4568 "windows-sys 0.48.0", 4569 ] 4570 ··· 4585 4586 [[package]] 4587 name = "thiserror" 4588 - version = "1.0.47" 4589 source = "registry+https://github.com/rust-lang/crates.io-index" 4590 - checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 4591 dependencies = [ 4592 "thiserror-impl", 4593 ] 4594 4595 [[package]] 4596 name = "thiserror-impl" 4597 - version = "1.0.47" 4598 source = "registry+https://github.com/rust-lang/crates.io-index" 4599 - checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 4600 dependencies = [ 4601 "proc-macro2", 4602 "quote", 4603 - "syn 2.0.29", 4604 ] 4605 4606 [[package]] ··· 4788 dependencies = [ 4789 "cfg-if 1.0.0", 4790 "pin-project-lite", 4791 "tracing-core", 4792 ] 4793 4794 [[package]] ··· 4860 checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4861 4862 [[package]] 4863 name = "unicase" 4864 - version = "2.6.0" 4865 source = "registry+https://github.com/rust-lang/crates.io-index" 4866 - checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 4867 dependencies = [ 4868 "version_check", 4869 ] ··· 4933 4934 [[package]] 4935 name = "url" 4936 - version = "2.4.0" 4937 source = "registry+https://github.com/rust-lang/crates.io-index" 4938 - checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 4939 dependencies = [ 4940 "form_urlencoded", 4941 "idna", ··· 5097 "once_cell", 5098 "proc-macro2", 5099 "quote", 5100 - "syn 2.0.29", 5101 "wasm-bindgen-shared", 5102 ] 5103 ··· 5131 dependencies = [ 5132 "proc-macro2", 5133 "quote", 5134 - "syn 2.0.29", 5135 "wasm-bindgen-backend", 5136 "wasm-bindgen-shared", 5137 ] ··· 5545 5546 [[package]] 5547 name = "winnow" 5548 - version = "0.5.14" 5549 source = "registry+https://github.com/rust-lang/crates.io-index" 5550 - checksum = "d09770118a7eb1ccaf4a594a221334119a44a814fcb0d31c5b85e83e97227a97" 5551 dependencies = [ 5552 "memchr", 5553 ] ··· 5559 checksum = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a" 5560 dependencies = [ 5561 "serde", 5562 "winapi", 5563 ] 5564 ··· 5633 ] 5634 5635 [[package]] 5636 name = "xi-unicode" 5637 version = "0.3.0" 5638 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5667 ] 5668 5669 [[package]] 5670 name = "zune-core" 5671 version = "0.2.14" 5672 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5695 "zune-core", 5696 "zune-inflate", 5697 ]
··· 20 21 [[package]] 22 name = "addr2line" 23 + version = "0.21.0" 24 source = "registry+https://github.com/rust-lang/crates.io-index" 25 + checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 26 dependencies = [ 27 "gimli", 28 ] ··· 35 36 [[package]] 37 name = "ahash" 38 + version = "0.7.6" 39 + source = "registry+https://github.com/rust-lang/crates.io-index" 40 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 41 + dependencies = [ 42 + "getrandom", 43 + "once_cell", 44 + "version_check", 45 + ] 46 + 47 + [[package]] 48 + name = "ahash" 49 version = "0.8.3" 50 source = "registry+https://github.com/rust-lang/crates.io-index" 51 checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" ··· 57 58 [[package]] 59 name = "aho-corasick" 60 + version = "1.0.5" 61 source = "registry+https://github.com/rust-lang/crates.io-index" 62 + checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" 63 dependencies = [ 64 "memchr", 65 ] ··· 106 107 [[package]] 108 name = "arboard" 109 + version = "3.2.1" 110 source = "registry+https://github.com/rust-lang/crates.io-index" 111 + checksum = "ac57f2b058a76363e357c056e4f74f1945bf734d37b8b3ef49066c4787dde0fc" 112 dependencies = [ 113 "clipboard-win", 114 "core-graphics", ··· 117 "objc", 118 "objc-foundation", 119 "objc_id", 120 "parking_lot", 121 "thiserror", 122 "winapi", ··· 156 ] 157 158 [[package]] 159 + name = "async-broadcast" 160 + version = "0.5.1" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b" 163 + dependencies = [ 164 + "event-listener", 165 + "futures-core", 166 + ] 167 + 168 + [[package]] 169 + name = "async-channel" 170 + version = "1.9.0" 171 + source = "registry+https://github.com/rust-lang/crates.io-index" 172 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 173 + dependencies = [ 174 + "concurrent-queue", 175 + "event-listener", 176 + "futures-core", 177 + ] 178 + 179 + [[package]] 180 + name = "async-executor" 181 + version = "1.5.1" 182 + source = "registry+https://github.com/rust-lang/crates.io-index" 183 + checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 184 + dependencies = [ 185 + "async-lock", 186 + "async-task", 187 + "concurrent-queue", 188 + "fastrand 1.9.0", 189 + "futures-lite", 190 + "slab", 191 + ] 192 + 193 + [[package]] 194 + name = "async-fs" 195 + version = "1.6.0" 196 + source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" 198 + dependencies = [ 199 + "async-lock", 200 + "autocfg", 201 + "blocking", 202 + "futures-lite", 203 + ] 204 + 205 + [[package]] 206 name = "async-io" 207 version = "1.13.0" 208 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 232 ] 233 234 [[package]] 235 + name = "async-process" 236 + version = "1.7.0" 237 + source = "registry+https://github.com/rust-lang/crates.io-index" 238 + checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 239 + dependencies = [ 240 + "async-io", 241 + "async-lock", 242 + "autocfg", 243 + "blocking", 244 + "cfg-if 1.0.0", 245 + "event-listener", 246 + "futures-lite", 247 + "rustix 0.37.23", 248 + "signal-hook", 249 + "windows-sys 0.48.0", 250 + ] 251 + 252 + [[package]] 253 + name = "async-recursion" 254 + version = "1.0.5" 255 + source = "registry+https://github.com/rust-lang/crates.io-index" 256 + checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" 257 + dependencies = [ 258 + "proc-macro2", 259 + "quote", 260 + "syn 2.0.30", 261 + ] 262 + 263 + [[package]] 264 + name = "async-task" 265 + version = "4.4.0" 266 + source = "registry+https://github.com/rust-lang/crates.io-index" 267 + checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 268 + 269 + [[package]] 270 + name = "async-trait" 271 + version = "0.1.73" 272 + source = "registry+https://github.com/rust-lang/crates.io-index" 273 + checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 274 + dependencies = [ 275 + "proc-macro2", 276 + "quote", 277 + "syn 2.0.30", 278 + ] 279 + 280 + [[package]] 281 name = "atk-sys" 282 version = "0.16.0" 283 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 288 "libc", 289 "system-deps", 290 ] 291 + 292 + [[package]] 293 + name = "atomic-waker" 294 + version = "1.1.1" 295 + source = "registry+https://github.com/rust-lang/crates.io-index" 296 + checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 297 298 [[package]] 299 name = "atomic_refcell" ··· 366 367 [[package]] 368 name = "backtrace" 369 + version = "0.3.69" 370 source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 372 dependencies = [ 373 "addr2line", 374 "cc", ··· 381 382 [[package]] 383 name = "base64" 384 + version = "0.21.3" 385 source = "registry+https://github.com/rust-lang/crates.io-index" 386 + checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" 387 388 [[package]] 389 name = "bincode" ··· 446 ] 447 448 [[package]] 449 + name = "block-buffer" 450 + version = "0.10.4" 451 + source = "registry+https://github.com/rust-lang/crates.io-index" 452 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 453 + dependencies = [ 454 + "generic-array 0.14.7", 455 + ] 456 + 457 + [[package]] 458 name = "block-sys" 459 version = "0.1.0-beta.1" 460 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 474 ] 475 476 [[package]] 477 + name = "blocking" 478 + version = "1.3.1" 479 + source = "registry+https://github.com/rust-lang/crates.io-index" 480 + checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 481 + dependencies = [ 482 + "async-channel", 483 + "async-lock", 484 + "async-task", 485 + "atomic-waker", 486 + "fastrand 1.9.0", 487 + "futures-lite", 488 + "log", 489 + ] 490 + 491 + [[package]] 492 name = "built" 493 version = "0.5.2" 494 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 526 dependencies = [ 527 "proc-macro2", 528 "quote", 529 + "syn 2.0.30", 530 ] 531 532 [[package]] ··· 837 ] 838 839 [[package]] 840 + name = "cpufeatures" 841 + version = "0.2.9" 842 + source = "registry+https://github.com/rust-lang/crates.io-index" 843 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 844 + dependencies = [ 845 + "libc", 846 + ] 847 + 848 + [[package]] 849 name = "crc32fast" 850 version = "1.3.2" 851 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 927 checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 928 929 [[package]] 930 + name = "crypto-common" 931 + version = "0.1.6" 932 + source = "registry+https://github.com/rust-lang/crates.io-index" 933 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 934 + dependencies = [ 935 + "generic-array 0.14.7", 936 + "typenum", 937 + ] 938 + 939 + [[package]] 940 name = "cty" 941 version = "0.2.2" 942 source = "registry+https://github.com/rust-lang/crates.io-index" 943 checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 944 945 [[package]] 946 + name = "dark-light" 947 + version = "1.0.0" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "a62007a65515b3cd88c733dd3464431f05d2ad066999a824259d8edc3cf6f645" 950 + dependencies = [ 951 + "dconf_rs", 952 + "detect-desktop-environment", 953 + "dirs 4.0.0", 954 + "objc", 955 + "rust-ini", 956 + "web-sys", 957 + "winreg 0.10.1", 958 + "zbus", 959 + "zvariant", 960 + ] 961 + 962 + [[package]] 963 name = "darling" 964 version = "0.13.4" 965 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1001 checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" 1002 1003 [[package]] 1004 + name = "dconf_rs" 1005 + version = "0.3.0" 1006 + source = "registry+https://github.com/rust-lang/crates.io-index" 1007 + checksum = "7046468a81e6a002061c01e6a7c83139daf91b11c30e66795b13217c2d885c8b" 1008 + 1009 + [[package]] 1010 name = "dds-rs" 1011 version = "0.7.0" 1012 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1019 ] 1020 1021 [[package]] 1022 + name = "derivative" 1023 + version = "2.2.0" 1024 + source = "registry+https://github.com/rust-lang/crates.io-index" 1025 + checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1026 + dependencies = [ 1027 + "proc-macro2", 1028 + "quote", 1029 + "syn 1.0.109", 1030 + ] 1031 + 1032 + [[package]] 1033 + name = "detect-desktop-environment" 1034 + version = "0.2.0" 1035 + source = "registry+https://github.com/rust-lang/crates.io-index" 1036 + checksum = "21d8ad60dd5b13a4ee6bd8fa2d5d88965c597c67bce32b5fc49c94f55cb50810" 1037 + 1038 + [[package]] 1039 name = "digest" 1040 version = "0.7.6" 1041 source = "registry+https://github.com/rust-lang/crates.io-index" 1042 checksum = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" 1043 dependencies = [ 1044 + "generic-array 0.9.1", 1045 + ] 1046 + 1047 + [[package]] 1048 + name = "digest" 1049 + version = "0.10.7" 1050 + source = "registry+https://github.com/rust-lang/crates.io-index" 1051 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1052 + dependencies = [ 1053 + "block-buffer 0.10.4", 1054 + "crypto-common", 1055 ] 1056 1057 [[package]] ··· 1066 1067 [[package]] 1068 name = "dirs" 1069 + version = "4.0.0" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1072 + dependencies = [ 1073 + "dirs-sys 0.3.7", 1074 + ] 1075 + 1076 + [[package]] 1077 + name = "dirs" 1078 version = "5.0.1" 1079 source = "registry+https://github.com/rust-lang/crates.io-index" 1080 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" ··· 1121 ] 1122 1123 [[package]] 1124 + name = "dlv-list" 1125 + version = "0.3.0" 1126 + source = "registry+https://github.com/rust-lang/crates.io-index" 1127 + checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" 1128 + 1129 + [[package]] 1130 name = "downcast-rs" 1131 version = "1.2.0" 1132 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1161 source = "registry+https://github.com/rust-lang/crates.io-index" 1162 checksum = "65a5e883a316e53866977450eecfbcac9c48109c2ab3394af29feb83fcde4ea9" 1163 dependencies = [ 1164 + "ahash 0.8.3", 1165 "epaint", 1166 "nohash-hasher", 1167 ] ··· 1189 1190 [[package]] 1191 name = "encoding_rs" 1192 + version = "0.8.33" 1193 source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 1195 dependencies = [ 1196 "cfg-if 1.0.0", 1197 ] 1198 1199 [[package]] 1200 + name = "enumflags2" 1201 + version = "0.7.7" 1202 + source = "registry+https://github.com/rust-lang/crates.io-index" 1203 + checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2" 1204 + dependencies = [ 1205 + "enumflags2_derive", 1206 + "serde", 1207 + ] 1208 + 1209 + [[package]] 1210 + name = "enumflags2_derive" 1211 + version = "0.7.7" 1212 + source = "registry+https://github.com/rust-lang/crates.io-index" 1213 + checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" 1214 + dependencies = [ 1215 + "proc-macro2", 1216 + "quote", 1217 + "syn 2.0.30", 1218 + ] 1219 + 1220 + [[package]] 1221 name = "env_logger" 1222 version = "0.10.0" 1223 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1237 checksum = "de14b65fe5e423e0058f77a8beb2c863b056d0566d6c4ce0d097aa5814cb705a" 1238 dependencies = [ 1239 "ab_glyph", 1240 + "ahash 0.8.3", 1241 "atomic_refcell", 1242 "bytemuck", 1243 "ecolor", ··· 1254 1255 [[package]] 1256 name = "errno" 1257 + version = "0.3.3" 1258 source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" 1260 dependencies = [ 1261 "errno-dragonfly", 1262 "libc", ··· 1294 1295 [[package]] 1296 name = "evalexpr" 1297 + version = "11.1.0" 1298 source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + checksum = "1e757e796a66b54d19fa26de38e75c3351eb7a3755c85d7d181a8c61437ff60c" 1300 1301 [[package]] 1302 name = "event-listener" ··· 1511 dependencies = [ 1512 "proc-macro2", 1513 "quote", 1514 + "syn 2.0.30", 1515 ] 1516 1517 [[package]] ··· 1641 dependencies = [ 1642 "proc-macro2", 1643 "quote", 1644 + "syn 2.0.30", 1645 ] 1646 1647 [[package]] ··· 1714 ] 1715 1716 [[package]] 1717 + name = "generic-array" 1718 + version = "0.14.7" 1719 + source = "registry+https://github.com/rust-lang/crates.io-index" 1720 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1721 + dependencies = [ 1722 + "typenum", 1723 + "version_check", 1724 + ] 1725 + 1726 + [[package]] 1727 name = "gethostname" 1728 version = "0.2.3" 1729 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1769 1770 [[package]] 1771 name = "gimli" 1772 + version = "0.28.0" 1773 source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 1775 1776 [[package]] 1777 name = "gio-sys" ··· 2030 version = "0.12.3" 2031 source = "registry+https://github.com/rust-lang/crates.io-index" 2032 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2033 + dependencies = [ 2034 + "ahash 0.7.6", 2035 + ] 2036 2037 [[package]] 2038 name = "hashbrown" ··· 2040 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 2042 dependencies = [ 2043 + "ahash 0.8.3", 2044 ] 2045 2046 [[package]] ··· 2071 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 2072 2073 [[package]] 2074 + name = "hex" 2075 + version = "0.4.3" 2076 + source = "registry+https://github.com/rust-lang/crates.io-index" 2077 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2078 + 2079 + [[package]] 2080 name = "home" 2081 version = "0.5.5" 2082 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2301 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 2302 dependencies = [ 2303 "hermit-abi 0.3.2", 2304 + "rustix 0.38.11", 2305 "windows-sys 0.48.0", 2306 ] 2307 ··· 2760 2761 [[package]] 2762 name = "memchr" 2763 + version = "2.6.3" 2764 source = "registry+https://github.com/rust-lang/crates.io-index" 2765 + checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" 2766 2767 [[package]] 2768 name = "memmap2" ··· 2787 version = "0.6.5" 2788 source = "registry+https://github.com/rust-lang/crates.io-index" 2789 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 2790 + dependencies = [ 2791 + "autocfg", 2792 + ] 2793 + 2794 + [[package]] 2795 + name = "memoffset" 2796 + version = "0.7.1" 2797 + source = "registry+https://github.com/rust-lang/crates.io-index" 2798 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2799 dependencies = [ 2800 "autocfg", 2801 ] ··· 3003 ] 3004 3005 [[package]] 3006 + name = "nix" 3007 + version = "0.26.4" 3008 + source = "registry+https://github.com/rust-lang/crates.io-index" 3009 + checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3010 + dependencies = [ 3011 + "bitflags 1.3.2", 3012 + "cfg-if 1.0.0", 3013 + "libc", 3014 + "memoffset 0.7.1", 3015 + ] 3016 + 3017 + [[package]] 3018 name = "nohash-hasher" 3019 version = "0.2.0" 3020 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3292 3293 [[package]] 3294 name = "num-bigint" 3295 + version = "0.4.4" 3296 source = "registry+https://github.com/rust-lang/crates.io-index" 3297 + checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 3298 dependencies = [ 3299 "autocfg", 3300 "num-integer", ··· 3329 dependencies = [ 3330 "proc-macro2", 3331 "quote", 3332 + "syn 2.0.30", 3333 ] 3334 3335 [[package]] ··· 3488 3489 [[package]] 3490 name = "object" 3491 + version = "0.32.1" 3492 source = "registry+https://github.com/rust-lang/crates.io-index" 3493 + checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 3494 dependencies = [ 3495 "memchr", 3496 ] 3497 3498 [[package]] 3499 name = "oculante" 3500 + version = "0.7.4" 3501 dependencies = [ 3502 "anyhow", 3503 "arboard", 3504 "avif-decode", 3505 "clap", 3506 "cmd_lib", 3507 + "dark-light", 3508 "dds-rs", 3509 "dirs 5.0.1", 3510 "env_logger", ··· 3562 3563 [[package]] 3564 name = "ordered-float" 3565 + version = "3.9.1" 3566 source = "registry+https://github.com/rust-lang/crates.io-index" 3567 + checksum = "2a54938017eacd63036332b4ae5c8a49fc8c0c1d6d629893057e4f13609edd06" 3568 dependencies = [ 3569 "num-traits 0.2.16", 3570 ] 3571 3572 [[package]] 3573 + name = "ordered-multimap" 3574 + version = "0.4.3" 3575 + source = "registry+https://github.com/rust-lang/crates.io-index" 3576 + checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" 3577 + dependencies = [ 3578 + "dlv-list", 3579 + "hashbrown 0.12.3", 3580 + ] 3581 + 3582 + [[package]] 3583 + name = "ordered-stream" 3584 + version = "0.2.0" 3585 + source = "registry+https://github.com/rust-lang/crates.io-index" 3586 + checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 3587 + dependencies = [ 3588 + "futures-core", 3589 + "pin-project-lite", 3590 + ] 3591 + 3592 + [[package]] 3593 name = "os_pipe" 3594 version = "0.9.2" 3595 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3643 dependencies = [ 3644 "proc-macro2", 3645 "quote", 3646 + "syn 2.0.30", 3647 ] 3648 3649 [[package]] ··· 3764 "phf_shared 0.11.2", 3765 "proc-macro2", 3766 "quote", 3767 + "syn 2.0.30", 3768 ] 3769 3770 [[package]] ··· 3808 dependencies = [ 3809 "proc-macro2", 3810 "quote", 3811 + "syn 2.0.30", 3812 ] 3813 3814 [[package]] 3815 name = "pin-project-lite" 3816 + version = "0.2.13" 3817 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 3819 3820 [[package]] 3821 name = "pin-utils" ··· 3872 3873 [[package]] 3874 name = "portable-atomic" 3875 + version = "1.4.3" 3876 source = "registry+https://github.com/rust-lang/crates.io-index" 3877 + checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" 3878 3879 [[package]] 3880 name = "ppv-lite86" ··· 4143 4144 [[package]] 4145 name = "regex" 4146 + version = "1.9.5" 4147 source = "registry+https://github.com/rust-lang/crates.io-index" 4148 + checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" 4149 dependencies = [ 4150 "aho-corasick", 4151 "memchr", ··· 4155 4156 [[package]] 4157 name = "regex-automata" 4158 + version = "0.3.8" 4159 source = "registry+https://github.com/rust-lang/crates.io-index" 4160 + checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" 4161 dependencies = [ 4162 "aho-corasick", 4163 "memchr", ··· 4166 4167 [[package]] 4168 name = "regex-syntax" 4169 + version = "0.7.5" 4170 source = "registry+https://github.com/rust-lang/crates.io-index" 4171 + checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" 4172 4173 [[package]] 4174 name = "reqwest" 4175 + version = "0.11.20" 4176 source = "registry+https://github.com/rust-lang/crates.io-index" 4177 + checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" 4178 dependencies = [ 4179 "base64", 4180 "bytes", ··· 4299 ] 4300 4301 [[package]] 4302 + name = "rust-ini" 4303 + version = "0.18.0" 4304 + source = "registry+https://github.com/rust-lang/crates.io-index" 4305 + checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" 4306 + dependencies = [ 4307 + "cfg-if 1.0.0", 4308 + "ordered-multimap", 4309 + ] 4310 + 4311 + [[package]] 4312 name = "rust_hawktracer" 4313 version = "0.7.0" 4314 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4367 4368 [[package]] 4369 name = "rustix" 4370 + version = "0.38.11" 4371 source = "registry+https://github.com/rust-lang/crates.io-index" 4372 + checksum = "c0c3dde1fc030af041adc40e79c0e7fbcf431dd24870053d187d7c66e4b87453" 4373 dependencies = [ 4374 "bitflags 2.4.0", 4375 "errno", ··· 4380 4381 [[package]] 4382 name = "rustls" 4383 + version = "0.21.7" 4384 source = "registry+https://github.com/rust-lang/crates.io-index" 4385 + checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" 4386 dependencies = [ 4387 "log", 4388 "ring", ··· 4401 4402 [[package]] 4403 name = "rustls-webpki" 4404 + version = "0.101.4" 4405 source = "registry+https://github.com/rust-lang/crates.io-index" 4406 + checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d" 4407 dependencies = [ 4408 "ring", 4409 "untrusted", ··· 4533 4534 [[package]] 4535 name = "serde" 4536 + version = "1.0.188" 4537 source = "registry+https://github.com/rust-lang/crates.io-index" 4538 + checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" 4539 dependencies = [ 4540 "serde_derive", 4541 ] 4542 4543 [[package]] 4544 name = "serde_derive" 4545 + version = "1.0.188" 4546 source = "registry+https://github.com/rust-lang/crates.io-index" 4547 + checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" 4548 dependencies = [ 4549 "proc-macro2", 4550 "quote", 4551 + "syn 2.0.30", 4552 ] 4553 4554 [[package]] ··· 4563 ] 4564 4565 [[package]] 4566 + name = "serde_repr" 4567 + version = "0.1.16" 4568 + source = "registry+https://github.com/rust-lang/crates.io-index" 4569 + checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 4570 + dependencies = [ 4571 + "proc-macro2", 4572 + "quote", 4573 + "syn 2.0.30", 4574 + ] 4575 + 4576 + [[package]] 4577 name = "serde_spanned" 4578 version = "0.6.3" 4579 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4616 ] 4617 4618 [[package]] 4619 + name = "sha1" 4620 + version = "0.10.5" 4621 + source = "registry+https://github.com/rust-lang/crates.io-index" 4622 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 4623 + dependencies = [ 4624 + "cfg-if 1.0.0", 4625 + "cpufeatures", 4626 + "digest 0.10.7", 4627 + ] 4628 + 4629 + [[package]] 4630 name = "sha2" 4631 version = "0.7.1" 4632 source = "registry+https://github.com/rust-lang/crates.io-index" 4633 checksum = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" 4634 dependencies = [ 4635 + "block-buffer 0.3.3", 4636 "byte-tools", 4637 + "digest 0.7.6", 4638 "fake-simd", 4639 + ] 4640 + 4641 + [[package]] 4642 + name = "signal-hook" 4643 + version = "0.3.17" 4644 + source = "registry+https://github.com/rust-lang/crates.io-index" 4645 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 4646 + dependencies = [ 4647 + "libc", 4648 + "signal-hook-registry", 4649 + ] 4650 + 4651 + [[package]] 4652 + name = "signal-hook-registry" 4653 + version = "1.4.1" 4654 + source = "registry+https://github.com/rust-lang/crates.io-index" 4655 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4656 + dependencies = [ 4657 + "libc", 4658 ] 4659 4660 [[package]] ··· 4696 4697 [[package]] 4698 name = "siphasher" 4699 + version = "0.3.11" 4700 source = "registry+https://github.com/rust-lang/crates.io-index" 4701 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 4702 4703 [[package]] 4704 name = "slab" 4705 + version = "0.4.9" 4706 source = "registry+https://github.com/rust-lang/crates.io-index" 4707 + checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 4708 dependencies = [ 4709 "autocfg", 4710 ] ··· 4841 "proc-macro2", 4842 "quote", 4843 "rustversion", 4844 + "syn 2.0.30", 4845 ] 4846 4847 [[package]] ··· 4877 4878 [[package]] 4879 name = "syn" 4880 + version = "2.0.30" 4881 source = "registry+https://github.com/rust-lang/crates.io-index" 4882 + checksum = "0ddc1f908d32ec46858c2d3b3daa00cc35bf4b6841ce4355c7bb3eedf2283a68" 4883 dependencies = [ 4884 "proc-macro2", 4885 "quote", ··· 4914 "cfg-if 1.0.0", 4915 "fastrand 2.0.0", 4916 "redox_syscall 0.3.5", 4917 + "rustix 0.38.11", 4918 "windows-sys 0.48.0", 4919 ] 4920 ··· 4935 4936 [[package]] 4937 name = "thiserror" 4938 + version = "1.0.48" 4939 source = "registry+https://github.com/rust-lang/crates.io-index" 4940 + checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" 4941 dependencies = [ 4942 "thiserror-impl", 4943 ] 4944 4945 [[package]] 4946 name = "thiserror-impl" 4947 + version = "1.0.48" 4948 source = "registry+https://github.com/rust-lang/crates.io-index" 4949 + checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" 4950 dependencies = [ 4951 "proc-macro2", 4952 "quote", 4953 + "syn 2.0.30", 4954 ] 4955 4956 [[package]] ··· 5138 dependencies = [ 5139 "cfg-if 1.0.0", 5140 "pin-project-lite", 5141 + "tracing-attributes", 5142 "tracing-core", 5143 + ] 5144 + 5145 + [[package]] 5146 + name = "tracing-attributes" 5147 + version = "0.1.26" 5148 + source = "registry+https://github.com/rust-lang/crates.io-index" 5149 + checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" 5150 + dependencies = [ 5151 + "proc-macro2", 5152 + "quote", 5153 + "syn 2.0.30", 5154 ] 5155 5156 [[package]] ··· 5222 checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 5223 5224 [[package]] 5225 + name = "uds_windows" 5226 + version = "1.0.2" 5227 + source = "registry+https://github.com/rust-lang/crates.io-index" 5228 + checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d" 5229 + dependencies = [ 5230 + "tempfile", 5231 + "winapi", 5232 + ] 5233 + 5234 + [[package]] 5235 name = "unicase" 5236 + version = "2.7.0" 5237 source = "registry+https://github.com/rust-lang/crates.io-index" 5238 + checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 5239 dependencies = [ 5240 "version_check", 5241 ] ··· 5305 5306 [[package]] 5307 name = "url" 5308 + version = "2.4.1" 5309 source = "registry+https://github.com/rust-lang/crates.io-index" 5310 + checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 5311 dependencies = [ 5312 "form_urlencoded", 5313 "idna", ··· 5469 "once_cell", 5470 "proc-macro2", 5471 "quote", 5472 + "syn 2.0.30", 5473 "wasm-bindgen-shared", 5474 ] 5475 ··· 5503 dependencies = [ 5504 "proc-macro2", 5505 "quote", 5506 + "syn 2.0.30", 5507 "wasm-bindgen-backend", 5508 "wasm-bindgen-shared", 5509 ] ··· 5917 5918 [[package]] 5919 name = "winnow" 5920 + version = "0.5.15" 5921 source = "registry+https://github.com/rust-lang/crates.io-index" 5922 + checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" 5923 dependencies = [ 5924 "memchr", 5925 ] ··· 5931 checksum = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a" 5932 dependencies = [ 5933 "serde", 5934 + "winapi", 5935 + ] 5936 + 5937 + [[package]] 5938 + name = "winreg" 5939 + version = "0.10.1" 5940 + source = "registry+https://github.com/rust-lang/crates.io-index" 5941 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 5942 + dependencies = [ 5943 "winapi", 5944 ] 5945 ··· 6014 ] 6015 6016 [[package]] 6017 + name = "xdg-home" 6018 + version = "1.0.0" 6019 + source = "registry+https://github.com/rust-lang/crates.io-index" 6020 + checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 6021 + dependencies = [ 6022 + "nix 0.26.4", 6023 + "winapi", 6024 + ] 6025 + 6026 + [[package]] 6027 name = "xi-unicode" 6028 version = "0.3.0" 6029 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6058 ] 6059 6060 [[package]] 6061 + name = "zbus" 6062 + version = "3.14.1" 6063 + source = "registry+https://github.com/rust-lang/crates.io-index" 6064 + checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 6065 + dependencies = [ 6066 + "async-broadcast", 6067 + "async-executor", 6068 + "async-fs", 6069 + "async-io", 6070 + "async-lock", 6071 + "async-process", 6072 + "async-recursion", 6073 + "async-task", 6074 + "async-trait", 6075 + "blocking", 6076 + "byteorder", 6077 + "derivative", 6078 + "enumflags2", 6079 + "event-listener", 6080 + "futures-core", 6081 + "futures-sink", 6082 + "futures-util", 6083 + "hex", 6084 + "nix 0.26.4", 6085 + "once_cell", 6086 + "ordered-stream", 6087 + "rand", 6088 + "serde", 6089 + "serde_repr", 6090 + "sha1", 6091 + "static_assertions", 6092 + "tracing", 6093 + "uds_windows", 6094 + "winapi", 6095 + "xdg-home", 6096 + "zbus_macros", 6097 + "zbus_names", 6098 + "zvariant", 6099 + ] 6100 + 6101 + [[package]] 6102 + name = "zbus_macros" 6103 + version = "3.14.1" 6104 + source = "registry+https://github.com/rust-lang/crates.io-index" 6105 + checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 6106 + dependencies = [ 6107 + "proc-macro-crate", 6108 + "proc-macro2", 6109 + "quote", 6110 + "regex", 6111 + "syn 1.0.109", 6112 + "zvariant_utils", 6113 + ] 6114 + 6115 + [[package]] 6116 + name = "zbus_names" 6117 + version = "2.6.0" 6118 + source = "registry+https://github.com/rust-lang/crates.io-index" 6119 + checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" 6120 + dependencies = [ 6121 + "serde", 6122 + "static_assertions", 6123 + "zvariant", 6124 + ] 6125 + 6126 + [[package]] 6127 name = "zune-core" 6128 version = "0.2.14" 6129 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6152 "zune-core", 6153 "zune-inflate", 6154 ] 6155 + 6156 + [[package]] 6157 + name = "zvariant" 6158 + version = "3.15.0" 6159 + source = "registry+https://github.com/rust-lang/crates.io-index" 6160 + checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" 6161 + dependencies = [ 6162 + "byteorder", 6163 + "enumflags2", 6164 + "libc", 6165 + "serde", 6166 + "static_assertions", 6167 + "zvariant_derive", 6168 + ] 6169 + 6170 + [[package]] 6171 + name = "zvariant_derive" 6172 + version = "3.15.0" 6173 + source = "registry+https://github.com/rust-lang/crates.io-index" 6174 + checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" 6175 + dependencies = [ 6176 + "proc-macro-crate", 6177 + "proc-macro2", 6178 + "quote", 6179 + "syn 1.0.109", 6180 + "zvariant_utils", 6181 + ] 6182 + 6183 + [[package]] 6184 + name = "zvariant_utils" 6185 + version = "1.0.1" 6186 + source = "registry+https://github.com/rust-lang/crates.io-index" 6187 + checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" 6188 + dependencies = [ 6189 + "proc-macro2", 6190 + "quote", 6191 + "syn 1.0.109", 6192 + ]
+2 -2
pkgs/applications/graphics/oculante/default.nix
··· 21 22 rustPlatform.buildRustPackage rec { 23 pname = "oculante"; 24 - version = "0.7.3"; 25 26 src = fetchFromGitHub { 27 owner = "woelper"; 28 repo = pname; 29 rev = version; 30 - hash = "sha256-Q4YEBEA+Kt09Se9b03EZ6phm+6Q3fAxXCZRXQeqPA2k="; 31 }; 32 33 cargoLock = {
··· 21 22 rustPlatform.buildRustPackage rec { 23 pname = "oculante"; 24 + version = "0.7.4"; 25 26 src = fetchFromGitHub { 27 owner = "woelper"; 28 repo = pname; 29 rev = version; 30 + hash = "sha256-EyGbCOPc+ClsBUQCi9PPXeU7PmiUSANH20DGPuvgfAM="; 31 }; 32 33 cargoLock = {
+2 -2
pkgs/applications/misc/chatblade/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "chatblade"; 5 - version = "0.2.3"; 6 format = "setuptools"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "sha256-YXZeqIX8cxNDvM4Pn0or6Lqj2ffX9aQb3b/xMIeBHRk="; 11 }; 12 13 doCheck = false; # there are no tests
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "chatblade"; 5 + version = "0.3.1"; 6 format = "setuptools"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "sha256-QBURvPfDBbhF+AhQ0SsHYnZzr5RN36Cqa2DrAQZW0gU="; 11 }; 12 13 doCheck = false; # there are no tests
+32
pkgs/applications/misc/dict-cc-py/default.nix
···
··· 1 + { lib 2 + , python3 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3.pkgs.buildPythonPackage rec { 7 + pname = "dict.cc.py"; 8 + version = "3.1.0"; 9 + format = "setuptools"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "rbaron"; 13 + repo = "dict.cc.py"; 14 + rev = "a8b469767590fdd15d3aeb0b00e2ae62aa15a918"; 15 + hash = "sha256-wc0WY1pETBdOT3QUaVGsX8YdcnhxLIHrZ2vt2t5LYKU="; 16 + }; 17 + 18 + propagatedBuildInputs = with python3.pkgs; [ 19 + beautifulsoup4 20 + colorama 21 + requests 22 + ]; 23 + 24 + pythonImportsCheck = [ "dictcc" ]; 25 + 26 + meta = with lib; { 27 + description = "Unofficial command line client for dict.cc"; 28 + homepage = "https://github.com/rbaron/dict.cc.py"; 29 + license = with licenses; [ cc0 ]; 30 + maintainers = with maintainers; [ ]; 31 + }; 32 + }
+31
pkgs/applications/misc/stepreduce/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "stepreduce"; 8 + version = "unstable-2020-04-30"; 9 + 10 + src = fetchFromGitLab { 11 + owner = "sethhillbrand"; 12 + repo = "stepreduce"; 13 + rev = "e89091c33b67e2a18584e1fe3560bfd48ae98773"; 14 + hash = "sha256-bCseBQ6J3sWFt0kzaRkV11lwzOGvNPebvQ6w4OJaMBs="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + install -Dm755 stepreduce $out/bin/stepreduce 21 + 22 + runHook prostInstall 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Reduces STEP file size by removing redundancy"; 27 + homepage = "https://gitlab.com/sethhillbrand/stepreduce"; 28 + license = licenses.gpl3Plus; 29 + maintainers = with maintainers; [ evils ]; 30 + }; 31 + }
+2 -2
pkgs/applications/misc/xlights/default.nix
··· 2 3 appimageTools.wrapType2 rec { 4 pname = "xlights"; 5 - version = "2023.11"; 6 7 src = fetchurl { 8 url = "https://github.com/smeighan/xLights/releases/download/${version}/xLights-${version}-x86_64.AppImage"; 9 - hash = "sha256-WUBN/Gjnsj2eUL03sXIYWgzLA7FNN7h+qpWlnXBdnw8="; 10 }; 11 12 meta = with lib; {
··· 2 3 appimageTools.wrapType2 rec { 4 pname = "xlights"; 5 + version = "2023.13"; 6 7 src = fetchurl { 8 url = "https://github.com/smeighan/xLights/releases/download/${version}/xLights-${version}-x86_64.AppImage"; 9 + hash = "sha256-vNauKG7F7AiSMZrkMPwR9C+Mshot4NOf4oIdEr5Pu3Q="; 10 }; 11 12 meta = with lib; {
+2 -2
pkgs/applications/networking/cluster/odo/default.nix
··· 2 3 buildGoModule rec { 4 pname = "odo"; 5 - version = "3.13.0"; 6 7 src = fetchFromGitHub { 8 owner = "redhat-developer"; 9 repo = "odo"; 10 rev = "v${version}"; 11 - sha256 = "sha256-l5WW6Wos/FLxJsyrWnLhb1vAztGT1QYl8tKhiBgNGbw="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "odo"; 5 + version = "3.14.0"; 6 7 src = fetchFromGitHub { 8 owner = "redhat-developer"; 9 repo = "odo"; 10 rev = "v${version}"; 11 + sha256 = "sha256-d6C+nOz60CPnEsSf74+WBTaeIXGKtysVELg0+dXM1cU="; 12 }; 13 14 vendorHash = null;
+3 -3
pkgs/applications/radio/quisk/default.nix
··· 8 9 python3.pkgs.buildPythonApplication rec { 10 pname = "quisk"; 11 - version = "4.2.17"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "sha256-eF/3++wRG0JulVTT+GvtqleBPkzLSZeu+RfHDI1xfOY="; 16 }; 17 18 buildInputs = [ ··· 45 ''; 46 license = licenses.gpl2Plus; 47 homepage = "https://james.ahlstrom.name/quisk/"; 48 - maintainers = with maintainers; [ pulsation ]; 49 platforms = platforms.linux; 50 }; 51 }
··· 8 9 python3.pkgs.buildPythonApplication rec { 10 pname = "quisk"; 11 + version = "4.2.22"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-F6xSE1EgWlHlrd4W79tmhTg/FS7QUPH3NWzWIljAAg4="; 16 }; 17 18 buildInputs = [ ··· 45 ''; 46 license = licenses.gpl2Plus; 47 homepage = "https://james.ahlstrom.name/quisk/"; 48 + maintainers = with maintainers; [ pulsation kashw2 ]; 49 platforms = platforms.linux; 50 }; 51 }
+1 -10
pkgs/applications/science/electronics/kicad/default.nix
··· 229 The Programs handle Schematic Capture, and PCB Layout with Gerber output. 230 ''; 231 license = lib.licenses.gpl3Plus; 232 - maintainers = with lib.maintainers; [ evils kiwi ]; 233 - # kicad is cross platform 234 platforms = lib.platforms.all; 235 broken = stdenv.isDarwin; 236 - 237 - hydraPlatforms = if (with3d) then [ ] else platforms; 238 - # We can't download the 3d models on Hydra, 239 - # they are a ~1 GiB download and they occupy ~5 GiB in store. 240 - # as long as the base and libraries (minus 3d) are build, 241 - # this wrapper does not need to get built 242 - # the kicad-*small "packages" cause this to happen 243 - 244 mainProgram = "kicad"; 245 }; 246 }
··· 229 The Programs handle Schematic Capture, and PCB Layout with Gerber output. 230 ''; 231 license = lib.licenses.gpl3Plus; 232 + maintainers = with lib.maintainers; [ evils ]; 233 platforms = lib.platforms.all; 234 broken = stdenv.isDarwin; 235 mainProgram = "kicad"; 236 }; 237 }
+13 -4
pkgs/applications/science/electronics/kicad/libraries.nix
··· 2 , cmake 3 , gettext 4 , libSrc 5 }: 6 let 7 mkLib = name: ··· 11 12 src = libSrc name; 13 14 - nativeBuildInputs = [ cmake ]; 15 16 meta = rec { 17 license = lib.licenses.cc-by-sa-40; 18 platforms = lib.platforms.all; 19 - # the 3d models are a ~1 GiB download and occupy ~5 GiB in store. 20 - # this would exceed the hydra output limit 21 - hydraPlatforms = if (name == "packages3d") then [ ] else platforms; 22 }; 23 }; 24 in
··· 2 , cmake 3 , gettext 4 , libSrc 5 + , stepreduce 6 + , parallel 7 + , zip 8 }: 9 let 10 mkLib = name: ··· 14 15 src = libSrc name; 16 17 + nativeBuildInputs = [ cmake ] 18 + ++ lib.optionals (name == "packages3d") [ 19 + stepreduce 20 + parallel 21 + zip 22 + ]; 23 + 24 + postInstall = lib.optional (name == "packages3d") '' 25 + find $out -type f -name '*.step' | parallel 'stepreduce {} {} && zip -9 {.}.stpZ {} && rm {}' 26 + ''; 27 28 meta = rec { 29 license = lib.licenses.cc-by-sa-40; 30 platforms = lib.platforms.all; 31 }; 32 }; 33 in
+3 -3
pkgs/applications/terminal-emulators/tym/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tym"; 5 - version = "3.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "endaaman"; 9 repo = "${pname}"; 10 rev = version; 11 - sha256 = "sha256-5pXNOuMT2/G+m6XoTrwNTCGNfISLLy0wQpVPhQJzs4s="; 12 }; 13 14 nativeBuildInputs = [ ··· 27 description = "Lua-configurable terminal emulator"; 28 homepage = "https://github.com/endaaman/tym"; 29 license = licenses.mit; 30 - maintainers = [ maintainers.wesleyjrz ]; 31 platforms = platforms.linux; 32 }; 33 }
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tym"; 5 + version = "3.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "endaaman"; 9 repo = "${pname}"; 10 rev = version; 11 + sha256 = "sha256-aXV3TNjHxg/9Lb2o+ci5/cCAPbkWhxqOka3wv21ajSA="; 12 }; 13 14 nativeBuildInputs = [ ··· 27 description = "Lua-configurable terminal emulator"; 28 homepage = "https://github.com/endaaman/tym"; 29 license = licenses.mit; 30 + maintainers = with maintainers; [ wesleyjrz kashw2 ]; 31 platforms = platforms.linux; 32 }; 33 }
+3 -3
pkgs/applications/video/bilibili/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "bilibili"; 10 - version = "1.11.4-1"; 11 src = fetchurl { 12 url = "https://github.com/msojocs/bilibili-linux/releases/download/v${version}/io.github.msojocs.bilibili_${version}_amd64.deb"; 13 - hash = "sha256-fsHPbugjY9GAWrEFZDTNqVaewXDF/NZRmG+N2Pkc4bY="; 14 }; 15 16 unpackPhase = '' ··· 42 description = "Electron-based bilibili desktop client"; 43 homepage = "https://github.com/msojocs/bilibili-linux"; 44 license = licenses.mit; 45 - maintainers = with maintainers; [ jedsek ]; 46 platforms = platforms.unix; 47 }; 48 }
··· 7 8 stdenv.mkDerivation rec { 9 pname = "bilibili"; 10 + version = "1.11.4-2"; 11 src = fetchurl { 12 url = "https://github.com/msojocs/bilibili-linux/releases/download/v${version}/io.github.msojocs.bilibili_${version}_amd64.deb"; 13 + hash = "sha256-nUixkNZPIqeMUdjJxaNrHODFbShDqHFHVoKRZKAVjyc="; 14 }; 15 16 unpackPhase = '' ··· 42 description = "Electron-based bilibili desktop client"; 43 homepage = "https://github.com/msojocs/bilibili-linux"; 44 license = licenses.mit; 45 + maintainers = with maintainers; [ jedsek kashw2 ]; 46 platforms = platforms.unix; 47 }; 48 }
+2 -2
pkgs/desktops/gnome/core/mutter/43/default.nix
··· 51 52 stdenv.mkDerivation (finalAttrs: { 53 pname = "mutter"; 54 - version = "43.7"; 55 56 outputs = [ "out" "dev" "man" "devdoc" ]; 57 58 src = fetchurl { 59 url = "mirror://gnome/sources/mutter/${lib.versions.major finalAttrs.version}/mutter-${finalAttrs.version}.tar.xz"; 60 - sha256 = "NBrLmwNUyytflewz32aZtKAHaNydIi1rYAtW4kKGlmc="; 61 }; 62 63 patches = [
··· 51 52 stdenv.mkDerivation (finalAttrs: { 53 pname = "mutter"; 54 + version = "43.8"; 55 56 outputs = [ "out" "dev" "man" "devdoc" ]; 57 58 src = fetchurl { 59 url = "mirror://gnome/sources/mutter/${lib.versions.major finalAttrs.version}/mutter-${finalAttrs.version}.tar.xz"; 60 + sha256 = "TjTh8XWTS9hJqEvZX6Nb8G6EEuAt8loDbC8RNdUz8oE="; 61 }; 62 63 patches = [
+2 -2
pkgs/development/compilers/circt/default.nix
··· 13 in 14 stdenv.mkDerivation rec { 15 pname = "circt"; 16 - version = "1.52.0"; 17 src = fetchFromGitHub { 18 owner = "llvm"; 19 repo = "circt"; 20 rev = "firtool-${version}"; 21 - sha256 = "sha256-ol8inyUrKezv+lhDIq2DhP4LHNJLhZylRbtIfoVAMYk="; 22 fetchSubmodules = true; 23 }; 24
··· 13 in 14 stdenv.mkDerivation rec { 15 pname = "circt"; 16 + version = "1.53.0"; 17 src = fetchFromGitHub { 18 owner = "llvm"; 19 repo = "circt"; 20 rev = "firtool-${version}"; 21 + sha256 = "sha256-F3pGXZC4jSG9TV2sc5G9bQtKMY6xcPknwO0fqQ6uBoA="; 22 fetchSubmodules = true; 23 }; 24
+2 -2
pkgs/development/interpreters/babashka/default.nix
··· 8 9 buildGraalvmNativeImage rec { 10 pname = "babashka-unwrapped"; 11 - version = "1.3.181"; 12 13 src = fetchurl { 14 url = "https://github.com/babashka/babashka/releases/download/v${version}/babashka-${version}-standalone.jar"; 15 - sha256 = "sha256-NzchlHRxOCSyUf9U0Jv8h4bgKd2Jwp+LmxIfeV8+8+M="; 16 }; 17 18 graalvmDrv = graalvmCEPackages.graalvm19-ce;
··· 8 9 buildGraalvmNativeImage rec { 10 pname = "babashka-unwrapped"; 11 + version = "1.3.184"; 12 13 src = fetchurl { 14 url = "https://github.com/babashka/babashka/releases/download/v${version}/babashka-${version}-standalone.jar"; 15 + sha256 = "sha256-O3pLELYmuuB+Bf1vHTWQ+u7Ymi3qYiMRpCwvEq+GeBQ="; 16 }; 17 18 graalvmDrv = graalvmCEPackages.graalvm19-ce;
+1
pkgs/development/interpreters/babashka/wrapped.nix
··· 35 makeWrapper "${babashka-unwrapped}/bin/bb" "$out/bin/bb" \ 36 --inherit-argv0 \ 37 --set-default DEPS_CLJ_TOOLS_DIR $out/clojure_tools \ 38 --set-default JAVA_HOME ${jdkBabashka} 39 40 '' +
··· 35 makeWrapper "${babashka-unwrapped}/bin/bb" "$out/bin/bb" \ 36 --inherit-argv0 \ 37 --set-default DEPS_CLJ_TOOLS_DIR $out/clojure_tools \ 38 + --set-default DEPS_CLJ_TOOLS_VERSION ${clojure.version} \ 39 --set-default JAVA_HOME ${jdkBabashka} 40 41 '' +
+6 -6
pkgs/development/libraries/gf2x/default.nix
··· 1 { stdenv 2 , lib 3 - , fetchgit 4 , autoreconfHook 5 , buildPackages 6 , optimize ? false # impure hardware optimizations ··· 9 pname = "gf2x"; 10 version = "1.3.0"; 11 12 - # upstream has plans to move to gitlab: 13 - # https://github.com/NixOS/nixpkgs/pull/45299#issuecomment-564477936 14 - src = fetchgit { 15 - url = "https://scm.gforge.inria.fr/anonscm/git/gf2x/gf2x.git"; 16 - rev = "gf2x-${version}"; 17 sha256 = "04g5jg0i4vz46b4w2dvbmahwzi3k6b8g515mfw7im1inc78s14id"; 18 }; 19
··· 1 { stdenv 2 , lib 3 + , fetchFromGitLab 4 , autoreconfHook 5 , buildPackages 6 , optimize ? false # impure hardware optimizations ··· 9 pname = "gf2x"; 10 version = "1.3.0"; 11 12 + src = fetchFromGitLab { 13 + domain = "gitlab.inria.fr"; 14 + owner = "gf2x"; 15 + repo = pname; 16 + rev = "${pname}-${version}"; 17 sha256 = "04g5jg0i4vz46b4w2dvbmahwzi3k6b8g515mfw7im1inc78s14id"; 18 }; 19
+17 -7
pkgs/development/libraries/quarto/default.nix
··· 4 , esbuild 5 , deno 6 , fetchurl 7 - , nodePackages 8 , rWrapper 9 , rPackages 10 , extraRPackages ? [] 11 , makeWrapper 12 , python3 13 , extraPythonPackages ? ps: with ps; [] 14 }: 15 16 - stdenv.mkDerivation rec { 17 pname = "quarto"; 18 - version = "1.2.475"; 19 src = fetchurl { 20 - url = "https://github.com/quarto-dev/quarto-cli/releases/download/v${version}/quarto-${version}-linux-amd64.tar.gz"; 21 - sha256 = "sha256-oyKjDlTKt2fIzirOqgNRrpuM7buNCG5mmgIztPa28rY="; 22 }; 23 24 nativeBuildInputs = [ ··· 43 --prefix PATH : ${lib.makeBinPath [ deno ]} \ 44 --prefix QUARTO_PANDOC : ${pandoc}/bin/pandoc \ 45 --prefix QUARTO_ESBUILD : ${esbuild}/bin/esbuild \ 46 - --prefix QUARTO_DART_SASS : ${nodePackages.sass}/bin/sass \ 47 ${lib.optionalString (rWrapper != null) "--prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R"} \ 48 ${lib.optionalString (python3 != null) "--prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3"} 49 ''; ··· 61 runHook preInstall 62 ''; 63 64 meta = with lib; { 65 description = "Open-source scientific and technical publishing system built on Pandoc"; 66 longDescription = '' ··· 74 platforms = [ "x86_64-linux" ]; 75 sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ]; 76 }; 77 - }
··· 4 , esbuild 5 , deno 6 , fetchurl 7 + , dart-sass 8 , rWrapper 9 , rPackages 10 , extraRPackages ? [] 11 , makeWrapper 12 + , runCommand 13 , python3 14 + , quarto 15 , extraPythonPackages ? ps: with ps; [] 16 }: 17 18 + stdenv.mkDerivation (final: { 19 pname = "quarto"; 20 + version = "1.3.450"; 21 src = fetchurl { 22 + url = "https://github.com/quarto-dev/quarto-cli/releases/download/v${final.version}/quarto-${final.version}-linux-amd64.tar.gz"; 23 + sha256 = "sha256-bcj7SzEGfQxsw9P8WkcLrKurPupzwpgIGtxoE3KVwAU="; 24 }; 25 26 nativeBuildInputs = [ ··· 45 --prefix PATH : ${lib.makeBinPath [ deno ]} \ 46 --prefix QUARTO_PANDOC : ${pandoc}/bin/pandoc \ 47 --prefix QUARTO_ESBUILD : ${esbuild}/bin/esbuild \ 48 + --prefix QUARTO_DART_SASS : ${dart-sass}/bin/dart-sass \ 49 ${lib.optionalString (rWrapper != null) "--prefix QUARTO_R : ${rWrapper.override { packages = [ rPackages.rmarkdown ] ++ extraRPackages; }}/bin/R"} \ 50 ${lib.optionalString (python3 != null) "--prefix QUARTO_PYTHON : ${python3.withPackages (ps: with ps; [ jupyter ipython ] ++ (extraPythonPackages ps))}/bin/python3"} 51 ''; ··· 63 runHook preInstall 64 ''; 65 66 + passthru.tests = { 67 + quarto-check = runCommand "quarto-check" {} '' 68 + export HOME="$(mktemp -d)" 69 + ${quarto}/bin/quarto check 70 + touch $out 71 + ''; 72 + }; 73 + 74 meta = with lib; { 75 description = "Open-source scientific and technical publishing system built on Pandoc"; 76 longDescription = '' ··· 84 platforms = [ "x86_64-linux" ]; 85 sourceProvenance = with sourceTypes; [ binaryNativeCode binaryBytecode ]; 86 }; 87 + })
+13 -3
pkgs/development/python-modules/antlr4-python3-runtime/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , isPy3k 4 , python 5 - , antlr4 }: 6 7 buildPythonPackage rec { 8 pname = "antlr4-python3-runtime"; 9 inherit (antlr4.runtime.cpp) version src; 10 disabled = python.pythonOlder "3.6"; 11 12 sourceRoot = "${src.name}/runtime/Python3"; 13 14 - # in 4.9, test was renamed to tests 15 checkPhase = '' 16 cd test* 17 ${python.interpreter} run.py
··· 1 { lib 2 , buildPythonPackage 3 + , setuptools 4 , python 5 + , antlr4 6 + }: 7 8 buildPythonPackage rec { 9 pname = "antlr4-python3-runtime"; 10 inherit (antlr4.runtime.cpp) version src; 11 + 12 + format = "pyproject"; 13 + 14 disabled = python.pythonOlder "3.6"; 15 16 sourceRoot = "${src.name}/runtime/Python3"; 17 18 + nativeBuildInputs = [ 19 + setuptools 20 + ]; 21 + 22 + # We use an asterisk because this expression is used also for old antlr 23 + # versions, where there the tests directory is `test` and not `tests`. 24 + # See e.g in package `baserow`. 25 checkPhase = '' 26 cd test* 27 ${python.interpreter} run.py
+2 -2
pkgs/development/python-modules/jupyter-server/default.nix
··· 36 37 buildPythonPackage rec { 38 pname = "jupyter-server"; 39 - version = "2.7.0"; 40 format = "pyproject"; 41 disabled = pythonOlder "3.8"; 42 43 src = fetchPypi { 44 pname = "jupyter_server"; 45 inherit version; 46 - hash = "sha256-NtoKJm0xpBrDNaNmyIkzwX36W7gXpI9cAsFtMDvJR38="; 47 }; 48 49 nativeBuildInputs = [
··· 36 37 buildPythonPackage rec { 38 pname = "jupyter-server"; 39 + version = "2.7.3"; 40 format = "pyproject"; 41 disabled = pythonOlder "3.8"; 42 43 src = fetchPypi { 44 pname = "jupyter_server"; 45 inherit version; 46 + hash = "sha256-1JFshYHE67xTTOvaqOyiR42fO/3Yjq4p/KsBIOrFdkk="; 47 }; 48 49 nativeBuildInputs = [
+3 -2
pkgs/development/python-modules/logilab/common.nix
··· 12 13 buildPythonPackage rec { 14 pname = "logilab-common"; 15 - version = "1.9.7"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-/JlN9RlIRLbi9TL9V6SgO6ddPeKqLzK402DqkLBRuxM="; 23 }; 24 25 nativeBuildInputs = [ ··· 27 ]; 28 29 propagatedBuildInputs = [ 30 mypy-extensions 31 typing-extensions 32 ] ++ lib.optionals (pythonOlder "3.8") [
··· 12 13 buildPythonPackage rec { 14 pname = "logilab-common"; 15 + version = "1.10.0"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-MoXt3tta5OimJUjOkWSMDCmXV0aS8N0W5bcANwAelYY="; 23 }; 24 25 nativeBuildInputs = [ ··· 27 ]; 28 29 propagatedBuildInputs = [ 30 + setuptools 31 mypy-extensions 32 typing-extensions 33 ] ++ lib.optionals (pythonOlder "3.8") [
+38 -3
pkgs/development/python-modules/logilab/constraint.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, logilab-common, six }: 2 3 buildPythonPackage rec { 4 pname = "logilab-constraint"; 5 version = "0.6.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-Jk6wvvcDEeHfy7dUcjbnzFIeGBYm5tXzCI26yy+t2qs="; 10 }; 11 12 propagatedBuildInputs = [ 13 - logilab-common six 14 ]; 15 16 17 meta = with lib; { 18 description = "logilab-database provides some classes to make unified access to different"; 19 - homepage = "https://www.logilab.org/project/logilab-database"; 20 }; 21 } 22
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , importlib-metadata 5 + , logilab-common 6 + , pip 7 + , six 8 + , pytestCheckHook 9 + , setuptools 10 + }: 11 12 buildPythonPackage rec { 13 pname = "logilab-constraint"; 14 version = "0.6.2"; 15 + format = "setuptools"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-Jk6wvvcDEeHfy7dUcjbnzFIeGBYm5tXzCI26yy+t2qs="; 20 }; 21 22 + nativeBuildInputs = [ 23 + importlib-metadata 24 + pip 25 + ]; 26 + 27 propagatedBuildInputs = [ 28 + logilab-common 29 + setuptools 30 + six 31 + ]; 32 + 33 + nativeCheckInputs = [ 34 + pytestCheckHook 35 ]; 36 37 + preCheck = '' 38 + # avoid ModuleNotFoundError: No module named 'logilab.common' due to namespace 39 + rm -r logilab 40 + ''; 41 + 42 + disabledTests = [ 43 + # these tests are abstract test classes intended to be inherited 44 + "Abstract" 45 + ]; 46 + 47 + pythonImportsCheck = [ "logilab.constraint" ]; 48 49 meta = with lib; { 50 description = "logilab-database provides some classes to make unified access to different"; 51 + homepage = "https://forge.extranet.logilab.fr/open-source/logilab-constraint"; 52 + changelog = "https://forge.extranet.logilab.fr/open-source/logilab-constraint/-/blob/${version}/CHANGELOG.md"; 53 + license = licenses.lgpl21Plus; 54 + maintainers = with lib.maintainers; [ ]; 55 }; 56 } 57
+58
pkgs/development/python-modules/openllm-client/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , bentoml 5 + , hatch-fancy-pypi-readme 6 + , hatch-vcs 7 + , hatchling 8 + , httpx 9 + , openllm-core 10 + , soundfile 11 + , transformers 12 + }: 13 + 14 + buildPythonPackage rec { 15 + inherit (openllm-core) src version; 16 + pname = "openllm-client"; 17 + format = "pyproject"; 18 + 19 + disabled = pythonOlder "3.8"; 20 + 21 + sourceRoot = "source/openllm-client"; 22 + 23 + nativeBuildInputs = [ 24 + hatch-fancy-pypi-readme 25 + hatch-vcs 26 + hatchling 27 + ]; 28 + 29 + propagatedBuildInputs = [ 30 + httpx 31 + openllm-core 32 + ]; 33 + 34 + passthru.optional-dependencies = { 35 + grpc = [ 36 + bentoml 37 + ] ++ bentoml.optional-dependencies.grpc; 38 + agents = [ 39 + transformers 40 + # diffusers 41 + soundfile 42 + ] ++ transformers.agents; 43 + full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents; 44 + }; 45 + 46 + # there is no tests 47 + doCheck = false; 48 + 49 + pythonImportsCheck = [ "openllm_client" ]; 50 + 51 + meta = with lib; { 52 + description = "Interacting with OpenLLM HTTP/gRPC server, or any BentoML server"; 53 + homepage = "https://github.com/bentoml/OpenLLM/tree/main/openllm-client"; 54 + changelog = "https://github.com/bentoml/OpenLLM/blob/${src.rev}/CHANGELOG.md"; 55 + license = licenses.asl20; 56 + maintainers = with maintainers; [ natsukium ]; 57 + }; 58 + }
+84
pkgs/development/python-modules/openllm-core/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , accelerate 6 + , attrs 7 + , bentoml 8 + , bitsandbytes 9 + , cattrs 10 + , datasets 11 + , hatch-fancy-pypi-readme 12 + , hatch-vcs 13 + , hatchling 14 + , inflection 15 + , mypy-extensions 16 + , orjson 17 + , peft 18 + , ray 19 + , transformers 20 + , typing-extensions 21 + }: 22 + 23 + buildPythonPackage rec { 24 + pname = "openllm-core"; 25 + version = "0.2.27"; 26 + format = "pyproject"; 27 + 28 + disabled = pythonOlder "3.8"; 29 + 30 + src = fetchFromGitHub { 31 + owner = "bentoml"; 32 + repo = "OpenLLM"; 33 + rev = "refs/tags/v${version}"; 34 + hash = "sha256-R69Qsx9360pJx+7oyhHdeAXUjTAdevPmaBl9gj+AA8U="; 35 + }; 36 + 37 + sourceRoot = "source/openllm-core"; 38 + 39 + nativeBuildInputs = [ 40 + hatch-fancy-pypi-readme 41 + hatch-vcs 42 + hatchling 43 + ]; 44 + 45 + propagatedBuildInputs = [ 46 + attrs 47 + bentoml 48 + cattrs 49 + inflection 50 + mypy-extensions 51 + orjson 52 + typing-extensions 53 + ]; 54 + 55 + passthru.optional-dependencies = { 56 + vllm = [ 57 + ray 58 + # vllm 59 + ]; 60 + fine-tune = [ 61 + accelerate 62 + bitsandbytes 63 + datasets 64 + peft 65 + transformers 66 + # trl 67 + ] ++ transformers.optional-dependencies.torch 68 + ++ transformers.optional-dependencies.tokenizers 69 + ++ transformers.optional-dependencies.accelerate; 70 + }; 71 + 72 + # there is no tests 73 + doCheck = false; 74 + 75 + pythonImportsCheck = [ "openllm_core" ]; 76 + 77 + meta = with lib; { 78 + description = "Core components for OpenLLM"; 79 + homepage = "https://github.com/bentoml/OpenLLM/tree/main/openllm-core"; 80 + changelog = "https://github.com/bentoml/OpenLLM/blob/${src.rev}/CHANGELOG.md"; 81 + license = licenses.asl20; 82 + maintainers = with maintainers; [ natsukium ]; 83 + }; 84 + }
+198
pkgs/development/python-modules/openllm/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , hatch-fancy-pypi-readme 4 + , hatch-vcs 5 + , hatchling 6 + , pytestCheckHook 7 + , pythonOlder 8 + , pythonRelaxDepsHook 9 + , accelerate 10 + , bentoml 11 + , bitsandbytes 12 + , click 13 + , datasets 14 + , docker 15 + , einops 16 + , fairscale 17 + , flax 18 + , hypothesis 19 + , ipython 20 + , jax 21 + , jaxlib 22 + , jupyter 23 + , jupytext 24 + , keras 25 + , nbformat 26 + , notebook 27 + , openai 28 + , openllm-client 29 + , openllm-core 30 + , optimum 31 + , peft 32 + , pytest-mock 33 + , pytest-randomly 34 + , pytest-rerunfailures 35 + , pytest-xdist 36 + , ray 37 + , safetensors 38 + , sentencepiece 39 + , soundfile 40 + , syrupy 41 + , tabulate 42 + , tensorflow 43 + , tiktoken 44 + , transformers 45 + , openai-triton 46 + , xformers 47 + }: 48 + 49 + buildPythonPackage rec { 50 + inherit (openllm-core) src version; 51 + pname = "openllm"; 52 + format = "pyproject"; 53 + 54 + disabled = pythonOlder "3.8"; 55 + 56 + sourceRoot = "source/openllm-python"; 57 + 58 + nativeBuildInputs = [ 59 + hatch-fancy-pypi-readme 60 + hatch-vcs 61 + hatchling 62 + pythonRelaxDepsHook 63 + ]; 64 + 65 + pythonRemoveDeps = [ 66 + # remove cuda-python as it has an unfree license 67 + "cuda-python" 68 + ]; 69 + 70 + propagatedBuildInputs = [ 71 + bentoml 72 + bitsandbytes 73 + click 74 + openllm-client 75 + optimum 76 + safetensors 77 + tabulate 78 + transformers 79 + ] ++ bentoml.optional-dependencies.io 80 + ++ tabulate.optional-dependencies.widechars 81 + # ++ transformers.optional-dependencies.accelerate 82 + ++ transformers.optional-dependencies.tokenizers 83 + ++ transformers.optional-dependencies.torch; 84 + 85 + passthru.optional-dependencies = { 86 + agents = [ 87 + # diffusers 88 + soundfile 89 + transformers 90 + ] ++ transformers.optional-dependencies.agents; 91 + baichuan = [ 92 + # cpm-kernels 93 + sentencepiece 94 + ]; 95 + chatglm = [ 96 + # cpm-kernels 97 + sentencepiece 98 + ]; 99 + falcon = [ 100 + einops 101 + xformers 102 + ]; 103 + fine-tune = [ 104 + accelerate 105 + bitsandbytes 106 + datasets 107 + peft 108 + # trl 109 + ]; 110 + flan-t5 = [ 111 + flax 112 + jax 113 + jaxlib 114 + keras 115 + tensorflow 116 + ]; 117 + ggml = [ 118 + # ctransformers 119 + ]; 120 + gptq = [ 121 + # auto-gptq 122 + ]; # ++ autogptq.optional-dependencies.triton; 123 + grpc = [ 124 + openllm-client 125 + ] ++ openllm-client.optional-dependencies.grpc; 126 + llama = [ 127 + fairscale 128 + sentencepiece 129 + ]; 130 + mpt = [ 131 + einops 132 + openai-triton 133 + ]; 134 + openai = [ 135 + openai 136 + tiktoken 137 + ]; 138 + opt = [ 139 + flax 140 + jax 141 + jaxlib 142 + keras 143 + tensorflow 144 + ]; 145 + playground = [ 146 + ipython 147 + jupyter 148 + jupytext 149 + nbformat 150 + notebook 151 + ]; 152 + starcoder = [ 153 + bitsandbytes 154 + ]; 155 + vllm = [ 156 + ray 157 + # vllm 158 + ]; 159 + all = with passthru.optional-dependencies; ( 160 + agents ++ baichuan ++ chatglm ++ falcon ++ fine-tune ++ flan-t5 ++ ggml ++ gptq ++ llama ++ mpt ++ openai ++ opt ++ playground ++ starcoder ++ vllm 161 + ); 162 + }; 163 + 164 + nativeCheckInputs = [ 165 + docker 166 + hypothesis 167 + pytest-mock 168 + pytest-randomly 169 + pytest-rerunfailures 170 + pytest-xdist 171 + pytestCheckHook 172 + syrupy 173 + ]; 174 + 175 + preCheck = '' 176 + export HOME=$TMPDIR 177 + # skip GPUs test on CI 178 + export GITHUB_ACTIONS=1 179 + ''; 180 + 181 + disabledTests = [ 182 + # these tests access to huggingface.co 183 + "test_opt_125m" 184 + "test_opt_125m" 185 + "test_flan_t5" 186 + "test_flan_t5" 187 + ]; 188 + 189 + pythonImportsCheck = [ "openllm" ]; 190 + 191 + meta = with lib; { 192 + description = "Operating LLMs in production"; 193 + homepage = "https://github.com/bentoml/OpenLLM/tree/main/openllm-python"; 194 + changelog = "https://github.com/bentoml/OpenLLM/blob/${src.rev}/CHANGELOG.md"; 195 + license = licenses.asl20; 196 + maintainers = with maintainers; [ happysalada natsukium ]; 197 + }; 198 + }
+2 -2
pkgs/development/python-modules/openstacksdk/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "openstacksdk"; 22 - version = "1.4.0"; 23 format = "setuptools"; 24 25 disabled = pythonOlder "3.6"; 26 27 src = fetchPypi { 28 inherit pname version; 29 - hash = "sha256-NhUSnttnyCr70aFwbpFf+mjg7r/JnJA8NDqsZRfdWFg="; 30 }; 31 32 propagatedBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "openstacksdk"; 22 + version = "1.5.0"; 23 format = "setuptools"; 24 25 disabled = pythonOlder "3.6"; 26 27 src = fetchPypi { 28 inherit pname version; 29 + hash = "sha256-FBtR+ijGsc3rmOvcOMHO5qTnVL1ryEq3qqDQwrzlRD4="; 30 }; 31 32 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/rchitect/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "rchitect"; 15 - version = "0.4.1"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; ··· 21 owner = "randy3k"; 22 repo = pname; 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-fXL2UX0n9kKAVwMUP0z8V3UtJAy4xbAjnPIggUHllN0="; 25 }; 26 27 postPatch = ''
··· 12 13 buildPythonPackage rec { 14 pname = "rchitect"; 15 + version = "0.4.2"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; ··· 21 owner = "randy3k"; 22 repo = pname; 23 rev = "refs/tags/v${version}"; 24 + hash = "sha256-e0xCUp5WBP4UKPkwPfrouNNYTBEnhlHHlkBQmghQfdk="; 25 }; 26 27 postPatch = ''
+2 -11
pkgs/development/python-modules/send2trash/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "Send2Trash"; 10 - version = "1.8.1b0"; 11 format = "pyproject"; 12 13 src = fetchFromGitHub { 14 owner = "hsoft"; 15 repo = "send2trash"; 16 rev = "refs/tags/${version}"; 17 - hash = "sha256-kDUEfyMTk8CXSxTEi7E6kl09ohnWHeaoif+EIaIJh9Q="; 18 }; 19 - 20 - postPatch = '' 21 - # Confuses setuptools validation 22 - # setuptools.extern.packaging.requirements.InvalidRequirement: One of the parsed requirements in `extras_require[win32]` looks like a valid environment marker: 'sys_platform == "win32"' 23 - sed -i '/win32 =/d' setup.cfg 24 - 25 - # setuptools.extern.packaging.requirements.InvalidRequirement: One of the parsed requirements in `extras_require[objc]` looks like a valid environment marker: 'sys_platform == "darwin"' 26 - sed -i '/objc =/d' setup.cfg 27 - ''; 28 29 nativeBuildInputs = [ 30 setuptools
··· 7 8 buildPythonPackage rec { 9 pname = "Send2Trash"; 10 + version = "1.8.2"; 11 format = "pyproject"; 12 13 src = fetchFromGitHub { 14 owner = "hsoft"; 15 repo = "send2trash"; 16 rev = "refs/tags/${version}"; 17 + hash = "sha256-p0Pd9g+nLoT+oruthwjBn2E9rznvcx35VmzOAce2iTY="; 18 }; 19 20 nativeBuildInputs = [ 21 setuptools
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "zeroconf"; 18 - version = "0.88.0"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.7"; ··· 24 owner = "jstasiak"; 25 repo = "python-zeroconf"; 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-PE/KK2MFSVinaCLztdu7LS+gSemlq4UzVVwSjK+9yiM="; 28 }; 29 30 nativeBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "zeroconf"; 18 + version = "0.93.1"; 19 format = "pyproject"; 20 21 disabled = pythonOlder "3.7"; ··· 24 owner = "jstasiak"; 25 repo = "python-zeroconf"; 26 rev = "refs/tags/${version}"; 27 + hash = "sha256-ixNh/pCt6e8x9n0wg7GBTwhm3PkmHQzd4CGmacWcAfY="; 28 }; 29 30 nativeBuildInputs = [
+3 -3
pkgs/development/tools/conftest/default.nix
··· 6 7 buildGoModule rec { 8 pname = "conftest"; 9 - version = "0.44.1"; 10 11 src = fetchFromGitHub { 12 owner = "open-policy-agent"; 13 repo = "conftest"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-a/5g5USbK8Bat+V3vecuHVlh3e0omqWYrKe2rFTxxnM="; 16 }; 17 - vendorHash = "sha256-Q0bV6ePjQiIzYXB7sEiAYZ9kIbErPsoAXQqdMt8Xd10="; 18 19 ldflags = [ 20 "-s"
··· 6 7 buildGoModule rec { 8 pname = "conftest"; 9 + version = "0.45.0"; 10 11 src = fetchFromGitHub { 12 owner = "open-policy-agent"; 13 repo = "conftest"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-e8aKjW1SCpmYcfiI1uH5tOjmQqS5kbhPEtRVR/FeWwA="; 16 }; 17 + vendorHash = "sha256-kSweCT/8boHb6Go18FBpLtbYI0unUU59QWLgQCrbpfs="; 18 19 ldflags = [ 20 "-s"
+2 -2
pkgs/development/tools/ctlptl/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ctlptl"; 5 - version = "0.8.21"; 6 7 src = fetchFromGitHub { 8 owner = "tilt-dev"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-ulP159bhiVxZ5D7YamPR7AhCZ5qBr63Eitgf0/Sc6lo="; 12 }; 13 14 vendorHash = "sha256-nfSqu1u7NWbZYL7CEZ/i2tdxQBblRbwJwdwoEtol/Us=";
··· 2 3 buildGoModule rec { 4 pname = "ctlptl"; 5 + version = "0.8.22"; 6 7 src = fetchFromGitHub { 8 owner = "tilt-dev"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-/LKsaWqJZG9LdUt9zVAspLOYGr0TrhOJB4j0Vv40rkE="; 12 }; 13 14 vendorHash = "sha256-nfSqu1u7NWbZYL7CEZ/i2tdxQBblRbwJwdwoEtol/Us=";
+3 -3
pkgs/development/tools/database/clickhouse-backup/default.nix
··· 7 8 buildGoModule rec { 9 pname = "clickhouse-backup"; 10 - version = "2.3.2"; 11 12 src = fetchFromGitHub { 13 owner = "AlexAkulov"; 14 repo = pname; 15 rev = "v${version}"; 16 - sha256 = "sha256-B6MImom0BSvbZVjeMWvF+oDEfoALl4xhXXitaOOU/ZI="; 17 }; 18 19 - vendorHash = "sha256-YSr3fKqJJtNRbUW1TjwDM96cA6CoYz1LUit/pC8V3Fs="; 20 21 ldflags = [ 22 "-X main.version=${version}"
··· 7 8 buildGoModule rec { 9 pname = "clickhouse-backup"; 10 + version = "2.4.0"; 11 12 src = fetchFromGitHub { 13 owner = "AlexAkulov"; 14 repo = pname; 15 rev = "v${version}"; 16 + sha256 = "sha256-ngLDKAwdrX385BIPYlQAYkA0Ty73wWwEesKQuC6+cvo="; 17 }; 18 19 + vendorHash = "sha256-NOQV7c930kutXmgi1eaETu1JMJerKNK2Ns4YBRaoBUw="; 20 21 ldflags = [ 22 "-X main.version=${version}"
+1 -1
pkgs/development/tools/glpaper/default.nix
··· 1 - { lib, stdenv, fetchFromSourcehut, meson, ninja, pkg-config, wlroots, wayland, wayland-protocols 2 , libX11, libGL }: 3 4 stdenv.mkDerivation rec {
··· 1 + { lib, stdenv, fetchFromSourcehut, meson, ninja, pkg-config, wayland 2 , libX11, libGL }: 3 4 stdenv.mkDerivation rec {
+2 -2
pkgs/development/tools/misc/devspace/default.nix
··· 5 6 buildGoModule rec { 7 pname = "devspace"; 8 - version = "6.3.2"; 9 10 src = fetchFromGitHub { 11 owner = "loft-sh"; 12 repo = "devspace"; 13 rev = "v${version}"; 14 - sha256 = "sha256-TDC4zhsNcU3qwvBSxvaYxlWHXX1YllRX9n6CGKlXOq4="; 15 }; 16 17 vendorSha256 = null;
··· 5 6 buildGoModule rec { 7 pname = "devspace"; 8 + version = "6.3.3"; 9 10 src = fetchFromGitHub { 11 owner = "loft-sh"; 12 repo = "devspace"; 13 rev = "v${version}"; 14 + sha256 = "sha256-xAK06bpl8BGsVUu6O1C2l+tzeiCQoRUMIUtwntUZVvU="; 15 }; 16 17 vendorSha256 = null;
+2 -2
pkgs/development/tools/misc/opengrok/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "opengrok"; 5 - version = "1.12.13"; 6 7 # binary distribution 8 src = fetchurl { 9 url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz"; 10 - hash = "sha256-DfSLQj6cbgDT56MwwnlC6hK/y3Hce2Ueprw0o3NURW0="; 11 }; 12 13 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "opengrok"; 5 + version = "1.12.14"; 6 7 # binary distribution 8 src = fetchurl { 9 url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz"; 10 + hash = "sha256-4v+fDmDnmoAZimf63nSCqUp0y+a5UKQBxNWSNp64XE4="; 11 }; 12 13 nativeBuildInputs = [ makeWrapper ];
+36
pkgs/development/tools/oxlint/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , darwin 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "oxlint"; 10 + version = "0.0.11"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "web-infra-dev"; 14 + repo = "oxc"; 15 + rev = "oxlint_v${version}"; 16 + hash = "sha256-di+uCLZJNJMETMSUxQwlFaZPJps0+HIL7h+EvudP5II="; 17 + }; 18 + 19 + cargoHash = "sha256-r+HRm9JNFKFL78VP/Yz87b1nQDLwbNuhHd0JkXeuCC0="; 20 + 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + darwin.apple_sdk.frameworks.Security 23 + ]; 24 + 25 + cargoBuildFlags = [ "--bin=oxlint" ]; 26 + cargoTestFlags = cargoBuildFlags; 27 + 28 + meta = with lib; { 29 + description = "A suite of high-performance tools for JavaScript and TypeScript written in Rust"; 30 + homepage = "https://github.com/web-infra-dev/oxc"; 31 + changelog = "https://github.com/web-infra-dev/oxc/releases/tag/${src.rev}"; 32 + license = licenses.mit; 33 + maintainers = with maintainers; [ figsoda ]; 34 + mainProgram = "oxlint"; 35 + }; 36 + }
+14
pkgs/development/tools/parsing/antlr/4.nix
··· 103 }; 104 105 in { 106 antlr4_12 = (mkAntlr { 107 version = "4.12.0"; 108 sourceSha256 = "sha256-0JMG8UYFT+IAWvARY2KnuXSr5X6LlVZN4LJHy5d4x08=";
··· 103 }; 104 105 in { 106 + antlr4_13 = (mkAntlr { 107 + version = "4.13.0"; 108 + sourceSha256 = "sha256-s1yAdScMYg1wFpYNsBAtpifIhQsnSAgJg7JjPDx+htc="; 109 + jarSha256 = "sha256-vG9KvA0iWidXASbFFAJWnwAKje2jSHtw52QoQOVw5KY="; 110 + extraCppCmakeFlags = [ 111 + # Generate CMake config files, which are not installed by default. 112 + "-DANTLR4_INSTALL=ON" 113 + 114 + # Disable tests, since they require downloading googletest, which is 115 + # not available in a sandboxed build. 116 + "-DANTLR_BUILD_CPP_TESTS=OFF" 117 + ]; 118 + }).antlr; 119 + 120 antlr4_12 = (mkAntlr { 121 version = "4.12.0"; 122 sourceSha256 = "sha256-0JMG8UYFT+IAWvARY2KnuXSr5X6LlVZN4LJHy5d4x08=";
+51
pkgs/development/tools/rust/cargo-codspeed/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , curl 5 + , pkg-config 6 + , libgit2_1_5 7 + , openssl 8 + , zlib 9 + , stdenv 10 + , darwin 11 + }: 12 + 13 + rustPlatform.buildRustPackage rec { 14 + pname = "cargo-codspeed"; 15 + version = "2.1.0"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "CodSpeedHQ"; 19 + repo = "codspeed-rust"; 20 + rev = "v${version}"; 21 + hash = "sha256-egKy1ilI4wbpmw1AM3W1Yxq4Cy6jEx8Y0FFM92C0JM0="; 22 + }; 23 + 24 + cargoHash = "sha256-nYWl9V9/LKBJ6Hpsinr/2wCY5yrVXgp6Q2oUNU/b4MU="; 25 + 26 + nativeBuildInputs = [ 27 + curl 28 + pkg-config 29 + ]; 30 + 31 + buildInputs = [ 32 + curl 33 + libgit2_1_5 34 + openssl 35 + zlib 36 + ] ++ lib.optionals stdenv.isDarwin [ 37 + darwin.apple_sdk_11_0.frameworks.Security 38 + ]; 39 + 40 + cargoBuildFlags = [ "-p=cargo-codspeed" ]; 41 + cargoTestFlags = cargoBuildFlags; 42 + 43 + meta = with lib; { 44 + description = "Cargo extension to build & run your codspeed benchmarks"; 45 + homepage = "https://github.com/CodSpeedHQ/codspeed-rust"; 46 + changelog = "https://github.com/CodSpeedHQ/codspeed-rust/releases/tag/${src.rev}"; 47 + license = with licenses; [ mit asl20 ]; 48 + maintainers = with maintainers; [ figsoda ]; 49 + mainProgram = "cargo-codspeed"; 50 + }; 51 + }
+3 -3
pkgs/development/tools/rust/cargo-expand/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "cargo-expand"; 8 - version = "1.0.65"; 9 10 src = fetchFromGitHub { 11 owner = "dtolnay"; 12 repo = pname; 13 rev = version; 14 - sha256 = "sha256-fPrke89Nlr9Yj0bkB6HTwMymQsjAQ+5+o7iVPGH7Tyc="; 15 }; 16 17 - cargoHash = "sha256-Q7nBKdwZlL/HleuiniuvErGF6Avf58xR++cJ7PP8RME="; 18 19 meta = with lib; { 20 description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "cargo-expand"; 8 + version = "1.0.66"; 9 10 src = fetchFromGitHub { 11 owner = "dtolnay"; 12 repo = pname; 13 rev = version; 14 + sha256 = "sha256-nkE8N0O+aBJPNPGjsp55KnpkaQum11InYHks/Pae+A0="; 15 }; 16 17 + cargoHash = "sha256-To36pZW6AkV5HLhYJ0Wke7q9JYgguTBWYehitLJVY6w="; 18 19 meta = with lib; { 20 description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code";
+4 -4
pkgs/development/tools/swc/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "swc"; 8 - version = "0.91.67"; 9 10 env = { 11 # swc depends on nightly features ··· 15 src = fetchCrate { 16 pname = "swc_cli"; 17 inherit version; 18 - sha256 = "sha256-ibNrdMxb1A/QwtK/J/2tbqCxpWssTeFSXrO8oEeEoDA="; 19 }; 20 21 - cargoSha256 = "sha256-puECB7/b2lKTquaDvzd19pYbmY8OeRfbA9u1xMjzl/k="; 22 23 buildFeatures = [ "swc_core/plugin_transform_host_native" ]; 24 ··· 26 description = "Rust-based platform for the Web"; 27 homepage = "https://github.com/swc-project/swc"; 28 license = licenses.asl20; 29 - maintainers = with maintainers; [ dit7ya ]; 30 }; 31 }
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "swc"; 8 + version = "0.91.68"; 9 10 env = { 11 # swc depends on nightly features ··· 15 src = fetchCrate { 16 pname = "swc_cli"; 17 inherit version; 18 + sha256 = "sha256-SLVXh+8oBcq/pKHB5mMLPOR4J3Xlns5eNs8mo2qh/30="; 19 }; 20 21 + cargoSha256 = "sha256-nYMy4OtzNymzan/xZ6Ekx9QL+6AOtciI+sLl4f2Owy0="; 22 23 buildFeatures = [ "swc_core/plugin_transform_host_native" ]; 24 ··· 26 description = "Rust-based platform for the Web"; 27 homepage = "https://github.com/swc-project/swc"; 28 license = licenses.asl20; 29 + maintainers = with maintainers; [ dit7ya kashw2 ]; 30 }; 31 }
+3 -3
pkgs/games/minesweep-rs/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "minesweep-rs"; 8 - version = "6.0.27"; 9 10 src = fetchFromGitHub { 11 owner = "cpcloud"; 12 repo = pname; 13 rev = "v${version}"; 14 - hash = "sha256-z94mKAboLs6fi+RKfwijm2RDpO729uJoSlxSzBdrkRI="; 15 }; 16 17 - cargoHash = "sha256-IRWPjOUV3ElXPNYCRvQQAw74YBtEnTHtrWDYHO/eDNE="; 18 19 meta = with lib; { 20 description = "Sweep some mines for fun, and probably not for profit";
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "minesweep-rs"; 8 + version = "6.0.29"; 9 10 src = fetchFromGitHub { 11 owner = "cpcloud"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-PgZ9fL+g2X3CddPVD/JRrIFbw7GS73ELD3EhhR9BAUc="; 15 }; 16 17 + cargoHash = "sha256-c06TfslXGAshR1HXz6PCI26DMpFsb6OrzQ38p4RgsAw="; 18 19 meta = with lib; { 20 description = "Sweep some mines for fun, and probably not for profit";
+3 -3
pkgs/misc/fastly/default.nix
··· 10 11 buildGoModule rec { 12 pname = "fastly"; 13 - version = "10.3.0"; 14 15 src = fetchFromGitHub { 16 owner = "fastly"; 17 repo = "cli"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-UkhcSRVABgZs9/G5r6ZMLfFPZMeXE8atR5+HNG5y3tk="; 20 # The git commit is part of the `fastly version` original output; 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 "cmd/fastly" 34 ]; 35 36 - vendorHash = "sha256-IimrJZLaSkwWsqoVmNRyLhcME4y1YKw5xLayKxRj5lw="; 37 38 nativeBuildInputs = [ 39 installShellFiles
··· 10 11 buildGoModule rec { 12 pname = "fastly"; 13 + version = "10.4.0"; 14 15 src = fetchFromGitHub { 16 owner = "fastly"; 17 repo = "cli"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-NEbQ4GoZXnFes6jvqKDg4T8eDAHHEYytJ7W7qeZSCmE="; 20 # The git commit is part of the `fastly version` original output; 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 "cmd/fastly" 34 ]; 35 36 + vendorHash = "sha256-mpN4YCiuL2jrZ4r/YOUhQSOBlGGHndQyrB9GT5mTAyI="; 37 38 nativeBuildInputs = [ 39 installShellFiles
+3 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 65 # Vulkan developer beta driver 66 # See here for more information: https://developer.nvidia.com/vulkan-driver 67 vulkan_beta = generic rec { 68 - version = "535.43.08"; 69 persistencedVersion = "535.98"; 70 settingsVersion = "535.98"; 71 - sha256_64bit = "sha256-u9OJ4xaHGDb5iA5+5jwJhWQGRDa5R6piF1c+K2DGaJs="; 72 - openSha256 = "sha256-kbH/6yDhh44SB08xcX6+tm70PuUHF0tfbvHfIwx7o/U="; 73 settingsSha256 = "sha256-jCRfeB1w6/dA27gaz6t5/Qo7On0zbAPIi74LYLel34s="; 74 persistencedSha256 = "sha256-WviDU6B50YG8dO64CGvU3xK8WFUX8nvvVYm/fuGyroM="; 75 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux";
··· 65 # Vulkan developer beta driver 66 # See here for more information: https://developer.nvidia.com/vulkan-driver 67 vulkan_beta = generic rec { 68 + version = "535.43.09"; 69 persistencedVersion = "535.98"; 70 settingsVersion = "535.98"; 71 + sha256_64bit = "sha256-7QDp+VDgxH7RGW40kbQp4F/luh0DCYb4BS0gU/6wn+c="; 72 + openSha256 = "sha256-7MOwKQCTaOo1//8OlSaNdpKeDXejZvmKFFeqhFrhAk8="; 73 settingsSha256 = "sha256-jCRfeB1w6/dA27gaz6t5/Qo7On0zbAPIi74LYLel34s="; 74 persistencedSha256 = "sha256-WviDU6B50YG8dO64CGvU3xK8WFUX8nvvVYm/fuGyroM="; 75 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux";
+3 -2
pkgs/servers/mail/postfix/default.nix
··· 25 26 in stdenv.mkDerivation rec { 27 pname = "postfix"; 28 - version = "3.8.1"; 29 30 src = fetchurl { 31 url = "http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/${pname}-${version}.tar.gz"; 32 - hash = "sha256-VOG//e0wMoKKcN4iwqGpTRwJf8RRPg/b/P2/O/9rcJI="; 33 }; 34 35 nativeBuildInputs = [ makeWrapper m4 ]; ··· 109 110 meta = with lib; { 111 homepage = "http://www.postfix.org/"; 112 description = "A fast, easy to administer, and secure mail server"; 113 license = with licenses; [ ipl10 epl20 ]; 114 platforms = platforms.linux;
··· 25 26 in stdenv.mkDerivation rec { 27 pname = "postfix"; 28 + version = "3.8.2"; 29 30 src = fetchurl { 31 url = "http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/${pname}-${version}.tar.gz"; 32 + hash = "sha256-Z5CQPNu14ORxlmkeuaXyz4BQJi3vlB4Dnm1L9AQ6XjA="; 33 }; 34 35 nativeBuildInputs = [ makeWrapper m4 ]; ··· 109 110 meta = with lib; { 111 homepage = "http://www.postfix.org/"; 112 + changelog = "https://www.postfix.org/announcements/postfix-${version}.html"; 113 description = "A fast, easy to administer, and secure mail server"; 114 license = with licenses; [ ipl10 epl20 ]; 115 platforms = platforms.linux;
+2 -2
pkgs/tools/admin/copilot-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "copilot-cli"; 5 - version = "1.30.0"; 6 7 src = fetchFromGitHub { 8 owner = "aws"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-Q495MJlvElm5yrX4QWrwvB62Tdzq0W5pTYsTXyw9Idw="; 12 }; 13 14 vendorHash = "sha256-/2uUiFL2wL+gAzqY2S3sqytPLKB5+QkYXCBNLqSJSWU=";
··· 2 3 buildGoModule rec { 4 pname = "copilot-cli"; 5 + version = "1.30.1"; 6 7 src = fetchFromGitHub { 8 owner = "aws"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-ldSF+M6gYKJ6EDJ4jKpPS+XTyybynsRhibNtLG1+DlE="; 12 }; 13 14 vendorHash = "sha256-/2uUiFL2wL+gAzqY2S3sqytPLKB5+QkYXCBNLqSJSWU=";
+2 -2
pkgs/tools/admin/exoscale-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "exoscale-cli"; 5 - version = "1.72.0"; 6 7 src = fetchFromGitHub { 8 owner = "exoscale"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-+M7+/iexcqQD1RVJziNll0XaPAsUiFlC3+1EwXxA5P0="; 12 }; 13 14 vendorHash = null;
··· 2 3 buildGoModule rec { 4 pname = "exoscale-cli"; 5 + version = "1.72.1"; 6 7 src = fetchFromGitHub { 8 owner = "exoscale"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-WaM0GQP5JIGKJuRPcIqaPt98qkjRuzjbv6oiHARu6lA="; 12 }; 13 14 vendorHash = null;
+2 -2
pkgs/tools/admin/mycli/default.nix
··· 8 9 buildPythonApplication rec { 10 pname = "mycli"; 11 - version = "1.26.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "sha256-jAMDXJtFJtv6CwhZZU4pdKDndZKp6bJ/QPWo2q6DvrE="; 16 }; 17 18 propagatedBuildInputs = [
··· 8 9 buildPythonApplication rec { 10 pname = "mycli"; 11 + version = "1.27.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-px21vZwafQAG9PL/AVSM51Y30/UMo6fne5ULW0av980="; 16 }; 17 18 propagatedBuildInputs = [
+10 -4
pkgs/tools/admin/ssmsh/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 pname = "ssmsh"; 5 - version = "1.4.7"; 6 7 src = fetchFromGitHub { 8 owner = "bwhaley"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-juyTCtcuFIlKyLxDrK5tRRzCMwoSXG4EUA32E/Z4y5c="; 12 }; 13 14 - vendorSha256 = "sha256-dqUMwnHRsR8n4bHEKoePyuqr8sE4NWPpuYo5SwOw0Rw="; 15 16 doCheck = true; 17 18 ldflags = [ "-w" "-s" "-X main.Version=${version}" ]; 19 20 meta = with lib; { 21 homepage = "https://github.com/bwhaley/ssmsh";
··· 1 + { lib, buildGoModule, fetchFromGitHub, testers, ssmsh }: 2 3 buildGoModule rec { 4 pname = "ssmsh"; 5 + version = "1.4.8"; 6 7 src = fetchFromGitHub { 8 owner = "bwhaley"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-GpN+yicgFIHOaMeJJcRn55f6fQbFX12vSV089/cMsqc="; 12 }; 13 14 + vendorSha256 = "sha256-17fmdsfOrOaySPsXofLzz0+vmiemg9MbnWhRoZ67EuQ="; 15 16 doCheck = true; 17 18 ldflags = [ "-w" "-s" "-X main.Version=${version}" ]; 19 + 20 + passthru.tests = testers.testVersion { 21 + package = ssmsh; 22 + command = "ssmsh -version"; 23 + version = "Version ${version}"; 24 + }; 25 26 meta = with lib; { 27 homepage = "https://github.com/bwhaley/ssmsh";
+2 -2
pkgs/tools/admin/tlsclient/default.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "tlsclient"; 11 - version = "1.6.4"; 12 13 src = fetchFromSourcehut { 14 owner = "~moody"; 15 repo = "tlsclient"; 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-36fhY9kO6tPUuRkpk3Jv9oBRYX/SnmdZg0Rzt/A6MQE="; 18 }; 19 20 strictDeps = true;
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "tlsclient"; 11 + version = "1.6.5"; 12 13 src = fetchFromSourcehut { 14 owner = "~moody"; 15 repo = "tlsclient"; 16 rev = "v${finalAttrs.version}"; 17 + hash = "sha256-Ff41LZ5jbrqni2ptsUlI3L17SCHnGo4utg8etFubRNI="; 18 }; 19 20 strictDeps = true;
+2 -2
pkgs/tools/admin/try/default.nix
··· 1 { stdenvNoCC, lib, fetchFromGitHub, fuse-overlayfs, util-linux, makeWrapper }: 2 stdenvNoCC.mkDerivation rec { 3 pname = "try"; 4 - version = "0.1.0"; 5 src = fetchFromGitHub { 6 owner = "binpash"; 7 repo = pname; 8 rev = "v${version}"; 9 - hash = "sha256-TTKr22FwXfPL/YrFT+r12nFSxbk/47N6rrb3Vw/lSPI="; 10 }; 11 nativeBuildInputs = [ makeWrapper ]; 12 installPhase = ''
··· 1 { stdenvNoCC, lib, fetchFromGitHub, fuse-overlayfs, util-linux, makeWrapper }: 2 stdenvNoCC.mkDerivation rec { 3 pname = "try"; 4 + version = "0.2.0"; 5 src = fetchFromGitHub { 6 owner = "binpash"; 7 repo = pname; 8 rev = "v${version}"; 9 + hash = "sha256-2EDRVwW4XzQhd7rAM2rDuR94Fkaq4pH5RTooFEBBh5g="; 10 }; 11 nativeBuildInputs = [ makeWrapper ]; 12 installPhase = ''
+2 -2
pkgs/tools/filesystems/btrfs-progs/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "btrfs-progs"; 12 - version = "6.3.3"; 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; 16 - sha256 = "sha256-S+MAFXYCcNCBZCzAAjqL/ufLZXoqoFVkTmpW1oaVuW4="; 17 }; 18 19 nativeBuildInputs = [
··· 9 10 stdenv.mkDerivation rec { 11 pname = "btrfs-progs"; 12 + version = "6.5"; 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; 16 + sha256 = "sha256-j1B6DN9qizcthi2+SUP+hMZtyyCI48/eLPs7F26sHBw="; 17 }; 18 19 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/mongodb-compass/default.nix
··· 33 }: 34 35 let 36 - version = "1.39.1"; 37 38 rpath = lib.makeLibraryPath [ 39 alsa-lib ··· 82 if stdenv.hostPlatform.system == "x86_64-linux" then 83 fetchurl { 84 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 85 - sha256 = "sha256-i4dAkpA0i/RSC0PpkEafbxriJy1Y9bW5YrZRjFaS8nw="; 86 } 87 else 88 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}";
··· 33 }: 34 35 let 36 + version = "1.39.3"; 37 38 rpath = lib.makeLibraryPath [ 39 alsa-lib ··· 82 if stdenv.hostPlatform.system == "x86_64-linux" then 83 fetchurl { 84 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 85 + sha256 = "sha256-6HK1t05amGd7H6MS9Lg+vJvWdOWi+ukqz5gY1IaPw9E="; 86 } 87 else 88 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}";
+2 -2
pkgs/tools/networking/nfdump/default.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "nfdump"; 16 - version = "1.7.2"; 17 18 src = fetchFromGitHub { 19 owner = "phaag"; 20 repo = "nfdump"; 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-ns/RG0kyu2b0UjcJKArcAjY+dI397ljhrUO8euS5Snk="; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "nfdump"; 16 + version = "1.7.3"; 17 18 src = fetchFromGitHub { 19 owner = "phaag"; 20 repo = "nfdump"; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-etmelBCZQKscuVJt5dBtwQVjiZNUFLTu11Gw0jmYcAg="; 23 }; 24 25 nativeBuildInputs = [
+221 -194
pkgs/tools/security/vaultwarden/Cargo.lock
··· 19 20 [[package]] 21 name = "aho-corasick" 22 - version = "1.0.2" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 25 dependencies = [ 26 "memchr", 27 ] ··· 58 59 [[package]] 60 name = "argon2" 61 - version = "0.5.0" 62 source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "95c2fcf79ad1932ac6269a738109997a83c227c09b75842ae564dc8ede6a861c" 64 dependencies = [ 65 "base64ct", 66 "blake2", 67 "password-hash", 68 ] 69 70 [[package]] 71 name = "async-channel" 72 - version = "1.8.0" 73 source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 75 dependencies = [ 76 "concurrent-queue", 77 "event-listener", ··· 80 81 [[package]] 82 name = "async-compression" 83 - version = "0.4.0" 84 source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" 86 dependencies = [ 87 "brotli", 88 "flate2", ··· 101 "async-lock", 102 "async-task", 103 "concurrent-queue", 104 - "fastrand", 105 "futures-lite", 106 "slab", 107 ] ··· 135 "log", 136 "parking", 137 "polling", 138 - "rustix 0.37.22", 139 "slab", 140 "socket2 0.4.9", 141 "waker-fn", ··· 143 144 [[package]] 145 name = "async-lock" 146 - version = "2.7.0" 147 source = "registry+https://github.com/rust-lang/crates.io-index" 148 - checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 149 dependencies = [ 150 "event-listener", 151 ] ··· 163 "cfg-if", 164 "event-listener", 165 "futures-lite", 166 - "rustix 0.37.22", 167 "signal-hook", 168 "windows-sys", 169 ] ··· 214 dependencies = [ 215 "proc-macro2", 216 "quote", 217 - "syn 2.0.23", 218 ] 219 220 [[package]] ··· 225 226 [[package]] 227 name = "async-trait" 228 - version = "0.1.70" 229 source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "79fa67157abdfd688a259b6648808757db9347af834624f27ec646da976aee5d" 231 dependencies = [ 232 "proc-macro2", 233 "quote", 234 - "syn 2.0.23", 235 ] 236 237 [[package]] ··· 299 300 [[package]] 301 name = "bitflags" 302 - version = "2.3.3" 303 source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 305 306 [[package]] 307 name = "blake2" ··· 331 "async-lock", 332 "async-task", 333 "atomic-waker", 334 - "fastrand", 335 "futures-lite", 336 "log", 337 ] ··· 413 414 [[package]] 415 name = "cc" 416 - version = "1.0.79" 417 source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 419 420 [[package]] 421 name = "cfg-if" ··· 541 542 [[package]] 543 name = "cpufeatures" 544 - version = "0.2.8" 545 source = "registry+https://github.com/rust-lang/crates.io-index" 546 - checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c" 547 dependencies = [ 548 "libc", 549 ] ··· 624 625 [[package]] 626 name = "dashmap" 627 - version = "5.4.0" 628 source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 630 dependencies = [ 631 "cfg-if", 632 - "hashbrown 0.12.3", 633 "lock_api", 634 "once_cell", 635 "parking_lot_core", ··· 648 checksum = "41b319d1b62ffbd002e057f36bebd1f42b9f97927c9577461d855f3513c4289f" 649 650 [[package]] 651 name = "devise" 652 version = "0.4.1" 653 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 673 source = "registry+https://github.com/rust-lang/crates.io-index" 674 checksum = "35b50dba0afdca80b187392b24f2499a88c336d5a8493e4b4ccfb608708be56a" 675 dependencies = [ 676 - "bitflags 2.3.3", 677 "proc-macro2", 678 "proc-macro2-diagnostics", 679 "quote", 680 - "syn 2.0.23", 681 ] 682 683 [[package]] ··· 686 source = "registry+https://github.com/rust-lang/crates.io-index" 687 checksum = "f7a532c1f99a0f596f6960a60d1e119e91582b24b39e2d83a190e61262c3ef0c" 688 dependencies = [ 689 - "bitflags 2.3.3", 690 "byteorder", 691 "chrono", 692 "diesel_derives", ··· 709 "diesel_table_macro_syntax", 710 "proc-macro2", 711 "quote", 712 - "syn 2.0.23", 713 ] 714 715 [[package]] ··· 739 source = "registry+https://github.com/rust-lang/crates.io-index" 740 checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5" 741 dependencies = [ 742 - "syn 2.0.23", 743 ] 744 745 [[package]] ··· 761 762 [[package]] 763 name = "either" 764 - version = "1.8.1" 765 source = "registry+https://github.com/rust-lang/crates.io-index" 766 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 767 768 [[package]] 769 name = "email-encoding" ··· 807 808 [[package]] 809 name = "equivalent" 810 - version = "1.0.0" 811 source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1" 813 814 [[package]] 815 name = "errno" 816 - version = "0.3.1" 817 source = "registry+https://github.com/rust-lang/crates.io-index" 818 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 819 dependencies = [ 820 "errno-dragonfly", 821 "libc", ··· 857 ] 858 859 [[package]] 860 name = "fern" 861 version = "0.6.2" 862 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 974 source = "registry+https://github.com/rust-lang/crates.io-index" 975 checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 976 dependencies = [ 977 - "fastrand", 978 "futures-core", 979 "futures-io", 980 "memchr", ··· 991 dependencies = [ 992 "proc-macro2", 993 "quote", 994 - "syn 2.0.23", 995 ] 996 997 [[package]] ··· 1061 dependencies = [ 1062 "cfg-if", 1063 "libc", 1064 - "wasi 0.11.0+wasi-snapshot-preview1", 1065 ] 1066 1067 [[package]] ··· 1090 1091 [[package]] 1092 name = "governor" 1093 - version = "0.5.1" 1094 source = "registry+https://github.com/rust-lang/crates.io-index" 1095 - checksum = "c390a940a5d157878dd057c78680a33ce3415bcd05b4799509ea44210914b4d5" 1096 dependencies = [ 1097 "cfg-if", 1098 "dashmap", ··· 1198 1199 [[package]] 1200 name = "html5gum" 1201 - version = "0.5.3" 1202 source = "registry+https://github.com/rust-lang/crates.io-index" 1203 - checksum = "67b4d5b6f92743baff720caafecfa172651b233609b0e2c80617cdb043dac73d" 1204 dependencies = [ 1205 "jetscii", 1206 ] ··· 1235 1236 [[package]] 1237 name = "httpdate" 1238 - version = "1.0.2" 1239 source = "registry+https://github.com/rust-lang/crates.io-index" 1240 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1241 1242 [[package]] 1243 name = "hyper" ··· 1403 1404 [[package]] 1405 name = "is-terminal" 1406 - version = "0.4.8" 1407 source = "registry+https://github.com/rust-lang/crates.io-index" 1408 - checksum = "24fddda5af7e54bf7da53067d6e802dbcc381d0a8eef629df528e3ebf68755cb" 1409 dependencies = [ 1410 "hermit-abi", 1411 - "rustix 0.38.2", 1412 "windows-sys", 1413 ] 1414 1415 [[package]] 1416 name = "itoa" 1417 - version = "1.0.8" 1418 source = "registry+https://github.com/rust-lang/crates.io-index" 1419 - checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a" 1420 1421 [[package]] 1422 name = "jetscii" ··· 1484 "base64 0.21.2", 1485 "email-encoding", 1486 "email_address", 1487 - "fastrand", 1488 "futures-io", 1489 "futures-util", 1490 "hostname", ··· 1543 1544 [[package]] 1545 name = "linux-raw-sys" 1546 - version = "0.4.3" 1547 source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" 1549 1550 [[package]] 1551 name = "lock_api" ··· 1559 1560 [[package]] 1561 name = "log" 1562 - version = "0.4.19" 1563 source = "registry+https://github.com/rust-lang/crates.io-index" 1564 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1565 dependencies = [ 1566 "value-bag", 1567 ] ··· 1591 ] 1592 1593 [[package]] 1594 - name = "mach" 1595 - version = "0.3.2" 1596 source = "registry+https://github.com/rust-lang/crates.io-index" 1597 - checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 1598 dependencies = [ 1599 "libc", 1600 ] ··· 1611 source = "registry+https://github.com/rust-lang/crates.io-index" 1612 checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1613 dependencies = [ 1614 - "regex-automata", 1615 ] 1616 1617 [[package]] ··· 1684 checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1685 dependencies = [ 1686 "libc", 1687 - "wasi 0.11.0+wasi-snapshot-preview1", 1688 "windows-sys", 1689 ] 1690 ··· 1787 dependencies = [ 1788 "proc-macro2", 1789 "quote", 1790 - "syn 2.0.23", 1791 ] 1792 1793 [[package]] ··· 1802 1803 [[package]] 1804 name = "num-traits" 1805 - version = "0.2.15" 1806 source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1808 dependencies = [ 1809 "autocfg", 1810 ] ··· 1845 1846 [[package]] 1847 name = "openssl" 1848 - version = "0.10.55" 1849 source = "registry+https://github.com/rust-lang/crates.io-index" 1850 - checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d" 1851 dependencies = [ 1852 "bitflags 1.3.2", 1853 "cfg-if", ··· 1866 dependencies = [ 1867 "proc-macro2", 1868 "quote", 1869 - "syn 2.0.23", 1870 ] 1871 1872 [[package]] ··· 1877 1878 [[package]] 1879 name = "openssl-src" 1880 - version = "111.26.0+1.1.1u" 1881 source = "registry+https://github.com/rust-lang/crates.io-index" 1882 - checksum = "efc62c9f12b22b8f5208c23a7200a442b2e5999f8bdf80233852122b5a4f6f37" 1883 dependencies = [ 1884 "cc", 1885 ] 1886 1887 [[package]] 1888 name = "openssl-sys" 1889 - version = "0.9.90" 1890 source = "registry+https://github.com/rust-lang/crates.io-index" 1891 - checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" 1892 dependencies = [ 1893 "cc", 1894 "libc", ··· 1954 1955 [[package]] 1956 name = "paste" 1957 - version = "1.0.13" 1958 source = "registry+https://github.com/rust-lang/crates.io-index" 1959 - checksum = "b4b27ab7be369122c218afc2079489cdcb4b517c0a3fc386ff11e1fedfcc2b35" 1960 1961 [[package]] 1962 name = "pear" 1963 - version = "0.2.4" 1964 source = "registry+https://github.com/rust-lang/crates.io-index" 1965 - checksum = "0ec95680a7087503575284e5063e14b694b7a9c0b065e5dceec661e0497127e8" 1966 dependencies = [ 1967 "inlinable_string", 1968 "pear_codegen", 1969 - "yansi", 1970 ] 1971 1972 [[package]] 1973 name = "pear_codegen" 1974 - version = "0.2.4" 1975 source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "9661a3a53f93f09f2ea882018e4d7c88f6ff2956d809a276060476fd8c879d3c" 1977 dependencies = [ 1978 "proc-macro2", 1979 "proc-macro2-diagnostics", 1980 "quote", 1981 - "syn 2.0.23", 1982 ] 1983 1984 [[package]] ··· 1998 1999 [[package]] 2000 name = "pest" 2001 - version = "2.7.0" 2002 source = "registry+https://github.com/rust-lang/crates.io-index" 2003 - checksum = "f73935e4d55e2abf7f130186537b19e7a4abc886a0252380b59248af473a3fc9" 2004 dependencies = [ 2005 "thiserror", 2006 "ucd-trie", ··· 2008 2009 [[package]] 2010 name = "pest_derive" 2011 - version = "2.7.0" 2012 source = "registry+https://github.com/rust-lang/crates.io-index" 2013 - checksum = "aef623c9bbfa0eedf5a0efba11a5ee83209c326653ca31ff019bec3a95bfff2b" 2014 dependencies = [ 2015 "pest", 2016 "pest_generator", ··· 2018 2019 [[package]] 2020 name = "pest_generator" 2021 - version = "2.7.0" 2022 source = "registry+https://github.com/rust-lang/crates.io-index" 2023 - checksum = "b3e8cba4ec22bada7fc55ffe51e2deb6a0e0db2d0b7ab0b103acc80d2510c190" 2024 dependencies = [ 2025 "pest", 2026 "pest_meta", 2027 "proc-macro2", 2028 "quote", 2029 - "syn 2.0.23", 2030 ] 2031 2032 [[package]] 2033 name = "pest_meta" 2034 - version = "2.7.0" 2035 source = "registry+https://github.com/rust-lang/crates.io-index" 2036 - checksum = "a01f71cb40bd8bb94232df14b946909e14660e33fc05db3e50ae2a82d7ea0ca0" 2037 dependencies = [ 2038 "once_cell", 2039 "pest", ··· 2086 2087 [[package]] 2088 name = "pin-project-lite" 2089 - version = "0.2.10" 2090 source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 2092 2093 [[package]] 2094 name = "pin-utils" ··· 2135 2136 [[package]] 2137 name = "proc-macro2" 2138 - version = "1.0.63" 2139 source = "registry+https://github.com/rust-lang/crates.io-index" 2140 - checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" 2141 dependencies = [ 2142 "unicode-ident", 2143 ] 2144 2145 [[package]] 2146 name = "proc-macro2-diagnostics" 2147 - version = "0.10.0" 2148 source = "registry+https://github.com/rust-lang/crates.io-index" 2149 - checksum = "606c4ba35817e2922a308af55ad51bab3645b59eae5c570d4a6cf07e36bd493b" 2150 dependencies = [ 2151 "proc-macro2", 2152 "quote", 2153 - "syn 2.0.23", 2154 "version_check", 2155 - "yansi", 2156 ] 2157 2158 [[package]] ··· 2173 2174 [[package]] 2175 name = "quanta" 2176 - version = "0.9.3" 2177 source = "registry+https://github.com/rust-lang/crates.io-index" 2178 - checksum = "20afe714292d5e879d8b12740aa223c6a88f118af41870e8b6196e39a02238a8" 2179 dependencies = [ 2180 "crossbeam-utils", 2181 "libc", 2182 - "mach", 2183 "once_cell", 2184 "raw-cpuid", 2185 - "wasi 0.10.2+wasi-snapshot-preview1", 2186 "web-sys", 2187 "winapi", 2188 ] ··· 2195 2196 [[package]] 2197 name = "quote" 2198 - version = "1.0.29" 2199 source = "registry+https://github.com/rust-lang/crates.io-index" 2200 - checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 2201 dependencies = [ 2202 "proc-macro2", 2203 ] ··· 2269 2270 [[package]] 2271 name = "ref-cast" 2272 - version = "1.0.17" 2273 source = "registry+https://github.com/rust-lang/crates.io-index" 2274 - checksum = "85d07b1a5f16b5548f4255a978c94259971aff73f39e8d67e8250e8b2f6667c3" 2275 dependencies = [ 2276 "ref-cast-impl", 2277 ] 2278 2279 [[package]] 2280 name = "ref-cast-impl" 2281 - version = "1.0.17" 2282 source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "a930b010d9effee5834317bb7ff406b76af7724348fd572b38705b4bd099fa92" 2284 dependencies = [ 2285 "proc-macro2", 2286 "quote", 2287 - "syn 2.0.23", 2288 ] 2289 2290 [[package]] 2291 name = "regex" 2292 - version = "1.8.4" 2293 source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" 2295 dependencies = [ 2296 "aho-corasick", 2297 "memchr", 2298 - "regex-syntax 0.7.2", 2299 ] 2300 2301 [[package]] ··· 2308 ] 2309 2310 [[package]] 2311 name = "regex-syntax" 2312 version = "0.6.29" 2313 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2315 2316 [[package]] 2317 name = "regex-syntax" 2318 - version = "0.7.2" 2319 source = "registry+https://github.com/rust-lang/crates.io-index" 2320 - checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 2321 2322 [[package]] 2323 name = "reqwest" ··· 2390 2391 [[package]] 2392 name = "rmp" 2393 - version = "0.8.11" 2394 source = "registry+https://github.com/rust-lang/crates.io-index" 2395 - checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" 2396 dependencies = [ 2397 "byteorder", 2398 "num-traits", ··· 2401 2402 [[package]] 2403 name = "rmpv" 2404 - version = "1.0.0" 2405 source = "registry+https://github.com/rust-lang/crates.io-index" 2406 - checksum = "de8813b3a2f95c5138fe5925bfb8784175d88d6bff059ba8ce090aa891319754" 2407 dependencies = [ 2408 "num-traits", 2409 "rmp", ··· 2444 "tokio-util", 2445 "ubyte", 2446 "version_check", 2447 - "yansi", 2448 ] 2449 2450 [[package]] ··· 2458 "proc-macro2", 2459 "quote", 2460 "rocket_http", 2461 - "syn 2.0.23", 2462 "unicode-xid", 2463 ] 2464 ··· 2529 2530 [[package]] 2531 name = "rustix" 2532 - version = "0.37.22" 2533 source = "registry+https://github.com/rust-lang/crates.io-index" 2534 - checksum = "8818fa822adcc98b18fedbb3632a6a33213c070556b5aa7c4c8cc21cff565c4c" 2535 dependencies = [ 2536 "bitflags 1.3.2", 2537 "errno", ··· 2543 2544 [[package]] 2545 name = "rustix" 2546 - version = "0.38.2" 2547 source = "registry+https://github.com/rust-lang/crates.io-index" 2548 - checksum = "aabcb0461ebd01d6b79945797c27f8529082226cb630a9865a71870ff63532a4" 2549 dependencies = [ 2550 - "bitflags 2.3.3", 2551 "errno", 2552 "libc", 2553 - "linux-raw-sys 0.4.3", 2554 "windows-sys", 2555 ] 2556 2557 [[package]] 2558 name = "rustls" 2559 - version = "0.21.2" 2560 source = "registry+https://github.com/rust-lang/crates.io-index" 2561 - checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" 2562 dependencies = [ 2563 "log", 2564 "ring", ··· 2577 2578 [[package]] 2579 name = "rustls-webpki" 2580 - version = "0.100.1" 2581 source = "registry+https://github.com/rust-lang/crates.io-index" 2582 - checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" 2583 dependencies = [ 2584 "ring", 2585 "untrusted", ··· 2587 2588 [[package]] 2589 name = "rustversion" 2590 - version = "1.0.13" 2591 source = "registry+https://github.com/rust-lang/crates.io-index" 2592 - checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f" 2593 2594 [[package]] 2595 name = "ryu" 2596 - version = "1.0.14" 2597 source = "registry+https://github.com/rust-lang/crates.io-index" 2598 - checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9" 2599 2600 [[package]] 2601 name = "same-file" ··· 2632 2633 [[package]] 2634 name = "scopeguard" 2635 - version = "1.1.0" 2636 source = "registry+https://github.com/rust-lang/crates.io-index" 2637 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2638 2639 [[package]] 2640 name = "sct" ··· 2648 2649 [[package]] 2650 name = "security-framework" 2651 - version = "2.9.1" 2652 source = "registry+https://github.com/rust-lang/crates.io-index" 2653 - checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" 2654 dependencies = [ 2655 "bitflags 1.3.2", 2656 "core-foundation", ··· 2661 2662 [[package]] 2663 name = "security-framework-sys" 2664 - version = "2.9.0" 2665 source = "registry+https://github.com/rust-lang/crates.io-index" 2666 - checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 2667 dependencies = [ 2668 "core-foundation-sys", 2669 "libc", ··· 2671 2672 [[package]] 2673 name = "semver" 2674 - version = "1.0.17" 2675 source = "registry+https://github.com/rust-lang/crates.io-index" 2676 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 2677 2678 [[package]] 2679 name = "serde" 2680 - version = "1.0.166" 2681 source = "registry+https://github.com/rust-lang/crates.io-index" 2682 - checksum = "d01b7404f9d441d3ad40e6a636a7782c377d2abdbe4fa2440e2edcc2f4f10db8" 2683 dependencies = [ 2684 "serde_derive", 2685 ] ··· 2696 2697 [[package]] 2698 name = "serde_derive" 2699 - version = "1.0.166" 2700 source = "registry+https://github.com/rust-lang/crates.io-index" 2701 - checksum = "5dd83d6dde2b6b2d466e14d9d1acce8816dedee94f735eac6395808b3483c6d6" 2702 dependencies = [ 2703 "proc-macro2", 2704 "quote", 2705 - "syn 2.0.23", 2706 ] 2707 2708 [[package]] 2709 name = "serde_json" 2710 - version = "1.0.99" 2711 source = "registry+https://github.com/rust-lang/crates.io-index" 2712 - checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3" 2713 dependencies = [ 2714 "itoa", 2715 "ryu", ··· 2781 2782 [[package]] 2783 name = "signal-hook" 2784 - version = "0.3.15" 2785 source = "registry+https://github.com/rust-lang/crates.io-index" 2786 - checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 2787 dependencies = [ 2788 "libc", 2789 "signal-hook-registry", ··· 2827 2828 [[package]] 2829 name = "smallvec" 2830 - version = "1.10.0" 2831 source = "registry+https://github.com/rust-lang/crates.io-index" 2832 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2833 2834 [[package]] 2835 name = "socket2" ··· 2906 2907 [[package]] 2908 name = "syn" 2909 - version = "2.0.23" 2910 source = "registry+https://github.com/rust-lang/crates.io-index" 2911 - checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737" 2912 dependencies = [ 2913 "proc-macro2", 2914 "quote", ··· 2930 2931 [[package]] 2932 name = "tempfile" 2933 - version = "3.6.0" 2934 source = "registry+https://github.com/rust-lang/crates.io-index" 2935 - checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 2936 dependencies = [ 2937 - "autocfg", 2938 "cfg-if", 2939 - "fastrand", 2940 "redox_syscall", 2941 - "rustix 0.37.22", 2942 "windows-sys", 2943 ] 2944 2945 [[package]] 2946 name = "thiserror" 2947 - version = "1.0.40" 2948 source = "registry+https://github.com/rust-lang/crates.io-index" 2949 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2950 dependencies = [ 2951 "thiserror-impl", 2952 ] 2953 2954 [[package]] 2955 name = "thiserror-impl" 2956 - version = "1.0.40" 2957 source = "registry+https://github.com/rust-lang/crates.io-index" 2958 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2959 dependencies = [ 2960 "proc-macro2", 2961 "quote", 2962 - "syn 2.0.23", 2963 ] 2964 2965 [[package]] ··· 2983 2984 [[package]] 2985 name = "time" 2986 - version = "0.3.22" 2987 source = "registry+https://github.com/rust-lang/crates.io-index" 2988 - checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd" 2989 dependencies = [ 2990 "itoa", 2991 "libc", 2992 "num_threads", ··· 3003 3004 [[package]] 3005 name = "time-macros" 3006 - version = "0.2.9" 3007 source = "registry+https://github.com/rust-lang/crates.io-index" 3008 - checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 3009 dependencies = [ 3010 "time-core", 3011 ] ··· 3027 3028 [[package]] 3029 name = "tokio" 3030 - version = "1.29.1" 3031 source = "registry+https://github.com/rust-lang/crates.io-index" 3032 - checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 3033 dependencies = [ 3034 - "autocfg", 3035 "backtrace", 3036 "bytes", 3037 "libc", ··· 3040 "parking_lot", 3041 "pin-project-lite", 3042 "signal-hook-registry", 3043 - "socket2 0.4.9", 3044 "tokio-macros", 3045 "windows-sys", 3046 ] ··· 3053 dependencies = [ 3054 "proc-macro2", 3055 "quote", 3056 - "syn 2.0.23", 3057 ] 3058 3059 [[package]] ··· 3127 3128 [[package]] 3129 name = "toml" 3130 - version = "0.7.5" 3131 source = "registry+https://github.com/rust-lang/crates.io-index" 3132 - checksum = "1ebafdf5ad1220cb59e7d17cf4d2c72015297b75b19a10472f99b89225089240" 3133 dependencies = [ 3134 "serde", 3135 "serde_spanned", ··· 3148 3149 [[package]] 3150 name = "toml_edit" 3151 - version = "0.19.11" 3152 source = "registry+https://github.com/rust-lang/crates.io-index" 3153 - checksum = "266f016b7f039eec8a1a80dfe6156b633d208b9fccca5e4db1d6775b0c4e34a7" 3154 dependencies = [ 3155 "indexmap 2.0.0", 3156 "serde", ··· 3198 dependencies = [ 3199 "proc-macro2", 3200 "quote", 3201 - "syn 2.0.23", 3202 ] 3203 3204 [[package]] ··· 3327 3328 [[package]] 3329 name = "ucd-trie" 3330 - version = "0.1.5" 3331 source = "registry+https://github.com/rust-lang/crates.io-index" 3332 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 3333 3334 [[package]] 3335 name = "uncased" ··· 3349 3350 [[package]] 3351 name = "unicode-ident" 3352 - version = "1.0.10" 3353 source = "registry+https://github.com/rust-lang/crates.io-index" 3354 - checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" 3355 3356 [[package]] 3357 name = "unicode-normalization" ··· 3394 3395 [[package]] 3396 name = "uuid" 3397 - version = "1.4.0" 3398 source = "registry+https://github.com/rust-lang/crates.io-index" 3399 - checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be" 3400 dependencies = [ 3401 "getrandom", 3402 ] ··· 3513 3514 [[package]] 3515 name = "wasi" 3516 - version = "0.10.2+wasi-snapshot-preview1" 3517 - source = "registry+https://github.com/rust-lang/crates.io-index" 3518 - checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 3519 - 3520 - [[package]] 3521 - name = "wasi" 3522 version = "0.11.0+wasi-snapshot-preview1" 3523 source = "registry+https://github.com/rust-lang/crates.io-index" 3524 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ··· 3544 "once_cell", 3545 "proc-macro2", 3546 "quote", 3547 - "syn 2.0.23", 3548 "wasm-bindgen-shared", 3549 ] 3550 ··· 3578 dependencies = [ 3579 "proc-macro2", 3580 "quote", 3581 - "syn 2.0.23", 3582 "wasm-bindgen-backend", 3583 "wasm-bindgen-shared", 3584 ] ··· 3756 3757 [[package]] 3758 name = "winnow" 3759 - version = "0.4.7" 3760 source = "registry+https://github.com/rust-lang/crates.io-index" 3761 - checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448" 3762 dependencies = [ 3763 "memchr", 3764 ] ··· 3787 version = "0.5.1" 3788 source = "registry+https://github.com/rust-lang/crates.io-index" 3789 checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 3790 3791 [[package]] 3792 name = "yubico"
··· 19 20 [[package]] 21 name = "aho-corasick" 22 + version = "1.0.3" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c" 25 dependencies = [ 26 "memchr", 27 ] ··· 58 59 [[package]] 60 name = "argon2" 61 + version = "0.5.1" 62 source = "registry+https://github.com/rust-lang/crates.io-index" 63 + checksum = "b2e554a8638bdc1e4eae9984845306cc95f8a9208ba8d49c3859fd958b46774d" 64 dependencies = [ 65 "base64ct", 66 "blake2", 67 + "cpufeatures", 68 "password-hash", 69 ] 70 71 [[package]] 72 name = "async-channel" 73 + version = "1.9.0" 74 source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 76 dependencies = [ 77 "concurrent-queue", 78 "event-listener", ··· 81 82 [[package]] 83 name = "async-compression" 84 + version = "0.4.1" 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 + checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6" 87 dependencies = [ 88 "brotli", 89 "flate2", ··· 102 "async-lock", 103 "async-task", 104 "concurrent-queue", 105 + "fastrand 1.9.0", 106 "futures-lite", 107 "slab", 108 ] ··· 136 "log", 137 "parking", 138 "polling", 139 + "rustix 0.37.23", 140 "slab", 141 "socket2 0.4.9", 142 "waker-fn", ··· 144 145 [[package]] 146 name = "async-lock" 147 + version = "2.8.0" 148 source = "registry+https://github.com/rust-lang/crates.io-index" 149 + checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" 150 dependencies = [ 151 "event-listener", 152 ] ··· 164 "cfg-if", 165 "event-listener", 166 "futures-lite", 167 + "rustix 0.37.23", 168 "signal-hook", 169 "windows-sys", 170 ] ··· 215 dependencies = [ 216 "proc-macro2", 217 "quote", 218 + "syn 2.0.28", 219 ] 220 221 [[package]] ··· 226 227 [[package]] 228 name = "async-trait" 229 + version = "0.1.73" 230 source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" 232 dependencies = [ 233 "proc-macro2", 234 "quote", 235 + "syn 2.0.28", 236 ] 237 238 [[package]] ··· 300 301 [[package]] 302 name = "bitflags" 303 + version = "2.4.0" 304 source = "registry+https://github.com/rust-lang/crates.io-index" 305 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 306 307 [[package]] 308 name = "blake2" ··· 332 "async-lock", 333 "async-task", 334 "atomic-waker", 335 + "fastrand 1.9.0", 336 "futures-lite", 337 "log", 338 ] ··· 414 415 [[package]] 416 name = "cc" 417 + version = "1.0.82" 418 source = "registry+https://github.com/rust-lang/crates.io-index" 419 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 420 + dependencies = [ 421 + "libc", 422 + ] 423 424 [[package]] 425 name = "cfg-if" ··· 545 546 [[package]] 547 name = "cpufeatures" 548 + version = "0.2.9" 549 source = "registry+https://github.com/rust-lang/crates.io-index" 550 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 551 dependencies = [ 552 "libc", 553 ] ··· 628 629 [[package]] 630 name = "dashmap" 631 + version = "5.5.0" 632 source = "registry+https://github.com/rust-lang/crates.io-index" 633 + checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" 634 dependencies = [ 635 "cfg-if", 636 + "hashbrown 0.14.0", 637 "lock_api", 638 "once_cell", 639 "parking_lot_core", ··· 652 checksum = "41b319d1b62ffbd002e057f36bebd1f42b9f97927c9577461d855f3513c4289f" 653 654 [[package]] 655 + name = "deranged" 656 + version = "0.3.7" 657 + source = "registry+https://github.com/rust-lang/crates.io-index" 658 + checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" 659 + 660 + [[package]] 661 name = "devise" 662 version = "0.4.1" 663 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 683 source = "registry+https://github.com/rust-lang/crates.io-index" 684 checksum = "35b50dba0afdca80b187392b24f2499a88c336d5a8493e4b4ccfb608708be56a" 685 dependencies = [ 686 + "bitflags 2.4.0", 687 "proc-macro2", 688 "proc-macro2-diagnostics", 689 "quote", 690 + "syn 2.0.28", 691 ] 692 693 [[package]] ··· 696 source = "registry+https://github.com/rust-lang/crates.io-index" 697 checksum = "f7a532c1f99a0f596f6960a60d1e119e91582b24b39e2d83a190e61262c3ef0c" 698 dependencies = [ 699 + "bitflags 2.4.0", 700 "byteorder", 701 "chrono", 702 "diesel_derives", ··· 719 "diesel_table_macro_syntax", 720 "proc-macro2", 721 "quote", 722 + "syn 2.0.28", 723 ] 724 725 [[package]] ··· 749 source = "registry+https://github.com/rust-lang/crates.io-index" 750 checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5" 751 dependencies = [ 752 + "syn 2.0.28", 753 ] 754 755 [[package]] ··· 771 772 [[package]] 773 name = "either" 774 + version = "1.9.0" 775 source = "registry+https://github.com/rust-lang/crates.io-index" 776 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 777 778 [[package]] 779 name = "email-encoding" ··· 817 818 [[package]] 819 name = "equivalent" 820 + version = "1.0.1" 821 source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 823 824 [[package]] 825 name = "errno" 826 + version = "0.3.2" 827 source = "registry+https://github.com/rust-lang/crates.io-index" 828 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 829 dependencies = [ 830 "errno-dragonfly", 831 "libc", ··· 867 ] 868 869 [[package]] 870 + name = "fastrand" 871 + version = "2.0.0" 872 + source = "registry+https://github.com/rust-lang/crates.io-index" 873 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 874 + 875 + [[package]] 876 name = "fern" 877 version = "0.6.2" 878 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 990 source = "registry+https://github.com/rust-lang/crates.io-index" 991 checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 992 dependencies = [ 993 + "fastrand 1.9.0", 994 "futures-core", 995 "futures-io", 996 "memchr", ··· 1007 dependencies = [ 1008 "proc-macro2", 1009 "quote", 1010 + "syn 2.0.28", 1011 ] 1012 1013 [[package]] ··· 1077 dependencies = [ 1078 "cfg-if", 1079 "libc", 1080 + "wasi", 1081 ] 1082 1083 [[package]] ··· 1106 1107 [[package]] 1108 name = "governor" 1109 + version = "0.6.0" 1110 source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4" 1112 dependencies = [ 1113 "cfg-if", 1114 "dashmap", ··· 1214 1215 [[package]] 1216 name = "html5gum" 1217 + version = "0.5.7" 1218 source = "registry+https://github.com/rust-lang/crates.io-index" 1219 + checksum = "4c4e556171a058ba117bbe88b059fb37b6289023e007d2903ea6dca3a3cbff14" 1220 dependencies = [ 1221 "jetscii", 1222 ] ··· 1251 1252 [[package]] 1253 name = "httpdate" 1254 + version = "1.0.3" 1255 source = "registry+https://github.com/rust-lang/crates.io-index" 1256 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1257 1258 [[package]] 1259 name = "hyper" ··· 1419 1420 [[package]] 1421 name = "is-terminal" 1422 + version = "0.4.9" 1423 source = "registry+https://github.com/rust-lang/crates.io-index" 1424 + checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 1425 dependencies = [ 1426 "hermit-abi", 1427 + "rustix 0.38.8", 1428 "windows-sys", 1429 ] 1430 1431 [[package]] 1432 name = "itoa" 1433 + version = "1.0.9" 1434 source = "registry+https://github.com/rust-lang/crates.io-index" 1435 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1436 1437 [[package]] 1438 name = "jetscii" ··· 1500 "base64 0.21.2", 1501 "email-encoding", 1502 "email_address", 1503 + "fastrand 1.9.0", 1504 "futures-io", 1505 "futures-util", 1506 "hostname", ··· 1559 1560 [[package]] 1561 name = "linux-raw-sys" 1562 + version = "0.4.5" 1563 source = "registry+https://github.com/rust-lang/crates.io-index" 1564 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 1565 1566 [[package]] 1567 name = "lock_api" ··· 1575 1576 [[package]] 1577 name = "log" 1578 + version = "0.4.20" 1579 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1581 dependencies = [ 1582 "value-bag", 1583 ] ··· 1607 ] 1608 1609 [[package]] 1610 + name = "mach2" 1611 + version = "0.4.1" 1612 source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 1614 dependencies = [ 1615 "libc", 1616 ] ··· 1627 source = "registry+https://github.com/rust-lang/crates.io-index" 1628 checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1629 dependencies = [ 1630 + "regex-automata 0.1.10", 1631 ] 1632 1633 [[package]] ··· 1700 checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1701 dependencies = [ 1702 "libc", 1703 + "wasi", 1704 "windows-sys", 1705 ] 1706 ··· 1803 dependencies = [ 1804 "proc-macro2", 1805 "quote", 1806 + "syn 2.0.28", 1807 ] 1808 1809 [[package]] ··· 1818 1819 [[package]] 1820 name = "num-traits" 1821 + version = "0.2.16" 1822 source = "registry+https://github.com/rust-lang/crates.io-index" 1823 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1824 dependencies = [ 1825 "autocfg", 1826 ] ··· 1861 1862 [[package]] 1863 name = "openssl" 1864 + version = "0.10.56" 1865 source = "registry+https://github.com/rust-lang/crates.io-index" 1866 + checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 1867 dependencies = [ 1868 "bitflags 1.3.2", 1869 "cfg-if", ··· 1882 dependencies = [ 1883 "proc-macro2", 1884 "quote", 1885 + "syn 2.0.28", 1886 ] 1887 1888 [[package]] ··· 1893 1894 [[package]] 1895 name = "openssl-src" 1896 + version = "111.27.0+1.1.1v" 1897 source = "registry+https://github.com/rust-lang/crates.io-index" 1898 + checksum = "06e8f197c82d7511c5b014030c9b1efeda40d7d5f99d23b4ceed3524a5e63f02" 1899 dependencies = [ 1900 "cc", 1901 ] 1902 1903 [[package]] 1904 name = "openssl-sys" 1905 + version = "0.9.91" 1906 source = "registry+https://github.com/rust-lang/crates.io-index" 1907 + checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 1908 dependencies = [ 1909 "cc", 1910 "libc", ··· 1970 1971 [[package]] 1972 name = "paste" 1973 + version = "1.0.14" 1974 source = "registry+https://github.com/rust-lang/crates.io-index" 1975 + checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 1976 1977 [[package]] 1978 name = "pear" 1979 + version = "0.2.7" 1980 source = "registry+https://github.com/rust-lang/crates.io-index" 1981 + checksum = "61a386cd715229d399604b50d1361683fe687066f42d56f54be995bc6868f71c" 1982 dependencies = [ 1983 "inlinable_string", 1984 "pear_codegen", 1985 + "yansi 1.0.0-rc.1", 1986 ] 1987 1988 [[package]] 1989 name = "pear_codegen" 1990 + version = "0.2.7" 1991 source = "registry+https://github.com/rust-lang/crates.io-index" 1992 + checksum = "da9f0f13dac8069c139e8300a6510e3f4143ecf5259c60b116a9b271b4ca0d54" 1993 dependencies = [ 1994 "proc-macro2", 1995 "proc-macro2-diagnostics", 1996 "quote", 1997 + "syn 2.0.28", 1998 ] 1999 2000 [[package]] ··· 2014 2015 [[package]] 2016 name = "pest" 2017 + version = "2.7.2" 2018 source = "registry+https://github.com/rust-lang/crates.io-index" 2019 + checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" 2020 dependencies = [ 2021 "thiserror", 2022 "ucd-trie", ··· 2024 2025 [[package]] 2026 name = "pest_derive" 2027 + version = "2.7.2" 2028 source = "registry+https://github.com/rust-lang/crates.io-index" 2029 + checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853" 2030 dependencies = [ 2031 "pest", 2032 "pest_generator", ··· 2034 2035 [[package]] 2036 name = "pest_generator" 2037 + version = "2.7.2" 2038 source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929" 2040 dependencies = [ 2041 "pest", 2042 "pest_meta", 2043 "proc-macro2", 2044 "quote", 2045 + "syn 2.0.28", 2046 ] 2047 2048 [[package]] 2049 name = "pest_meta" 2050 + version = "2.7.2" 2051 source = "registry+https://github.com/rust-lang/crates.io-index" 2052 + checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48" 2053 dependencies = [ 2054 "once_cell", 2055 "pest", ··· 2102 2103 [[package]] 2104 name = "pin-project-lite" 2105 + version = "0.2.12" 2106 source = "registry+https://github.com/rust-lang/crates.io-index" 2107 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 2108 2109 [[package]] 2110 name = "pin-utils" ··· 2151 2152 [[package]] 2153 name = "proc-macro2" 2154 + version = "1.0.66" 2155 source = "registry+https://github.com/rust-lang/crates.io-index" 2156 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 2157 dependencies = [ 2158 "unicode-ident", 2159 ] 2160 2161 [[package]] 2162 name = "proc-macro2-diagnostics" 2163 + version = "0.10.1" 2164 source = "registry+https://github.com/rust-lang/crates.io-index" 2165 + checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 2166 dependencies = [ 2167 "proc-macro2", 2168 "quote", 2169 + "syn 2.0.28", 2170 "version_check", 2171 + "yansi 1.0.0-rc.1", 2172 ] 2173 2174 [[package]] ··· 2189 2190 [[package]] 2191 name = "quanta" 2192 + version = "0.11.1" 2193 source = "registry+https://github.com/rust-lang/crates.io-index" 2194 + checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" 2195 dependencies = [ 2196 "crossbeam-utils", 2197 "libc", 2198 + "mach2", 2199 "once_cell", 2200 "raw-cpuid", 2201 + "wasi", 2202 "web-sys", 2203 "winapi", 2204 ] ··· 2211 2212 [[package]] 2213 name = "quote" 2214 + version = "1.0.32" 2215 source = "registry+https://github.com/rust-lang/crates.io-index" 2216 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 2217 dependencies = [ 2218 "proc-macro2", 2219 ] ··· 2285 2286 [[package]] 2287 name = "ref-cast" 2288 + version = "1.0.19" 2289 source = "registry+https://github.com/rust-lang/crates.io-index" 2290 + checksum = "61ef7e18e8841942ddb1cf845054f8008410030a3997875d9e49b7a363063df1" 2291 dependencies = [ 2292 "ref-cast-impl", 2293 ] 2294 2295 [[package]] 2296 name = "ref-cast-impl" 2297 + version = "1.0.19" 2298 source = "registry+https://github.com/rust-lang/crates.io-index" 2299 + checksum = "2dfaf0c85b766276c797f3791f5bc6d5bd116b41d53049af2789666b0c0bc9fa" 2300 dependencies = [ 2301 "proc-macro2", 2302 "quote", 2303 + "syn 2.0.28", 2304 ] 2305 2306 [[package]] 2307 name = "regex" 2308 + version = "1.9.3" 2309 source = "registry+https://github.com/rust-lang/crates.io-index" 2310 + checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 2311 dependencies = [ 2312 "aho-corasick", 2313 "memchr", 2314 + "regex-automata 0.3.6", 2315 + "regex-syntax 0.7.4", 2316 ] 2317 2318 [[package]] ··· 2325 ] 2326 2327 [[package]] 2328 + name = "regex-automata" 2329 + version = "0.3.6" 2330 + source = "registry+https://github.com/rust-lang/crates.io-index" 2331 + checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 2332 + dependencies = [ 2333 + "aho-corasick", 2334 + "memchr", 2335 + "regex-syntax 0.7.4", 2336 + ] 2337 + 2338 + [[package]] 2339 name = "regex-syntax" 2340 version = "0.6.29" 2341 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2343 2344 [[package]] 2345 name = "regex-syntax" 2346 + version = "0.7.4" 2347 source = "registry+https://github.com/rust-lang/crates.io-index" 2348 + checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 2349 2350 [[package]] 2351 name = "reqwest" ··· 2418 2419 [[package]] 2420 name = "rmp" 2421 + version = "0.8.12" 2422 source = "registry+https://github.com/rust-lang/crates.io-index" 2423 + checksum = "7f9860a6cc38ed1da53456442089b4dfa35e7cedaa326df63017af88385e6b20" 2424 dependencies = [ 2425 "byteorder", 2426 "num-traits", ··· 2429 2430 [[package]] 2431 name = "rmpv" 2432 + version = "1.0.1" 2433 source = "registry+https://github.com/rust-lang/crates.io-index" 2434 + checksum = "2e0e0214a4a2b444ecce41a4025792fc31f77c7bb89c46d253953ea8c65701ec" 2435 dependencies = [ 2436 "num-traits", 2437 "rmp", ··· 2472 "tokio-util", 2473 "ubyte", 2474 "version_check", 2475 + "yansi 0.5.1", 2476 ] 2477 2478 [[package]] ··· 2486 "proc-macro2", 2487 "quote", 2488 "rocket_http", 2489 + "syn 2.0.28", 2490 "unicode-xid", 2491 ] 2492 ··· 2557 2558 [[package]] 2559 name = "rustix" 2560 + version = "0.37.23" 2561 source = "registry+https://github.com/rust-lang/crates.io-index" 2562 + checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 2563 dependencies = [ 2564 "bitflags 1.3.2", 2565 "errno", ··· 2571 2572 [[package]] 2573 name = "rustix" 2574 + version = "0.38.8" 2575 source = "registry+https://github.com/rust-lang/crates.io-index" 2576 + checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 2577 dependencies = [ 2578 + "bitflags 2.4.0", 2579 "errno", 2580 "libc", 2581 + "linux-raw-sys 0.4.5", 2582 "windows-sys", 2583 ] 2584 2585 [[package]] 2586 name = "rustls" 2587 + version = "0.21.6" 2588 source = "registry+https://github.com/rust-lang/crates.io-index" 2589 + checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" 2590 dependencies = [ 2591 "log", 2592 "ring", ··· 2605 2606 [[package]] 2607 name = "rustls-webpki" 2608 + version = "0.101.3" 2609 source = "registry+https://github.com/rust-lang/crates.io-index" 2610 + checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" 2611 dependencies = [ 2612 "ring", 2613 "untrusted", ··· 2615 2616 [[package]] 2617 name = "rustversion" 2618 + version = "1.0.14" 2619 source = "registry+https://github.com/rust-lang/crates.io-index" 2620 + checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 2621 2622 [[package]] 2623 name = "ryu" 2624 + version = "1.0.15" 2625 source = "registry+https://github.com/rust-lang/crates.io-index" 2626 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 2627 2628 [[package]] 2629 name = "same-file" ··· 2660 2661 [[package]] 2662 name = "scopeguard" 2663 + version = "1.2.0" 2664 source = "registry+https://github.com/rust-lang/crates.io-index" 2665 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2666 2667 [[package]] 2668 name = "sct" ··· 2676 2677 [[package]] 2678 name = "security-framework" 2679 + version = "2.9.2" 2680 source = "registry+https://github.com/rust-lang/crates.io-index" 2681 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 2682 dependencies = [ 2683 "bitflags 1.3.2", 2684 "core-foundation", ··· 2689 2690 [[package]] 2691 name = "security-framework-sys" 2692 + version = "2.9.1" 2693 source = "registry+https://github.com/rust-lang/crates.io-index" 2694 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 2695 dependencies = [ 2696 "core-foundation-sys", 2697 "libc", ··· 2699 2700 [[package]] 2701 name = "semver" 2702 + version = "1.0.18" 2703 source = "registry+https://github.com/rust-lang/crates.io-index" 2704 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 2705 2706 [[package]] 2707 name = "serde" 2708 + version = "1.0.183" 2709 source = "registry+https://github.com/rust-lang/crates.io-index" 2710 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 2711 dependencies = [ 2712 "serde_derive", 2713 ] ··· 2724 2725 [[package]] 2726 name = "serde_derive" 2727 + version = "1.0.183" 2728 source = "registry+https://github.com/rust-lang/crates.io-index" 2729 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 2730 dependencies = [ 2731 "proc-macro2", 2732 "quote", 2733 + "syn 2.0.28", 2734 ] 2735 2736 [[package]] 2737 name = "serde_json" 2738 + version = "1.0.104" 2739 source = "registry+https://github.com/rust-lang/crates.io-index" 2740 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 2741 dependencies = [ 2742 "itoa", 2743 "ryu", ··· 2809 2810 [[package]] 2811 name = "signal-hook" 2812 + version = "0.3.17" 2813 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 + checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 2815 dependencies = [ 2816 "libc", 2817 "signal-hook-registry", ··· 2855 2856 [[package]] 2857 name = "smallvec" 2858 + version = "1.11.0" 2859 source = "registry+https://github.com/rust-lang/crates.io-index" 2860 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 2861 2862 [[package]] 2863 name = "socket2" ··· 2934 2935 [[package]] 2936 name = "syn" 2937 + version = "2.0.28" 2938 source = "registry+https://github.com/rust-lang/crates.io-index" 2939 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 2940 dependencies = [ 2941 "proc-macro2", 2942 "quote", ··· 2958 2959 [[package]] 2960 name = "tempfile" 2961 + version = "3.7.1" 2962 source = "registry+https://github.com/rust-lang/crates.io-index" 2963 + checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 2964 dependencies = [ 2965 "cfg-if", 2966 + "fastrand 2.0.0", 2967 "redox_syscall", 2968 + "rustix 0.38.8", 2969 "windows-sys", 2970 ] 2971 2972 [[package]] 2973 name = "thiserror" 2974 + version = "1.0.44" 2975 source = "registry+https://github.com/rust-lang/crates.io-index" 2976 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 2977 dependencies = [ 2978 "thiserror-impl", 2979 ] 2980 2981 [[package]] 2982 name = "thiserror-impl" 2983 + version = "1.0.44" 2984 source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 2986 dependencies = [ 2987 "proc-macro2", 2988 "quote", 2989 + "syn 2.0.28", 2990 ] 2991 2992 [[package]] ··· 3010 3011 [[package]] 3012 name = "time" 3013 + version = "0.3.25" 3014 source = "registry+https://github.com/rust-lang/crates.io-index" 3015 + checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 3016 dependencies = [ 3017 + "deranged", 3018 "itoa", 3019 "libc", 3020 "num_threads", ··· 3031 3032 [[package]] 3033 name = "time-macros" 3034 + version = "0.2.11" 3035 source = "registry+https://github.com/rust-lang/crates.io-index" 3036 + checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 3037 dependencies = [ 3038 "time-core", 3039 ] ··· 3055 3056 [[package]] 3057 name = "tokio" 3058 + version = "1.31.0" 3059 source = "registry+https://github.com/rust-lang/crates.io-index" 3060 + checksum = "40de3a2ba249dcb097e01be5e67a5ff53cf250397715a071a81543e8a832a920" 3061 dependencies = [ 3062 "backtrace", 3063 "bytes", 3064 "libc", ··· 3067 "parking_lot", 3068 "pin-project-lite", 3069 "signal-hook-registry", 3070 + "socket2 0.5.3", 3071 "tokio-macros", 3072 "windows-sys", 3073 ] ··· 3080 dependencies = [ 3081 "proc-macro2", 3082 "quote", 3083 + "syn 2.0.28", 3084 ] 3085 3086 [[package]] ··· 3154 3155 [[package]] 3156 name = "toml" 3157 + version = "0.7.6" 3158 source = "registry+https://github.com/rust-lang/crates.io-index" 3159 + checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" 3160 dependencies = [ 3161 "serde", 3162 "serde_spanned", ··· 3175 3176 [[package]] 3177 name = "toml_edit" 3178 + version = "0.19.14" 3179 source = "registry+https://github.com/rust-lang/crates.io-index" 3180 + checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" 3181 dependencies = [ 3182 "indexmap 2.0.0", 3183 "serde", ··· 3225 dependencies = [ 3226 "proc-macro2", 3227 "quote", 3228 + "syn 2.0.28", 3229 ] 3230 3231 [[package]] ··· 3354 3355 [[package]] 3356 name = "ucd-trie" 3357 + version = "0.1.6" 3358 source = "registry+https://github.com/rust-lang/crates.io-index" 3359 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 3360 3361 [[package]] 3362 name = "uncased" ··· 3376 3377 [[package]] 3378 name = "unicode-ident" 3379 + version = "1.0.11" 3380 source = "registry+https://github.com/rust-lang/crates.io-index" 3381 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 3382 3383 [[package]] 3384 name = "unicode-normalization" ··· 3421 3422 [[package]] 3423 name = "uuid" 3424 + version = "1.4.1" 3425 source = "registry+https://github.com/rust-lang/crates.io-index" 3426 + checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" 3427 dependencies = [ 3428 "getrandom", 3429 ] ··· 3540 3541 [[package]] 3542 name = "wasi" 3543 version = "0.11.0+wasi-snapshot-preview1" 3544 source = "registry+https://github.com/rust-lang/crates.io-index" 3545 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ··· 3565 "once_cell", 3566 "proc-macro2", 3567 "quote", 3568 + "syn 2.0.28", 3569 "wasm-bindgen-shared", 3570 ] 3571 ··· 3599 dependencies = [ 3600 "proc-macro2", 3601 "quote", 3602 + "syn 2.0.28", 3603 "wasm-bindgen-backend", 3604 "wasm-bindgen-shared", 3605 ] ··· 3777 3778 [[package]] 3779 name = "winnow" 3780 + version = "0.5.10" 3781 source = "registry+https://github.com/rust-lang/crates.io-index" 3782 + checksum = "5504cc7644f4b593cbc05c4a55bf9bd4e94b867c3c0bd440934174d50482427d" 3783 dependencies = [ 3784 "memchr", 3785 ] ··· 3808 version = "0.5.1" 3809 source = "registry+https://github.com/rust-lang/crates.io-index" 3810 checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 3811 + 3812 + [[package]] 3813 + name = "yansi" 3814 + version = "1.0.0-rc.1" 3815 + source = "registry+https://github.com/rust-lang/crates.io-index" 3816 + checksum = "1367295b8f788d371ce2dbc842c7b709c73ee1364d30351dd300ec2203b12377" 3817 3818 [[package]] 3819 name = "yubico"
+2 -2
pkgs/tools/security/vaultwarden/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "vaultwarden"; 12 - version = "1.29.1"; 13 14 src = fetchFromGitHub { 15 owner = "dani-garcia"; 16 repo = pname; 17 rev = version; 18 - hash = "sha256-uASoPZRBQ9IKJHtMGeeZzmr0fCYDWl56EzaJVj6LwMk="; 19 }; 20 21 cargoLock = {
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "vaultwarden"; 12 + version = "1.29.2"; 13 14 src = fetchFromGitHub { 15 owner = "dani-garcia"; 16 repo = pname; 17 rev = version; 18 + hash = "sha256-ByMPS68GBOvjB/RpoLAvgE+NcbbIa1qfU1TQ4yhbH+I="; 19 }; 20 21 cargoLock = {
+4 -4
pkgs/tools/security/vaultwarden/webvault.nix
··· 7 }: 8 9 let 10 - version = "2023.5.0"; 11 12 bw_web_builds = fetchFromGitHub { 13 owner = "dani-garcia"; 14 repo = "bw_web_builds"; 15 rev = "v${version}"; 16 - hash = "sha256-dH+d206nDaUrX2FcpPTegAtlQvquxk+tfQt3vJQlOjw="; 17 }; 18 in buildNpmPackage rec { 19 pname = "vaultwarden-webvault"; ··· 23 owner = "bitwarden"; 24 repo = "clients"; 25 rev = "web-v${lib.removeSuffix "b" version}"; 26 - hash = "sha256-ELKpGSY4ZbgSk4vJnTiB+IOa8RQU8Ahy3A1mYsKtthU="; 27 }; 28 29 - npmDepsHash = "sha256-G8DEYPjEP3L4s0pr5n2ZTj8kkT0E7Po1BKhZ2hUdJuY="; 30 31 postPatch = '' 32 ln -s ${bw_web_builds}/{patches,resources} ..
··· 7 }: 8 9 let 10 + version = "2023.7.1"; 11 12 bw_web_builds = fetchFromGitHub { 13 owner = "dani-garcia"; 14 repo = "bw_web_builds"; 15 rev = "v${version}"; 16 + hash = "sha256-B7FGLKuwxldlHnIIzQbDjZT9cs5+lixo/fBtlexNLQc="; 17 }; 18 in buildNpmPackage rec { 19 pname = "vaultwarden-webvault"; ··· 23 owner = "bitwarden"; 24 repo = "clients"; 25 rev = "web-v${lib.removeSuffix "b" version}"; 26 + hash = "sha256-HEEUboaIY/Zi/wUhp9y7oIOuQl6csjo97eygTLPNfNo="; 27 }; 28 29 + npmDepsHash = "sha256-8Epkvjzllt//kdrKT4jUDOhj47Fnb0qSFU1qJthL2Mo="; 30 31 postPatch = '' 32 ln -s ${bw_web_builds}/{patches,resources} ..
+13 -3
pkgs/top-level/all-packages.nix
··· 11720 11721 oxker = callPackage ../applications/misc/oxker { }; 11722 11723 ovh-ttyrec = callPackage ../tools/misc/ovh-ttyrec { }; 11724 11725 ovito = libsForQt5.callPackage ../applications/graphics/ovito { ··· 17178 cargo-clone = callPackage ../development/tools/rust/cargo-clone { 17179 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 17180 }; 17181 cargo-component = callPackage ../development/tools/rust/cargo-component { }; 17182 cargo-cranky = callPackage ../development/tools/rust/cargo-cranky { }; 17183 cargo-criterion = callPackage ../development/tools/rust/cargo-criterion { }; ··· 18601 antlr4_9 18602 antlr4_10 18603 antlr4_11 18604 - antlr4_12; 18605 18606 - antlr4 = antlr4_12; 18607 18608 antlr = antlr4; 18609 ··· 39969 39970 # this is a wrapper for kicad.base and kicad.libraries 39971 kicad = callPackage ../applications/science/electronics/kicad { }; 39972 kicad-small = kicad.override { pname = "kicad-small"; with3d = false; }; 39973 kicad-unstable = kicad.override { pname = "kicad-unstable"; stable = false; }; 39974 - # mostly here so the kicad-unstable components (except packages3d) get built 39975 kicad-unstable-small = kicad.override { 39976 pname = "kicad-unstable-small"; 39977 stable = false; ··· 41330 41331 steamcontroller = callPackage ../misc/drivers/steamcontroller { }; 41332 41333 stern = callPackage ../applications/networking/cluster/stern { }; 41334 41335 streamripper = callPackage ../applications/audio/streamripper { }; ··· 42288 waylyrics = callPackage ../applications/audio/waylyrics { }; 42289 42290 gitrs = callPackage ../tools/misc/gitrs { }; 42291 42292 wttrbar = callPackage ../applications/misc/wttrbar { }; 42293
··· 11720 11721 oxker = callPackage ../applications/misc/oxker { }; 11722 11723 + oxlint = callPackage ../development/tools/oxlint { }; 11724 + 11725 ovh-ttyrec = callPackage ../tools/misc/ovh-ttyrec { }; 11726 11727 ovito = libsForQt5.callPackage ../applications/graphics/ovito { ··· 17180 cargo-clone = callPackage ../development/tools/rust/cargo-clone { 17181 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 17182 }; 17183 + cargo-codspeed = callPackage ../development/tools/rust/cargo-codspeed { }; 17184 cargo-component = callPackage ../development/tools/rust/cargo-component { }; 17185 cargo-cranky = callPackage ../development/tools/rust/cargo-cranky { }; 17186 cargo-criterion = callPackage ../development/tools/rust/cargo-criterion { }; ··· 18604 antlr4_9 18605 antlr4_10 18606 antlr4_11 18607 + antlr4_12 18608 + antlr4_13; 18609 18610 + antlr4 = antlr4_13; 18611 18612 antlr = antlr4; 18613 ··· 39973 39974 # this is a wrapper for kicad.base and kicad.libraries 39975 kicad = callPackage ../applications/science/electronics/kicad { }; 39976 + # this is the same but without the (sizable) 3D models library 39977 kicad-small = kicad.override { pname = "kicad-small"; with3d = false; }; 39978 + # this is the master branch at whatever point update.sh last updated versions.nix 39979 kicad-unstable = kicad.override { pname = "kicad-unstable"; stable = false; }; 39980 + # and a small version of that 39981 kicad-unstable-small = kicad.override { 39982 pname = "kicad-unstable-small"; 39983 stable = false; ··· 41336 41337 steamcontroller = callPackage ../misc/drivers/steamcontroller { }; 41338 41339 + stepreduce = callPackage ../applications/misc/stepreduce { }; 41340 + 41341 stern = callPackage ../applications/networking/cluster/stern { }; 41342 41343 streamripper = callPackage ../applications/audio/streamripper { }; ··· 42296 waylyrics = callPackage ../applications/audio/waylyrics { }; 42297 42298 gitrs = callPackage ../tools/misc/gitrs { }; 42299 + 42300 + dict-cc-py = callPackage ../applications/misc/dict-cc-py { }; 42301 42302 wttrbar = callPackage ../applications/misc/wttrbar { }; 42303
+6
pkgs/top-level/python-packages.nix
··· 4014 inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL; 4015 }; 4016 4017 openstep-plist = callPackage ../development/python-modules/openstep-plist { }; 4018 4019 glyphslib = callPackage ../development/python-modules/glyphslib { };
··· 4014 inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL; 4015 }; 4016 4017 + openllm = callPackage ../development/python-modules/openllm { }; 4018 + 4019 + openllm-client = callPackage ../development/python-modules/openllm-client { }; 4020 + 4021 + openllm-core = callPackage ../development/python-modules/openllm-core { }; 4022 + 4023 openstep-plist = callPackage ../development/python-modules/openstep-plist { }; 4024 4025 glyphslib = callPackage ../development/python-modules/glyphslib { };