Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
bbf876fe 56d5a48b

+1485 -922
+1 -1
maintainers/maintainer-list.nix
··· 13294 13294 }; 13295 13295 piturnah = { 13296 13296 email = "peterhebden6@gmail.com"; 13297 - github = "piturnah"; 13297 + github = "Piturnah"; 13298 13298 githubId = 20472367; 13299 13299 name = "Peter Hebden"; 13300 13300 };
+6
nixos/modules/services/network-filesystems/kubo.nix
··· 278 278 You can't set services.kubo.settings.Pinning.RemoteServices because the ``config replace`` subcommand used at startup does not work with it. 279 279 ''; 280 280 } 281 + { 282 + assertion = !((lib.versionAtLeast cfg.package.version "0.21") && (builtins.hasAttr "Experimental" cfg.settings) && (builtins.hasAttr "AcceleratedDHTClient" cfg.settings.Experimental)); 283 + message = '' 284 + The `services.kubo.settings.Experimental.AcceleratedDHTClient` option was renamed to `services.kubo.settings.Routing.AcceleratedDHTClient` in Kubo 0.21. 285 + ''; 286 + } 281 287 ]; 282 288 283 289 environment.systemPackages = [ cfg.package ];
+2 -2
pkgs/applications/audio/carla/default.nix
··· 26 26 27 27 stdenv.mkDerivation (finalAttrs: { 28 28 pname = "carla"; 29 - version = "2.5.5"; 29 + version = "2.5.6"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "falkTX"; 33 33 repo = finalAttrs.pname; 34 34 rev = "v${finalAttrs.version}"; 35 - hash = "sha256-kXQ0dv4KrwvfxdP73zimof9XKpAz5E6hQrFOjLG4hKU="; 35 + hash = "sha256-/ZIproky1AHJHvV62xWm0nrzNBOjvBBv93V0KespVjU="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/ft2-clone/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ft2-clone"; 16 - version = "1.68"; 16 + version = "1.69"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "8bitbubsy"; 20 20 repo = "ft2-clone"; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-mO8GrLyO7Zr9+lRy2WQ4OeRWDGmo22mPnZbajL78hJ8="; 22 + sha256 = "sha256-tm0yTh46UKnsjH9hv3cMW0YL2x3OTRL+14x4c7w124U="; 23 23 }; 24 24 25 25 # Adapt the linux-only CMakeLists to darwin (more reliable than make-macos.sh)
+15 -13
pkgs/applications/audio/kid3/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , chromaprint 1 + { 2 + chromaprint 5 3 , cmake 6 4 , docbook_xml_dtd_45 7 5 , docbook_xsl 6 + , fetchurl 8 7 , ffmpeg 9 8 , flac 10 9 , id3lib 10 + , lib 11 11 , libogg 12 12 , libvorbis 13 13 , libxslt ··· 20 20 , qtquickcontrols 21 21 , qttools 22 22 , readline 23 + , stdenv 23 24 , taglib 24 25 , wrapQtAppsHook 25 26 , zlib 26 27 }: 27 28 28 - stdenv.mkDerivation rec { 29 + stdenv.mkDerivation (finalAttrs: { 29 30 pname = "kid3"; 30 31 version = "3.9.4"; 31 32 32 33 src = fetchurl { 33 - url = "https://download.kde.org/stable/${pname}/${version}/${pname}-${version}.tar.xz"; 34 - sha256 = "sha256-xBCWDpYiXeChxIiMPqHG3CyiRau2kUdDJtzcPtvWpSA="; 34 + url = "https://download.kde.org/stable/kid3/${finalAttrs.version}/kid3-${finalAttrs.version}.tar.xz"; 35 + hash = "sha256-xBCWDpYiXeChxIiMPqHG3CyiRau2kUdDJtzcPtvWpSA="; 35 36 }; 36 37 37 38 nativeBuildInputs = [ ··· 42 43 python3 43 44 wrapQtAppsHook 44 45 ]; 46 + 45 47 buildInputs = [ 46 48 chromaprint 47 49 ffmpeg ··· 68 70 export DOCBOOKDIR="${docbook_xsl}/xml/xsl/docbook/" 69 71 ''; 70 72 71 - meta = with lib; { 73 + meta = { 74 + description = "A simple and powerful audio tag editor"; 72 75 homepage = "https://kid3.kde.org/"; 73 - description = "A simple and powerful audio tag editor"; 76 + license = lib.licenses.lgpl2Plus; 74 77 longDescription = '' 75 78 If you want to easily tag multiple MP3, Ogg/Vorbis, FLAC, MPC, MP4/AAC, 76 79 MP2, Opus, Speex, TrueAudio, WavPack, WMA, WAV and AIFF files (e.g. full ··· 100 103 - Edit synchronized lyrics and event timing codes, import and export 101 104 LRC files. 102 105 ''; 103 - license = licenses.lgpl2Plus; 104 - maintainers = [ maintainers.AndersonTorres ]; 105 - platforms = platforms.linux; 106 + maintainers = [ lib.maintainers.AndersonTorres ]; 107 + platforms = lib.platforms.linux; 106 108 }; 107 - } 109 + })
+1 -1
pkgs/applications/audio/mda-lv2/default.nix
··· 13 13 buildInputs = [ fftwSinglePrec lv2 ]; 14 14 15 15 meta = with lib; { 16 - homepage = "http://drobilla.net/software/mda-lv2/"; 16 + homepage = "http://drobilla.net/software/mda-lv2.html"; 17 17 description = "An LV2 port of the MDA plugins by Paul Kellett"; 18 18 license = licenses.gpl2Plus; 19 19 maintainers = [ maintainers.goibhniu ];
+41 -16
pkgs/applications/audio/praat/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, wrapGAppsHook, alsa-lib, gtk3, libpulseaudio }: 1 + { 2 + alsa-lib 3 + , fetchFromGitHub 4 + , gtk3 5 + , lib 6 + , libpulseaudio 7 + , pkg-config 8 + , stdenv 9 + , wrapGAppsHook 10 + }: 2 11 3 - stdenv.mkDerivation rec { 12 + stdenv.mkDerivation (finalAttrs: { 4 13 pname = "praat"; 5 - version = "6.3.10"; 14 + version = "6.3.14"; 6 15 7 16 src = fetchFromGitHub { 8 17 owner = "praat"; 9 18 repo = "praat"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-wnw8GKMukiraZgMMzd3S2NldC/cnRSILNo+D1Rqhr4k="; 19 + rev = "v${finalAttrs.version}"; 20 + hash = "sha256-HN4w7n0nh7voL/QKhGQwCcGfzn+nyFOwluESlP3B6VM="; 12 21 }; 13 22 14 - configurePhase = '' 15 - cp makefiles/makefile.defs.linux.pulse makefile.defs 16 - ''; 23 + nativeBuildInputs = [ 24 + pkg-config 25 + wrapGAppsHook 26 + ]; 27 + 28 + buildInputs = [ 29 + alsa-lib 30 + gtk3 31 + libpulseaudio 32 + ]; 17 33 18 34 makeFlags = [ 19 35 "AR=${stdenv.cc.targetPrefix}ar" 20 36 ]; 21 37 38 + configurePhase = '' 39 + runHook preConfigure 40 + 41 + cp makefiles/makefile.defs.linux.pulse makefile.defs 42 + 43 + runHook postConfigure 44 + ''; 45 + 22 46 installPhase = '' 47 + runHook preInstall 48 + 23 49 install -Dt $out/bin praat 24 - ''; 25 50 26 - nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 27 - buildInputs = [ alsa-lib gtk3 libpulseaudio ]; 51 + runHook postInstall 52 + ''; 28 53 29 54 enableParallelBuilding = true; 30 55 31 - meta = with lib; { 56 + meta = { 32 57 description = "Doing phonetics by computer"; 33 58 homepage = "https://www.fon.hum.uva.nl/praat/"; 34 - license = licenses.gpl2Plus; # Has some 3rd-party code in it though 35 - maintainers = with maintainers; [ orivej ]; 36 - platforms = platforms.linux; 59 + license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though 60 + maintainers = with lib.maintainers; [ orivej ]; 61 + platforms = lib.platforms.linux; 37 62 }; 38 - } 63 + })
+27
pkgs/applications/editors/heh/default.nix
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "heh"; 9 + version = "0.4.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "ndd7xv"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-IIF/bkTLwR8pCs/hJ625T3NsiKf/6Zf1cW2i4lsiK4U="; 16 + }; 17 + 18 + cargoHash = "sha256-tDvqaNVuzv1BlS/oNI1D/WV1b5uHreT3Ak/6ruqKXQc="; 19 + 20 + meta = with lib; { 21 + description = "A cross-platform terminal UI used for modifying file data in hex or ASCII."; 22 + homepage = "https://github.com/ndd7xv/heh"; 23 + changelog = "https://github.com/ndd7xv/heh/releases/tag/${src.rev}"; 24 + license = with licenses; [ mit ]; 25 + maintainers = with maintainers; [ piturnah ]; 26 + }; 27 + }
+2 -2
pkgs/applications/editors/vscode/generic.nix
··· 2 2 , unzip, libsecret, libXScrnSaver, libxshmfence, buildPackages 3 3 , atomEnv, at-spi2-atk, autoPatchelfHook 4 4 , systemd, fontconfig, libdbusmenu, glib, buildFHSEnv, wayland 5 - , libglvnd 5 + , libglvnd, libkrb5 6 6 7 7 # Populate passthru.tests 8 8 , tests ··· 71 71 }; 72 72 73 73 buildInputs = [ libsecret libXScrnSaver libxshmfence ] 74 - ++ lib.optionals (!stdenv.isDarwin) ([ at-spi2-atk ] ++ atomEnv.packages); 74 + ++ lib.optionals (!stdenv.isDarwin) ([ at-spi2-atk libkrb5 ] ++ atomEnv.packages); 75 75 76 76 runtimeDependencies = lib.optionals stdenv.isLinux [ (lib.getLib systemd) fontconfig.lib libdbusmenu wayland ]; 77 77
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 24 24 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 25 25 26 26 sha256 = { 27 - x86_64-linux = "05yl6v11ndayz081m3j6dhclj0hshsf0ism7z31hmq6qvfl1sw0k"; 28 - x86_64-darwin = "16x1ppfi3n9gnxg2la2pzj67mlj507879hpqinhpz57dvys421h8"; 29 - aarch64-linux = "0m5k9rm14isj9x1j3nw3zvcxxz523396id7yhi8bpncr4ac8a087"; 30 - aarch64-darwin = "1kbhf3v71qhw4ql6pp8x5m68lgycjzxzm17c9ri0zn0b86ffp8d3"; 31 - armv7l-linux = "07lp0schicpnzs52gfbi9y8zfkwxhh92zv29afzy6vxdlqvmrf21"; 27 + x86_64-linux = "0hc1pfrhmdydwgyz3mjp45nmzs101iffam7ciximqmnhf1s1x4qf"; 28 + x86_64-darwin = "1snrr4lsa5qdpdl80wx8ymxp8h1bhd5ablhcgkhzvmj5dh7jrywk"; 29 + aarch64-linux = "0pm5znbjm79ziwdx37cc75qnbf0jv3yrm2xg7cykavn43gz97abw"; 30 + aarch64-darwin = "0bq5hvgv228x7vby4475cc65g24kpv9kvj06p6c0y6a2a79j45by"; 31 + armv7l-linux = "11gxpqflakp4cwzkpqrwsd6m5fls1vnaigppc4bq9flfknwkjfrx"; 32 32 }.${system} or throwSystem; 33 33 in 34 34 callPackage ./generic.nix rec { 35 35 # Please backport all compatible updates to the stable release. 36 36 # This is important for the extension ecosystem. 37 - version = "1.80.2"; 37 + version = "1.81.0"; 38 38 pname = "vscode"; 39 39 40 40 # This is used for VS Code - Remote SSH test 41 - rev = "2ccd690cbff1569e4a83d7c43d45101f817401dc"; 41 + rev = "6445d93c81ebe42c4cbd7a60712e0b17d9463e97"; 42 42 43 43 executableName = "code" + lib.optionalString isInsiders "-insiders"; 44 44 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 62 62 src = fetchurl { 63 63 name = "vscode-server-${rev}.tar.gz"; 64 64 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 65 - sha256 = "1425bngv0n2xpd7yp9xbmxv95adr9vv0vzy1wvqvgpd8p6h05r7n"; 65 + sha256 = "07x9lmkyhra4hplsgdhh97dixsx92i7lab5z5ihs2wqvvzl69ah2"; 66 66 }; 67 67 }; 68 68
+3 -3
pkgs/applications/emulators/ryujinx/default.nix
··· 28 28 29 29 buildDotnetModule rec { 30 30 pname = "ryujinx"; 31 - version = "1.1.968"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 31 + version = "1.1.974"; # Based off of the official github actions builds: https://github.com/Ryujinx/Ryujinx/actions/workflows/release.yml 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "Ryujinx"; 35 35 repo = "Ryujinx"; 36 - rev = "487261592eb9e9c31cacd08860f8894027bb1a07"; 37 - sha256 = "002qgnh7xb9i9yqm4a3m9m7sbx1iz7ng8k5nnanlq897djs3hy0g"; 36 + rev = "5a0aa074b661753d8f0202a73d9f6f3ac6e2ab11"; 37 + sha256 = "0f1wivwf7hnsqi7sgqjrikxvakrk8dmywpmyd36a3s5lbk878wp3"; 38 38 }; 39 39 40 40 dotnet-sdk = dotnetCorePackages.sdk_7_0;
+6 -6
pkgs/applications/emulators/ryujinx/deps.nix
··· 20 20 (fetchNuGet { pname = "Avalonia.X11"; version = "0.10.21"; sha256 = "08vbdiv2k9vp8gp59rk0z63jyn8hlv8a4956jczy05ail5qfl94v"; }) 21 21 (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; sha256 = "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582"; }) 22 22 (fetchNuGet { pname = "Concentus"; version = "1.1.7"; sha256 = "0y5z444wrbhlmsqpy2sxmajl1fbf74843lvgj3y6vz260dn2q0l0"; }) 23 - (fetchNuGet { pname = "DiscordRichPresence"; version = "1.1.3.18"; sha256 = "0p4bhaggjjfd4gl06yiphqgncxgcq2bws4sjkrw0n2ldf3hgrps3"; }) 23 + (fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; sha256 = "0maw0yd6xgwy0cgk593z3zva0r5j267zpdmmpq8avj3zbna6n4x1"; }) 24 24 (fetchNuGet { pname = "DynamicData"; version = "7.14.2"; sha256 = "07k79w4702masq71rk865mi3h1kaxamyp7dgl08ny4n22gg8482k"; }) 25 25 (fetchNuGet { pname = "ExCSS"; version = "4.1.4"; sha256 = "1y50xp6rihkydbf5l73mr3qq2rm6rdfjrzdw9h1dw9my230q5lpd"; }) 26 26 (fetchNuGet { pname = "Fizzler"; version = "1.2.1"; sha256 = "1w5jb1d0figbv68dydbnlcsfmqlc3sv9z1zxp7d79dg2dkarc4qm"; }) ··· 40 40 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "2.9.6"; sha256 = "18mr1f0wpq0fir8vjnq0a8pz50zpnblr7sabff0yqx37c975934a"; }) 41 41 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; sha256 = "0wd6v57p53ahz5z9zg4iyzmy3src7rlsncyqpcag02jjj1yx6g58"; }) 42 42 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.4.0"; sha256 = "12rn6gl4viycwk3pz5hp5df63g66zvba4hnkwr3f0876jj5ivmsw"; }) 43 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.5.0"; sha256 = "0hjzca7v3qq4wqzi9chgxzycbaysnjgj28ps20695x61sia6i3da"; }) 43 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.6.0"; sha256 = "0qvkwkbqz4dhkxsisanax1lwm3nzyyb4kgb40qczxbl8g251cjp2"; }) 44 44 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.4.0"; sha256 = "0rhylcwa95bxawcgixk64knv7p7xrykdjcabmx3gknk8hvj1ai9y"; }) 45 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.5.0"; sha256 = "1l6v0ii5lapmfnfpjwi3j5bwlx8v9nvyani5pwvqzdfqsd5m7mp5"; }) 45 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.6.0"; sha256 = "1yfvwygx795c9lswpiv8q19zydifarzljdmvv67vjmi559cm8b1q"; }) 46 46 (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.4.0"; sha256 = "1h2f0z9xnw987x8bydka1sd42ijqjx973md6v1gvpy1qc6ad244g"; }) 47 47 (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.4.0"; sha256 = "195gqnpwqkg2wlvk8x6yzm7byrxfq9bki20xmhf6lzfsdw3z4mf2"; }) 48 48 (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.6.3"; sha256 = "1xxzd2yxlbq2h4k6flp7lvffmmwrjlyha2z1yvrxxymiyyggk2zg"; }) ··· 164 164 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 165 165 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.0.12"; sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; }) 166 166 (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.5.0"; sha256 = "1d5gjn5afnrf461jlxzawcvihz195gayqpcfbv6dd7pxa9ialn06"; }) 167 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "6.0.0"; sha256 = "1js98kmjn47ivcvkjqdmyipzknb9xbndssczm8gq224pbaj1p88c"; }) 167 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; sha256 = "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm"; }) 168 168 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.5.0"; sha256 = "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p"; }) 169 169 (fetchNuGet { pname = "System.Console"; version = "4.0.0"; sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; }) 170 170 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; }) ··· 218 218 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; }) 219 219 (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; }) 220 220 (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; sha256 = "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4"; }) 221 - (fetchNuGet { pname = "System.Reflection.Metadata"; version = "6.0.1"; sha256 = "0fjqifk4qz9lw5gcadpfalpplyr0z2b3p9x7h0ll481a9sqvppc9"; }) 221 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "7.0.0"; sha256 = "1wilasn2qmj870h2bhw348lspamm7pbinpb4m89icg113510l00v"; }) 222 222 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; }) 223 223 (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 224 224 (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; }) ··· 257 257 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 258 258 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 259 259 (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; sha256 = "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w"; }) 260 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "6.0.0"; sha256 = "0gm2kiz2ndm9xyzxgi0jhazgwslcs427waxgfa30m7yqll1kcrww"; }) 260 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "7.0.0"; sha256 = "0sn6hxdjm7bw3xgsmg041ccchsa4sp02aa27cislw3x61dbr68kq"; }) 261 261 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 262 262 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "4.7.2"; sha256 = "0ap286ykazrl42if59bxhzv81safdfrrmfqr3112siwyajx4wih9"; }) 263 263 (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "6.0.0"; sha256 = "06n9ql3fmhpjl32g3492sj181zjml5dlcc5l76xq2h38c4f87sai"; })
+2 -2
pkgs/applications/misc/tuba/default.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "tuba"; 29 - version = "0.4.0"; 29 + version = "0.4.1"; 30 30 src = fetchFromGitHub { 31 31 owner = "GeopJr"; 32 32 repo = "Tuba"; 33 33 rev = "v${version}"; 34 - hash = "sha256-sLdkSIevz2spL+Q5sS+ugqEbqJTXrLxmszzijtKvY6k="; 34 + hash = "sha256-1XbgsdIcnlXJtNEzDgEfHVJHF9naz3HplCPc2cKFUWw="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+4 -4
pkgs/applications/networking/cluster/clusterctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "clusterctl"; 5 - version = "1.4.4"; 5 + version = "1.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kubernetes-sigs"; 9 9 repo = "cluster-api"; 10 10 rev = "v${version}"; 11 - hash = "sha256-ohk3CKcB6LD1gRKDDNYK+MbFxWa7QEiqmRYYpSkwj8E="; 11 + hash = "sha256-rbKPI5hG7R6mRILuvY9BoRDvosw3txFs2q696abrpjY="; 12 12 }; 13 13 14 - vendorHash = "sha256-QzD0Stbr8QuQ8n9l9qv16KFqSFBsRbxETmQ8LHdk3nI="; 14 + vendorHash = "sha256-t494o9orCVva81v7t0HfKkL8H3cr26scyFSeYZQyqcM="; 15 15 16 16 subPackages = [ "cmd/clusterctl" ]; 17 17 ··· 43 43 description = "Kubernetes cluster API tool"; 44 44 homepage = "https://cluster-api.sigs.k8s.io/"; 45 45 license = licenses.asl20; 46 - maintainers = with maintainers; [ zowoq qjoly ]; 46 + maintainers = with maintainers; [ qjoly ]; 47 47 }; 48 48 }
+3 -3
pkgs/applications/networking/cluster/linkerd/edge.nix
··· 2 2 3 3 (callPackage ./generic.nix { }) { 4 4 channel = "edge"; 5 - version = "23.7.2"; 6 - sha256 = "0wc829dzk0in0srq0vbcagrd5ylz2d758032anzlzkf4m3lr9hdw"; 7 - vendorSha256 = "sha256-16j5B96UDZITY1LEWZKtfAnww7ZcUjKh/cARLaYy9wk="; 5 + version = "23.8.1"; 6 + sha256 = "0ajcxfqbaimrj8ylbk3s2djv2jpczm4c6z39b4fdak68sylmvb9z"; 7 + vendorSha256 = "sha256-sj3KJLPO4pxnGov2Oiqj1FgAQ2atf3FJPINmeKjPUZQ="; 8 8 }
+3 -3
pkgs/applications/networking/gnmic/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "gnmic"; 11 - version = "0.31.3"; 11 + version = "0.31.7"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "openconfig"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-+TxOl+at/SQIC1x/LwCgk4JmvOPY2el7HE1reAkmVn8="; 17 + hash = "sha256-bX8oZk0psPqoXFU8b2JQmfFaPz18yiuSVXDmhoOnpFg="; 18 18 }; 19 19 20 - vendorHash = "sha256-4cmFoDMgD9TKacZ2RD73kQKDrpN5xuSKZ4ikcWAd5Rw="; 20 + vendorHash = "sha256-hIG3kG2e9Y2hnHJ+96cPLgnlp5ParsLgWQY0HZTDggY="; 21 21 22 22 ldflags = [ 23 23 "-s" "-w"
+3 -3
pkgs/applications/networking/kubo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubo"; 5 - version = "0.20.0"; # When updating, also check if the repo version changed and adjust repoVersion below 5 + version = "0.21.0"; # When updating, also check if the repo version changed and adjust repoVersion below 6 6 rev = "v${version}"; 7 7 8 - passthru.repoVersion = "13"; # Also update kubo-migrator when changing the repo version 8 + passthru.repoVersion = "14"; # Also update kubo-migrator when changing the repo version 9 9 10 10 # Kubo makes changes to it's source tarball that don't match the git source. 11 11 src = fetchurl { 12 12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz"; 13 - hash = "sha256-3Oj/x3EkceNO8/Ik7+U43wi1aL0lYJi1FA0AjtdJRDI="; 13 + hash = "sha256-tS7hiv7KnALR+hCn/TPUwqp/xIOLnQ3ReSb1bNBnwUY="; 14 14 }; 15 15 16 16 # tarball contains multiple files/directories
+27 -11
pkgs/applications/science/biology/cmtk/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake }: 1 + { lib 2 + , stdenv 3 + , bzip2 4 + , cmake 5 + , fetchurl 6 + , fftw 7 + , llvmPackages 8 + , zlib 9 + }: 2 10 3 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 4 12 pname = "cmtk"; 5 - version = "3.3.1"; 13 + version = "3.3.2"; 6 14 7 15 src = fetchurl { 8 16 name = "cmtk-source.tar.gz"; 9 - url = "https://www.nitrc.org/frs/download.php/8198/CMTK-${version}-Source.tar.gz//?i_agree=1&download_now=1"; 10 - sha256 = "1nmsga9m7vcc4y4a6zl53ra3mwlgjwdgsq1j291awkn7zr1az6qs"; 17 + url = "https://www.nitrc.org/frs/download.php/13188/CMTK-${finalAttrs.version}-Source.tar.gz//?i_agree=1&download_now=1"; 18 + hash = "sha256-iE164NCOSOypZLLZfZy9RTyrS+YnY9ECqfb4QhlsMS4="; 11 19 }; 12 20 13 21 nativeBuildInputs = [ cmake ]; 14 22 23 + buildInputs = [ 24 + bzip2 25 + fftw 26 + zlib 27 + ] ++ lib.optionals stdenv.cc.isClang [ 28 + llvmPackages.openmp 29 + ]; 30 + 15 31 env.NIX_CFLAGS_COMPILE = toString [ 16 - "-std=c++11" 17 - (lib.optional stdenv.cc.isClang "-Wno-error=c++11-narrowing") 32 + (lib.optionalString stdenv.cc.isGNU "-std=c++11") 33 + (lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing") 34 + (lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-Dfinite=isfinite") 18 35 ]; 19 36 20 37 meta = with lib; { 21 - broken = stdenv.isDarwin; 22 - description = "Computational Morphometry Toolkit "; 38 + description = "Computational Morphometry Toolkit"; 23 39 longDescription = ''A software toolkit for computational morphometry of 24 40 biomedical images, CMTK comprises a set of command line tools and a 25 41 back-end general-purpose library for processing and I/O''; 26 42 maintainers = with maintainers; [ tbenst ]; 27 43 platforms = platforms.all; 28 - license = licenses.gpl3; 44 + license = licenses.gpl3Plus; 29 45 homepage = "https://www.nitrc.org/projects/cmtk/"; 30 46 }; 31 - } 47 + })
-81
pkgs/applications/science/machine-learning/streamlit/default.nix
··· 1 - { lib 2 - , altair 3 - , blinker 4 - , buildPythonApplication 5 - , cachetools 6 - , click 7 - , fetchPypi 8 - , gitpython 9 - , importlib-metadata 10 - , jinja2 11 - , pillow 12 - , protobuf3 13 - , pyarrow 14 - , pydeck 15 - , pympler 16 - , requests 17 - , rich 18 - , semver 19 - , setuptools 20 - , tenacity 21 - , toml 22 - , tornado 23 - , tzlocal 24 - , validators 25 - , watchdog 26 - }: 27 - 28 - buildPythonApplication rec { 29 - pname = "streamlit"; 30 - version = "1.24.0"; 31 - format = "setuptools"; 32 - 33 - src = fetchPypi { 34 - inherit pname version format; 35 - hash = "sha256-NSX6zpTHh5JzPFbWOja0iEUVDjume7UKGa20xZdagiU="; 36 - }; 37 - 38 - propagatedBuildInputs = [ 39 - altair 40 - blinker 41 - cachetools 42 - click 43 - gitpython 44 - importlib-metadata 45 - jinja2 46 - pillow 47 - protobuf3 48 - pyarrow 49 - pydeck 50 - pympler 51 - requests 52 - rich 53 - semver 54 - setuptools 55 - tenacity 56 - toml 57 - tornado 58 - tzlocal 59 - validators 60 - watchdog 61 - ]; 62 - 63 - # pypi package does not include the tests, but cannot be built with fetchFromGitHub 64 - doCheck = false; 65 - 66 - pythonImportsCheck = [ 67 - "streamlit" 68 - ]; 69 - 70 - postInstall = '' 71 - rm $out/bin/streamlit.cmd # remove windows helper 72 - ''; 73 - 74 - meta = with lib; { 75 - homepage = "https://streamlit.io/"; 76 - changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}"; 77 - description = "The fastest way to build custom ML tools"; 78 - maintainers = with maintainers; [ yrashk ]; 79 - license = licenses.asl20; 80 - }; 81 - }
+17 -17
pkgs/applications/version-management/github-desktop/default.nix
··· 19 19 , openssl 20 20 }: 21 21 22 - stdenv.mkDerivation rec { 22 + stdenv.mkDerivation (finalAttrs: { 23 23 pname = "github-desktop"; 24 - version = "3.2.1"; 24 + version = "3.2.5"; 25 25 26 26 src = fetchurl { 27 - url = "https://github.com/shiftkey/desktop/releases/download/release-${version}-linux1/GitHubDesktop-linux-${version}-linux1.deb"; 28 - hash = "sha256-OdvebRvOTyadgNjzrv6CGDPkljfpo4RVvVAc+X9hjSo="; 27 + url = "https://github.com/shiftkey/desktop/releases/download/release-${finalAttrs.version}-linux1/GitHubDesktop-linux-${finalAttrs.version}-linux1.deb"; 28 + hash = "sha256-p+qr9/aEQcfkKArC3oTyIijHkaNzLum3xXeSnNexgbU="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ ··· 50 50 ]; 51 51 52 52 unpackPhase = '' 53 - mkdir -p $TMP/${pname} $out/{opt,bin} 54 - cp $src $TMP/${pname}.deb 55 - ar vx ${pname}.deb 56 - tar --no-overwrite-dir -xvf data.tar.xz -C $TMP/${pname}/ 53 + mkdir -p $TMP/${finalAttrs.pname} $out/{opt,bin} 54 + cp $src $TMP/${finalAttrs.pname}.deb 55 + ar vx ${finalAttrs.pname}.deb 56 + tar --no-overwrite-dir -xvf data.tar.xz -C $TMP/${finalAttrs.pname}/ 57 57 ''; 58 58 59 59 installPhase = '' 60 - cp -R $TMP/${pname}/usr/share $out/ 61 - cp -R $TMP/${pname}/usr/lib/${pname}/* $out/opt/ 62 - ln -sf $out/opt/${pname} $out/bin/${pname} 60 + cp -R $TMP/${finalAttrs.pname}/usr/share $out/ 61 + cp -R $TMP/${finalAttrs.pname}/usr/lib/${finalAttrs.pname}/* $out/opt/ 62 + ln -sf $out/opt/${finalAttrs.pname} $out/bin/${finalAttrs.pname} 63 63 ''; 64 64 65 65 preFixup = '' ··· 72 72 (lib.getLib systemd) 73 73 ]; 74 74 75 - meta = with lib; { 75 + meta = { 76 76 description = "GUI for managing Git and GitHub."; 77 77 homepage = "https://desktop.github.com/"; 78 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 79 - license = licenses.mit; 80 - maintainers = with maintainers; [ dan4ik605743 ]; 81 - platforms = platforms.linux; 78 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 79 + license = lib.licenses.mit; 80 + maintainers = with lib.maintainers; [ dan4ik605743 ]; 81 + platforms = lib.platforms.linux; 82 82 }; 83 - } 83 + })
+2 -2
pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "advanced-scene-switcher"; 19 - version = "1.22.1"; 19 + version = "1.23.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "WarmUpTill"; 23 23 repo = "SceneSwitcher"; 24 24 rev = version; 25 - hash = "sha256-SV5hnTIRJ6ZruA5t/G6zRAC/+oalTABor3h66eF+KHM="; 25 + hash = "sha256-X1qeMNTC2Hsl3Yh3E7PYVWAMGjGylF/EBkgW4WrtH40="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ cmake ];
+1 -1
pkgs/build-support/fetchrepoproject/default.nix
··· 60 60 ${optionalString (local_manifests != []) '' 61 61 mkdir .repo/local_manifests 62 62 for local_manifest in ${concatMapStringsSep " " toString local_manifests}; do 63 - cp $local_manifest .repo/local_manifests/$(stripHash $local_manifest; echo $strippedName) 63 + cp $local_manifest .repo/local_manifests/$(stripHash $local_manifest) 64 64 done 65 65 ''} 66 66
+2 -2
pkgs/data/fonts/noto-fonts/default.nix
··· 35 35 }: 36 36 stdenvNoCC.mkDerivation rec { 37 37 inherit pname; 38 - version = "23.7.1"; 38 + version = "23.8.1"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "notofonts"; 42 42 repo = "notofonts.github.io"; 43 43 rev = "noto-monthly-release-${version}"; 44 - hash = "sha256-+P0mQ3PaGGPGK3SFPtCe7wrjMgOgZeRpkEQulLeu/zs="; 44 + hash = "sha256-TYCJzioZcNFV8N5wLr7Fo69g/p5GQF/tbGgYoLUV7Us="; 45 45 }; 46 46 47 47 _variants = map (variant: builtins.replaceStrings [ " " ] [ "" ] variant) variants;
+2 -2
pkgs/development/compilers/assemblyscript/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "assemblyscript"; 8 - version = "0.27.6"; 8 + version = "0.27.8"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AssemblyScript"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-jN8P3EL3giDIZSExkjm5ZUwgkN3EIQhVpMqfx273yZU="; 14 + sha256 = "sha256-EwpIUD9+IjJlWOnUEXgvx60i59ftQyHcPTQVWVoOGNQ="; 15 15 }; 16 16 17 17 npmDepsHash = "sha256-9ILa1qY2GpP2RckcZYcCMmgCwdXIImOm+D8nldeoQL8=";
+23 -19
pkgs/development/compilers/crystal/default.nix
··· 17 17 , libxml2 18 18 , libyaml 19 19 , libffi 20 - , llvmPackages 20 + , llvmPackages_13 21 + , llvmPackages_15 21 22 , makeWrapper 22 23 , openssl 23 24 , pcre2 ··· 53 54 "https://github.com/crystal-lang/crystal/releases/download/${version}/crystal-${version}-${toString rel}-${arch}.tar.gz"; 54 55 55 56 genericBinary = { version, sha256s, rel ? 1 }: 56 - stdenv.mkDerivation rec { 57 - pname = "crystal-binary"; 58 - inherit version; 57 + stdenv.mkDerivation rec { 58 + pname = "crystal-binary"; 59 + inherit version; 59 60 60 - src = fetchurl { 61 - url = binaryUrl version rel; 62 - sha256 = sha256s.${stdenv.system}; 63 - }; 61 + src = fetchurl { 62 + url = binaryUrl version rel; 63 + sha256 = sha256s.${stdenv.system}; 64 + }; 64 65 65 - buildCommand = '' 66 - mkdir -p $out 67 - tar --strip-components=1 -C $out -xf ${src} 68 - patchShebangs $out/bin/crystal 69 - ''; 66 + buildCommand = '' 67 + mkdir -p $out 68 + tar --strip-components=1 -C $out -xf ${src} 69 + patchShebangs $out/bin/crystal 70 + ''; 70 71 71 - meta.platforms = lib.attrNames sha256s; 72 - }; 72 + meta.platforms = lib.attrNames sha256s; 73 + }; 73 74 74 - generic = ( 75 + generic = 75 76 { version 76 77 , sha256 77 78 , binary 79 + , llvmPackages 78 80 , doCheck ? true 79 81 , extraBuildInputs ? [ ] 80 82 , buildFlags ? [ "all" "docs" "release=1"] ··· 244 246 license = licenses.asl20; 245 247 maintainers = with maintainers; [ david50407 manveru peterhoeg donovanglover ]; 246 248 }; 247 - }) 248 - ); 249 - 249 + }); 250 250 in 251 251 rec { 252 252 binaryCrystal_1_2 = genericBinary { ··· 263 263 version = "1.2.2"; 264 264 sha256 = "sha256-nyOXhsutVBRdtJlJHe2dALl//BUXD1JeeQPgHU4SwiU="; 265 265 binary = binaryCrystal_1_2; 266 + llvmPackages = llvmPackages_13; 266 267 extraBuildInputs = [ libatomic_ops ]; 267 268 }; 268 269 ··· 270 271 version = "1.7.3"; 271 272 sha256 = "sha256-ULhLGHRIZbsKhaMvNhc+W74BwNgfEjHcMnVNApWY+EE="; 272 273 binary = binaryCrystal_1_2; 274 + llvmPackages = llvmPackages_13; 273 275 }; 274 276 275 277 crystal_1_8 = generic { 276 278 version = "1.8.2"; 277 279 sha256 = "sha256-YAORdipzpC9CrFgZUFlFfjzlJQ6ZeA2ekVu8IfPOxR8="; 278 280 binary = binaryCrystal_1_2; 281 + llvmPackages = llvmPackages_15; 279 282 }; 280 283 281 284 crystal_1_9 = generic { 282 285 version = "1.9.2"; 283 286 sha256 = "sha256-M1oUFs7/8ljszga3StzLOLM1aA4fSfVPQlsbuDHGd84="; 284 287 binary = binaryCrystal_1_2; 288 + llvmPackages = llvmPackages_15; 285 289 }; 286 290 287 291 crystal = crystal_1_9;
+4 -11
pkgs/development/compilers/edk2/default.nix
··· 5 5 , libuuid 6 6 , python3 7 7 , bc 8 - , llvmPackages_9 9 8 , lib 10 9 , buildPackages 11 10 }: ··· 24 23 else 25 24 throw "Unsupported architecture"; 26 25 27 - buildStdenv = if stdenv.isDarwin then 28 - llvmPackages_9.stdenv 29 - else 30 - stdenv; 31 - 32 26 buildType = if stdenv.isDarwin then 33 27 "CLANGPDB" 34 28 else 35 29 "GCC5"; 36 30 37 - edk2 = buildStdenv.mkDerivation { 31 + edk2 = stdenv.mkDerivation { 38 32 pname = "edk2"; 39 33 version = "202305"; 40 34 ··· 42 36 # pass targetPrefix as an env var 43 37 (fetchpatch { 44 38 url = "https://src.fedoraproject.org/rpms/edk2/raw/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/0021-Tweak-the-tools_def-to-support-cross-compiling.patch"; 45 - sha256 = "sha256-E1/fiFNVx0aB1kOej2DJ2DlBIs9tAAcxoedym2Zhjxw="; 39 + hash = "sha256-E1/fiFNVx0aB1kOej2DJ2DlBIs9tAAcxoedym2Zhjxw="; 46 40 }) 47 41 ]; 48 42 ··· 62 56 # trick taken from https://src.fedoraproject.org/rpms/edk2/blob/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/edk2.spec#_319 63 57 ${"GCC5_${targetArch}_PREFIX"}=stdenv.cc.targetPrefix; 64 58 65 - makeFlags = [ "-C BaseTools" ] 66 - ++ lib.optionals (stdenv.cc.isClang) [ "CXX=llvm BUILD_AR=ar BUILD_CC=clang BUILD_CXX=clang++ BUILD_AS=clang BUILD_LD=ld" ]; 59 + makeFlags = [ "-C BaseTools" ]; 67 60 68 61 env.NIX_CFLAGS_COMPILE = "-Wno-return-type" + lib.optionalString (stdenv.cc.isGNU) " -Wno-error=stringop-truncation"; 69 62 ··· 89 82 }; 90 83 91 84 passthru = { 92 - mkDerivation = projectDscPath: attrsOrFun: buildStdenv.mkDerivation (finalAttrs: 85 + mkDerivation = projectDscPath: attrsOrFun: stdenv.mkDerivation (finalAttrs: 93 86 let 94 87 attrs = lib.toFunction attrsOrFun finalAttrs; 95 88 in
+8 -2
pkgs/development/guile-modules/guile-fibers/default.nix
··· 19 19 hash = "sha256-jJKA5JEHsmqQ/IKb1aNmOtoVaGKNjcgTKyo5VCiJbXM="; 20 20 }; 21 21 22 + strictDeps = true; 23 + 22 24 nativeBuildInputs = [ 23 25 autoreconfHook 26 + guile 24 27 pkg-config 28 + texinfo # for makeinfo 25 29 ]; 30 + 26 31 buildInputs = [ 27 32 guile 28 33 libevent 29 - texinfo 30 34 ]; 31 35 32 - autoreconfPhase = "./autogen.sh"; 36 + makeFlags = [ 37 + "GUILE_AUTO_COMPILE=0" 38 + ]; 33 39 34 40 meta = with lib; { 35 41 homepage = "https://github.com/wingo/fibers";
+13 -5
pkgs/development/libraries/LASzip/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , fixDarwinDylibNames 6 + }: 2 7 3 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 4 9 version = "3.4.3"; 5 10 pname = "LASzip"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "LASzip"; 9 14 repo = "LASzip"; 10 - rev = version; 11 - sha256 = "09lcsgxwv0jq50fhsgfhx0npbf1zcwn3hbnq6q78fshqksbxmz7m"; 15 + rev = finalAttrs.version; 16 + hash = "sha256-9fzal54YaocONtguOCxnP7h1LejQPQ0dKFiCzfvTjCY="; 12 17 }; 13 18 14 19 nativeBuildInputs = [ 15 20 cmake 21 + ] ++ lib.optionals stdenv.isDarwin [ 22 + fixDarwinDylibNames 16 23 ]; 17 24 18 25 meta = { 19 26 description = "Turn quickly bulky LAS files into compact LAZ files without information loss"; 20 27 homepage = "https://laszip.org"; 28 + changelog = "https://github.com/LASzip/LASzip/releases/tag/${finalAttrs.src.rev}"; 21 29 license = lib.licenses.lgpl2; 22 30 maintainers = [ lib.maintainers.michelk ]; 23 31 platforms = lib.platforms.unix; 24 32 }; 25 - } 33 + })
+12
pkgs/development/libraries/gstreamer/good/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 + , fetchpatch 3 4 , meson 4 5 , nasm 5 6 , ninja ··· 59 60 url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz"; 60 61 hash = "sha256-tnsxMTpUxpKbgpadQdPP3y9Y21c/tfSR5rul2ErqB3g="; 61 62 }; 63 + 64 + # TODO: Patch is conditional to spare rebuilds during the current staging-next cycle and should be removed during the next bump 65 + patches = lib.optionals qt5Support [ 66 + # Needed until https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5083 is merged and released 67 + (fetchpatch { 68 + name = "gst-plugins-good-fix-qt5-without-viv-fb.patch"; 69 + url = "https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/03d8ef0b7c6e70eb936de0514831c1aafc763dcf.diff"; 70 + hash = "sha256-17XU/W/TMPg5669O1EBXByAN/VwFu/0idTg5ze3M/D4="; 71 + stripLen = 2; 72 + }) 73 + ]; 62 74 63 75 strictDeps = true; 64 76
+2 -2
pkgs/development/libraries/liblinear/default.nix
··· 4 4 soVersion = "5"; 5 5 in stdenv.mkDerivation rec { 6 6 pname = "liblinear"; 7 - version = "2.46"; 7 + version = "2.47"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "cjlin1"; 11 11 repo = "liblinear"; 12 12 rev = "v${builtins.replaceStrings ["."] [""] version}"; 13 - sha256 = "sha256-mKd6idfr6mIIDEie8DCS+drtfpgKoS/5UXI0JenTxlA="; 13 + sha256 = "sha256-so7uCc/52NdN0V2Ska8EUdw/wSegaudX5AF+c0xe5jk="; 14 14 }; 15 15 16 16 makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" ];
+2 -2
pkgs/development/libraries/mbedtls/2.nix
··· 1 1 { callPackage }: 2 2 3 3 callPackage ./generic.nix { 4 - version = "2.28.3"; 5 - hash = "sha256-w5bJErCNRZLE8rHcuZlK3bOqel97gPPMKH2cPGUR6Zw="; 4 + version = "2.28.4"; 5 + hash = "sha256-88Lnj9NgS5PWg2hydvb9cwi6s6BG3UMvkUH2Ny1jmtE="; 6 6 }
+2 -2
pkgs/development/libraries/mbedtls/3.nix
··· 1 1 { callPackage }: 2 2 3 3 callPackage ./generic.nix { 4 - version = "3.4.0"; 5 - hash = "sha256-1YA4hp/VEjph5k0qJqhhH4nBbTP3Qu2pl7WpuvPkVfg="; 4 + version = "3.4.1"; 5 + hash = "sha256-NIjyRcVbg6lT6+RlTz5Jt6V9T85mvta5grOSLIAK9Ts="; 6 6 }
+6
pkgs/development/libraries/mbedtls/generic.nix
··· 42 42 "-DGEN_FILES=off" 43 43 ]; 44 44 45 + doCheck = true; 46 + 47 + # Parallel checking causes test failures 48 + # https://github.com/Mbed-TLS/mbedtls/issues/4980 49 + enableParallelChecking = false; 50 + 45 51 meta = with lib; { 46 52 homepage = "https://www.trustedfirmware.org/projects/mbed-tls/"; 47 53 changelog = "https://github.com/Mbed-TLS/mbedtls/blob/${pname}-${version}/ChangeLog";
+6 -4
pkgs/development/python-modules/cohere/default.nix
··· 3 3 , fetchPypi 4 4 , poetry-core 5 5 , pythonOlder 6 - , requests 7 6 , aiohttp 8 7 , backoff 8 + , importlib-metadata 9 + , requests 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "cohere"; 13 - version = "4.9.0"; 14 + version = "4.16.0"; 14 15 format = "pyproject"; 15 16 16 17 disabled = pythonOlder "3.7"; 17 18 18 19 src = fetchPypi { 19 20 inherit pname version; 20 - hash = "sha256-4d89x+Pg5HZSUyxryH6OuMMGiMfeHXQX5Wy0XS++obY="; 21 + hash = "sha256-i6kbjugulAcmmInFb+rH4WB50dM7SDO1HNW/JgD4OTQ="; 21 22 }; 22 23 23 24 nativeBuildInputs = [ ··· 25 26 ]; 26 27 27 28 propagatedBuildInputs = [ 28 - requests 29 29 aiohttp 30 30 backoff 31 + importlib-metadata 32 + requests 31 33 ]; 32 34 33 35 # tests require CO_API_KEY
+43
pkgs/development/python-modules/getjump/default.nix
··· 1 + { lib 2 + , beautifulsoup4 3 + , buildPythonPackage 4 + , fetchPypi 5 + , pillow 6 + , poetry-core 7 + , requests 8 + , rich 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "getjump"; 13 + version = "2.4.0"; 14 + format = "pyproject"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-gu6h9Yb0xdfvdmoeZGQPFCJhBJxuQ4iWlQquig1ljnY="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + poetry-core 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + beautifulsoup4 27 + pillow 28 + requests 29 + rich 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "getjump" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Get and save images from jump web viewer"; 38 + homepage = "https://github.com/eggplants/getjump"; 39 + license = licenses.mit; 40 + maintainers = [ maintainers.marsam ]; 41 + mainProgram = "jget"; 42 + }; 43 + }
+2 -2
pkgs/development/python-modules/langchain/default.nix
··· 80 80 81 81 buildPythonPackage rec { 82 82 pname = "langchain"; 83 - version = "0.0.240"; 83 + version = "0.0.247"; 84 84 format = "pyproject"; 85 85 86 86 disabled = pythonOlder "3.8"; ··· 89 89 owner = "hwchase17"; 90 90 repo = "langchain"; 91 91 rev = "refs/tags/v${version}"; 92 - hash = "sha256-7UwAdOzEgu3K/Gfq8D/GHNGxD6KhSx0xGMxtmpdnYxQ="; 92 + hash = "sha256-Eq9jXfVJuoiNWkJanol/tqQU+kOrftMii90743DeI3Y="; 93 93 }; 94 94 95 95 sourceRoot = "source/libs/langchain";
+10 -5
pkgs/development/python-modules/laspy/default.nix
··· 3 3 , fetchPypi 4 4 , numpy 5 5 , laszip 6 + , setuptools 6 7 , pytestCheckHook 7 8 , pythonOlder 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "laspy"; 12 - version = "2.4.1"; 13 - format = "setuptools"; 13 + version = "2.5.1"; 14 + format = "pyproject"; 14 15 15 16 disabled = pythonOlder "3.7"; 16 17 17 18 src = fetchPypi { 18 19 inherit pname version; 19 - hash = "sha256-E8rsxzJcsiQsslOUmE0hs7X3lsiLy0S8LtLTzxuXKsQ="; 20 + hash = "sha256-uqPJxswVVjbxYRSREfnPwkPb0U9synKclLNWsxxmjy4="; 20 21 }; 21 22 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 + 22 27 propagatedBuildInputs = [ 23 28 numpy 24 29 laszip 25 30 ]; 26 31 27 - checkInputs = [ 32 + nativeCheckInputs = [ 28 33 pytestCheckHook 29 34 ]; 30 35 ··· 36 41 meta = with lib; { 37 42 description = "Interface for reading/modifying/creating .LAS LIDAR files"; 38 43 homepage = "https://github.com/laspy/laspy"; 39 - changelog = "https://github.com/laspy/laspy/blob/2.4.1/CHANGELOG.md"; 44 + changelog = "https://github.com/laspy/laspy/blob/${version}/CHANGELOG.md"; 40 45 license = licenses.bsd2; 41 46 maintainers = with maintainers; [ matthewcroughan ]; 42 47 };
+13 -16
pkgs/development/python-modules/laszip/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , scikit-build-core 5 - , distlib 6 - , pytestCheckHook 7 - , pyproject-metadata 8 - , pathspec 9 6 , pybind11 10 7 , cmake 11 8 , LASzip 9 + , pythonOlder 12 10 }: 13 11 14 12 buildPythonPackage rec { 15 13 pname = "laszip-python"; 16 - version = "0.2.1"; 14 + version = "0.2.3"; 17 15 18 16 format = "pyproject"; 19 17 18 + disabled = pythonOlder "3.7"; 19 + 20 20 src = fetchFromGitHub { 21 21 owner = "tmontaigu"; 22 22 repo = pname; 23 23 rev = version; 24 - sha256 = "sha256-ujKoUm2Btu25T7ZrSGqjRc3NR1qqsQU8OwHQDSx8grY="; 24 + hash = "sha256-MiPzL9TDCf1xnCv7apwdfcpkFnBRi4PO/atTQxqL8cw="; 25 25 }; 26 26 27 + env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-std=c++17"; 28 + 27 29 nativeBuildInputs = [ 30 + cmake 31 + pybind11 28 32 scikit-build-core 29 33 scikit-build-core.optional-dependencies.pyproject 30 - cmake 31 34 ]; 35 + 36 + dontUseCmakeConfigure = true; 32 37 33 38 buildInputs = [ 34 - pybind11 35 39 LASzip 36 40 ]; 37 41 38 - checkInputs = [ 39 - pytestCheckHook 40 - ]; 41 - 42 - preBuild = '' 43 - cd .. 44 - ''; 45 - 46 42 # There are no tests 47 43 doCheck = false; 48 44 ··· 51 47 meta = with lib; { 52 48 description = "Unofficial bindings between Python and LASzip made using pybind11"; 53 49 homepage = "https://github.com/tmontaigu/laszip-python"; 50 + changelog = "https://github.com/tmontaigu/laszip-python/blob/${src.rev}/Changelog.md"; 54 51 license = licenses.mit; 55 52 maintainers = with maintainers; [ matthewcroughan ]; 56 53 };
+8 -1
pkgs/development/python-modules/material-color-utilities/default.nix
··· 1 - { stdenv, lib, buildPythonPackage, fetchPypi, pillow, regex }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, pythonRelaxDepsHook, pillow, regex }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "material-color-utilities-python"; ··· 8 8 inherit pname version; 9 9 sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64="; 10 10 }; 11 + 12 + nativeBuildInputs = [ 13 + pythonRelaxDepsHook 14 + ]; 15 + pythonRelaxDeps = [ 16 + "Pillow" 17 + ]; 11 18 12 19 propagatedBuildInputs = [ 13 20 pillow
+13 -4
pkgs/development/python-modules/mpv/default.nix
··· 1 - { lib, stdenv, buildPythonPackage, fetchFromGitHub, python, isPy27 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchFromGitHub 2 5 , mpv 6 + , setuptools 3 7 }: 4 8 5 9 buildPythonPackage rec { 6 10 pname = "mpv"; 7 - version = "1.0.1"; 8 - disabled = isPy27; 11 + version = "1.0.4"; 12 + format = "pyproject"; 9 13 10 14 src = fetchFromGitHub { 11 15 owner = "jaseg"; 12 16 repo = "python-mpv"; 13 17 rev = "v${version}"; 14 - hash = "sha256-UCJ1PknnWQiFciTEMxTUqDzz0Z8HEWycLuQqYeyQhoM="; 18 + hash = "sha256-qP5Biw4sTLioAhmMZX+Pemue2PWc3N7afAe38dwJv3U="; 15 19 }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 16 24 17 25 buildInputs = [ mpv ]; 18 26 ··· 30 38 description = "A python interface to the mpv media player"; 31 39 homepage = "https://github.com/jaseg/python-mpv"; 32 40 license = licenses.agpl3Plus; 41 + maintainers = with maintainers; [ onny ]; 33 42 }; 34 43 }
+71
pkgs/development/python-modules/pyradiomics/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , pytestCheckHook 6 + , numpy 7 + , pykwalify 8 + , pywavelets 9 + , setuptools 10 + , simpleitk 11 + , six 12 + , versioneer 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "pyradiomics"; 17 + version = "3.1.0"; 18 + format = "pyproject"; 19 + 20 + disabled = pythonOlder "3.6"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "AIM-Harvard"; 24 + repo = "pyradiomics"; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-/qFNN63Bbq4DUZDPmwUGj1z5pY3ujsbqFJpVXbO+b8E="; 27 + name = "pyradiomics"; 28 + }; 29 + 30 + nativeBuildInputs = [ setuptools versioneer ]; 31 + 32 + propagatedBuildInputs = [ 33 + numpy 34 + pykwalify 35 + pywavelets 36 + simpleitk 37 + six 38 + ]; 39 + 40 + nativeCheckInputs = [ pytestCheckHook ]; 41 + preCheck = '' 42 + rm -rf radiomics 43 + ''; 44 + # tries to access network at collection time: 45 + disabledTestPaths = [ "tests/test_wavelet.py" ]; 46 + # various urllib download errors and (probably related) missing feature errors: 47 + disabledTests = [ 48 + "brain1_shape2D-original_shape2D" 49 + "brain2_shape2D-original_shape2D" 50 + "breast1_shape2D-original_shape2D" 51 + "lung1_shape2D-original_shape2D" 52 + "lung2_shape2D-original_shape2D" 53 + ]; 54 + # note the above elements of disabledTests are patterns, not exact tests, 55 + # so simply setting `disabledTests` does not suffice: 56 + pytestFlagsArray = [ 57 + "-k '${toString (lib.intersperse "and" (lib.forEach disabledTests (t: "not ${t}")))}'" 58 + ]; 59 + 60 + pythonImportsCheck = [ 61 + "radiomics" 62 + ]; 63 + 64 + meta = with lib; { 65 + homepage = "https://pyradiomics.readthedocs.io"; 66 + description = "Extraction of Radiomics features from 2D and 3D images and binary masks"; 67 + changelog = "https://github.com/AIM-Harvard/pyradiomics/releases/tag/v${version}"; 68 + license = licenses.bsd3; 69 + maintainers = with maintainers; [ bcdarwin ]; 70 + }; 71 + }
+9 -5
pkgs/development/python-modules/snowflake-connector-python/default.nix
··· 1 1 { lib 2 2 , asn1crypto 3 3 , buildPythonPackage 4 + , pythonRelaxDepsHook 4 5 , certifi 5 6 , cffi 6 7 , charset-normalizer ··· 31 32 hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE="; 32 33 }; 33 34 34 - postPatch = '' 35 - substituteInPlace setup.cfg \ 36 - --replace "charset_normalizer>=2,<3" "charset_normalizer" \ 37 - --replace "pyOpenSSL>=16.2.0,<23.0.0" "pyOpenSSL" 38 - ''; 35 + nativeBuildInputs = [ 36 + pythonRelaxDepsHook 37 + ]; 38 + pythonRelaxDeps = [ 39 + "pyOpenSSL" 40 + "charset-normalizer" 41 + "cryptography" 42 + ]; 39 43 40 44 propagatedBuildInputs = [ 41 45 asn1crypto
+88
pkgs/development/python-modules/streamlit/default.nix
··· 1 + { lib 2 + , stdenv 3 + , altair 4 + , blinker 5 + , buildPythonPackage 6 + , cachetools 7 + , click 8 + , fetchPypi 9 + , gitpython 10 + , importlib-metadata 11 + , numpy 12 + , packaging 13 + , pandas 14 + , pillow 15 + , protobuf3 16 + , pyarrow 17 + , pydeck 18 + , pympler 19 + , python-dateutil 20 + , pythonOlder 21 + , requests 22 + , rich 23 + , tenacity 24 + , toml 25 + , typing-extensions 26 + , tzlocal 27 + , validators 28 + , watchdog 29 + }: 30 + 31 + buildPythonPackage rec { 32 + pname = "streamlit"; 33 + version = "1.24.1"; 34 + format = "setuptools"; 35 + 36 + disabled = pythonOlder "3.8"; 37 + 38 + src = fetchPypi { 39 + inherit pname version format; 40 + hash = "sha256-/V8LZHmOlwY2RAj7WJt3WVMUpjFdE7LXULljx66X82I="; 41 + }; 42 + 43 + propagatedBuildInputs = [ 44 + altair 45 + blinker 46 + cachetools 47 + click 48 + gitpython 49 + importlib-metadata 50 + numpy 51 + packaging 52 + pandas 53 + pillow 54 + protobuf3 55 + pyarrow 56 + pydeck 57 + pympler 58 + python-dateutil 59 + requests 60 + rich 61 + tenacity 62 + toml 63 + typing-extensions 64 + tzlocal 65 + validators 66 + ] ++ lib.optionals (!stdenv.isDarwin) [ 67 + watchdog 68 + ]; 69 + 70 + # pypi package does not include the tests, but cannot be built with fetchFromGitHub 71 + doCheck = false; 72 + 73 + pythonImportsCheck = [ 74 + "streamlit" 75 + ]; 76 + 77 + postInstall = '' 78 + rm $out/bin/streamlit.cmd # remove windows helper 79 + ''; 80 + 81 + meta = with lib; { 82 + homepage = "https://streamlit.io/"; 83 + changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}"; 84 + description = "The fastest way to build custom ML tools"; 85 + maintainers = with maintainers; [ natsukium yrashk ]; 86 + license = licenses.asl20; 87 + }; 88 + }
+4 -4
pkgs/development/tools/api-linter/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "api-linter"; 8 - version = "1.55.0"; 8 + version = "1.55.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "googleapis"; 12 12 repo = "api-linter"; 13 13 rev = "v${version}"; 14 - hash = "sha256-aywqb//fhygphjX3suVfqNIG0saPPnhgLPA/DBpSVQY="; 14 + hash = "sha256-OBx8zlxDLlPy6hfA8A9+F0bOglAzY81d9U7uCje0vyo="; 15 15 }; 16 16 17 - vendorHash = "sha256-oK1d9aQ43Zj+Xt4tMhn+Lz1Q09psqqdTUqbgEdkuBvg="; 17 + vendorHash = "sha256-x8mncoXVK7p6xxgaZL/Fv6dHgeOj2rWr55ovvk6zwQE="; 18 18 19 19 subPackages = [ "cmd/api-linter" ]; 20 20 ··· 23 23 "-w" 24 24 ]; 25 25 26 - # reference: https://github.com/googleapis/api-linter/blob/v1.55.0/.github/workflows/release.yaml#L76 26 + # reference: https://github.com/googleapis/api-linter/blob/v1.55.2/.github/workflows/release.yaml#L76 27 27 preBuild = '' 28 28 cat > cmd/api-linter/version.go <<EOF 29 29 package main
+59
pkgs/development/tools/database/prqlc/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , openssl 6 + , sqlite 7 + , zlib 8 + , stdenv 9 + , darwin 10 + , python3 11 + }: 12 + 13 + rustPlatform.buildRustPackage rec { 14 + pname = "prqlc"; 15 + version = "0.9.3"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "prql"; 19 + repo = "prql"; 20 + rev = version; 21 + hash = "sha256-m5W7ddGlgxaQR+nCFygfLWU6QBDUOK9POPdR2H62j9Q="; 22 + }; 23 + 24 + cargoHash = "sha256-7vjDWiod52fuAPHbB/UmqG9YZb8GvyZGMgdYr2qI+uM="; 25 + 26 + nativeBuildInputs = [ 27 + pkg-config 28 + rustPlatform.bindgenHook 29 + ]; 30 + 31 + buildInputs = 32 + [ 33 + openssl 34 + sqlite 35 + zlib 36 + ] 37 + ++ lib.optionals stdenv.isDarwin [ 38 + darwin.apple_sdk.frameworks.CoreFoundation 39 + darwin.apple_sdk.frameworks.CoreServices 40 + darwin.apple_sdk.frameworks.Security 41 + ]; 42 + 43 + env = { 44 + PYO3_PYTHON = "${python3}/bin/python3"; 45 + }; 46 + 47 + # we are only interested in the prqlc binary 48 + postInstall = '' 49 + rm -r $out/bin/compile-files $out/bin/mdbook-prql $out/lib 50 + ''; 51 + 52 + meta = with lib; { 53 + description = "A CLI for the PRQL compiler - a simple, powerful, pipelined SQL replacement"; 54 + homepage = "https://github.com/prql/prql"; 55 + changelog = "https://github.com/prql/prql/blob/${src.rev}/CHANGELOG.md"; 56 + license = licenses.asl20; 57 + maintainers = with maintainers; [ dit7ya ]; 58 + }; 59 + }
+3 -3
pkgs/development/tools/database/vitess/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "vitess"; 5 - version = "17.0.0"; 5 + version = "17.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vitessio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-J/lvOP8MsHOWnq7kKRqIktME0ewtilkyOv8pD1wSnPc="; 11 + hash = "sha256-EvCH1NxsGQzkXv0i5WOZXG9jeile0IHyZAoINgBIwYs="; 12 12 }; 13 13 14 - vendorHash = "sha256-QcCgDOqKSI+NPCdQJY4v6qU31nLQPIF8fs2qkLOk+DU="; 14 + vendorHash = "sha256-0OrPbMG7ElOD+9/kWx1HtvGUBiFpIsNs5Vu7QofzE6Q="; 15 15 16 16 buildInputs = [ sqlite ]; 17 17
+2 -2
pkgs/development/tools/ddosify/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "ddosify"; 5 - version = "1.0.4"; 5 + version = "1.0.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-QJbIKzEYZO/LoOHKwXMlIY6q646+FdHwhA3WcXNA+F8="; 11 + sha256 = "sha256-oCbEAEBZJsMnnVu2N6eiQiaywovWmGUSVpUyWyS7TpM="; 12 12 }; 13 13 14 14 vendorHash = "sha256-cGhMhX+SEv9fejViLZrEwXg584o204OQ5iR6AkxKnXo=";
+3 -3
pkgs/development/tools/frink/default.nix
··· 8 8 }: 9 9 stdenv.mkDerivation rec { 10 10 pname = "frink"; 11 - version = "2023-05-22"; 11 + version = "2023-07-31"; 12 12 13 13 src = fetchurl { 14 14 # Upstream does not provide versioned download links 15 - url = "https://web.archive.org/web/20230526123219/https://frinklang.org/frinkjar/frink.jar"; 16 - sha256 = "sha256-IgINJvt9G5f1HELKhV5BHIu9NoA8STDqNg/dVTFzK0Y="; 15 + url = "https://web.archive.org/web/20230806114836/https://frinklang.org/frinkjar/frink.jar"; 16 + sha256 = "sha256-u44g/pM4ie3NcBh6MZpN8+oWZLYz0LN5ozetee1iXNk="; 17 17 }; 18 18 19 19 dontUnpack = true;
+2 -2
pkgs/development/tools/go-containerregistry/default.nix
··· 4 4 5 5 buildGoModule rec { 6 6 pname = "go-containerregistry"; 7 - version = "0.15.2"; 7 + version = "0.16.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "google"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-Bva962laaHJAHwiQAMPtOBkwqce1ww+sBGkjV1TjrwQ="; 13 + sha256 = "sha256-uqTWeA449MhHFWJwyqJgLsQHvjfk46S1YA+Yss5muSk="; 14 14 }; 15 15 vendorHash = null; 16 16
+3 -3
pkgs/development/tools/kubeswitch/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubeswitch"; 5 - version = "0.7.2"; 5 + version = "0.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "danielfoehrKn"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-p4/nYZt+OwNsFX9f9ySfQaz6gbz+8Mvt00W2Rs4dpCY="; 11 + sha256 = "sha256-7BQhkFvOgmLuzBEvAou8KANhxWna5KVokIF4DEIVU2g="; 12 12 }; 13 13 14 - vendorSha256 = null; 14 + vendorHash = null; 15 15 16 16 subPackages = [ "cmd/main.go" ]; 17 17
+3 -3
pkgs/development/tools/language-servers/metals/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "metals"; 5 - version = "0.11.12"; 5 + version = "1.0.0"; 6 6 7 7 deps = stdenv.mkDerivation { 8 8 name = "${pname}-deps-${version}"; ··· 16 16 ''; 17 17 outputHashMode = "recursive"; 18 18 outputHashAlgo = "sha256"; 19 - outputHash = "sha256-3zYjjrd3Hc2T4vwnajiAMNfTDUprKJZnZp2waRLQjI4="; 19 + outputHash = "sha256-futBxdMEJN0UdDvlk5FLUUmcG7r7P7D81IhbC2oYn5s="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ makeWrapper setJavaClassPath ]; ··· 36 36 meta = with lib; { 37 37 homepage = "https://scalameta.org/metals/"; 38 38 license = licenses.asl20; 39 - description = "Work-in-progress language server for Scala"; 39 + description = "Language server for Scala"; 40 40 maintainers = with maintainers; [ fabianhjr tomahna ]; 41 41 }; 42 42 }
+3 -3
pkgs/development/tools/misc/act/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "act"; 8 - version = "0.2.48"; 8 + version = "0.2.49"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "nektos"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-fEV7WiWoI0TGEAAG0HVRW42TEOlHbB91BZcn9h9G5c8="; 14 + hash = "sha256-dJt8XrcB1rYt6os3enLQz0YuqXNIqQTh85BIJdXwi2A="; 15 15 }; 16 16 17 - vendorHash = "sha256-r6eJl9KhOWPLqCqe3OTjUbENbZU/1NjOoxssaAh0g78="; 17 + vendorHash = "sha256-QPpwYec2Y0x/VOsiTWvObKrNWGGE7dj8Cl5eM2l8ibk="; 18 18 19 19 doCheck = false; 20 20
+5
pkgs/development/tools/misc/catppuccin-catwalk/default.nix
··· 15 15 hash = "sha256-5TAw5H3soxe9vLhfj1qs8uMr4ybrHlCj4zdsMzvPo6s="; 16 16 }; 17 17 18 + postPatch = '' 19 + substituteInPlace pyproject.toml \ 20 + --replace 'Pillow = "^' 'Pillow = ">=' 21 + ''; 22 + 18 23 nativeBuildInputs = with python3.pkgs; [ 19 24 poetry-core 20 25 ];
+3 -3
pkgs/development/tools/misc/terraform-ls/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "terraform-ls"; 5 - version = "0.31.3"; 5 + version = "0.31.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hashicorp"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-OzqJ/F3GeIaX4/z1KJdok8kUfualRzHv1AIM8dt8Kik="; 11 + hash = "sha256-0IP+83nGODSH/ELKsOA9ylm5fvREtRyiZASMNnwYIL4="; 12 12 }; 13 13 14 - vendorHash = "sha256-pEuen7CWniFzLgL1v+Xt1l6hde3YpyOMmQalj08UBX8="; 14 + vendorHash = "sha256-FDKprWyOltFy5WmXME/EfLuYRj92WuhgOV0VdWGanHg="; 15 15 16 16 ldflags = [ "-s" "-w" ]; 17 17
+2 -2
pkgs/development/tools/renderdoc/default.nix
··· 32 32 in 33 33 mkDerivation rec { 34 34 pname = "renderdoc"; 35 - version = "1.27"; 35 + version = "1.28"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "baldurk"; 39 39 repo = "renderdoc"; 40 40 rev = "v${version}"; 41 - sha256 = "sha256-zkot9LbbZyzQ7CLSEVPsospAo9u7WR2VHjQdnpNiLR0="; 41 + sha256 = "sha256-a8f/lbNcsWdYAmhNnTelyYX5J/XhINHRfguRFXQa3uY="; 42 42 }; 43 43 44 44 buildInputs = [
+3 -3
pkgs/development/tools/rust/cargo-hack/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-hack"; 5 - version = "0.5.28"; 5 + version = "0.5.29"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-434imb66AINKeW50ITc4RRYO9v7sH3fs1DEwSBc3mys="; 9 + sha256 = "sha256-Z3UExZghVw7Pbgh5nHuiC8cFVefBE0yZ2k5laam8myY="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-oDrpQskQV5hG9Ksp0TJcXjm/J9q/K831mOzxH+CXjfg="; 12 + cargoSha256 = "sha256-5X3MX2KV87mOcN/cL/lFU9K9/j04zn5C7teIXFqj7Wk="; 13 13 14 14 # some necessary files are absent in the crate version 15 15 doCheck = false;
+3 -3
pkgs/development/tools/rust/cargo-llvm-cov/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-llvm-cov"; 9 - version = "0.5.24"; 9 + version = "0.5.25"; 10 10 11 11 src = fetchCrate { 12 12 inherit pname version; 13 - sha256 = "sha256-Woayb/SgSCHwYYYezQXsna9N0Jot0/iga+jrOhjsSvc="; 13 + sha256 = "sha256-4ctwvDLluJsLWJPInoFGqxmEzlEuBtEJb3/x+q/5pDA="; 14 14 }; 15 - cargoSha256 = "sha256-8rP/wtDFH7hL3jt/QpWqriRwxlm0E2QvIqbCLiN7ZiM="; 15 + cargoSha256 = "sha256-QghbQYfoCd+ppNz/g5NlCnrFYpsjesQlcgMCEKUgN2k="; 16 16 17 17 # skip tests which require llvm-tools-preview 18 18 checkFlags = [
+2 -2
pkgs/development/tools/wasmedge/default.nix
··· 16 16 in 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "wasmedge"; 19 - version = "0.13.2"; 19 + version = "0.13.3"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "WasmEdge"; 23 23 repo = "WasmEdge"; 24 24 rev = finalAttrs.version; 25 - sha256 = "sha256-AU+EfNC6Au93ajj8cMTbJDvJ5iWLtT5Law7l55Knxuk="; 25 + sha256 = "sha256-IZMYeuneKtcuvbEVgkF2C3gbxJe7GlXRNEYwpFxtiKA="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+7
pkgs/os-specific/linux/minimal-bootstrap/default.nix
··· 48 48 glibc = glibc22; 49 49 }; 50 50 51 + findutils = callPackage ./findutils { 52 + bash = bash_2_05; 53 + gcc = gcc2; 54 + glibc = glibc22; 55 + }; 56 + 51 57 gawk = callPackage ./gawk { 52 58 bash = bash_2_05; 53 59 tinycc = tinycc-mes; ··· 141 147 echo ${binutils-mes.tests.get-version} 142 148 echo ${bzip2.tests.get-version} 143 149 echo ${diffutils.tests.get-version} 150 + echo ${findutils.tests.get-version} 144 151 echo ${gawk.tests.get-version} 145 152 echo ${gcc2.tests.get-version} 146 153 echo ${gcc2-mes.tests.get-version}
+72
pkgs/os-specific/linux/minimal-bootstrap/findutils/default.nix
··· 1 + { lib 2 + , buildPlatform 3 + , hostPlatform 4 + , fetchurl 5 + , bash 6 + , gcc 7 + , glibc 8 + , binutils 9 + , linux-headers 10 + , gnumake 11 + , gnugrep 12 + , gnused 13 + , gawk 14 + , gnutar 15 + , gzip 16 + }: 17 + let 18 + pname = "findutils"; 19 + version = "4.4.2"; 20 + 21 + src = fetchurl { 22 + url = "mirror://gnu/findutils/findutils-${version}.tar.gz"; 23 + sha256 = "0amn0bbwqvsvvsh6drfwz20ydc2czk374lzw5kksbh6bf78k4ks3"; 24 + }; 25 + in 26 + bash.runCommand "${pname}-${version}" { 27 + inherit pname version; 28 + 29 + nativeBuildInputs = [ 30 + gcc 31 + binutils 32 + gnumake 33 + gnused 34 + gnugrep 35 + gawk 36 + gnutar 37 + gzip 38 + ]; 39 + 40 + passthru.tests.get-version = result: 41 + bash.runCommand "${pname}-get-version-${version}" {} '' 42 + ${result}/bin/find --version 43 + mkdir $out 44 + ''; 45 + 46 + meta = with lib; { 47 + description = "GNU Find Utilities, the basic directory searching utilities of the GNU operating system"; 48 + homepage = "https://www.gnu.org/software/findutils"; 49 + license = licenses.gpl3Plus; 50 + maintainers = teams.minimal-bootstrap.members; 51 + platforms = platforms.unix; 52 + }; 53 + } '' 54 + # Unpack 55 + tar xzf ${src} 56 + cd findutils-${version} 57 + 58 + # Configure 59 + export C_INCLUDE_PATH="${glibc}/include:${linux-headers}/include" 60 + export LIBRARY_PATH="${glibc}/lib" 61 + export LIBS="-lc -lnss_files -lnss_dns -lresolv" 62 + bash ./configure \ 63 + --prefix=$out \ 64 + --build=${buildPlatform.config} \ 65 + --host=${hostPlatform.config} 66 + 67 + # Build 68 + make 69 + 70 + # Install 71 + make install 72 + ''
+14 -14
pkgs/servers/adguardhome/bins.nix
··· 1 1 { fetchurl, fetchzip }: 2 2 { 3 3 x86_64-darwin = fetchzip { 4 - sha256 = "sha256-7GoW0Re4NZa31mmNPto9fCVzKCl5ymUYQCwmDfuAnIc="; 5 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_darwin_amd64.zip"; 4 + sha256 = "sha256-jIrzE1Je2dhMJuq3k8KL1VoHru5qaUAJCR3kumE9aO0="; 5 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_darwin_amd64.zip"; 6 6 }; 7 7 aarch64-darwin = fetchzip { 8 - sha256 = "sha256-A3EGk+dsh1/m4rAWKNq6va75pA4OFLo9kSLb0b/1uZA="; 9 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_darwin_arm64.zip"; 8 + sha256 = "sha256-9BgGGCP8n+5Op+S1/yT/kdMvmiNgKkkXLQmqF2plJZY="; 9 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_darwin_arm64.zip"; 10 10 }; 11 11 i686-linux = fetchurl { 12 - sha256 = "sha256-8OIxMXjCZEurxInuDRAzEZ/Vjn1ixzZRMqXiSKgx7GE="; 13 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_386.tar.gz"; 12 + sha256 = "sha256-yPxLYXtH4bwQk2M2VTS5aJWTJciNaeXRRAcMBHuvkcA="; 13 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_386.tar.gz"; 14 14 }; 15 15 x86_64-linux = fetchurl { 16 - sha256 = "sha256-japMeJETDPy0RaxJOs6dDktQfTZ1sLB4jotxLYZhxfc="; 17 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_amd64.tar.gz"; 16 + sha256 = "sha256-sG64t1x70uKk844dT1g9GzJ+DgHuv7sUEBaVqoEmWOw="; 17 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_amd64.tar.gz"; 18 18 }; 19 19 aarch64-linux = fetchurl { 20 - sha256 = "sha256-E1MsoM3ZDaEPFLvXWt/+0hv8CVu2v9xlX0rvh4vmj6Y="; 21 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_arm64.tar.gz"; 20 + sha256 = "sha256-rUSfo1uJGbxx1n/VcLyq5zqiDo4g0caCpVcL2uZUSkE="; 21 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_arm64.tar.gz"; 22 22 }; 23 23 armv6l-linux = fetchurl { 24 - sha256 = "sha256-LovoihsVGtDif7sSqS3CE3QXNv2v2aSLr/x9sq2j78E="; 25 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_armv6.tar.gz"; 24 + sha256 = "sha256-ruICFAGEMXDeLvoOxHg2oEaYDHkoGZI+SozDXmmD9VU="; 25 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_armv6.tar.gz"; 26 26 }; 27 27 armv7l-linux = fetchurl { 28 - sha256 = "sha256-ArTTEWD0yYLRrX8jytkMtKWLbEfr90O4i73dMjA+sdE="; 29 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.35/AdGuardHome_linux_armv7.tar.gz"; 28 + sha256 = "sha256-mTGufMIKkj2R7QuNWKSKMt9KdwlZe9ORtJK5hIaeH/E="; 29 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.36/AdGuardHome_linux_armv7.tar.gz"; 30 30 }; 31 31 }
+1 -1
pkgs/servers/adguardhome/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "adguardhome"; 10 - version = "0.107.35"; 10 + version = "0.107.36"; 11 11 src = sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 12 12 13 13 installPhase = ''
+3 -3
pkgs/servers/sql/dolt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dolt"; 5 - version = "1.8.4"; 5 + version = "1.8.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dolthub"; 9 9 repo = "dolt"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vvtYhvfzuB/Yo/Oy6YedYVIvnOP7nM/4z/798i28v6U="; 11 + sha256 = "sha256-wsSSUd3i3PXEQfvpstcNXM9PK4K/Uw/xcT5Iu0vRKqQ="; 12 12 }; 13 13 14 14 modRoot = "./go"; 15 15 subPackages = [ "cmd/dolt" ]; 16 - vendorHash = "sha256-qMK95buygi0c2rluoFlqmMko72x5kFFoUBPIohmkfNQ="; 16 + vendorHash = "sha256-bLqoitXf4O2WFkArkvm3IeeKU8XQpSIicWwDD4aOWrg="; 17 17 proxyVendor = true; 18 18 doCheck = false; 19 19
+3 -3
pkgs/servers/zigbee2mqtt/default.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "zigbee2mqtt"; 11 - version = "1.32.1"; 11 + version = "1.32.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Koenkk"; 15 15 repo = "zigbee2mqtt"; 16 16 rev = version; 17 - hash = "sha256-HHu3aycYvcv7c4CMvv9GzeB4ZAleLDW/nRKmWahSQ88="; 17 + hash = "sha256-ghJMSWb2bYtJhthV7KOLn9q1Tf3dCtBCCDrnjlen5JU="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-uryyBFGNdsOVferTNTQ8+O3gv+lJ3mCuaU/47UzqcMk="; 20 + npmDepsHash = "sha256-2OjUBOCaVFU7Ct1n15AHm6QmzsIaGtti8zsElXcVSA8="; 21 21 22 22 nativeBuildInputs = [ 23 23 python3
+3 -3
pkgs/shells/carapace/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "carapace"; 5 - version = "0.25.3"; 5 + version = "0.26.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rsteube"; 9 9 repo = "${pname}-bin"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-N1rPAK+fjFqojxMMRgohTwhlYxHC0fUICZ+fcG23gUE="; 11 + sha256 = "sha256-1e2hrAoFtnG1lU7evYnJXs65qmLNvO6fO9kPqjv66YE="; 12 12 }; 13 13 14 - vendorHash = "sha256-LooEhKK+JSUaEMio81WGMv5l1SqEIs2r978yEc7sPlo="; 14 + vendorHash = "sha256-T0N6e96F/4HkHKYNiPFME/PUJGh+pbTmmb4SdZiDVgw="; 15 15 16 16 ldflags = [ 17 17 "-s"
+3 -3
pkgs/tools/admin/copilot-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "copilot-cli"; 5 - version = "1.29.0"; 5 + version = "1.29.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aws"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-sXYdP1HvwamKKvCNM5T2vu86y5mQ9MD44SrFgqWfQkE="; 11 + sha256 = "sha256-Mfh3Bym9aVvCaRHcSyg68KqA1Zx0tt7x52IOzvC+61M="; 12 12 }; 13 13 14 - vendorHash = "sha256-TbgxXkLIEu7jSnngVRbp4E22GgOkXSB0b8JzHI/pNGk="; 14 + vendorHash = "sha256-0QPUvKGuR4fhXUoak6PqkBXsg+WkAOlSluci6/+ULB8="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+2 -2
pkgs/tools/admin/gimme-aws-creds/default.nix
··· 42 42 in 43 43 python.pkgs.buildPythonApplication rec { 44 44 pname = "gimme-aws-creds"; 45 - version = "2.7.0"; # N.B: if you change this, check if overrides are still up-to-date 45 + version = "2.7.1"; # N.B: if you change this, check if overrides are still up-to-date 46 46 format = "setuptools"; 47 47 48 48 src = fetchFromGitHub { 49 49 owner = "Nike-Inc"; 50 50 repo = "gimme-aws-creds"; 51 51 rev = "v${version}"; 52 - hash = "sha256-PGDTCQUwWoRCYu6rm63ftIYLyAIIJ4SDvP4IGkxn3hs="; 52 + hash = "sha256-vn3DzDqu19g6Z/RcWsktJxmeg6oK9NIEyjpH9g1tXNs="; 53 53 }; 54 54 55 55 nativeBuildInputs = with python.pkgs; [
+58 -3
pkgs/tools/admin/lxd/wrapper.nix
··· 1 1 { lib 2 2 , lxd-unwrapped 3 + , linkFarm 3 4 , makeWrapper 5 + , stdenv 4 6 , symlinkJoin 5 7 , writeShellScriptBin 6 8 , acl ··· 12 14 , criu 13 15 , dnsmasq 14 16 , gnutar 17 + , gptfdisk 15 18 , gzip 16 19 , iproute2 17 20 , iptables 21 + , OVMF 22 + , qemu_kvm 23 + , qemu-utils 18 24 , rsync 25 + , spice-gtk 19 26 , squashfsTools 27 + , virtiofsd 20 28 , xz 21 - , 22 29 }: 23 30 let 24 31 binPath = lib.makeBinPath [ ··· 29 36 criu 30 37 dnsmasq 31 38 gnutar 39 + gptfdisk 32 40 gzip 33 41 iproute2 34 42 iptables 43 + qemu_kvm 44 + qemu-utils 35 45 rsync 36 46 squashfsTools 47 + virtiofsd 37 48 xz 38 49 39 50 (writeShellScriptBin "apparmor_parser" '' 40 51 exec '${apparmor-parser}/bin/apparmor_parser' -I '${apparmor-profiles}/etc/apparmor.d' "$@" 41 52 '') 42 53 ]; 54 + 55 + clientBinPath = [ 56 + spice-gtk 57 + ]; 58 + 59 + ovmf-2mb = OVMF.override { 60 + secureBoot = true; 61 + csmSupport = false; 62 + fdSize2MB = true; 63 + }; 64 + 65 + ovmf-4mb = OVMF.override { 66 + secureBoot = true; 67 + csmSupport = false; 68 + fdSize4MB = true; 69 + }; 70 + 71 + ovmf-4mb-csm = OVMF.override { 72 + secureBoot = true; 73 + csmSupport = false; 74 + fdSize2MB = false; 75 + fdSize4MB = true; 76 + }; 77 + 78 + ovmf-prefix = if stdenv.hostPlatform.isAarch64 then "AAVMF" else "OVMF"; 79 + 80 + # mimic ovmf from https://github.com/canonical/lxd-pkg-snap/blob/3abebe1dfeb20f9b7729556960c7e9fe6ad5e17c/snapcraft.yaml#L378 81 + # also found in /snap/lxd/current/share/qemu/ on a snap install 82 + ovmf = linkFarm "lxd-ovmf" [ 83 + { name = "OVMF_CODE.2MB.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_CODE.fd"; } 84 + { name = "OVMF_CODE.4MB.CSM.fd"; path = "${ovmf-4mb-csm.fd}/FV/${ovmf-prefix}_CODE.fd"; } 85 + { name = "OVMF_CODE.4MB.fd"; path = "${ovmf-4mb.fd}/FV/${ovmf-prefix}_CODE.fd"; } 86 + { name = "OVMF_CODE.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_CODE.fd"; } 87 + 88 + { name = "OVMF_VARS.2MB.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 89 + { name = "OVMF_VARS.2MB.ms.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 90 + { name = "OVMF_VARS.4MB.CSM.fd"; path = "${ovmf-4mb-csm.fd}/FV/${ovmf-prefix}_VARS.fd"; } 91 + { name = "OVMF_VARS.4MB.fd"; path = "${ovmf-4mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 92 + { name = "OVMF_VARS.4MB.ms.fd"; path = "${ovmf-4mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 93 + { name = "OVMF_VARS.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 94 + { name = "OVMF_VARS.ms.fd"; path = "${ovmf-2mb.fd}/FV/${ovmf-prefix}_VARS.fd"; } 95 + ]; 43 96 in 44 97 symlinkJoin { 45 98 name = "lxd-${lxd-unwrapped.version}"; ··· 49 102 nativeBuildInputs = [ makeWrapper ]; 50 103 51 104 postBuild = '' 52 - wrapProgram $out/bin/lxd --prefix PATH : ${lib.escapeShellArg binPath} 105 + wrapProgram $out/bin/lxd --prefix PATH : ${lib.escapeShellArg binPath}:${qemu_kvm}/libexec:$out/bin --set LXD_OVMF_PATH ${ovmf} 106 + 107 + wrapProgram $out/bin/lxc --prefix PATH : ${lib.makeBinPath clientBinPath} 53 108 ''; 54 109 55 110 passthru = { 56 - inherit (lxd-unwrapped) tests; 111 + inherit (lxd-unwrapped) tests ui; 57 112 }; 58 113 59 114 inherit (lxd-unwrapped) meta pname version;
+3 -3
pkgs/tools/admin/scaleway-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "scaleway-cli"; 5 - version = "2.18.0"; 5 + version = "2.19.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "scaleway"; 9 9 repo = "scaleway-cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ytnYrvvfO8L+TI1x0ydDBnh5lurWL1avCPVAlK/cOuI="; 11 + sha256 = "sha256-DJTgmUH/n1TBKrgBN+8oG2ziRlAXzj6gOtjv4QjNkC8="; 12 12 }; 13 13 14 - vendorHash = "sha256-UWWnT6ft/eGCn/6T1IDQSdfgv8htxDL2cFl4reAx51k="; 14 + vendorHash = "sha256-RnTj59WsyY/cWkhe2bucMvzrI8EwC3I1kxccBCfFqtI="; 15 15 16 16 ldflags = [ 17 17 "-w"
+2 -2
pkgs/tools/misc/lazydocker/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "lazydocker"; 5 - version = "0.21.0"; 5 + version = "0.21.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jesseduffield"; 9 9 repo = "lazydocker"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-CALMpedDCBlsYt31JOlwH1SOEhy/DFP6SdjoVkQ2KOs="; 11 + sha256 = "sha256-fzHsLKtlyTKcuOqTYtoE5Wv0Y45tAMgRpYmXA4oYrVY="; 12 12 }; 13 13 14 14 vendorHash = null;
+3 -3
pkgs/tools/misc/opentelemetry-collector/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "opentelemetry-collector"; 8 - version = "0.81.0"; 8 + version = "0.82.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "open-telemetry"; 12 12 repo = "opentelemetry-collector"; 13 13 rev = "v${version}"; 14 - hash = "sha256-yywmnJUTigDYeiAuK0f2511vh6sS4oD4hJLPozAlWz4="; 14 + hash = "sha256-EYkHfqwCxNIrE+wRMo/kwOVfuQfgrgcpmSL1gVwDebo="; 15 15 }; 16 16 # there is a nested go.mod 17 17 sourceRoot = "${src.name}/cmd/otelcorecol"; 18 - vendorHash = "sha256-BNIQ0pTHGgwWw1cy7au6hUeECC8oGsSkxaX5BUCRG9Y="; 18 + vendorHash = "sha256-lebysPwGTOj2W0OKmj/2sIH5wMKfhZYwHWYjqa2dfKw="; 19 19 20 20 # upstream strongly recommends disabling CGO 21 21 # additionally dependencies have had issues when GCO was enabled that weren't caught upstream
+1 -1
pkgs/tools/networking/edgedb/Cargo.lock
··· 884 884 885 885 [[package]] 886 886 name = "edgedb-cli" 887 - version = "3.3.0" 887 + version = "3.4.0" 888 888 dependencies = [ 889 889 "anyhow", 890 890 "arc-swap",
+3 -3
pkgs/tools/networking/edgedb/default.nix
··· 19 19 20 20 rustPlatform.buildRustPackage rec { 21 21 pname = "edgedb"; 22 - version = "3.3.0"; 22 + version = "3.4.0"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "edgedb"; 26 26 repo = "edgedb-cli"; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-6uhwuAGZ/XU+eENNo0H7hOdrDDx0fWvPVZAEOm5mdcY="; 28 + sha256 = "sha256-w6YpjSmh517yat45l4gGdV6qWD4O3aCx/6LL5wea+RA="; 29 29 fetchSubmodules = true; 30 30 }; 31 31 ··· 33 33 lockFile = ./Cargo.lock; 34 34 outputHashes = { 35 35 "edgedb-derive-0.5.0" = "sha256-y/mN0XuJtQBtkLmbk2s7hK5joGEH5Ge6sLCD88WyL9o="; 36 + "edgeql-parser-0.1.0" = "sha256-Y3gXxPuR7qnTL4fu2nZIa3e20YV1fLvm2jHAng+Ke2Q="; 36 37 "indexmap-2.0.0-pre" = "sha256-QMOmoUHE1F/sp+NeDpgRGqqacWLHWG02YgZc5vAdXZY="; 37 38 "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 38 - "edgeql-parser-0.1.0" = "sha256-Y3gXxPuR7qnTL4fu2nZIa3e20YV1fLvm2jHAng+Ke2Q="; 39 39 "rustyline-8.0.0" = "sha256-CrICwQbHPzS4QdVIEHxt2euX+g+0pFYe84NfMp1daEc="; 40 40 "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 41 41 };
+23 -2
pkgs/tools/package-management/nixpkgs-review/default.nix
··· 2 2 , python3 3 3 , fetchFromGitHub 4 4 5 + , installShellFiles 5 6 , bubblewrap 6 7 , nix-output-monitor 7 8 , cacert 8 9 , git 9 10 , nix 10 11 12 + , withAutocomplete ? true 11 13 , withSandboxSupport ? false 12 14 , withNom ? false 13 15 }: 14 16 15 17 python3.pkgs.buildPythonApplication rec { 16 18 pname = "nixpkgs-review"; 17 - version = "2.9.3"; 19 + version = "2.10.0"; 20 + format = "pyproject"; 18 21 19 22 src = fetchFromGitHub { 20 23 owner = "Mic92"; 21 24 repo = "nixpkgs-review"; 22 25 rev = version; 23 - sha256 = "sha256-Pcyhrw6oR+tLf/qgLnb7qx3003ldv3KuDVg6QsEhQp0="; 26 + hash = "sha256-uMcTwRmELk/vFI7vU4+UUvBDhlF+gVgohIXE0Sm1/d8="; 24 27 }; 25 28 29 + nativeBuildInputs = [ 30 + installShellFiles 31 + python3.pkgs.setuptools 32 + ] ++ lib.optionals withAutocomplete [ 33 + python3.pkgs.argcomplete 34 + ]; 35 + 36 + propagatedBuildInputs = [ python3.pkgs.argcomplete ]; 37 + 26 38 makeWrapperArgs = 27 39 let 28 40 binPath = [ nix git ] ··· 37 49 ]; 38 50 39 51 doCheck = false; 52 + 53 + postInstall = lib.optionalString withAutocomplete '' 54 + for cmd in nix-review nixpkgs-review; do 55 + installShellCompletion --cmd $cmd \ 56 + --bash <(register-python-argcomplete $out/bin/$cmd) \ 57 + --fish <(register-python-argcomplete $out/bin/$cmd -s fish) \ 58 + --zsh <(register-python-argcomplete $out/bin/$cmd -s zsh) 59 + done 60 + ''; 40 61 41 62 meta = with lib; { 42 63 description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
+639 -547
pkgs/tools/text/autocorrect/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "addr2line" 7 + version = "0.20.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 6 15 name = "adler" 7 16 version = "1.0.2" 8 17 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 10 19 11 20 [[package]] 12 21 name = "aho-corasick" 13 - version = "0.7.20" 22 + version = "1.0.2" 14 23 source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 24 + checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 16 25 dependencies = [ 17 26 "memchr", 18 27 ] 19 28 20 29 [[package]] 21 - name = "atty" 22 - version = "0.2.14" 30 + name = "anes" 31 + version = "0.1.6" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 34 + 35 + [[package]] 36 + name = "anstream" 37 + version = "0.3.2" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 40 + dependencies = [ 41 + "anstyle", 42 + "anstyle-parse", 43 + "anstyle-query", 44 + "anstyle-wincon", 45 + "colorchoice", 46 + "is-terminal", 47 + "utf8parse", 48 + ] 49 + 50 + [[package]] 51 + name = "anstyle" 52 + version = "1.0.1" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" 55 + 56 + [[package]] 57 + name = "anstyle-parse" 58 + version = "0.2.1" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 61 + dependencies = [ 62 + "utf8parse", 63 + ] 64 + 65 + [[package]] 66 + name = "anstyle-query" 67 + version = "1.0.0" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 70 + dependencies = [ 71 + "windows-sys 0.48.0", 72 + ] 73 + 74 + [[package]] 75 + name = "anstyle-wincon" 76 + version = "1.0.1" 23 77 source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 78 + checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 25 79 dependencies = [ 26 - "hermit-abi 0.1.19", 27 - "libc", 28 - "winapi", 80 + "anstyle", 81 + "windows-sys 0.48.0", 29 82 ] 30 83 31 84 [[package]] ··· 36 89 37 90 [[package]] 38 91 name = "autocorrect" 39 - version = "2.6.1" 40 - source = "registry+https://github.com/rust-lang/crates.io-index" 41 - checksum = "0be6666c6eabb199e7e968e8a64092fafedfc0ac33ba78438f5ce10a9f372e5e" 92 + version = "2.8.4" 42 93 dependencies = [ 43 - "autocorrect-derive 0.2.0", 94 + "autocorrect-derive 0.3.0", 95 + "criterion", 44 96 "diff", 45 97 "ignore", 98 + "indoc", 46 99 "lazy_static", 47 100 "owo-colors", 48 101 "pest", 49 102 "pest_derive", 103 + "pretty_assertions", 50 104 "regex", 51 105 "serde", 52 106 "serde_json", ··· 56 110 57 111 [[package]] 58 112 name = "autocorrect" 59 - version = "2.6.2" 113 + version = "2.8.4" 114 + source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "7747f9e20a908aa4ef73f8333d4892c197a8cce1648bd0f3c7a83ec6559f6cde" 60 116 dependencies = [ 61 - "autocorrect-derive 0.3.0", 62 - "criterion", 117 + "autocorrect-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 63 118 "diff", 64 119 "ignore", 65 - "indoc", 66 120 "lazy_static", 67 121 "owo-colors", 68 122 "pest", 69 123 "pest_derive", 70 - "pretty_assertions", 71 124 "regex", 72 125 "serde", 73 126 "serde_json", ··· 77 130 78 131 [[package]] 79 132 name = "autocorrect-cli" 80 - version = "2.6.2" 133 + version = "2.8.4" 81 134 dependencies = [ 82 - "autocorrect 2.6.2", 83 - "clap 4.1.4", 135 + "autocorrect 2.8.4", 136 + "clap", 84 137 "ignore", 85 138 "lazy_static", 86 139 "log", ··· 90 143 "self_update", 91 144 "sudo", 92 145 "threadpool", 146 + "tokio", 93 147 "walkdir", 94 148 ] 95 149 96 150 [[package]] 97 151 name = "autocorrect-derive" 98 - version = "0.2.0" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "debd029444930ad4091ac6e8af942e13bee8a351ca0b402cf1d3b2afcf3e2d69" 152 + version = "0.3.0" 101 153 dependencies = [ 102 - "syn", 154 + "quote", 155 + "syn 1.0.109", 103 156 ] 104 157 105 158 [[package]] 106 159 name = "autocorrect-derive" 107 160 version = "0.3.0" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "b80889323facc446add06be71b9c4c000acd083b12563d9c914b86424bf2f17a" 108 163 dependencies = [ 109 164 "quote", 110 - "syn", 165 + "syn 1.0.109", 111 166 ] 112 167 113 168 [[package]] 114 169 name = "autocorrect-java" 115 - version = "2.6.2" 170 + version = "2.8.4" 116 171 dependencies = [ 117 - "autocorrect 2.6.2", 172 + "autocorrect 2.8.4", 118 173 "jni", 119 174 ] 120 175 121 176 [[package]] 122 177 name = "autocorrect-node" 123 - version = "2.6.2" 178 + version = "2.8.4" 124 179 dependencies = [ 125 - "autocorrect 2.6.2", 180 + "autocorrect 2.8.4", 181 + "autocorrect-cli", 126 182 "napi", 127 183 "napi-build", 128 184 "napi-derive", ··· 130 186 131 187 [[package]] 132 188 name = "autocorrect-py" 133 - version = "2.6.2" 189 + version = "2.8.4" 134 190 dependencies = [ 135 - "autocorrect 2.6.2", 191 + "autocorrect 2.8.4", 136 192 "pyo3", 137 193 ] 138 194 139 195 [[package]] 140 196 name = "autocorrect-rb" 141 - version = "2.6.2" 197 + version = "2.8.4" 142 198 dependencies = [ 143 - "autocorrect 2.6.1", 199 + "autocorrect 2.8.4 (registry+https://github.com/rust-lang/crates.io-index)", 144 200 "magnus", 145 201 ] 146 202 147 203 [[package]] 148 204 name = "autocorrect-wasm" 149 - version = "2.6.2" 205 + version = "2.8.4" 150 206 dependencies = [ 151 - "autocorrect 2.6.2", 207 + "autocorrect 2.8.4", 152 208 "serde", 153 209 "serde_json", 154 210 "wasm-bindgen", 155 211 ] 156 212 157 213 [[package]] 214 + name = "backtrace" 215 + version = "0.3.68" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 218 + dependencies = [ 219 + "addr2line", 220 + "cc", 221 + "cfg-if", 222 + "libc", 223 + "miniz_oxide", 224 + "object", 225 + "rustc-demangle", 226 + ] 227 + 228 + [[package]] 158 229 name = "base64" 159 - version = "0.21.0" 230 + version = "0.21.2" 160 231 source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 232 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 162 233 163 234 [[package]] 164 235 name = "bindgen" 165 - version = "0.60.1" 236 + version = "0.66.1" 166 237 source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6" 238 + checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7" 168 239 dependencies = [ 169 - "bitflags", 240 + "bitflags 2.3.3", 170 241 "cexpr", 171 242 "clang-sys", 172 243 "lazy_static", ··· 177 248 "regex", 178 249 "rustc-hash", 179 250 "shlex", 251 + "syn 2.0.28", 180 252 ] 181 253 182 254 [[package]] ··· 186 258 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 187 259 188 260 [[package]] 189 - name = "block-buffer" 190 - version = "0.10.3" 261 + name = "bitflags" 262 + version = "2.3.3" 191 263 source = "registry+https://github.com/rust-lang/crates.io-index" 192 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 193 - dependencies = [ 194 - "generic-array", 195 - ] 264 + checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" 196 265 197 266 [[package]] 198 - name = "bstr" 199 - version = "0.2.17" 267 + name = "block-buffer" 268 + version = "0.10.4" 200 269 source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 270 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 202 271 dependencies = [ 203 - "lazy_static", 204 - "memchr", 205 - "regex-automata", 206 - "serde", 272 + "generic-array", 207 273 ] 208 274 209 275 [[package]] 210 276 name = "bstr" 211 - version = "1.2.0" 277 + version = "1.6.0" 212 278 source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "b7f0778972c64420fdedc63f09919c8a88bda7b25135357fd25a5d9f3257e832" 279 + checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" 214 280 dependencies = [ 215 281 "memchr", 216 282 "serde", ··· 218 284 219 285 [[package]] 220 286 name = "bumpalo" 221 - version = "3.12.0" 287 + version = "3.13.0" 222 288 source = "registry+https://github.com/rust-lang/crates.io-index" 223 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 289 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 224 290 225 291 [[package]] 226 292 name = "bytes" ··· 236 302 237 303 [[package]] 238 304 name = "cc" 239 - version = "1.0.79" 305 + version = "1.0.81" 240 306 source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 307 + checksum = "6c6b2562119bf28c3439f7f02db99faf0aa1a8cdfe5772a2ee155d32227239f0" 308 + dependencies = [ 309 + "libc", 310 + ] 242 311 243 312 [[package]] 244 313 name = "cesu8" ··· 262 331 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 263 332 264 333 [[package]] 334 + name = "ciborium" 335 + version = "0.2.1" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 338 + dependencies = [ 339 + "ciborium-io", 340 + "ciborium-ll", 341 + "serde", 342 + ] 343 + 344 + [[package]] 345 + name = "ciborium-io" 346 + version = "0.2.1" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 349 + 350 + [[package]] 351 + name = "ciborium-ll" 352 + version = "0.2.1" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 355 + dependencies = [ 356 + "ciborium-io", 357 + "half", 358 + ] 359 + 360 + [[package]] 265 361 name = "clang-sys" 266 - version = "1.4.0" 362 + version = "1.6.1" 267 363 source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 364 + checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" 269 365 dependencies = [ 270 366 "glob", 271 367 "libc", ··· 274 370 275 371 [[package]] 276 372 name = "clap" 277 - version = "2.34.0" 373 + version = "4.3.19" 278 374 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 375 + checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" 280 376 dependencies = [ 281 - "bitflags", 282 - "textwrap", 283 - "unicode-width", 377 + "clap_builder", 378 + "clap_derive", 379 + "once_cell", 284 380 ] 285 381 286 382 [[package]] 287 - name = "clap" 288 - version = "4.1.4" 383 + name = "clap_builder" 384 + version = "4.3.19" 289 385 source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76" 386 + checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" 291 387 dependencies = [ 292 - "bitflags", 293 - "clap_derive", 388 + "anstream", 389 + "anstyle", 294 390 "clap_lex", 295 - "is-terminal", 296 - "once_cell", 297 391 "strsim", 298 - "termcolor", 299 392 ] 300 393 301 394 [[package]] 302 395 name = "clap_derive" 303 - version = "4.1.0" 396 + version = "4.3.12" 304 397 source = "registry+https://github.com/rust-lang/crates.io-index" 305 - checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 398 + checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" 306 399 dependencies = [ 307 400 "heck", 308 - "proc-macro-error", 309 401 "proc-macro2", 310 402 "quote", 311 - "syn", 403 + "syn 2.0.28", 312 404 ] 313 405 314 406 [[package]] 315 407 name = "clap_lex" 316 - version = "0.3.1" 408 + version = "0.5.0" 317 409 source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 319 - dependencies = [ 320 - "os_str_bytes", 321 - ] 410 + checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 411 + 412 + [[package]] 413 + name = "colorchoice" 414 + version = "1.0.0" 415 + source = "registry+https://github.com/rust-lang/crates.io-index" 416 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 322 417 323 418 [[package]] 324 419 name = "combine" ··· 332 427 333 428 [[package]] 334 429 name = "console" 335 - version = "0.15.5" 430 + version = "0.15.7" 336 431 source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 432 + checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 338 433 dependencies = [ 339 434 "encode_unicode", 340 435 "lazy_static", 341 436 "libc", 342 - "windows-sys 0.42.0", 437 + "windows-sys 0.45.0", 343 438 ] 344 439 345 440 [[package]] ··· 353 448 354 449 [[package]] 355 450 name = "cpufeatures" 356 - version = "0.2.5" 451 + version = "0.2.9" 357 452 source = "registry+https://github.com/rust-lang/crates.io-index" 358 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 453 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 359 454 dependencies = [ 360 455 "libc", 361 456 ] ··· 371 466 372 467 [[package]] 373 468 name = "criterion" 374 - version = "0.3.6" 469 + version = "0.5.1" 375 470 source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f" 471 + checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 377 472 dependencies = [ 378 - "atty", 473 + "anes", 379 474 "cast", 380 - "clap 2.34.0", 475 + "ciborium", 476 + "clap", 381 477 "criterion-plot", 382 - "csv", 478 + "is-terminal", 383 479 "itertools", 384 - "lazy_static", 385 480 "num-traits", 481 + "once_cell", 386 482 "oorandom", 387 483 "plotters", 388 484 "rayon", 389 485 "regex", 390 486 "serde", 391 - "serde_cbor", 392 487 "serde_derive", 393 488 "serde_json", 394 489 "tinytemplate", ··· 397 492 398 493 [[package]] 399 494 name = "criterion-plot" 400 - version = "0.4.5" 495 + version = "0.5.0" 401 496 source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" 497 + checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 403 498 dependencies = [ 404 499 "cast", 405 500 "itertools", ··· 407 502 408 503 [[package]] 409 504 name = "crossbeam-channel" 410 - version = "0.5.6" 505 + version = "0.5.8" 411 506 source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 507 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 413 508 dependencies = [ 414 509 "cfg-if", 415 510 "crossbeam-utils", ··· 417 512 418 513 [[package]] 419 514 name = "crossbeam-deque" 420 - version = "0.8.2" 515 + version = "0.8.3" 421 516 source = "registry+https://github.com/rust-lang/crates.io-index" 422 - checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 517 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 423 518 dependencies = [ 424 519 "cfg-if", 425 520 "crossbeam-epoch", ··· 428 523 429 524 [[package]] 430 525 name = "crossbeam-epoch" 431 - version = "0.9.13" 526 + version = "0.9.15" 432 527 source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 528 + checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" 434 529 dependencies = [ 435 530 "autocfg", 436 531 "cfg-if", 437 532 "crossbeam-utils", 438 - "memoffset 0.7.1", 533 + "memoffset 0.9.0", 439 534 "scopeguard", 440 535 ] 441 536 442 537 [[package]] 443 538 name = "crossbeam-utils" 444 - version = "0.8.14" 539 + version = "0.8.16" 445 540 source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 541 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 447 542 dependencies = [ 448 543 "cfg-if", 449 544 ] ··· 459 554 ] 460 555 461 556 [[package]] 462 - name = "csv" 463 - version = "1.1.6" 464 - source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" 466 - dependencies = [ 467 - "bstr 0.2.17", 468 - "csv-core", 469 - "itoa 0.4.8", 470 - "ryu", 471 - "serde", 472 - ] 473 - 474 - [[package]] 475 - name = "csv-core" 476 - version = "0.1.10" 477 - source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 479 - dependencies = [ 480 - "memchr", 481 - ] 482 - 483 - [[package]] 484 557 name = "ctor" 485 - version = "0.1.26" 558 + version = "0.2.4" 486 559 source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 560 + checksum = "1f34ba9a9bcb8645379e9de8cb3ecfcf4d1c85ba66d90deb3259206fa5aa193b" 488 561 dependencies = [ 489 562 "quote", 490 - "syn", 563 + "syn 2.0.28", 491 564 ] 492 565 493 566 [[package]] ··· 498 571 499 572 [[package]] 500 573 name = "digest" 501 - version = "0.10.6" 574 + version = "0.10.7" 502 575 source = "registry+https://github.com/rust-lang/crates.io-index" 503 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 576 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 504 577 dependencies = [ 505 578 "block-buffer", 506 579 "crypto-common", ··· 508 581 509 582 [[package]] 510 583 name = "either" 511 - version = "1.8.1" 584 + version = "1.9.0" 512 585 source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 586 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 514 587 515 588 [[package]] 516 589 name = "encode_unicode" ··· 528 601 ] 529 602 530 603 [[package]] 604 + name = "equivalent" 605 + version = "1.0.1" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 608 + 609 + [[package]] 531 610 name = "errno" 532 - version = "0.2.8" 611 + version = "0.3.2" 533 612 source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 613 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 535 614 dependencies = [ 536 615 "errno-dragonfly", 537 616 "libc", 538 - "winapi", 617 + "windows-sys 0.48.0", 539 618 ] 540 619 541 620 [[package]] ··· 550 629 551 630 [[package]] 552 631 name = "fastrand" 553 - version = "1.8.0" 632 + version = "2.0.0" 554 633 source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 556 - dependencies = [ 557 - "instant", 558 - ] 634 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 559 635 560 636 [[package]] 561 637 name = "filetime" 562 - version = "0.2.20" 638 + version = "0.2.22" 563 639 source = "registry+https://github.com/rust-lang/crates.io-index" 564 - checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 640 + checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" 565 641 dependencies = [ 566 642 "cfg-if", 567 643 "libc", 568 644 "redox_syscall", 569 - "windows-sys 0.45.0", 645 + "windows-sys 0.48.0", 570 646 ] 571 647 572 648 [[package]] 573 649 name = "flate2" 574 - version = "1.0.25" 650 + version = "1.0.26" 575 651 source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 652 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 577 653 dependencies = [ 578 654 "crc32fast", 579 655 "miniz_oxide", ··· 587 663 588 664 [[package]] 589 665 name = "form_urlencoded" 590 - version = "1.1.0" 666 + version = "1.2.0" 591 667 source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 668 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 593 669 dependencies = [ 594 670 "percent-encoding", 595 671 ] 596 672 597 673 [[package]] 598 674 name = "futures-channel" 599 - version = "0.3.26" 675 + version = "0.3.28" 600 676 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 677 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 602 678 dependencies = [ 603 679 "futures-core", 604 680 ] 605 681 606 682 [[package]] 607 683 name = "futures-core" 608 - version = "0.3.26" 684 + version = "0.3.28" 609 685 source = "registry+https://github.com/rust-lang/crates.io-index" 610 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 686 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 611 687 612 688 [[package]] 613 689 name = "futures-io" 614 - version = "0.3.26" 690 + version = "0.3.28" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 693 + 694 + [[package]] 695 + name = "futures-macro" 696 + version = "0.3.28" 615 697 source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 698 + checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 699 + dependencies = [ 700 + "proc-macro2", 701 + "quote", 702 + "syn 2.0.28", 703 + ] 617 704 618 705 [[package]] 619 706 name = "futures-sink" 620 - version = "0.3.26" 707 + version = "0.3.28" 621 708 source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 709 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 623 710 624 711 [[package]] 625 712 name = "futures-task" 626 - version = "0.3.26" 713 + version = "0.3.28" 627 714 source = "registry+https://github.com/rust-lang/crates.io-index" 628 - checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 715 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 629 716 630 717 [[package]] 631 718 name = "futures-util" 632 - version = "0.3.26" 719 + version = "0.3.28" 633 720 source = "registry+https://github.com/rust-lang/crates.io-index" 634 - checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 721 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 635 722 dependencies = [ 636 723 "futures-core", 637 724 "futures-io", 725 + "futures-macro", 638 726 "futures-task", 639 727 "memchr", 640 728 "pin-project-lite", ··· 644 732 645 733 [[package]] 646 734 name = "generic-array" 647 - version = "0.14.6" 735 + version = "0.14.7" 648 736 source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 737 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 650 738 dependencies = [ 651 739 "typenum", 652 740 "version_check", 653 741 ] 654 742 655 743 [[package]] 744 + name = "gimli" 745 + version = "0.27.3" 746 + source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 748 + 749 + [[package]] 656 750 name = "glob" 657 751 version = "0.3.1" 658 752 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 660 754 661 755 [[package]] 662 756 name = "globset" 663 - version = "0.4.10" 757 + version = "0.4.13" 664 758 source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 759 + checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 666 760 dependencies = [ 667 761 "aho-corasick", 668 - "bstr 1.2.0", 762 + "bstr", 669 763 "fnv", 670 764 "log", 671 765 "regex", ··· 673 767 674 768 [[package]] 675 769 name = "h2" 676 - version = "0.3.15" 770 + version = "0.3.20" 677 771 source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 772 + checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 679 773 dependencies = [ 680 774 "bytes", 681 775 "fnv", ··· 683 777 "futures-sink", 684 778 "futures-util", 685 779 "http", 686 - "indexmap", 780 + "indexmap 1.9.3", 687 781 "slab", 688 782 "tokio", 689 783 "tokio-util", ··· 703 797 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 704 798 705 799 [[package]] 706 - name = "heck" 707 - version = "0.4.1" 800 + name = "hashbrown" 801 + version = "0.14.0" 708 802 source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 710 - 711 - [[package]] 712 - name = "hermit-abi" 713 - version = "0.1.19" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 716 - dependencies = [ 717 - "libc", 718 - ] 803 + checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" 719 804 720 805 [[package]] 721 - name = "hermit-abi" 722 - version = "0.2.6" 806 + name = "heck" 807 + version = "0.4.1" 723 808 source = "registry+https://github.com/rust-lang/crates.io-index" 724 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 725 - dependencies = [ 726 - "libc", 727 - ] 809 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 728 810 729 811 [[package]] 730 812 name = "hermit-abi" 731 - version = "0.3.1" 813 + version = "0.3.2" 732 814 source = "registry+https://github.com/rust-lang/crates.io-index" 733 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 815 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 734 816 735 817 [[package]] 736 818 name = "http" 737 - version = "0.2.8" 819 + version = "0.2.9" 738 820 source = "registry+https://github.com/rust-lang/crates.io-index" 739 - checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 821 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 740 822 dependencies = [ 741 823 "bytes", 742 824 "fnv", 743 - "itoa 1.0.5", 825 + "itoa", 744 826 ] 745 827 746 828 [[package]] ··· 768 850 769 851 [[package]] 770 852 name = "hyper" 771 - version = "0.14.24" 853 + version = "0.14.27" 772 854 source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 855 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 774 856 dependencies = [ 775 857 "bytes", 776 858 "futures-channel", ··· 781 863 "http-body", 782 864 "httparse", 783 865 "httpdate", 784 - "itoa 1.0.5", 866 + "itoa", 785 867 "pin-project-lite", 786 868 "socket2", 787 869 "tokio", ··· 792 874 793 875 [[package]] 794 876 name = "hyper-rustls" 795 - version = "0.23.2" 877 + version = "0.24.1" 796 878 source = "registry+https://github.com/rust-lang/crates.io-index" 797 - checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 879 + checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 798 880 dependencies = [ 881 + "futures-util", 799 882 "http", 800 883 "hyper", 801 884 "rustls", ··· 805 888 806 889 [[package]] 807 890 name = "idna" 808 - version = "0.3.0" 891 + version = "0.4.0" 809 892 source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 893 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 811 894 dependencies = [ 812 895 "unicode-bidi", 813 896 "unicode-normalization", ··· 832 915 833 916 [[package]] 834 917 name = "indexmap" 835 - version = "1.9.2" 918 + version = "1.9.3" 836 919 source = "registry+https://github.com/rust-lang/crates.io-index" 837 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 920 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 838 921 dependencies = [ 839 922 "autocfg", 840 - "hashbrown", 923 + "hashbrown 0.12.3", 924 + ] 925 + 926 + [[package]] 927 + name = "indexmap" 928 + version = "2.0.0" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" 931 + dependencies = [ 932 + "equivalent", 933 + "hashbrown 0.14.0", 841 934 ] 842 935 843 936 [[package]] ··· 859 952 checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 860 953 861 954 [[package]] 862 - name = "instant" 863 - version = "0.1.12" 864 - source = "registry+https://github.com/rust-lang/crates.io-index" 865 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 866 - dependencies = [ 867 - "cfg-if", 868 - ] 869 - 870 - [[package]] 871 - name = "io-lifetimes" 872 - version = "1.0.5" 873 - source = "registry+https://github.com/rust-lang/crates.io-index" 874 - checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 875 - dependencies = [ 876 - "libc", 877 - "windows-sys 0.45.0", 878 - ] 879 - 880 - [[package]] 881 955 name = "ipnet" 882 - version = "2.7.1" 956 + version = "2.8.0" 883 957 source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 958 + checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 885 959 886 960 [[package]] 887 961 name = "is-terminal" 888 - version = "0.4.3" 962 + version = "0.4.9" 889 963 source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef" 964 + checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 891 965 dependencies = [ 892 - "hermit-abi 0.3.1", 893 - "io-lifetimes", 966 + "hermit-abi", 894 967 "rustix", 895 - "windows-sys 0.45.0", 968 + "windows-sys 0.48.0", 896 969 ] 897 970 898 971 [[package]] ··· 906 979 907 980 [[package]] 908 981 name = "itoa" 909 - version = "0.4.8" 982 + version = "1.0.9" 910 983 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 912 - 913 - [[package]] 914 - name = "itoa" 915 - version = "1.0.5" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 984 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 918 985 919 986 [[package]] 920 987 name = "jni" ··· 938 1005 939 1006 [[package]] 940 1007 name = "js-sys" 941 - version = "0.3.61" 1008 + version = "0.3.64" 942 1009 source = "registry+https://github.com/rust-lang/crates.io-index" 943 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1010 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 944 1011 dependencies = [ 945 1012 "wasm-bindgen", 946 1013 ] ··· 959 1026 960 1027 [[package]] 961 1028 name = "libc" 962 - version = "0.2.139" 1029 + version = "0.2.147" 963 1030 source = "registry+https://github.com/rust-lang/crates.io-index" 964 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 1031 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 965 1032 966 1033 [[package]] 967 1034 name = "libloading" ··· 975 1042 976 1043 [[package]] 977 1044 name = "linux-raw-sys" 978 - version = "0.1.4" 1045 + version = "0.4.5" 979 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 980 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1047 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 981 1048 982 1049 [[package]] 983 1050 name = "lock_api" 984 - version = "0.4.9" 1051 + version = "0.4.10" 985 1052 source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1053 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 987 1054 dependencies = [ 988 1055 "autocfg", 989 1056 "scopeguard", ··· 991 1058 992 1059 [[package]] 993 1060 name = "log" 994 - version = "0.4.17" 1061 + version = "0.4.19" 995 1062 source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 997 - dependencies = [ 998 - "cfg-if", 999 - ] 1063 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1000 1064 1001 1065 [[package]] 1002 1066 name = "magnus" ··· 1017 1081 dependencies = [ 1018 1082 "proc-macro2", 1019 1083 "quote", 1020 - "syn", 1084 + "syn 1.0.109", 1021 1085 ] 1022 1086 1023 1087 [[package]] ··· 1037 1101 1038 1102 [[package]] 1039 1103 name = "memoffset" 1040 - version = "0.7.1" 1104 + version = "0.9.0" 1041 1105 source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1106 + checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" 1043 1107 dependencies = [ 1044 1108 "autocfg", 1045 1109 ] 1046 1110 1047 1111 [[package]] 1048 1112 name = "mime" 1049 - version = "0.3.16" 1113 + version = "0.3.17" 1050 1114 source = "registry+https://github.com/rust-lang/crates.io-index" 1051 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1115 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1052 1116 1053 1117 [[package]] 1054 1118 name = "minimal-lexical" ··· 1058 1122 1059 1123 [[package]] 1060 1124 name = "miniz_oxide" 1061 - version = "0.6.2" 1125 + version = "0.7.1" 1062 1126 source = "registry+https://github.com/rust-lang/crates.io-index" 1063 - checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1127 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1064 1128 dependencies = [ 1065 1129 "adler", 1066 1130 ] 1067 1131 1068 1132 [[package]] 1069 1133 name = "mio" 1070 - version = "0.8.5" 1134 + version = "0.8.8" 1071 1135 source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 1136 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1073 1137 dependencies = [ 1074 1138 "libc", 1075 - "log", 1076 1139 "wasi", 1077 - "windows-sys 0.42.0", 1140 + "windows-sys 0.48.0", 1078 1141 ] 1079 1142 1080 1143 [[package]] 1081 1144 name = "napi" 1082 - version = "2.11.1" 1145 + version = "2.13.2" 1083 1146 source = "registry+https://github.com/rust-lang/crates.io-index" 1084 - checksum = "2412d19892730f62fd592f8af41606ca6717ea1eca026103cd44b447829f00c1" 1147 + checksum = "0ede2d12cd6fce44da537a4be1f5510c73be2506c2e32dfaaafd1f36968f3a0e" 1085 1148 dependencies = [ 1086 - "bitflags", 1149 + "bitflags 2.3.3", 1087 1150 "ctor", 1151 + "napi-derive", 1088 1152 "napi-sys", 1089 1153 "once_cell", 1090 - "thread_local", 1154 + "tokio", 1091 1155 ] 1092 1156 1093 1157 [[package]] ··· 1098 1162 1099 1163 [[package]] 1100 1164 name = "napi-derive" 1101 - version = "2.11.0" 1165 + version = "2.13.0" 1102 1166 source = "registry+https://github.com/rust-lang/crates.io-index" 1103 - checksum = "03f15c1ac0eac01eca2a24c27905ab47f7411acefd829d0d01fb131dc39befd7" 1167 + checksum = "da1c6a8fa84d549aa8708fcd062372bf8ec6e849de39016ab921067d21bde367" 1104 1168 dependencies = [ 1169 + "cfg-if", 1105 1170 "convert_case", 1106 1171 "napi-derive-backend", 1107 1172 "proc-macro2", 1108 1173 "quote", 1109 - "syn", 1174 + "syn 1.0.109", 1110 1175 ] 1111 1176 1112 1177 [[package]] 1113 1178 name = "napi-derive-backend" 1114 - version = "1.0.44" 1179 + version = "1.0.52" 1115 1180 source = "registry+https://github.com/rust-lang/crates.io-index" 1116 - checksum = "4930d5fa70f5663b9e7d6b4f0816b70d095574ee7f3c865fdb8c43b0f7e6406d" 1181 + checksum = "20bbc7c69168d06a848f925ec5f0e0997f98e8c8d4f2cc30157f0da51c009e17" 1117 1182 dependencies = [ 1118 1183 "convert_case", 1119 1184 "once_cell", 1120 1185 "proc-macro2", 1121 1186 "quote", 1122 1187 "regex", 1123 - "syn", 1188 + "semver", 1189 + "syn 1.0.109", 1124 1190 ] 1125 1191 1126 1192 [[package]] ··· 1144 1210 1145 1211 [[package]] 1146 1212 name = "num-traits" 1147 - version = "0.2.15" 1213 + version = "0.2.16" 1148 1214 source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1215 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 1150 1216 dependencies = [ 1151 1217 "autocfg", 1152 1218 ] 1153 1219 1154 1220 [[package]] 1155 1221 name = "num_cpus" 1156 - version = "1.15.0" 1222 + version = "1.16.0" 1157 1223 source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1224 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1159 1225 dependencies = [ 1160 - "hermit-abi 0.2.6", 1226 + "hermit-abi", 1161 1227 "libc", 1162 1228 ] 1163 1229 ··· 1168 1234 checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1169 1235 1170 1236 [[package]] 1237 + name = "object" 1238 + version = "0.31.1" 1239 + source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 1241 + dependencies = [ 1242 + "memchr", 1243 + ] 1244 + 1245 + [[package]] 1171 1246 name = "once_cell" 1172 - version = "1.17.0" 1247 + version = "1.18.0" 1173 1248 source = "registry+https://github.com/rust-lang/crates.io-index" 1174 - checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 1249 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 1175 1250 1176 1251 [[package]] 1177 1252 name = "oorandom" ··· 1180 1255 checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1181 1256 1182 1257 [[package]] 1183 - name = "os_str_bytes" 1184 - version = "6.4.1" 1185 - source = "registry+https://github.com/rust-lang/crates.io-index" 1186 - checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 1187 - 1188 - [[package]] 1189 - name = "output_vt100" 1190 - version = "0.1.3" 1191 - source = "registry+https://github.com/rust-lang/crates.io-index" 1192 - checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 1193 - dependencies = [ 1194 - "winapi", 1195 - ] 1196 - 1197 - [[package]] 1198 1258 name = "owo-colors" 1199 1259 version = "3.5.0" 1200 1260 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1212 1272 1213 1273 [[package]] 1214 1274 name = "parking_lot_core" 1215 - version = "0.9.7" 1275 + version = "0.9.8" 1216 1276 source = "registry+https://github.com/rust-lang/crates.io-index" 1217 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1277 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 1218 1278 dependencies = [ 1219 1279 "cfg-if", 1220 1280 "libc", 1221 1281 "redox_syscall", 1222 1282 "smallvec", 1223 - "windows-sys 0.45.0", 1283 + "windows-targets 0.48.1", 1224 1284 ] 1225 1285 1226 1286 [[package]] ··· 1231 1291 1232 1292 [[package]] 1233 1293 name = "percent-encoding" 1234 - version = "2.2.0" 1294 + version = "2.3.0" 1235 1295 source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1296 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1237 1297 1238 1298 [[package]] 1239 1299 name = "pest" 1240 - version = "2.5.5" 1300 + version = "2.7.2" 1241 1301 source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "028accff104c4e513bad663bbcd2ad7cfd5304144404c31ed0a77ac103d00660" 1302 + checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" 1243 1303 dependencies = [ 1244 1304 "thiserror", 1245 1305 "ucd-trie", ··· 1247 1307 1248 1308 [[package]] 1249 1309 name = "pest_derive" 1250 - version = "2.5.5" 1310 + version = "2.7.2" 1251 1311 source = "registry+https://github.com/rust-lang/crates.io-index" 1252 - checksum = "2ac3922aac69a40733080f53c1ce7f91dcf57e1a5f6c52f421fadec7fbdc4b69" 1312 + checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853" 1253 1313 dependencies = [ 1254 1314 "pest", 1255 1315 "pest_generator", ··· 1257 1317 1258 1318 [[package]] 1259 1319 name = "pest_generator" 1260 - version = "2.5.5" 1320 + version = "2.7.2" 1261 1321 source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "d06646e185566b5961b4058dd107e0a7f56e77c3f484549fb119867773c0f202" 1322 + checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929" 1263 1323 dependencies = [ 1264 1324 "pest", 1265 1325 "pest_meta", 1266 1326 "proc-macro2", 1267 1327 "quote", 1268 - "syn", 1328 + "syn 2.0.28", 1269 1329 ] 1270 1330 1271 1331 [[package]] 1272 1332 name = "pest_meta" 1273 - version = "2.5.5" 1333 + version = "2.7.2" 1274 1334 source = "registry+https://github.com/rust-lang/crates.io-index" 1275 - checksum = "e6f60b2ba541577e2a0c307c8f39d1439108120eb7903adeb6497fa880c59616" 1335 + checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48" 1276 1336 dependencies = [ 1277 1337 "once_cell", 1278 1338 "pest", ··· 1281 1341 1282 1342 [[package]] 1283 1343 name = "pin-project-lite" 1284 - version = "0.2.9" 1344 + version = "0.2.10" 1285 1345 source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1346 + checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 1287 1347 1288 1348 [[package]] 1289 1349 name = "pin-utils" ··· 1293 1353 1294 1354 [[package]] 1295 1355 name = "plotters" 1296 - version = "0.3.4" 1356 + version = "0.3.5" 1297 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 1358 + checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" 1299 1359 dependencies = [ 1300 1360 "num-traits", 1301 1361 "plotters-backend", ··· 1306 1366 1307 1367 [[package]] 1308 1368 name = "plotters-backend" 1309 - version = "0.3.4" 1369 + version = "0.3.5" 1310 1370 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 1371 + checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" 1312 1372 1313 1373 [[package]] 1314 1374 name = "plotters-svg" 1315 - version = "0.3.3" 1375 + version = "0.3.5" 1316 1376 source = "registry+https://github.com/rust-lang/crates.io-index" 1317 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 1377 + checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" 1318 1378 dependencies = [ 1319 1379 "plotters-backend", 1320 1380 ] 1321 1381 1322 1382 [[package]] 1323 1383 name = "pretty_assertions" 1324 - version = "1.3.0" 1384 + version = "1.4.0" 1325 1385 source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 1386 + checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" 1327 1387 dependencies = [ 1328 - "ctor", 1329 1388 "diff", 1330 - "output_vt100", 1331 1389 "yansi", 1332 1390 ] 1333 1391 1334 1392 [[package]] 1335 - name = "proc-macro-error" 1336 - version = "1.0.4" 1337 - source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1339 - dependencies = [ 1340 - "proc-macro-error-attr", 1341 - "proc-macro2", 1342 - "quote", 1343 - "syn", 1344 - "version_check", 1345 - ] 1346 - 1347 - [[package]] 1348 - name = "proc-macro-error-attr" 1349 - version = "1.0.4" 1350 - source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1352 - dependencies = [ 1353 - "proc-macro2", 1354 - "quote", 1355 - "version_check", 1356 - ] 1357 - 1358 - [[package]] 1359 1393 name = "proc-macro2" 1360 - version = "1.0.51" 1394 + version = "1.0.66" 1361 1395 source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 1396 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 1363 1397 dependencies = [ 1364 1398 "unicode-ident", 1365 1399 ] ··· 1410 1444 "proc-macro2", 1411 1445 "pyo3-macros-backend", 1412 1446 "quote", 1413 - "syn", 1447 + "syn 1.0.109", 1414 1448 ] 1415 1449 1416 1450 [[package]] ··· 1421 1455 dependencies = [ 1422 1456 "proc-macro2", 1423 1457 "quote", 1424 - "syn", 1458 + "syn 1.0.109", 1425 1459 ] 1426 1460 1427 1461 [[package]] ··· 1435 1469 1436 1470 [[package]] 1437 1471 name = "quote" 1438 - version = "1.0.23" 1472 + version = "1.0.32" 1439 1473 source = "registry+https://github.com/rust-lang/crates.io-index" 1440 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 1474 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 1441 1475 dependencies = [ 1442 1476 "proc-macro2", 1443 1477 ] 1444 1478 1445 1479 [[package]] 1446 1480 name = "rayon" 1447 - version = "1.6.1" 1481 + version = "1.7.0" 1448 1482 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 - checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 1483 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 1450 1484 dependencies = [ 1451 1485 "either", 1452 1486 "rayon-core", ··· 1454 1488 1455 1489 [[package]] 1456 1490 name = "rayon-core" 1457 - version = "1.10.2" 1491 + version = "1.11.0" 1458 1492 source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" 1493 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 1460 1494 dependencies = [ 1461 1495 "crossbeam-channel", 1462 1496 "crossbeam-deque", ··· 1466 1500 1467 1501 [[package]] 1468 1502 name = "rb-sys" 1469 - version = "0.9.64" 1503 + version = "0.9.81" 1470 1504 source = "registry+https://github.com/rust-lang/crates.io-index" 1471 - checksum = "cc8945662df8083245deda89e236647173cc7ad750f481ddcd7bbfd3afe3fa5e" 1505 + checksum = "a57240b308b155b09dce81e32829966a99f52d1088b45957e4283e526c5317a1" 1472 1506 dependencies = [ 1473 1507 "rb-sys-build", 1474 1508 ] 1475 1509 1476 1510 [[package]] 1477 1511 name = "rb-sys-build" 1478 - version = "0.9.64" 1512 + version = "0.9.81" 1479 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1480 - checksum = "ae8c3cdf9edc3908ee1555b7a1bca58ee1b499439b32cd1c1ec3e66736a8df48" 1514 + checksum = "f24ce877a4c5d07f06f6aa6fec3ac95e4b357b9f73b0f5445d8cbb7266d410e8" 1481 1515 dependencies = [ 1482 1516 "bindgen", 1517 + "lazy_static", 1518 + "proc-macro2", 1519 + "quote", 1483 1520 "regex", 1484 1521 "shell-words", 1522 + "syn 2.0.28", 1485 1523 ] 1486 1524 1487 1525 [[package]] ··· 1492 1530 1493 1531 [[package]] 1494 1532 name = "redox_syscall" 1495 - version = "0.2.16" 1533 + version = "0.3.5" 1496 1534 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1535 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1498 1536 dependencies = [ 1499 - "bitflags", 1537 + "bitflags 1.3.2", 1500 1538 ] 1501 1539 1502 1540 [[package]] 1503 1541 name = "regex" 1504 - version = "1.7.1" 1542 + version = "1.9.2" 1505 1543 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 1544 + checksum = "5bc4f4d719ae1d92dc7e5ef3865f93af6e28c7af68ebd7a68a367932b88c1e2c" 1507 1545 dependencies = [ 1508 1546 "aho-corasick", 1509 1547 "memchr", 1548 + "regex-automata", 1510 1549 "regex-syntax", 1511 1550 ] 1512 1551 1513 1552 [[package]] 1514 1553 name = "regex-automata" 1515 - version = "0.1.10" 1554 + version = "0.3.5" 1516 1555 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1556 + checksum = "26bb2039bb570943fc65037c16640a64fba171d3760138656fdfe62b3bd24239" 1557 + dependencies = [ 1558 + "aho-corasick", 1559 + "memchr", 1560 + "regex-syntax", 1561 + ] 1518 1562 1519 1563 [[package]] 1520 1564 name = "regex-syntax" 1521 - version = "0.6.28" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1524 - 1525 - [[package]] 1526 - name = "remove_dir_all" 1527 - version = "0.5.3" 1565 + version = "0.7.4" 1528 1566 source = "registry+https://github.com/rust-lang/crates.io-index" 1529 - checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1530 - dependencies = [ 1531 - "winapi", 1532 - ] 1567 + checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 1533 1568 1534 1569 [[package]] 1535 1570 name = "reqwest" 1536 - version = "0.11.14" 1571 + version = "0.11.18" 1537 1572 source = "registry+https://github.com/rust-lang/crates.io-index" 1538 - checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 1573 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 1539 1574 dependencies = [ 1540 1575 "base64", 1541 1576 "bytes", ··· 1586 1621 ] 1587 1622 1588 1623 [[package]] 1624 + name = "rustc-demangle" 1625 + version = "0.1.23" 1626 + source = "registry+https://github.com/rust-lang/crates.io-index" 1627 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1628 + 1629 + [[package]] 1589 1630 name = "rustc-hash" 1590 1631 version = "1.1.0" 1591 1632 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1593 1634 1594 1635 [[package]] 1595 1636 name = "rustix" 1596 - version = "0.36.8" 1637 + version = "0.38.7" 1597 1638 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 - checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" 1639 + checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399" 1599 1640 dependencies = [ 1600 - "bitflags", 1641 + "bitflags 2.3.3", 1601 1642 "errno", 1602 - "io-lifetimes", 1603 1643 "libc", 1604 1644 "linux-raw-sys", 1605 - "windows-sys 0.45.0", 1645 + "windows-sys 0.48.0", 1606 1646 ] 1607 1647 1608 1648 [[package]] 1609 1649 name = "rustls" 1610 - version = "0.20.8" 1650 + version = "0.21.6" 1611 1651 source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 1652 + checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" 1613 1653 dependencies = [ 1614 1654 "log", 1615 1655 "ring", 1656 + "rustls-webpki", 1616 1657 "sct", 1617 - "webpki", 1618 1658 ] 1619 1659 1620 1660 [[package]] 1621 1661 name = "rustls-pemfile" 1622 - version = "1.0.2" 1662 + version = "1.0.3" 1623 1663 source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 1664 + checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 1625 1665 dependencies = [ 1626 1666 "base64", 1627 1667 ] 1628 1668 1629 1669 [[package]] 1670 + name = "rustls-webpki" 1671 + version = "0.101.2" 1672 + source = "registry+https://github.com/rust-lang/crates.io-index" 1673 + checksum = "513722fd73ad80a71f72b61009ea1b584bcfa1483ca93949c8f290298837fa59" 1674 + dependencies = [ 1675 + "ring", 1676 + "untrusted", 1677 + ] 1678 + 1679 + [[package]] 1630 1680 name = "ryu" 1631 - version = "1.0.12" 1681 + version = "1.0.15" 1632 1682 source = "registry+https://github.com/rust-lang/crates.io-index" 1633 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 1683 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1634 1684 1635 1685 [[package]] 1636 1686 name = "same-file" ··· 1643 1693 1644 1694 [[package]] 1645 1695 name = "scopeguard" 1646 - version = "1.1.0" 1696 + version = "1.2.0" 1647 1697 source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1698 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1649 1699 1650 1700 [[package]] 1651 1701 name = "sct" ··· 1679 1729 1680 1730 [[package]] 1681 1731 name = "semver" 1682 - version = "1.0.16" 1732 + version = "1.0.18" 1683 1733 source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 1734 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 1685 1735 1686 1736 [[package]] 1687 1737 name = "serde" 1688 - version = "1.0.152" 1738 + version = "1.0.181" 1689 1739 source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 1740 + checksum = "6d3e73c93c3240c0bda063c239298e633114c69a888c3e37ca8bb33f343e9890" 1691 1741 dependencies = [ 1692 1742 "serde_derive", 1693 1743 ] 1694 1744 1695 1745 [[package]] 1696 - name = "serde_cbor" 1697 - version = "0.11.2" 1698 - source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 1700 - dependencies = [ 1701 - "half", 1702 - "serde", 1703 - ] 1704 - 1705 - [[package]] 1706 1746 name = "serde_derive" 1707 - version = "1.0.152" 1747 + version = "1.0.181" 1708 1748 source = "registry+https://github.com/rust-lang/crates.io-index" 1709 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 1749 + checksum = "be02f6cb0cd3a5ec20bbcfbcbd749f57daddb1a0882dc2e46a6c236c90b977ed" 1710 1750 dependencies = [ 1711 1751 "proc-macro2", 1712 1752 "quote", 1713 - "syn", 1753 + "syn 2.0.28", 1714 1754 ] 1715 1755 1716 1756 [[package]] 1717 1757 name = "serde_json" 1718 - version = "1.0.93" 1758 + version = "1.0.104" 1719 1759 source = "registry+https://github.com/rust-lang/crates.io-index" 1720 - checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 1760 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 1721 1761 dependencies = [ 1722 - "itoa 1.0.5", 1762 + "itoa", 1723 1763 "ryu", 1724 1764 "serde", 1725 1765 ] 1726 1766 1727 1767 [[package]] 1728 1768 name = "serde_repr" 1729 - version = "0.1.10" 1769 + version = "0.1.16" 1730 1770 source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 1771 + checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" 1732 1772 dependencies = [ 1733 1773 "proc-macro2", 1734 1774 "quote", 1735 - "syn", 1775 + "syn 2.0.28", 1736 1776 ] 1737 1777 1738 1778 [[package]] ··· 1742 1782 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1743 1783 dependencies = [ 1744 1784 "form_urlencoded", 1745 - "itoa 1.0.5", 1785 + "itoa", 1746 1786 "ryu", 1747 1787 "serde", 1748 1788 ] 1749 1789 1750 1790 [[package]] 1751 1791 name = "serde_yaml" 1752 - version = "0.9.17" 1792 + version = "0.9.25" 1753 1793 source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "8fb06d4b6cdaef0e0c51fa881acb721bed3c924cfaa71d9c94a3b771dfdf6567" 1794 + checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" 1755 1795 dependencies = [ 1756 - "indexmap", 1757 - "itoa 1.0.5", 1796 + "indexmap 2.0.0", 1797 + "itoa", 1758 1798 "ryu", 1759 1799 "serde", 1760 1800 "unsafe-libyaml", ··· 1762 1802 1763 1803 [[package]] 1764 1804 name = "sha2" 1765 - version = "0.10.6" 1805 + version = "0.10.7" 1766 1806 source = "registry+https://github.com/rust-lang/crates.io-index" 1767 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1807 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 1768 1808 dependencies = [ 1769 1809 "cfg-if", 1770 1810 "cpufeatures", ··· 1785 1825 1786 1826 [[package]] 1787 1827 name = "slab" 1788 - version = "0.4.7" 1828 + version = "0.4.8" 1789 1829 source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 1830 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1791 1831 dependencies = [ 1792 1832 "autocfg", 1793 1833 ] 1794 1834 1795 1835 [[package]] 1796 1836 name = "smallvec" 1797 - version = "1.10.0" 1837 + version = "1.11.0" 1798 1838 source = "registry+https://github.com/rust-lang/crates.io-index" 1799 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 1839 + checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 1800 1840 1801 1841 [[package]] 1802 1842 name = "socket2" 1803 - version = "0.4.7" 1843 + version = "0.4.9" 1804 1844 source = "registry+https://github.com/rust-lang/crates.io-index" 1805 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 1845 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1806 1846 dependencies = [ 1807 1847 "libc", 1808 1848 "winapi", ··· 1832 1872 1833 1873 [[package]] 1834 1874 name = "syn" 1835 - version = "1.0.107" 1875 + version = "1.0.109" 1876 + source = "registry+https://github.com/rust-lang/crates.io-index" 1877 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1878 + dependencies = [ 1879 + "proc-macro2", 1880 + "quote", 1881 + "unicode-ident", 1882 + ] 1883 + 1884 + [[package]] 1885 + name = "syn" 1886 + version = "2.0.28" 1836 1887 source = "registry+https://github.com/rust-lang/crates.io-index" 1837 - checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 1888 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 1838 1889 dependencies = [ 1839 1890 "proc-macro2", 1840 1891 "quote", ··· 1843 1894 1844 1895 [[package]] 1845 1896 name = "tar" 1846 - version = "0.4.38" 1897 + version = "0.4.39" 1847 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1848 - checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 1899 + checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" 1849 1900 dependencies = [ 1850 1901 "filetime", 1851 1902 "libc", ··· 1854 1905 1855 1906 [[package]] 1856 1907 name = "target-lexicon" 1857 - version = "0.12.5" 1908 + version = "0.12.11" 1858 1909 source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 1910 + checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 1860 1911 1861 1912 [[package]] 1862 1913 name = "tempfile" 1863 - version = "3.3.0" 1914 + version = "3.7.0" 1864 1915 source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1916 + checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" 1866 1917 dependencies = [ 1867 1918 "cfg-if", 1868 1919 "fastrand", 1869 - "libc", 1870 1920 "redox_syscall", 1871 - "remove_dir_all", 1872 - "winapi", 1873 - ] 1874 - 1875 - [[package]] 1876 - name = "termcolor" 1877 - version = "1.2.0" 1878 - source = "registry+https://github.com/rust-lang/crates.io-index" 1879 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1880 - dependencies = [ 1881 - "winapi-util", 1882 - ] 1883 - 1884 - [[package]] 1885 - name = "textwrap" 1886 - version = "0.11.0" 1887 - source = "registry+https://github.com/rust-lang/crates.io-index" 1888 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1889 - dependencies = [ 1890 - "unicode-width", 1921 + "rustix", 1922 + "windows-sys 0.48.0", 1891 1923 ] 1892 1924 1893 1925 [[package]] 1894 1926 name = "thiserror" 1895 - version = "1.0.38" 1927 + version = "1.0.44" 1896 1928 source = "registry+https://github.com/rust-lang/crates.io-index" 1897 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 1929 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 1898 1930 dependencies = [ 1899 1931 "thiserror-impl", 1900 1932 ] 1901 1933 1902 1934 [[package]] 1903 1935 name = "thiserror-impl" 1904 - version = "1.0.38" 1936 + version = "1.0.44" 1905 1937 source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 1938 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 1907 1939 dependencies = [ 1908 1940 "proc-macro2", 1909 1941 "quote", 1910 - "syn", 1942 + "syn 2.0.28", 1911 1943 ] 1912 1944 1913 1945 [[package]] 1914 1946 name = "thread_local" 1915 - version = "1.1.6" 1947 + version = "1.1.7" 1916 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 1917 - checksum = "50f297120ff9d4efe680df143d5631bba9c75fa371992b7fcb33eb3453cb0a07" 1949 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1918 1950 dependencies = [ 1919 1951 "cfg-if", 1920 1952 "once_cell", ··· 1956 1988 1957 1989 [[package]] 1958 1990 name = "tokio" 1959 - version = "1.25.0" 1991 + version = "1.29.1" 1960 1992 source = "registry+https://github.com/rust-lang/crates.io-index" 1961 - checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" 1993 + checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 1962 1994 dependencies = [ 1963 1995 "autocfg", 1996 + "backtrace", 1964 1997 "bytes", 1965 1998 "libc", 1966 - "memchr", 1967 1999 "mio", 1968 2000 "num_cpus", 1969 2001 "pin-project-lite", 1970 2002 "socket2", 1971 - "windows-sys 0.42.0", 2003 + "tokio-macros", 2004 + "windows-sys 0.48.0", 2005 + ] 2006 + 2007 + [[package]] 2008 + name = "tokio-macros" 2009 + version = "2.1.0" 2010 + source = "registry+https://github.com/rust-lang/crates.io-index" 2011 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2012 + dependencies = [ 2013 + "proc-macro2", 2014 + "quote", 2015 + "syn 2.0.28", 1972 2016 ] 1973 2017 1974 2018 [[package]] 1975 2019 name = "tokio-rustls" 1976 - version = "0.23.4" 2020 + version = "0.24.1" 1977 2021 source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 2022 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 1979 2023 dependencies = [ 1980 2024 "rustls", 1981 2025 "tokio", 1982 - "webpki", 1983 2026 ] 1984 2027 1985 2028 [[package]] 1986 2029 name = "tokio-util" 1987 - version = "0.7.6" 2030 + version = "0.7.8" 1988 2031 source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "bc6a3b08b64e6dfad376fa2432c7b1f01522e37a623c3050bc95db2d3ff21583" 2032 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 1990 2033 dependencies = [ 1991 2034 "bytes", 1992 2035 "futures-core", ··· 2015 2058 2016 2059 [[package]] 2017 2060 name = "tracing-core" 2018 - version = "0.1.30" 2061 + version = "0.1.31" 2019 2062 source = "registry+https://github.com/rust-lang/crates.io-index" 2020 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2063 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2021 2064 dependencies = [ 2022 2065 "once_cell", 2023 2066 ] ··· 2036 2079 2037 2080 [[package]] 2038 2081 name = "ucd-trie" 2039 - version = "0.1.5" 2082 + version = "0.1.6" 2040 2083 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 2084 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 2042 2085 2043 2086 [[package]] 2044 2087 name = "unicode-bidi" 2045 - version = "0.3.10" 2088 + version = "0.3.13" 2046 2089 source = "registry+https://github.com/rust-lang/crates.io-index" 2047 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 2090 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2048 2091 2049 2092 [[package]] 2050 2093 name = "unicode-ident" 2051 - version = "1.0.6" 2094 + version = "1.0.11" 2052 2095 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 2096 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 2054 2097 2055 2098 [[package]] 2056 2099 name = "unicode-normalization" ··· 2068 2111 checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2069 2112 2070 2113 [[package]] 2071 - name = "unicode-width" 2072 - version = "0.1.10" 2073 - source = "registry+https://github.com/rust-lang/crates.io-index" 2074 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2075 - 2076 - [[package]] 2077 2114 name = "unindent" 2078 2115 version = "0.1.11" 2079 2116 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2081 2118 2082 2119 [[package]] 2083 2120 name = "unsafe-libyaml" 2084 - version = "0.2.5" 2121 + version = "0.2.9" 2085 2122 source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "bc7ed8ba44ca06be78ea1ad2c3682a43349126c8818054231ee6f4748012aed2" 2123 + checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 2087 2124 2088 2125 [[package]] 2089 2126 name = "untrusted" ··· 2093 2130 2094 2131 [[package]] 2095 2132 name = "url" 2096 - version = "2.3.1" 2133 + version = "2.4.0" 2097 2134 source = "registry+https://github.com/rust-lang/crates.io-index" 2098 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2135 + checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 2099 2136 dependencies = [ 2100 2137 "form_urlencoded", 2101 2138 "idna", ··· 2103 2140 ] 2104 2141 2105 2142 [[package]] 2143 + name = "utf8parse" 2144 + version = "0.2.1" 2145 + source = "registry+https://github.com/rust-lang/crates.io-index" 2146 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2147 + 2148 + [[package]] 2106 2149 name = "version_check" 2107 2150 version = "0.9.4" 2108 2151 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2110 2153 2111 2154 [[package]] 2112 2155 name = "walkdir" 2113 - version = "2.3.2" 2156 + version = "2.3.3" 2114 2157 source = "registry+https://github.com/rust-lang/crates.io-index" 2115 - checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2158 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 2116 2159 dependencies = [ 2117 2160 "same-file", 2118 - "winapi", 2119 2161 "winapi-util", 2120 2162 ] 2121 2163 2122 2164 [[package]] 2123 2165 name = "want" 2124 - version = "0.3.0" 2166 + version = "0.3.1" 2125 2167 source = "registry+https://github.com/rust-lang/crates.io-index" 2126 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2168 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2127 2169 dependencies = [ 2128 - "log", 2129 2170 "try-lock", 2130 2171 ] 2131 2172 ··· 2137 2178 2138 2179 [[package]] 2139 2180 name = "wasm-bindgen" 2140 - version = "0.2.84" 2181 + version = "0.2.87" 2141 2182 source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 2183 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 2143 2184 dependencies = [ 2144 2185 "cfg-if", 2145 2186 "serde", ··· 2149 2190 2150 2191 [[package]] 2151 2192 name = "wasm-bindgen-backend" 2152 - version = "0.2.84" 2193 + version = "0.2.87" 2153 2194 source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 2195 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 2155 2196 dependencies = [ 2156 2197 "bumpalo", 2157 2198 "log", 2158 2199 "once_cell", 2159 2200 "proc-macro2", 2160 2201 "quote", 2161 - "syn", 2202 + "syn 2.0.28", 2162 2203 "wasm-bindgen-shared", 2163 2204 ] 2164 2205 2165 2206 [[package]] 2166 2207 name = "wasm-bindgen-futures" 2167 - version = "0.4.34" 2208 + version = "0.4.37" 2168 2209 source = "registry+https://github.com/rust-lang/crates.io-index" 2169 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 2210 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 2170 2211 dependencies = [ 2171 2212 "cfg-if", 2172 2213 "js-sys", ··· 2176 2217 2177 2218 [[package]] 2178 2219 name = "wasm-bindgen-macro" 2179 - version = "0.2.84" 2220 + version = "0.2.87" 2180 2221 source = "registry+https://github.com/rust-lang/crates.io-index" 2181 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 2222 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 2182 2223 dependencies = [ 2183 2224 "quote", 2184 2225 "wasm-bindgen-macro-support", ··· 2186 2227 2187 2228 [[package]] 2188 2229 name = "wasm-bindgen-macro-support" 2189 - version = "0.2.84" 2230 + version = "0.2.87" 2190 2231 source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 2232 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 2192 2233 dependencies = [ 2193 2234 "proc-macro2", 2194 2235 "quote", 2195 - "syn", 2236 + "syn 2.0.28", 2196 2237 "wasm-bindgen-backend", 2197 2238 "wasm-bindgen-shared", 2198 2239 ] 2199 2240 2200 2241 [[package]] 2201 2242 name = "wasm-bindgen-shared" 2202 - version = "0.2.84" 2243 + version = "0.2.87" 2203 2244 source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 2245 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 2205 2246 2206 2247 [[package]] 2207 2248 name = "web-sys" 2208 - version = "0.3.61" 2249 + version = "0.3.64" 2209 2250 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 2251 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 2211 2252 dependencies = [ 2212 2253 "js-sys", 2213 2254 "wasm-bindgen", ··· 2265 2306 2266 2307 [[package]] 2267 2308 name = "windows-sys" 2268 - version = "0.42.0" 2309 + version = "0.45.0" 2269 2310 source = "registry+https://github.com/rust-lang/crates.io-index" 2270 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2311 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2271 2312 dependencies = [ 2272 - "windows_aarch64_gnullvm", 2273 - "windows_aarch64_msvc", 2274 - "windows_i686_gnu", 2275 - "windows_i686_msvc", 2276 - "windows_x86_64_gnu", 2277 - "windows_x86_64_gnullvm", 2278 - "windows_x86_64_msvc", 2313 + "windows-targets 0.42.2", 2279 2314 ] 2280 2315 2281 2316 [[package]] 2282 2317 name = "windows-sys" 2283 - version = "0.45.0" 2318 + version = "0.48.0" 2284 2319 source = "registry+https://github.com/rust-lang/crates.io-index" 2285 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2320 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2286 2321 dependencies = [ 2287 - "windows-targets", 2322 + "windows-targets 0.48.1", 2288 2323 ] 2289 2324 2290 2325 [[package]] 2291 2326 name = "windows-targets" 2292 - version = "0.42.1" 2327 + version = "0.42.2" 2293 2328 source = "registry+https://github.com/rust-lang/crates.io-index" 2294 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 2329 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2295 2330 dependencies = [ 2296 - "windows_aarch64_gnullvm", 2297 - "windows_aarch64_msvc", 2298 - "windows_i686_gnu", 2299 - "windows_i686_msvc", 2300 - "windows_x86_64_gnu", 2301 - "windows_x86_64_gnullvm", 2302 - "windows_x86_64_msvc", 2331 + "windows_aarch64_gnullvm 0.42.2", 2332 + "windows_aarch64_msvc 0.42.2", 2333 + "windows_i686_gnu 0.42.2", 2334 + "windows_i686_msvc 0.42.2", 2335 + "windows_x86_64_gnu 0.42.2", 2336 + "windows_x86_64_gnullvm 0.42.2", 2337 + "windows_x86_64_msvc 0.42.2", 2303 2338 ] 2304 2339 2305 2340 [[package]] 2341 + name = "windows-targets" 2342 + version = "0.48.1" 2343 + source = "registry+https://github.com/rust-lang/crates.io-index" 2344 + checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2345 + dependencies = [ 2346 + "windows_aarch64_gnullvm 0.48.0", 2347 + "windows_aarch64_msvc 0.48.0", 2348 + "windows_i686_gnu 0.48.0", 2349 + "windows_i686_msvc 0.48.0", 2350 + "windows_x86_64_gnu 0.48.0", 2351 + "windows_x86_64_gnullvm 0.48.0", 2352 + "windows_x86_64_msvc 0.48.0", 2353 + ] 2354 + 2355 + [[package]] 2356 + name = "windows_aarch64_gnullvm" 2357 + version = "0.42.2" 2358 + source = "registry+https://github.com/rust-lang/crates.io-index" 2359 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2360 + 2361 + [[package]] 2306 2362 name = "windows_aarch64_gnullvm" 2307 - version = "0.42.1" 2363 + version = "0.48.0" 2364 + source = "registry+https://github.com/rust-lang/crates.io-index" 2365 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2366 + 2367 + [[package]] 2368 + name = "windows_aarch64_msvc" 2369 + version = "0.42.2" 2308 2370 source = "registry+https://github.com/rust-lang/crates.io-index" 2309 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 2371 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2310 2372 2311 2373 [[package]] 2312 2374 name = "windows_aarch64_msvc" 2313 - version = "0.42.1" 2375 + version = "0.48.0" 2314 2376 source = "registry+https://github.com/rust-lang/crates.io-index" 2315 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 2377 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2316 2378 2317 2379 [[package]] 2318 2380 name = "windows_i686_gnu" 2319 - version = "0.42.1" 2381 + version = "0.42.2" 2320 2382 source = "registry+https://github.com/rust-lang/crates.io-index" 2321 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 2383 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2384 + 2385 + [[package]] 2386 + name = "windows_i686_gnu" 2387 + version = "0.48.0" 2388 + source = "registry+https://github.com/rust-lang/crates.io-index" 2389 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2322 2390 2323 2391 [[package]] 2324 2392 name = "windows_i686_msvc" 2325 - version = "0.42.1" 2393 + version = "0.42.2" 2326 2394 source = "registry+https://github.com/rust-lang/crates.io-index" 2327 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 2395 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2396 + 2397 + [[package]] 2398 + name = "windows_i686_msvc" 2399 + version = "0.48.0" 2400 + source = "registry+https://github.com/rust-lang/crates.io-index" 2401 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2328 2402 2329 2403 [[package]] 2330 2404 name = "windows_x86_64_gnu" 2331 - version = "0.42.1" 2405 + version = "0.42.2" 2406 + source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2408 + 2409 + [[package]] 2410 + name = "windows_x86_64_gnu" 2411 + version = "0.48.0" 2412 + source = "registry+https://github.com/rust-lang/crates.io-index" 2413 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2414 + 2415 + [[package]] 2416 + name = "windows_x86_64_gnullvm" 2417 + version = "0.42.2" 2332 2418 source = "registry+https://github.com/rust-lang/crates.io-index" 2333 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 2419 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2334 2420 2335 2421 [[package]] 2336 2422 name = "windows_x86_64_gnullvm" 2337 - version = "0.42.1" 2423 + version = "0.48.0" 2338 2424 source = "registry+https://github.com/rust-lang/crates.io-index" 2339 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 2425 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2340 2426 2341 2427 [[package]] 2342 2428 name = "windows_x86_64_msvc" 2343 - version = "0.42.1" 2429 + version = "0.42.2" 2344 2430 source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 2431 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2432 + 2433 + [[package]] 2434 + name = "windows_x86_64_msvc" 2435 + version = "0.48.0" 2436 + source = "registry+https://github.com/rust-lang/crates.io-index" 2437 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2346 2438 2347 2439 [[package]] 2348 2440 name = "winreg"
+2 -2
pkgs/tools/text/autocorrect/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "autocorrect"; 5 - version = "2.6.2"; 5 + version = "2.8.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "huacnlee"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-QHQQrUQCfDAlAtDcfrAkOwRhQkO+HcwnPfJ5+jb1290="; 11 + sha256 = "sha256-njgngDowyRfOY9+BnBSNWow5GkdGhRu2YPXkA6n23qE="; 12 12 }; 13 13 14 14 cargoLock = {
+5 -2
pkgs/tools/text/d2/default.nix
··· 25 25 ldflags = [ 26 26 "-s" 27 27 "-w" 28 - "-X oss.terrastruct.com/d2/lib/version.Version=${version}" 28 + "-X oss.terrastruct.com/d2/lib/version.Version=v${version}" 29 29 ]; 30 30 31 31 nativeBuildInputs = [ installShellFiles ]; ··· 41 41 export TESTDATA_ACCEPT=1 42 42 ''; 43 43 44 - passthru.tests.version = testers.testVersion { package = d2; }; 44 + passthru.tests.version = testers.testVersion { 45 + package = d2; 46 + version = "v${version}"; 47 + }; 45 48 46 49 meta = with lib; { 47 50 description = "A modern diagram scripting language that turns text to diagrams";
+3 -3
pkgs/tools/text/diffsitter/default.nix
··· 32 32 in 33 33 rustPlatform.buildRustPackage rec { 34 34 pname = "diffsitter"; 35 - version = "0.8.0"; 35 + version = "0.8.1"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "afnanenayet"; 39 39 repo = pname; 40 40 rev = "v${version}"; 41 - sha256 = "sha256-KrmK0RJdNJcZGM/7IxDP5IbJMTY3v6MkHA1SQW+U3hw="; 41 + sha256 = "sha256-8nKZ8zcZSSF7Qd36kA9IQjio+TIhlQWRgMqKrsdInj4="; 42 42 fetchSubmodules = false; 43 43 }; 44 44 45 - cargoHash = "sha256-3HALOoa3QDl9KE2UHxszzDw/VuDLLmjccXQvBBrfrHA="; 45 + cargoHash = "sha256-LEBAMb9tROpjrWEfucw+2ZaytnoyJE477IH3MyeUGEA="; 46 46 47 47 buildNoDefaultFeatures = true; 48 48 buildFeatures = [
+2 -2
pkgs/tools/virtualization/govc/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "govc"; 5 - version = "0.30.6"; 5 + version = "0.30.7"; 6 6 7 7 subPackages = [ "govc" ]; 8 8 ··· 10 10 rev = "v${version}"; 11 11 owner = "vmware"; 12 12 repo = "govmomi"; 13 - sha256 = "sha256-gk8V7/4N8+KDy0lRu04xwbrnXQWxZQTkvdb2ZI3AfM8="; 13 + sha256 = "sha256-8cBS92O5AEeXQyLwOTAWbjvj1oPJiHLBooRgl5pt0Mk="; 14 14 }; 15 15 16 16 vendorHash = "sha256-iLmQdjN0EXJuwC3NT5FKdHhJ4KvNAvnsBGAO9bypdqg=";
+2 -2
pkgs/tools/virtualization/jumppad/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "jumppad"; 5 - version = "0.5.31"; 5 + version = "0.5.35"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jumppad-labs"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-2BdhJ11Mwd2w8VZfGcGJc6GuaKrVKjCqXLDggiiwyt0="; 11 + hash = "sha256-ZqP1m2Fbm9bn9uxJ7Ll4Vqa+STIrxX0jALGZJmOyAT8="; 12 12 }; 13 13 vendorHash = "sha256-LneL4SzvcThfqqWdKpAU3mFAW1FVRTU9/T3l+yKBSME="; 14 14
+10 -17
pkgs/top-level/all-packages.nix
··· 1786 1786 1787 1787 headset-charge-indicator = callPackage ../tools/audio/headset-charge-indicator { }; 1788 1788 1789 + heh = callPackage ../applications/editors/heh { }; 1790 + 1789 1791 hexdiff = callPackage ../tools/misc/hexdiff { }; 1790 1792 1791 1793 httm = darwin.apple_sdk_11_0.callPackage ../tools/filesystems/httm { }; ··· 3710 3712 3711 3713 github-copilot-intellij-agent = callPackage ../development/tools/github-copilot-intellij-agent { }; 3712 3714 3713 - github-desktop = callPackage ../applications/version-management/github-desktop { 3714 - openssl = openssl_1_1; 3715 - curl = curl.override { openssl = openssl_1_1; }; 3716 - }; 3715 + github-desktop = callPackage ../applications/version-management/github-desktop { }; 3717 3716 3718 3717 github-to-sqlite = with python3Packages; toPythonApplication github-to-sqlite; 3719 3718 ··· 15422 15421 inherit (darwin.apple_sdk.frameworks) CoreServices; 15423 15422 }; 15424 15423 15425 - inherit (callPackages ../development/compilers/crystal { 15426 - llvmPackages = llvmPackages_13; 15427 - stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 15428 - }) 15424 + inherit (darwin.apple_sdk_11_0.callPackage ../development/compilers/crystal { }) 15429 15425 crystal_1_2 15430 - crystal_1_7; 15431 - 15432 - inherit (callPackages ../development/compilers/crystal { 15433 - llvmPackages = llvmPackages_15; 15434 - stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; 15435 - }) 15426 + crystal_1_7 15427 + crystal_1_8 15436 15428 crystal_1_9 15437 - crystal_1_8 15438 15429 crystal; 15439 15430 15440 15431 crystal2nix = callPackage ../development/compilers/crystal2nix { }; ··· 16610 16601 blaze = callPackage ../development/libraries/blaze { }; 16611 16602 16612 16603 pony-corral = callPackage ../development/compilers/ponyc/pony-corral.nix { }; 16604 + 16605 + prqlc = callPackage ../development/tools/database/prqlc { }; 16613 16606 16614 16607 qbe = callPackage ../development/compilers/qbe { }; 16615 16608 ··· 38038 38031 38039 38032 stone-kingdoms = callPackage ../games/stone-kingdoms { }; 38040 38033 38041 - streamlit = python3Packages.callPackage ../applications/science/machine-learning/streamlit { }; 38042 - 38043 38034 stt = callPackage ../tools/audio/stt { }; 38044 38035 38045 38036 stuntrally = callPackage ../games/stuntrally ··· 38773 38764 nengo-gui = callPackage ../applications/science/machine-learning/nengo-gui { }; 38774 38765 38775 38766 sc2-headless = callPackage ../applications/science/machine-learning/sc2-headless { }; 38767 + 38768 + streamlit = with python3Packages; toPythonApplication streamlit; 38776 38769 38777 38770 uarmsolver = callPackage ../applications/science/machine-learning/uarmsolver { }; 38778 38771
+6
pkgs/top-level/python-packages.nix
··· 4179 4179 4180 4180 georss-wa-dfes-client = callPackage ../development/python-modules/georss-wa-dfes-client { }; 4181 4181 4182 + getjump = callPackage ../development/python-modules/getjump { }; 4183 + 4182 4184 getmac = callPackage ../development/python-modules/getmac { }; 4183 4185 4184 4186 getkey = callPackage ../development/python-modules/getkey { }; ··· 9571 9573 9572 9574 pyrad = callPackage ../development/python-modules/pyrad { }; 9573 9575 9576 + pyradiomics = callPackage ../development/python-modules/pyradiomics { }; 9577 + 9574 9578 pyradios = callPackage ../development/python-modules/pyradios { }; 9575 9579 9576 9580 pyrainbird = callPackage ../development/python-modules/pyrainbird { }; ··· 12169 12173 streaming-form-data = callPackage ../development/python-modules/streaming-form-data { }; 12170 12174 12171 12175 streamlabswater = callPackage ../development/python-modules/streamlabswater { }; 12176 + 12177 + streamlit = callPackage ../development/python-modules/streamlit { }; 12172 12178 12173 12179 streamz = callPackage ../development/python-modules/streamz { }; 12174 12180